blob: 26c48a4d56a47e86bf9833f22a9f66dbddfd238c [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>();
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000171 X86ScalarSSEf64 = Subtarget->hasXMMInt();
172 X86ScalarSSEf32 = Subtarget->hasXMM();
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 // We may not have a libcall for MEMBARRIER so we should lower this.
453 setOperationAction(ISD::MEMBARRIER , 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
Nate Begeman14d12ca2008-02-11 04:19:36 +0000886 if (Subtarget->hasSSE41()) {
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
Nadav Rotem43012222011-05-11 08:12:09 +0000925 if (Subtarget->hasSSE2()) {
926 setOperationAction(ISD::SRL, MVT::v2i64, Custom);
927 setOperationAction(ISD::SRL, MVT::v4i32, Custom);
928 setOperationAction(ISD::SRL, MVT::v16i8, Custom);
929
930 setOperationAction(ISD::SHL, MVT::v2i64, Custom);
931 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
932 setOperationAction(ISD::SHL, MVT::v8i16, Custom);
933
934 setOperationAction(ISD::SRA, MVT::v4i32, Custom);
935 setOperationAction(ISD::SRA, MVT::v8i16, Custom);
936 }
937
Chris Lattnera34b3cf2010-12-19 20:03:11 +0000938 if (Subtarget->hasSSE42())
Owen Anderson825b72b2009-08-11 20:47:22 +0000939 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000940
David Greene9b9838d2009-06-29 16:47:10 +0000941 if (!UseSoftFloat && Subtarget->hasAVX()) {
Bruno Cardoso Lopesdbd4fe22011-07-21 02:24:08 +0000942 addRegisterClass(MVT::v32i8, X86::VR256RegisterClass);
943 addRegisterClass(MVT::v16i16, X86::VR256RegisterClass);
944 addRegisterClass(MVT::v8i32, X86::VR256RegisterClass);
945 addRegisterClass(MVT::v8f32, X86::VR256RegisterClass);
946 addRegisterClass(MVT::v4i64, X86::VR256RegisterClass);
947 addRegisterClass(MVT::v4f64, X86::VR256RegisterClass);
David Greened94c1012009-06-29 22:50:51 +0000948
Owen Anderson825b72b2009-08-11 20:47:22 +0000949 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +0000950 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
951 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
David Greene54d8eba2011-01-27 22:38:56 +0000952
Owen Anderson825b72b2009-08-11 20:47:22 +0000953 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
954 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
955 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
956 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
957 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
958 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000959
Owen Anderson825b72b2009-08-11 20:47:22 +0000960 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
961 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
962 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
963 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
964 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
965 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000966
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +0000967 // Custom lower several nodes for 256-bit types.
David Greene54d8eba2011-01-27 22:38:56 +0000968 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +0000969 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
970 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
971 EVT VT = SVT;
972
973 // Extract subvector is special because the value type
974 // (result) is 128-bit but the source is 256-bit wide.
975 if (VT.is128BitVector())
976 setOperationAction(ISD::EXTRACT_SUBVECTOR, SVT, Custom);
977
978 // Do not attempt to custom lower other non-256-bit vectors
979 if (!VT.is256BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000980 continue;
David Greene54d8eba2011-01-27 22:38:56 +0000981
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +0000982 setOperationAction(ISD::BUILD_VECTOR, SVT, Custom);
983 setOperationAction(ISD::VECTOR_SHUFFLE, SVT, Custom);
984 setOperationAction(ISD::INSERT_VECTOR_ELT, SVT, Custom);
985 setOperationAction(ISD::EXTRACT_VECTOR_ELT, SVT, Custom);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +0000986 setOperationAction(ISD::SCALAR_TO_VECTOR, SVT, Custom);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +0000987 setOperationAction(ISD::INSERT_SUBVECTOR, SVT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000988 }
989
David Greene54d8eba2011-01-27 22:38:56 +0000990 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +0000991 for (unsigned i = (unsigned)MVT::v32i8; i != (unsigned)MVT::v4i64; ++i) {
992 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
993 EVT VT = SVT;
David Greene54d8eba2011-01-27 22:38:56 +0000994
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +0000995 // Do not attempt to promote non-256-bit vectors
996 if (!VT.is256BitVector())
David Greene54d8eba2011-01-27 22:38:56 +0000997 continue;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +0000998
999 setOperationAction(ISD::AND, SVT, Promote);
1000 AddPromotedToType (ISD::AND, SVT, MVT::v4i64);
1001 setOperationAction(ISD::OR, SVT, Promote);
1002 AddPromotedToType (ISD::OR, SVT, MVT::v4i64);
1003 setOperationAction(ISD::XOR, SVT, Promote);
1004 AddPromotedToType (ISD::XOR, SVT, MVT::v4i64);
1005 setOperationAction(ISD::LOAD, SVT, Promote);
1006 AddPromotedToType (ISD::LOAD, SVT, MVT::v4i64);
1007 setOperationAction(ISD::SELECT, SVT, Promote);
1008 AddPromotedToType (ISD::SELECT, SVT, MVT::v4i64);
David Greene54d8eba2011-01-27 22:38:56 +00001009 }
David Greene9b9838d2009-06-29 16:47:10 +00001010 }
1011
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001012 // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1013 // of this type with custom code.
1014 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1015 VT != (unsigned)MVT::LAST_VECTOR_VALUETYPE; VT++) {
1016 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT, Custom);
1017 }
1018
Evan Cheng6be2c582006-04-05 23:38:46 +00001019 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001020 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001021
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001022
Eli Friedman962f5492010-06-02 19:35:46 +00001023 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1024 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001025 //
Eli Friedman962f5492010-06-02 19:35:46 +00001026 // FIXME: We really should do custom legalization for addition and
1027 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1028 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001029 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1030 // Add/Sub/Mul with overflow operations are custom lowered.
1031 MVT VT = IntVTs[i];
1032 setOperationAction(ISD::SADDO, VT, Custom);
1033 setOperationAction(ISD::UADDO, VT, Custom);
1034 setOperationAction(ISD::SSUBO, VT, Custom);
1035 setOperationAction(ISD::USUBO, VT, Custom);
1036 setOperationAction(ISD::SMULO, VT, Custom);
1037 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001038 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001039
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001040 // There are no 8-bit 3-address imul/mul instructions
1041 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1042 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001043
Evan Chengd54f2d52009-03-31 19:38:51 +00001044 if (!Subtarget->is64Bit()) {
1045 // These libcalls are not available in 32-bit.
1046 setLibcallName(RTLIB::SHL_I128, 0);
1047 setLibcallName(RTLIB::SRL_I128, 0);
1048 setLibcallName(RTLIB::SRA_I128, 0);
1049 }
1050
Evan Cheng206ee9d2006-07-07 08:33:52 +00001051 // We have target-specific dag combine patterns for the following nodes:
1052 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001053 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +00001054 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +00001055 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001056 setTargetDAGCombine(ISD::SHL);
1057 setTargetDAGCombine(ISD::SRA);
1058 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001059 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001060 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001061 setTargetDAGCombine(ISD::ADD);
1062 setTargetDAGCombine(ISD::SUB);
Chris Lattner149a4e52008-02-22 02:09:43 +00001063 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001064 setTargetDAGCombine(ISD::ZERO_EXTEND);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +00001065 setTargetDAGCombine(ISD::SINT_TO_FP);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001066 if (Subtarget->is64Bit())
1067 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001068
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001069 computeRegisterProperties();
1070
Evan Cheng05219282011-01-06 06:52:41 +00001071 // On Darwin, -Os means optimize for size without hurting performance,
1072 // do not reduce the limit.
Dan Gohman87060f52008-06-30 21:00:56 +00001073 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001074 maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
Evan Cheng255f20f2010-04-01 06:04:33 +00001075 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001076 maxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1077 maxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1078 maxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Evan Chengfb8075d2008-02-28 00:43:03 +00001079 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +00001080 benefitFromCodePlacementOpt = true;
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001081
1082 setPrefFunctionAlignment(4);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001083}
1084
Scott Michel5b8f82e2008-03-10 15:42:14 +00001085
Owen Anderson825b72b2009-08-11 20:47:22 +00001086MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
1087 return MVT::i8;
Scott Michel5b8f82e2008-03-10 15:42:14 +00001088}
1089
1090
Evan Cheng29286502008-01-23 23:17:41 +00001091/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1092/// the desired ByVal argument alignment.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001093static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
Evan Cheng29286502008-01-23 23:17:41 +00001094 if (MaxAlign == 16)
1095 return;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001096 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001097 if (VTy->getBitWidth() == 128)
1098 MaxAlign = 16;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001099 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001100 unsigned EltAlign = 0;
1101 getMaxByValAlign(ATy->getElementType(), EltAlign);
1102 if (EltAlign > MaxAlign)
1103 MaxAlign = EltAlign;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001104 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001105 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1106 unsigned EltAlign = 0;
1107 getMaxByValAlign(STy->getElementType(i), EltAlign);
1108 if (EltAlign > MaxAlign)
1109 MaxAlign = EltAlign;
1110 if (MaxAlign == 16)
1111 break;
1112 }
1113 }
1114 return;
1115}
1116
1117/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1118/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001119/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1120/// are at 4-byte boundaries.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001121unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001122 if (Subtarget->is64Bit()) {
1123 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001124 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001125 if (TyAlign > 8)
1126 return TyAlign;
1127 return 8;
1128 }
1129
Evan Cheng29286502008-01-23 23:17:41 +00001130 unsigned Align = 4;
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001131 if (Subtarget->hasXMM())
Dale Johannesen0c191872008-02-08 19:48:20 +00001132 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001133 return Align;
1134}
Chris Lattner2b02a442007-02-25 08:29:00 +00001135
Evan Chengf0df0312008-05-15 08:39:06 +00001136/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001137/// and store operations as a result of memset, memcpy, and memmove
1138/// lowering. If DstAlign is zero that means it's safe to destination
1139/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1140/// means there isn't a need to check it against alignment requirement,
1141/// probably because the source does not need to be loaded. If
1142/// 'NonScalarIntSafe' is true, that means it's safe to return a
1143/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1144/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1145/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001146/// It returns EVT::Other if the type should be determined using generic
1147/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001148EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001149X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1150 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001151 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001152 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001153 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001154 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1155 // linux. This is because the stack realignment code can't handle certain
1156 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001157 const Function *F = MF.getFunction();
Evan Chenga5e13622011-01-07 19:35:30 +00001158 if (NonScalarIntSafe &&
1159 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001160 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001161 (Subtarget->isUnalignedMemAccessFast() ||
1162 ((DstAlign == 0 || DstAlign >= 16) &&
1163 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001164 Subtarget->getStackAlignment() >= 16) {
1165 if (Subtarget->hasSSE2())
1166 return MVT::v4i32;
Evan Chengf28f8bc2010-04-02 19:36:14 +00001167 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001168 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001169 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001170 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001171 Subtarget->getStackAlignment() >= 8 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001172 Subtarget->hasXMMInt()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001173 // Do not use f64 to lower memcpy if source is string constant. It's
1174 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001175 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001176 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001177 }
Evan Chengf0df0312008-05-15 08:39:06 +00001178 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001179 return MVT::i64;
1180 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001181}
1182
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001183/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1184/// current function. The returned value is a member of the
1185/// MachineJumpTableInfo::JTEntryKind enum.
1186unsigned X86TargetLowering::getJumpTableEncoding() const {
1187 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1188 // symbol.
1189 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1190 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001191 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001192
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001193 // Otherwise, use the normal jump table encoding heuristics.
1194 return TargetLowering::getJumpTableEncoding();
1195}
1196
Chris Lattnerc64daab2010-01-26 05:02:42 +00001197const MCExpr *
1198X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1199 const MachineBasicBlock *MBB,
1200 unsigned uid,MCContext &Ctx) const{
1201 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1202 Subtarget->isPICStyleGOT());
1203 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1204 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001205 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1206 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001207}
1208
Evan Chengcc415862007-11-09 01:32:10 +00001209/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1210/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001211SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001212 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001213 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001214 // This doesn't have DebugLoc associated with it, but is not really the
1215 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001216 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001217 return Table;
1218}
1219
Chris Lattner589c6f62010-01-26 06:28:43 +00001220/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1221/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1222/// MCExpr.
1223const MCExpr *X86TargetLowering::
1224getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1225 MCContext &Ctx) const {
1226 // X86-64 uses RIP relative addressing based on the jump table label.
1227 if (Subtarget->isPICStyleRIPRel())
1228 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1229
1230 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001231 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001232}
1233
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001234// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001235std::pair<const TargetRegisterClass*, uint8_t>
1236X86TargetLowering::findRepresentativeClass(EVT VT) const{
1237 const TargetRegisterClass *RRC = 0;
1238 uint8_t Cost = 1;
1239 switch (VT.getSimpleVT().SimpleTy) {
1240 default:
1241 return TargetLowering::findRepresentativeClass(VT);
1242 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1243 RRC = (Subtarget->is64Bit()
1244 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1245 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001246 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001247 RRC = X86::VR64RegisterClass;
1248 break;
1249 case MVT::f32: case MVT::f64:
1250 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1251 case MVT::v4f32: case MVT::v2f64:
1252 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1253 case MVT::v4f64:
1254 RRC = X86::VR128RegisterClass;
1255 break;
1256 }
1257 return std::make_pair(RRC, Cost);
1258}
1259
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001260bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1261 unsigned &Offset) const {
1262 if (!Subtarget->isTargetLinux())
1263 return false;
1264
1265 if (Subtarget->is64Bit()) {
1266 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1267 Offset = 0x28;
1268 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1269 AddressSpace = 256;
1270 else
1271 AddressSpace = 257;
1272 } else {
1273 // %gs:0x14 on i386
1274 Offset = 0x14;
1275 AddressSpace = 256;
1276 }
1277 return true;
1278}
1279
1280
Chris Lattner2b02a442007-02-25 08:29:00 +00001281//===----------------------------------------------------------------------===//
1282// Return Value Calling Convention Implementation
1283//===----------------------------------------------------------------------===//
1284
Chris Lattner59ed56b2007-02-28 04:55:35 +00001285#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001286
Michael J. Spencerec38de22010-10-10 22:04:20 +00001287bool
Eric Christopher471e4222011-06-08 23:55:35 +00001288X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1289 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001290 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001291 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001292 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001293 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001294 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001295 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001296}
1297
Dan Gohman98ca4f22009-08-05 01:29:28 +00001298SDValue
1299X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001300 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001301 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001302 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001303 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001304 MachineFunction &MF = DAG.getMachineFunction();
1305 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001306
Chris Lattner9774c912007-02-27 05:28:59 +00001307 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001308 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001309 RVLocs, *DAG.getContext());
1310 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001311
Evan Chengdcea1632010-02-04 02:40:39 +00001312 // Add the regs to the liveout set for the function.
1313 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1314 for (unsigned i = 0; i != RVLocs.size(); ++i)
1315 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1316 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001317
Dan Gohman475871a2008-07-27 21:46:04 +00001318 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001319
Dan Gohman475871a2008-07-27 21:46:04 +00001320 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001321 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1322 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001323 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1324 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001325
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001326 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001327 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1328 CCValAssign &VA = RVLocs[i];
1329 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001330 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001331 EVT ValVT = ValToCopy.getValueType();
1332
Dale Johannesenc4510512010-09-24 19:05:48 +00001333 // If this is x86-64, and we disabled SSE, we can't return FP values,
1334 // or SSE or MMX vectors.
1335 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1336 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001337 (Subtarget->is64Bit() && !Subtarget->hasXMM())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001338 report_fatal_error("SSE register return with SSE disabled");
1339 }
1340 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1341 // llvm-gcc has never done it right and no one has noticed, so this
1342 // should be OK for now.
1343 if (ValVT == MVT::f64 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001344 (Subtarget->is64Bit() && !Subtarget->hasXMMInt()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001345 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001346
Chris Lattner447ff682008-03-11 03:23:40 +00001347 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1348 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001349 if (VA.getLocReg() == X86::ST0 ||
1350 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001351 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1352 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001353 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001354 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001355 RetOps.push_back(ValToCopy);
1356 // Don't emit a copytoreg.
1357 continue;
1358 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001359
Evan Cheng242b38b2009-02-23 09:03:22 +00001360 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1361 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001362 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001363 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001364 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001365 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001366 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1367 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001368 // If we don't have SSE2 available, convert to v4f32 so the generated
1369 // register is legal.
1370 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001371 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001372 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001373 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001374 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001375
Dale Johannesendd64c412009-02-04 00:33:20 +00001376 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001377 Flag = Chain.getValue(1);
1378 }
Dan Gohman61a92132008-04-21 23:59:07 +00001379
1380 // The x86-64 ABI for returning structs by value requires that we copy
1381 // the sret argument into %rax for the return. We saved the argument into
1382 // a virtual register in the entry block, so now we copy the value out
1383 // and into %rax.
1384 if (Subtarget->is64Bit() &&
1385 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1386 MachineFunction &MF = DAG.getMachineFunction();
1387 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1388 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001389 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001390 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001391 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001392
Dale Johannesendd64c412009-02-04 00:33:20 +00001393 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001394 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001395
1396 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001397 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001398 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001399
Chris Lattner447ff682008-03-11 03:23:40 +00001400 RetOps[0] = Chain; // Update chain.
1401
1402 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001403 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001404 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001405
1406 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001407 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001408}
1409
Evan Cheng3d2125c2010-11-30 23:55:39 +00001410bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1411 if (N->getNumValues() != 1)
1412 return false;
1413 if (!N->hasNUsesOfValue(1, 0))
1414 return false;
1415
1416 SDNode *Copy = *N->use_begin();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001417 if (Copy->getOpcode() != ISD::CopyToReg &&
1418 Copy->getOpcode() != ISD::FP_EXTEND)
Evan Cheng3d2125c2010-11-30 23:55:39 +00001419 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001420
1421 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001422 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001423 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001424 if (UI->getOpcode() != X86ISD::RET_FLAG)
1425 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001426 HasRet = true;
1427 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001428
Evan Cheng1bf891a2010-12-01 22:59:46 +00001429 return HasRet;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001430}
1431
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001432EVT
1433X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001434 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001435 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001436 // TODO: Is this also valid on 32-bit?
1437 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001438 ReturnMVT = MVT::i8;
1439 else
1440 ReturnMVT = MVT::i32;
1441
1442 EVT MinVT = getRegisterType(Context, ReturnMVT);
1443 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001444}
1445
Dan Gohman98ca4f22009-08-05 01:29:28 +00001446/// LowerCallResult - Lower the result values of a call into the
1447/// appropriate copies out of appropriate physical registers.
1448///
1449SDValue
1450X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001451 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001452 const SmallVectorImpl<ISD::InputArg> &Ins,
1453 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001454 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001455
Chris Lattnere32bbf62007-02-28 07:09:55 +00001456 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001457 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001458 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001459 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1460 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001461 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001462
Chris Lattner3085e152007-02-25 08:59:22 +00001463 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001464 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001465 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001466 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001467
Torok Edwin3f142c32009-02-01 18:15:56 +00001468 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001469 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001470 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasXMM())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001471 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001472 }
1473
Evan Cheng79fb3b42009-02-20 20:43:02 +00001474 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001475
1476 // If this is a call to a function that returns an fp value on the floating
1477 // point stack, we must guarantee the the value is popped from the stack, so
1478 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001479 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001480 // instead.
1481 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1482 // If we prefer to use the value in xmm registers, copy it out as f80 and
1483 // use a truncate to move it from fp stack reg to xmm reg.
1484 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001485 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001486 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1487 MVT::Other, MVT::Glue, Ops, 2), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001488 Val = Chain.getValue(0);
1489
1490 // Round the f80 to the right size, which also moves it to the appropriate
1491 // xmm register.
1492 if (CopyVT != VA.getValVT())
1493 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1494 // This truncation won't change the value.
1495 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001496 } else {
1497 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1498 CopyVT, InFlag).getValue(1);
1499 Val = Chain.getValue(0);
1500 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001501 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001502 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001503 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001504
Dan Gohman98ca4f22009-08-05 01:29:28 +00001505 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001506}
1507
1508
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001509//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001510// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001511//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001512// StdCall calling convention seems to be standard for many Windows' API
1513// routines and around. It differs from C calling convention just a little:
1514// callee should clean up the stack, not caller. Symbols should be also
1515// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001516// For info on fast calling convention see Fast Calling Convention (tail call)
1517// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001518
Dan Gohman98ca4f22009-08-05 01:29:28 +00001519/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001520/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001521static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1522 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001523 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001524
Dan Gohman98ca4f22009-08-05 01:29:28 +00001525 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001526}
1527
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001528/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001529/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001530static bool
1531ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1532 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001533 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001534
Dan Gohman98ca4f22009-08-05 01:29:28 +00001535 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001536}
1537
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001538/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1539/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001540/// the specific parameter attribute. The copy will be passed as a byval
1541/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001542static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001543CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001544 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1545 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001546 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001547
Dale Johannesendd64c412009-02-04 00:33:20 +00001548 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00001549 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001550 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001551}
1552
Chris Lattner29689432010-03-11 00:22:57 +00001553/// IsTailCallConvention - Return true if the calling convention is one that
1554/// supports tail call optimization.
1555static bool IsTailCallConvention(CallingConv::ID CC) {
1556 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1557}
1558
Evan Cheng485fafc2011-03-21 01:19:09 +00001559bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
1560 if (!CI->isTailCall())
1561 return false;
1562
1563 CallSite CS(CI);
1564 CallingConv::ID CalleeCC = CS.getCallingConv();
1565 if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1566 return false;
1567
1568 return true;
1569}
1570
Evan Cheng0c439eb2010-01-27 00:07:07 +00001571/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1572/// a tailcall target by changing its ABI.
1573static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001574 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001575}
1576
Dan Gohman98ca4f22009-08-05 01:29:28 +00001577SDValue
1578X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001579 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001580 const SmallVectorImpl<ISD::InputArg> &Ins,
1581 DebugLoc dl, SelectionDAG &DAG,
1582 const CCValAssign &VA,
1583 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001584 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001585 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001586 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001587 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001588 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001589 EVT ValVT;
1590
1591 // If value is passed by pointer we have address passed instead of the value
1592 // itself.
1593 if (VA.getLocInfo() == CCValAssign::Indirect)
1594 ValVT = VA.getLocVT();
1595 else
1596 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001597
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001598 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001599 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001600 // In case of tail call optimization mark all arguments mutable. Since they
1601 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001602 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00001603 unsigned Bytes = Flags.getByValSize();
1604 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
1605 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001606 return DAG.getFrameIndex(FI, getPointerTy());
1607 } else {
1608 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001609 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001610 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1611 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001612 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001613 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001614 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001615}
1616
Dan Gohman475871a2008-07-27 21:46:04 +00001617SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001618X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001619 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001620 bool isVarArg,
1621 const SmallVectorImpl<ISD::InputArg> &Ins,
1622 DebugLoc dl,
1623 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001624 SmallVectorImpl<SDValue> &InVals)
1625 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001626 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001627 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001628
Gordon Henriksen86737662008-01-05 16:56:59 +00001629 const Function* Fn = MF.getFunction();
1630 if (Fn->hasExternalLinkage() &&
1631 Subtarget->isTargetCygMing() &&
1632 Fn->getName() == "main")
1633 FuncInfo->setForceFramePointer(true);
1634
Evan Cheng1bc78042006-04-26 01:20:17 +00001635 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001636 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001637 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001638
Chris Lattner29689432010-03-11 00:22:57 +00001639 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1640 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001641
Chris Lattner638402b2007-02-28 07:00:42 +00001642 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001643 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001644 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001645 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001646
1647 // Allocate shadow area for Win64
1648 if (IsWin64) {
1649 CCInfo.AllocateStack(32, 8);
1650 }
1651
Duncan Sands45907662010-10-31 13:21:44 +00001652 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001653
Chris Lattnerf39f7712007-02-28 05:46:49 +00001654 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001655 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001656 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1657 CCValAssign &VA = ArgLocs[i];
1658 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1659 // places.
1660 assert(VA.getValNo() != LastVal &&
1661 "Don't support value assigned to multiple locs yet");
1662 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001663
Chris Lattnerf39f7712007-02-28 05:46:49 +00001664 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001665 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001666 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001667 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001668 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001669 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001670 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001671 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001672 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001673 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001674 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001675 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1676 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001677 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001678 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001679 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001680 RC = X86::VR64RegisterClass;
1681 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001682 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001683
Devang Patel68e6bee2011-02-21 23:21:26 +00001684 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001685 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001686
Chris Lattnerf39f7712007-02-28 05:46:49 +00001687 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1688 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1689 // right size.
1690 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001691 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001692 DAG.getValueType(VA.getValVT()));
1693 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001694 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001695 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001696 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001697 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001698
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001699 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001700 // Handle MMX values passed in XMM regs.
1701 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001702 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1703 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001704 } else
1705 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001706 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001707 } else {
1708 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001709 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001710 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001711
1712 // If value is passed via pointer - do a load.
1713 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001714 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1715 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001716
Dan Gohman98ca4f22009-08-05 01:29:28 +00001717 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001718 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001719
Dan Gohman61a92132008-04-21 23:59:07 +00001720 // The x86-64 ABI for returning structs by value requires that we copy
1721 // the sret argument into %rax for the return. Save the argument into
1722 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001723 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001724 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1725 unsigned Reg = FuncInfo->getSRetReturnReg();
1726 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001727 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001728 FuncInfo->setSRetReturnReg(Reg);
1729 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001730 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001731 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001732 }
1733
Chris Lattnerf39f7712007-02-28 05:46:49 +00001734 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001735 // Align stack specially for tail calls.
1736 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001737 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001738
Evan Cheng1bc78042006-04-26 01:20:17 +00001739 // If the function takes variable number of arguments, make a frame index for
1740 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001741 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001742 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1743 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001744 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001745 }
1746 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001747 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1748
1749 // FIXME: We should really autogenerate these arrays
1750 static const unsigned GPR64ArgRegsWin64[] = {
1751 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001752 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001753 static const unsigned GPR64ArgRegs64Bit[] = {
1754 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1755 };
1756 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001757 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1758 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1759 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001760 const unsigned *GPR64ArgRegs;
1761 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001762
1763 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001764 // The XMM registers which might contain var arg parameters are shadowed
1765 // in their paired GPR. So we only need to save the GPR to their home
1766 // slots.
1767 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001768 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001769 } else {
1770 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1771 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001772
1773 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001774 }
1775 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1776 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001777
Devang Patel578efa92009-06-05 21:57:13 +00001778 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001779 assert(!(NumXMMRegs && !Subtarget->hasXMM()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001780 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001781 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001782 "SSE register cannot be used when SSE is disabled!");
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001783 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasXMM())
Torok Edwin3f142c32009-02-01 18:15:56 +00001784 // Kernel mode asks for SSE to be disabled, so don't push them
1785 // on the stack.
1786 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001787
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001788 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001789 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001790 // Get to the caller-allocated home save location. Add 8 to account
1791 // for the return address.
1792 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001793 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001794 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001795 // Fixup to set vararg frame on shadow area (4 x i64).
1796 if (NumIntRegs < 4)
1797 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001798 } else {
1799 // For X86-64, if there are vararg parameters that are passed via
1800 // registers, then we must store them to their spots on the stack so they
1801 // may be loaded by deferencing the result of va_next.
1802 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1803 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1804 FuncInfo->setRegSaveFrameIndex(
1805 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001806 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001807 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001808
Gordon Henriksen86737662008-01-05 16:56:59 +00001809 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001810 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001811 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1812 getPointerTy());
1813 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001814 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001815 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1816 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001817 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001818 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001819 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001820 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001821 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001822 MachinePointerInfo::getFixedStack(
1823 FuncInfo->getRegSaveFrameIndex(), Offset),
1824 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001825 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001826 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001827 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001828
Dan Gohmanface41a2009-08-16 21:24:25 +00001829 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1830 // Now store the XMM (fp + vector) parameter registers.
1831 SmallVector<SDValue, 11> SaveXMMOps;
1832 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001833
Devang Patel68e6bee2011-02-21 23:21:26 +00001834 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001835 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1836 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001837
Dan Gohman1e93df62010-04-17 14:41:14 +00001838 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1839 FuncInfo->getRegSaveFrameIndex()));
1840 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1841 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001842
Dan Gohmanface41a2009-08-16 21:24:25 +00001843 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001844 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001845 X86::VR128RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001846 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1847 SaveXMMOps.push_back(Val);
1848 }
1849 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1850 MVT::Other,
1851 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001852 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001853
1854 if (!MemOps.empty())
1855 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1856 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001857 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001858 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001859
Gordon Henriksen86737662008-01-05 16:56:59 +00001860 // Some CCs need callee pop.
Evan Chengef41ff62011-06-23 17:54:54 +00001861 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001862 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001863 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001864 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001865 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001866 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001867 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001868 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001869
Gordon Henriksen86737662008-01-05 16:56:59 +00001870 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001871 // RegSaveFrameIndex is X86-64 only.
1872 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001873 if (CallConv == CallingConv::X86_FastCall ||
1874 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001875 // fastcc functions can't have varargs.
1876 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001877 }
Evan Cheng25caf632006-05-23 21:06:34 +00001878
Dan Gohman98ca4f22009-08-05 01:29:28 +00001879 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001880}
1881
Dan Gohman475871a2008-07-27 21:46:04 +00001882SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001883X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1884 SDValue StackPtr, SDValue Arg,
1885 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001886 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001887 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001888 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001889 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001890 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001891 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001892 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001893
1894 return DAG.getStore(Chain, dl, Arg, PtrOff,
1895 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001896 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001897}
1898
Bill Wendling64e87322009-01-16 19:25:27 +00001899/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001900/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001901SDValue
1902X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001903 SDValue &OutRetAddr, SDValue Chain,
1904 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001905 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001906 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001907 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001908 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001909
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001910 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001911 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1912 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001913 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001914}
1915
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001916/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001917/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001918static SDValue
1919EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001920 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001921 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001922 // Store the return address to the appropriate stack slot.
1923 if (!FPDiff) return Chain;
1924 // Calculate the new stack slot for the return address.
1925 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001926 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001927 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001928 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001929 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001930 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001931 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001932 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001933 return Chain;
1934}
1935
Dan Gohman98ca4f22009-08-05 01:29:28 +00001936SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001937X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001938 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001939 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001940 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001941 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001942 const SmallVectorImpl<ISD::InputArg> &Ins,
1943 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001944 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001945 MachineFunction &MF = DAG.getMachineFunction();
1946 bool Is64Bit = Subtarget->is64Bit();
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00001947 bool IsWin64 = Subtarget->isTargetWin64();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001948 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00001949 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001950
Evan Cheng5f941932010-02-05 02:21:12 +00001951 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00001952 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00001953 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1954 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001955 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00001956
1957 // Sibcalls are automatically detected tailcalls which do not require
1958 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00001959 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00001960 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00001961
1962 if (isTailCall)
1963 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00001964 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00001965
Chris Lattner29689432010-03-11 00:22:57 +00001966 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1967 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001968
Chris Lattner638402b2007-02-28 07:00:42 +00001969 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00001970 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001971 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001972 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001973
1974 // Allocate shadow area for Win64
1975 if (IsWin64) {
1976 CCInfo.AllocateStack(32, 8);
1977 }
1978
Duncan Sands45907662010-10-31 13:21:44 +00001979 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001980
Chris Lattner423c5f42007-02-28 05:31:48 +00001981 // Get a count of how many bytes are to be pushed on the stack.
1982 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00001983 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00001984 // This is a sibcall. The memory operands are available in caller's
1985 // own caller's stack.
1986 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00001987 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00001988 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001989
Gordon Henriksen86737662008-01-05 16:56:59 +00001990 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00001991 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001992 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00001993 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00001994 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1995 FPDiff = NumBytesCallerPushed - NumBytes;
1996
1997 // Set the delta of movement of the returnaddr stackslot.
1998 // But only set if delta is greater than previous delta.
1999 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
2000 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
2001 }
2002
Evan Chengf22f9b32010-02-06 03:28:46 +00002003 if (!IsSibcall)
2004 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002005
Dan Gohman475871a2008-07-27 21:46:04 +00002006 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002007 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002008 if (isTailCall && FPDiff)
2009 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2010 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002011
Dan Gohman475871a2008-07-27 21:46:04 +00002012 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2013 SmallVector<SDValue, 8> MemOpChains;
2014 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002015
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002016 // Walk the register/memloc assignments, inserting copies/loads. In the case
2017 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00002018 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2019 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002020 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002021 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002022 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002023 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002024
Chris Lattner423c5f42007-02-28 05:31:48 +00002025 // Promote the value if needed.
2026 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002027 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002028 case CCValAssign::Full: break;
2029 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002030 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002031 break;
2032 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002033 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002034 break;
2035 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002036 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
2037 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002038 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002039 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2040 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002041 } else
2042 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2043 break;
2044 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002045 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002046 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002047 case CCValAssign::Indirect: {
2048 // Store the argument.
2049 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002050 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002051 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002052 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002053 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002054 Arg = SpillSlot;
2055 break;
2056 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002057 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002058
Chris Lattner423c5f42007-02-28 05:31:48 +00002059 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002060 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2061 if (isVarArg && IsWin64) {
2062 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2063 // shadow reg if callee is a varargs function.
2064 unsigned ShadowReg = 0;
2065 switch (VA.getLocReg()) {
2066 case X86::XMM0: ShadowReg = X86::RCX; break;
2067 case X86::XMM1: ShadowReg = X86::RDX; break;
2068 case X86::XMM2: ShadowReg = X86::R8; break;
2069 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002070 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002071 if (ShadowReg)
2072 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002073 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002074 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002075 assert(VA.isMemLoc());
2076 if (StackPtr.getNode() == 0)
2077 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
2078 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2079 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002080 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002081 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002082
Evan Cheng32fe1032006-05-25 00:59:30 +00002083 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002084 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002085 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002086
Evan Cheng347d5f72006-04-28 21:29:37 +00002087 // Build a sequence of copy-to-reg nodes chained together with token chain
2088 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002089 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002090 // Tail call byval lowering might overwrite argument registers so in case of
2091 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002092 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002093 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002094 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002095 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002096 InFlag = Chain.getValue(1);
2097 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002098
Chris Lattner88e1fd52009-07-09 04:24:46 +00002099 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002100 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2101 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002102 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002103 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2104 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002105 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002106 InFlag);
2107 InFlag = Chain.getValue(1);
2108 } else {
2109 // If we are tail calling and generating PIC/GOT style code load the
2110 // address of the callee into ECX. The value in ecx is used as target of
2111 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2112 // for tail calls on PIC/GOT architectures. Normally we would just put the
2113 // address of GOT into ebx and then call target@PLT. But for tail calls
2114 // ebx would be restored (since ebx is callee saved) before jumping to the
2115 // target@PLT.
2116
2117 // Note: The actual moving to ECX is done further down.
2118 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2119 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2120 !G->getGlobal()->hasProtectedVisibility())
2121 Callee = LowerGlobalAddress(Callee, DAG);
2122 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002123 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002124 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002125 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002126
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002127 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002128 // From AMD64 ABI document:
2129 // For calls that may call functions that use varargs or stdargs
2130 // (prototype-less calls or calls to functions containing ellipsis (...) in
2131 // the declaration) %al is used as hidden argument to specify the number
2132 // of SSE registers used. The contents of %al do not need to match exactly
2133 // the number of registers, but must be an ubound on the number of SSE
2134 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002135
Gordon Henriksen86737662008-01-05 16:56:59 +00002136 // Count the number of XMM registers allocated.
2137 static const unsigned XMMArgRegs[] = {
2138 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2139 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2140 };
2141 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00002142 assert((Subtarget->hasXMM() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002143 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002144
Dale Johannesendd64c412009-02-04 00:33:20 +00002145 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002146 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002147 InFlag = Chain.getValue(1);
2148 }
2149
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002150
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002151 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002152 if (isTailCall) {
2153 // Force all the incoming stack arguments to be loaded from the stack
2154 // before any new outgoing arguments are stored to the stack, because the
2155 // outgoing stack slots may alias the incoming argument stack slots, and
2156 // the alias isn't otherwise explicit. This is slightly more conservative
2157 // than necessary, because it means that each store effectively depends
2158 // on every argument instead of just those arguments it would clobber.
2159 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2160
Dan Gohman475871a2008-07-27 21:46:04 +00002161 SmallVector<SDValue, 8> MemOpChains2;
2162 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002163 int FI = 0;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002164 // Do not flag preceding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002165 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002166 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002167 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2168 CCValAssign &VA = ArgLocs[i];
2169 if (VA.isRegLoc())
2170 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002171 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002172 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002173 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002174 // Create frame index.
2175 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002176 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002177 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002178 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002179
Duncan Sands276dcbd2008-03-21 09:14:45 +00002180 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002181 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002182 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002183 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002184 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002185 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002186 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002187
Dan Gohman98ca4f22009-08-05 01:29:28 +00002188 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2189 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002190 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002191 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002192 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002193 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002194 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002195 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002196 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002197 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002198 }
2199 }
2200
2201 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002202 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002203 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002204
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002205 // Copy arguments to their registers.
2206 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002207 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002208 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002209 InFlag = Chain.getValue(1);
2210 }
Dan Gohman475871a2008-07-27 21:46:04 +00002211 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002212
Gordon Henriksen86737662008-01-05 16:56:59 +00002213 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002214 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002215 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002216 }
2217
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002218 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2219 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2220 // In the 64-bit large code model, we have to make all calls
2221 // through a register, since the call instruction's 32-bit
2222 // pc-relative offset may not be large enough to hold the whole
2223 // address.
2224 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002225 // If the callee is a GlobalAddress node (quite common, every direct call
2226 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2227 // it.
2228
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002229 // We should use extra load for direct calls to dllimported functions in
2230 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002231 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002232 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002233 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002234 bool ExtraLoad = false;
2235 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002236
Chris Lattner48a7d022009-07-09 05:02:21 +00002237 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2238 // external symbols most go through the PLT in PIC mode. If the symbol
2239 // has hidden or protected visibility, or if it is static or local, then
2240 // we don't need to use the PLT - we can directly call it.
2241 if (Subtarget->isTargetELF() &&
2242 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002243 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002244 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002245 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002246 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002247 (!Subtarget->getTargetTriple().isMacOSX() ||
2248 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002249 // PC-relative references to external symbols should go through $stub,
2250 // unless we're building with the leopard linker or later, which
2251 // automatically synthesizes these stubs.
2252 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002253 } else if (Subtarget->isPICStyleRIPRel() &&
2254 isa<Function>(GV) &&
2255 cast<Function>(GV)->hasFnAttr(Attribute::NonLazyBind)) {
2256 // If the function is marked as non-lazy, generate an indirect call
2257 // which loads from the GOT directly. This avoids runtime overhead
2258 // at the cost of eager binding (and one extra byte of encoding).
2259 OpFlags = X86II::MO_GOTPCREL;
2260 WrapperKind = X86ISD::WrapperRIP;
2261 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002262 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002263
Devang Patel0d881da2010-07-06 22:08:15 +00002264 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002265 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002266
2267 // Add a wrapper if needed.
2268 if (WrapperKind != ISD::DELETED_NODE)
2269 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2270 // Add extra indirection if needed.
2271 if (ExtraLoad)
2272 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2273 MachinePointerInfo::getGOT(),
2274 false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002275 }
Bill Wendling056292f2008-09-16 21:48:12 +00002276 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002277 unsigned char OpFlags = 0;
2278
Evan Cheng1bf891a2010-12-01 22:59:46 +00002279 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2280 // external symbols should go through the PLT.
2281 if (Subtarget->isTargetELF() &&
2282 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2283 OpFlags = X86II::MO_PLT;
2284 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002285 (!Subtarget->getTargetTriple().isMacOSX() ||
2286 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002287 // PC-relative references to external symbols should go through $stub,
2288 // unless we're building with the leopard linker or later, which
2289 // automatically synthesizes these stubs.
2290 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002291 }
Eric Christopherfd179292009-08-27 18:07:15 +00002292
Chris Lattner48a7d022009-07-09 05:02:21 +00002293 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2294 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002295 }
2296
Chris Lattnerd96d0722007-02-25 06:40:16 +00002297 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002298 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002299 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002300
Evan Chengf22f9b32010-02-06 03:28:46 +00002301 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002302 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2303 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002304 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002305 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002306
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002307 Ops.push_back(Chain);
2308 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002309
Dan Gohman98ca4f22009-08-05 01:29:28 +00002310 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002311 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002312
Gordon Henriksen86737662008-01-05 16:56:59 +00002313 // Add argument registers to the end of the list so that they are known live
2314 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002315 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2316 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2317 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002318
Evan Cheng586ccac2008-03-18 23:36:35 +00002319 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002320 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002321 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2322
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002323 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002324 if (Is64Bit && isVarArg && !IsWin64)
Owen Anderson825b72b2009-08-11 20:47:22 +00002325 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002326
Gabor Greifba36cb52008-08-28 21:40:38 +00002327 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002328 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002329
Dan Gohman98ca4f22009-08-05 01:29:28 +00002330 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002331 // We used to do:
2332 //// If this is the first return lowered for this function, add the regs
2333 //// to the liveout set for the function.
2334 // This isn't right, although it's probably harmless on x86; liveouts
2335 // should be computed from returns not tail calls. Consider a void
2336 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002337 return DAG.getNode(X86ISD::TC_RETURN, dl,
2338 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002339 }
2340
Dale Johannesenace16102009-02-03 19:33:06 +00002341 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002342 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002343
Chris Lattner2d297092006-05-23 18:50:38 +00002344 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002345 unsigned NumBytesForCalleeToPush;
Evan Chengef41ff62011-06-23 17:54:54 +00002346 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002347 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002348 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002349 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002350 // pops the hidden struct pointer, so we have to push it back.
2351 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002352 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002353 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002354 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002355
Gordon Henriksenae636f82008-01-03 16:47:34 +00002356 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002357 if (!IsSibcall) {
2358 Chain = DAG.getCALLSEQ_END(Chain,
2359 DAG.getIntPtrConstant(NumBytes, true),
2360 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2361 true),
2362 InFlag);
2363 InFlag = Chain.getValue(1);
2364 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002365
Chris Lattner3085e152007-02-25 08:59:22 +00002366 // Handle result values, copying them out of physregs into vregs that we
2367 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002368 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2369 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002370}
2371
Evan Cheng25ab6902006-09-08 06:48:29 +00002372
2373//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002374// Fast Calling Convention (tail call) implementation
2375//===----------------------------------------------------------------------===//
2376
2377// Like std call, callee cleans arguments, convention except that ECX is
2378// reserved for storing the tail called function address. Only 2 registers are
2379// free for argument passing (inreg). Tail call optimization is performed
2380// provided:
2381// * tailcallopt is enabled
2382// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002383// On X86_64 architecture with GOT-style position independent code only local
2384// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002385// To keep the stack aligned according to platform abi the function
2386// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2387// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002388// If a tail called function callee has more arguments than the caller the
2389// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002390// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002391// original REtADDR, but before the saved framepointer or the spilled registers
2392// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2393// stack layout:
2394// arg1
2395// arg2
2396// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002397// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002398// move area ]
2399// (possible EBP)
2400// ESI
2401// EDI
2402// local1 ..
2403
2404/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2405/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002406unsigned
2407X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2408 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002409 MachineFunction &MF = DAG.getMachineFunction();
2410 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002411 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002412 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002413 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002414 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002415 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002416 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2417 // Number smaller than 12 so just add the difference.
2418 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2419 } else {
2420 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002421 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002422 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002423 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002424 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002425}
2426
Evan Cheng5f941932010-02-05 02:21:12 +00002427/// MatchingStackOffset - Return true if the given stack call argument is
2428/// already available in the same position (relatively) of the caller's
2429/// incoming argument stack.
2430static
2431bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2432 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2433 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002434 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2435 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002436 if (Arg.getOpcode() == ISD::CopyFromReg) {
2437 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002438 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002439 return false;
2440 MachineInstr *Def = MRI->getVRegDef(VR);
2441 if (!Def)
2442 return false;
2443 if (!Flags.isByVal()) {
2444 if (!TII->isLoadFromStackSlot(Def, FI))
2445 return false;
2446 } else {
2447 unsigned Opcode = Def->getOpcode();
2448 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2449 Def->getOperand(1).isFI()) {
2450 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002451 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002452 } else
2453 return false;
2454 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002455 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2456 if (Flags.isByVal())
2457 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002458 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002459 // define @foo(%struct.X* %A) {
2460 // tail call @bar(%struct.X* byval %A)
2461 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002462 return false;
2463 SDValue Ptr = Ld->getBasePtr();
2464 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2465 if (!FINode)
2466 return false;
2467 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002468 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00002469 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002470 FI = FINode->getIndex();
2471 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00002472 } else
2473 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002474
Evan Cheng4cae1332010-03-05 08:38:04 +00002475 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002476 if (!MFI->isFixedObjectIndex(FI))
2477 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002478 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002479}
2480
Dan Gohman98ca4f22009-08-05 01:29:28 +00002481/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2482/// for tail call optimization. Targets which want to do tail call
2483/// optimization should implement this function.
2484bool
2485X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002486 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002487 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002488 bool isCalleeStructRet,
2489 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002490 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002491 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002492 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002493 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002494 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002495 CalleeCC != CallingConv::C)
2496 return false;
2497
Evan Cheng7096ae42010-01-29 06:45:59 +00002498 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002499 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002500 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002501 CallingConv::ID CallerCC = CallerF->getCallingConv();
2502 bool CCMatch = CallerCC == CalleeCC;
2503
Dan Gohman1797ed52010-02-08 20:27:50 +00002504 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002505 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002506 return true;
2507 return false;
2508 }
2509
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002510 // Look for obvious safe cases to perform tail call optimization that do not
2511 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002512
Evan Cheng2c12cb42010-03-26 16:26:03 +00002513 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2514 // emit a special epilogue.
2515 if (RegInfo->needsStackRealignment(MF))
2516 return false;
2517
Evan Chenga375d472010-03-15 18:54:48 +00002518 // Also avoid sibcall optimization if either caller or callee uses struct
2519 // return semantics.
2520 if (isCalleeStructRet || isCallerStructRet)
2521 return false;
2522
Chad Rosier2416da32011-06-24 21:15:36 +00002523 // An stdcall caller is expected to clean up its arguments; the callee
2524 // isn't going to do that.
2525 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2526 return false;
2527
Chad Rosier871f6642011-05-18 19:59:50 +00002528 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00002529 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00002530 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00002531
2532 // Optimizing for varargs on Win64 is unlikely to be safe without
2533 // additional testing.
2534 if (Subtarget->isTargetWin64())
2535 return false;
2536
Chad Rosier871f6642011-05-18 19:59:50 +00002537 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002538 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2539 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00002540
Chad Rosier871f6642011-05-18 19:59:50 +00002541 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2542 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
2543 if (!ArgLocs[i].isRegLoc())
2544 return false;
2545 }
2546
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002547 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2548 // Therefore if it's not used by the call it is not safe to optimize this into
2549 // a sibcall.
2550 bool Unused = false;
2551 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2552 if (!Ins[i].Used) {
2553 Unused = true;
2554 break;
2555 }
2556 }
2557 if (Unused) {
2558 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002559 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
2560 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002561 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002562 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002563 CCValAssign &VA = RVLocs[i];
2564 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2565 return false;
2566 }
2567 }
2568
Evan Cheng13617962010-04-30 01:12:32 +00002569 // If the calling conventions do not match, then we'd better make sure the
2570 // results are returned in the same way as what the caller expects.
2571 if (!CCMatch) {
2572 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00002573 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
2574 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002575 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2576
2577 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00002578 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
2579 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002580 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2581
2582 if (RVLocs1.size() != RVLocs2.size())
2583 return false;
2584 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2585 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2586 return false;
2587 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2588 return false;
2589 if (RVLocs1[i].isRegLoc()) {
2590 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2591 return false;
2592 } else {
2593 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2594 return false;
2595 }
2596 }
2597 }
2598
Evan Chenga6bff982010-01-30 01:22:00 +00002599 // If the callee takes no arguments then go on to check the results of the
2600 // call.
2601 if (!Outs.empty()) {
2602 // Check if stack adjustment is needed. For now, do not do this if any
2603 // argument is passed on the stack.
2604 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002605 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2606 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002607
2608 // Allocate shadow area for Win64
2609 if (Subtarget->isTargetWin64()) {
2610 CCInfo.AllocateStack(32, 8);
2611 }
2612
Duncan Sands45907662010-10-31 13:21:44 +00002613 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00002614 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00002615 MachineFunction &MF = DAG.getMachineFunction();
2616 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2617 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00002618
2619 // Check if the arguments are already laid out in the right way as
2620 // the caller's fixed stack objects.
2621 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002622 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2623 const X86InstrInfo *TII =
2624 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002625 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2626 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002627 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002628 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002629 if (VA.getLocInfo() == CCValAssign::Indirect)
2630 return false;
2631 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002632 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2633 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002634 return false;
2635 }
2636 }
2637 }
Evan Cheng9c044672010-05-29 01:35:22 +00002638
2639 // If the tailcall address may be in a register, then make sure it's
2640 // possible to register allocate for it. In 32-bit, the call address can
2641 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002642 // callee-saved registers are restored. These happen to be the same
2643 // registers used to pass 'inreg' arguments so watch out for those.
2644 if (!Subtarget->is64Bit() &&
2645 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002646 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002647 unsigned NumInRegs = 0;
2648 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2649 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002650 if (!VA.isRegLoc())
2651 continue;
2652 unsigned Reg = VA.getLocReg();
2653 switch (Reg) {
2654 default: break;
2655 case X86::EAX: case X86::EDX: case X86::ECX:
2656 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002657 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002658 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002659 }
2660 }
2661 }
Evan Chenga6bff982010-01-30 01:22:00 +00002662 }
Evan Chengb1712452010-01-27 06:25:16 +00002663
Evan Cheng86809cc2010-02-03 03:28:02 +00002664 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002665}
2666
Dan Gohman3df24e62008-09-03 23:12:08 +00002667FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002668X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2669 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002670}
2671
2672
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002673//===----------------------------------------------------------------------===//
2674// Other Lowering Hooks
2675//===----------------------------------------------------------------------===//
2676
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002677static bool MayFoldLoad(SDValue Op) {
2678 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2679}
2680
2681static bool MayFoldIntoStore(SDValue Op) {
2682 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2683}
2684
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002685static bool isTargetShuffle(unsigned Opcode) {
2686 switch(Opcode) {
2687 default: return false;
2688 case X86ISD::PSHUFD:
2689 case X86ISD::PSHUFHW:
2690 case X86ISD::PSHUFLW:
2691 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002692 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002693 case X86ISD::SHUFPS:
2694 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002695 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002696 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002697 case X86ISD::MOVLPS:
2698 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002699 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002700 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002701 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002702 case X86ISD::MOVSS:
2703 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002704 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002705 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002706 case X86ISD::VUNPCKLPSY:
2707 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002708 case X86ISD::PUNPCKLWD:
2709 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002710 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002711 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002712 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002713 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002714 case X86ISD::VUNPCKHPSY:
2715 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002716 case X86ISD::PUNPCKHWD:
2717 case X86ISD::PUNPCKHBW:
2718 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002719 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00002720 case X86ISD::VPERMIL:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002721 return true;
2722 }
2723 return false;
2724}
2725
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002726static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002727 SDValue V1, SelectionDAG &DAG) {
2728 switch(Opc) {
2729 default: llvm_unreachable("Unknown x86 shuffle node");
2730 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002731 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002732 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002733 return DAG.getNode(Opc, dl, VT, V1);
2734 }
2735
2736 return SDValue();
2737}
2738
2739static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002740 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002741 switch(Opc) {
2742 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002743 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002744 case X86ISD::PSHUFHW:
2745 case X86ISD::PSHUFLW:
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00002746 case X86ISD::VPERMIL:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002747 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2748 }
2749
2750 return SDValue();
2751}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002752
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002753static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2754 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2755 switch(Opc) {
2756 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002757 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002758 case X86ISD::SHUFPD:
2759 case X86ISD::SHUFPS:
2760 return DAG.getNode(Opc, dl, VT, V1, V2,
2761 DAG.getConstant(TargetMask, MVT::i8));
2762 }
2763 return SDValue();
2764}
2765
2766static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2767 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2768 switch(Opc) {
2769 default: llvm_unreachable("Unknown x86 shuffle node");
2770 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002771 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002772 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002773 case X86ISD::MOVLPS:
2774 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002775 case X86ISD::MOVSS:
2776 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002777 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002778 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002779 case X86ISD::VUNPCKLPSY:
2780 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002781 case X86ISD::PUNPCKLWD:
2782 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002783 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002784 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002785 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002786 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002787 case X86ISD::VUNPCKHPSY:
2788 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002789 case X86ISD::PUNPCKHWD:
2790 case X86ISD::PUNPCKHBW:
2791 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002792 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002793 return DAG.getNode(Opc, dl, VT, V1, V2);
2794 }
2795 return SDValue();
2796}
2797
Dan Gohmand858e902010-04-17 15:26:15 +00002798SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002799 MachineFunction &MF = DAG.getMachineFunction();
2800 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2801 int ReturnAddrIndex = FuncInfo->getRAIndex();
2802
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002803 if (ReturnAddrIndex == 0) {
2804 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002805 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002806 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002807 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002808 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002809 }
2810
Evan Cheng25ab6902006-09-08 06:48:29 +00002811 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002812}
2813
2814
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002815bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2816 bool hasSymbolicDisplacement) {
2817 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002818 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002819 return false;
2820
2821 // If we don't have a symbolic displacement - we don't have any extra
2822 // restrictions.
2823 if (!hasSymbolicDisplacement)
2824 return true;
2825
2826 // FIXME: Some tweaks might be needed for medium code model.
2827 if (M != CodeModel::Small && M != CodeModel::Kernel)
2828 return false;
2829
2830 // For small code model we assume that latest object is 16MB before end of 31
2831 // bits boundary. We may also accept pretty large negative constants knowing
2832 // that all objects are in the positive half of address space.
2833 if (M == CodeModel::Small && Offset < 16*1024*1024)
2834 return true;
2835
2836 // For kernel code model we know that all object resist in the negative half
2837 // of 32bits address space. We may not accept negative offsets, since they may
2838 // be just off and we may accept pretty large positive ones.
2839 if (M == CodeModel::Kernel && Offset > 0)
2840 return true;
2841
2842 return false;
2843}
2844
Evan Chengef41ff62011-06-23 17:54:54 +00002845/// isCalleePop - Determines whether the callee is required to pop its
2846/// own arguments. Callee pop is necessary to support tail calls.
2847bool X86::isCalleePop(CallingConv::ID CallingConv,
2848 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
2849 if (IsVarArg)
2850 return false;
2851
2852 switch (CallingConv) {
2853 default:
2854 return false;
2855 case CallingConv::X86_StdCall:
2856 return !is64Bit;
2857 case CallingConv::X86_FastCall:
2858 return !is64Bit;
2859 case CallingConv::X86_ThisCall:
2860 return !is64Bit;
2861 case CallingConv::Fast:
2862 return TailCallOpt;
2863 case CallingConv::GHC:
2864 return TailCallOpt;
2865 }
2866}
2867
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002868/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2869/// specific condition code, returning the condition code and the LHS/RHS of the
2870/// comparison to make.
2871static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2872 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002873 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002874 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2875 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2876 // X > -1 -> X == 0, jump !sign.
2877 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002878 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002879 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2880 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002881 return X86::COND_S;
Andrew Trickf6c39412011-03-23 23:11:02 +00002882 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002883 // X < 1 -> X <= 0
2884 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002885 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002886 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002887 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002888
Evan Chengd9558e02006-01-06 00:43:03 +00002889 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002890 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002891 case ISD::SETEQ: return X86::COND_E;
2892 case ISD::SETGT: return X86::COND_G;
2893 case ISD::SETGE: return X86::COND_GE;
2894 case ISD::SETLT: return X86::COND_L;
2895 case ISD::SETLE: return X86::COND_LE;
2896 case ISD::SETNE: return X86::COND_NE;
2897 case ISD::SETULT: return X86::COND_B;
2898 case ISD::SETUGT: return X86::COND_A;
2899 case ISD::SETULE: return X86::COND_BE;
2900 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002901 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002902 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002903
Chris Lattner4c78e022008-12-23 23:42:27 +00002904 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002905
Chris Lattner4c78e022008-12-23 23:42:27 +00002906 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00002907 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
2908 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00002909 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2910 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002911 }
2912
Chris Lattner4c78e022008-12-23 23:42:27 +00002913 switch (SetCCOpcode) {
2914 default: break;
2915 case ISD::SETOLT:
2916 case ISD::SETOLE:
2917 case ISD::SETUGT:
2918 case ISD::SETUGE:
2919 std::swap(LHS, RHS);
2920 break;
2921 }
2922
2923 // On a floating point condition, the flags are set as follows:
2924 // ZF PF CF op
2925 // 0 | 0 | 0 | X > Y
2926 // 0 | 0 | 1 | X < Y
2927 // 1 | 0 | 0 | X == Y
2928 // 1 | 1 | 1 | unordered
2929 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002930 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002931 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002932 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002933 case ISD::SETOLT: // flipped
2934 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002935 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002936 case ISD::SETOLE: // flipped
2937 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002938 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002939 case ISD::SETUGT: // flipped
2940 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002941 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002942 case ISD::SETUGE: // flipped
2943 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002944 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002945 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002946 case ISD::SETNE: return X86::COND_NE;
2947 case ISD::SETUO: return X86::COND_P;
2948 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00002949 case ISD::SETOEQ:
2950 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00002951 }
Evan Chengd9558e02006-01-06 00:43:03 +00002952}
2953
Evan Cheng4a460802006-01-11 00:33:36 +00002954/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2955/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002956/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002957static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002958 switch (X86CC) {
2959 default:
2960 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00002961 case X86::COND_B:
2962 case X86::COND_BE:
2963 case X86::COND_E:
2964 case X86::COND_P:
2965 case X86::COND_A:
2966 case X86::COND_AE:
2967 case X86::COND_NE:
2968 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00002969 return true;
2970 }
2971}
2972
Evan Chengeb2f9692009-10-27 19:56:55 +00002973/// isFPImmLegal - Returns true if the target can instruction select the
2974/// specified FP immediate natively. If false, the legalizer will
2975/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00002976bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00002977 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
2978 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
2979 return true;
2980 }
2981 return false;
2982}
2983
Nate Begeman9008ca62009-04-27 18:41:29 +00002984/// isUndefOrInRange - Return true if Val is undef or if its value falls within
2985/// the specified range (L, H].
2986static bool isUndefOrInRange(int Val, int Low, int Hi) {
2987 return (Val < 0) || (Val >= Low && Val < Hi);
2988}
2989
2990/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
2991/// specified value.
2992static bool isUndefOrEqual(int Val, int CmpVal) {
2993 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00002994 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00002995 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00002996}
2997
Nate Begeman9008ca62009-04-27 18:41:29 +00002998/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
2999/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3000/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00003001static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003002 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003003 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003004 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003005 return (Mask[0] < 2 && Mask[1] < 2);
3006 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003007}
3008
Nate Begeman9008ca62009-04-27 18:41:29 +00003009bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003010 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003011 N->getMask(M);
3012 return ::isPSHUFDMask(M, N->getValueType(0));
3013}
Evan Cheng0188ecb2006-03-22 18:59:22 +00003014
Nate Begeman9008ca62009-04-27 18:41:29 +00003015/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3016/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00003017static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003018 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00003019 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003020
Nate Begeman9008ca62009-04-27 18:41:29 +00003021 // Lower quadword copied in order or undef.
3022 for (int i = 0; i != 4; ++i)
3023 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00003024 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003025
Evan Cheng506d3df2006-03-29 23:07:14 +00003026 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003027 for (int i = 4; i != 8; ++i)
3028 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00003029 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003030
Evan Cheng506d3df2006-03-29 23:07:14 +00003031 return true;
3032}
3033
Nate Begeman9008ca62009-04-27 18:41:29 +00003034bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003035 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003036 N->getMask(M);
3037 return ::isPSHUFHWMask(M, N->getValueType(0));
3038}
Evan Cheng506d3df2006-03-29 23:07:14 +00003039
Nate Begeman9008ca62009-04-27 18:41:29 +00003040/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3041/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00003042static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003043 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00003044 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003045
Rafael Espindola15684b22009-04-24 12:40:33 +00003046 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00003047 for (int i = 4; i != 8; ++i)
3048 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00003049 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003050
Rafael Espindola15684b22009-04-24 12:40:33 +00003051 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003052 for (int i = 0; i != 4; ++i)
3053 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00003054 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003055
Rafael Espindola15684b22009-04-24 12:40:33 +00003056 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003057}
3058
Nate Begeman9008ca62009-04-27 18:41:29 +00003059bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003060 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003061 N->getMask(M);
3062 return ::isPSHUFLWMask(M, N->getValueType(0));
3063}
3064
Nate Begemana09008b2009-10-19 02:17:23 +00003065/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3066/// is suitable for input to PALIGNR.
3067static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
3068 bool hasSSSE3) {
3069 int i, e = VT.getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00003070
Nate Begemana09008b2009-10-19 02:17:23 +00003071 // Do not handle v2i64 / v2f64 shuffles with palignr.
3072 if (e < 4 || !hasSSSE3)
3073 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003074
Nate Begemana09008b2009-10-19 02:17:23 +00003075 for (i = 0; i != e; ++i)
3076 if (Mask[i] >= 0)
3077 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003078
Nate Begemana09008b2009-10-19 02:17:23 +00003079 // All undef, not a palignr.
3080 if (i == e)
3081 return false;
3082
Eli Friedman63f8dde2011-07-25 21:36:45 +00003083 // Make sure we're shifting in the right direction.
3084 if (Mask[i] <= i)
3085 return false;
Nate Begemana09008b2009-10-19 02:17:23 +00003086
3087 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003088
Nate Begemana09008b2009-10-19 02:17:23 +00003089 // Check the rest of the elements to see if they are consecutive.
3090 for (++i; i != e; ++i) {
3091 int m = Mask[i];
Eli Friedman63f8dde2011-07-25 21:36:45 +00003092 if (m >= 0 && m != s+i)
Nate Begemana09008b2009-10-19 02:17:23 +00003093 return false;
3094 }
3095 return true;
3096}
3097
3098bool X86::isPALIGNRMask(ShuffleVectorSDNode *N) {
3099 SmallVector<int, 8> M;
3100 N->getMask(M);
3101 return ::isPALIGNRMask(M, N->getValueType(0), true);
3102}
3103
Evan Cheng14aed5e2006-03-24 01:18:28 +00003104/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3105/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersone50ed302009-08-10 22:56:29 +00003106static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003107 int NumElems = VT.getVectorNumElements();
3108 if (NumElems != 2 && NumElems != 4)
3109 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003110
Nate Begeman9008ca62009-04-27 18:41:29 +00003111 int Half = NumElems / 2;
3112 for (int i = 0; i < Half; ++i)
3113 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003114 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003115 for (int i = Half; i < NumElems; ++i)
3116 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003117 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003118
Evan Cheng14aed5e2006-03-24 01:18:28 +00003119 return true;
3120}
3121
Nate Begeman9008ca62009-04-27 18:41:29 +00003122bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
3123 SmallVector<int, 8> M;
3124 N->getMask(M);
3125 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003126}
3127
Evan Cheng213d2cf2007-05-17 18:45:50 +00003128/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00003129/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
3130/// half elements to come from vector 1 (which would equal the dest.) and
3131/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00003132static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003133 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003134
3135 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00003136 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003137
Nate Begeman9008ca62009-04-27 18:41:29 +00003138 int Half = NumElems / 2;
3139 for (int i = 0; i < Half; ++i)
3140 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003141 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003142 for (int i = Half; i < NumElems; ++i)
3143 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003144 return false;
3145 return true;
3146}
3147
Nate Begeman9008ca62009-04-27 18:41:29 +00003148static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
3149 SmallVector<int, 8> M;
3150 N->getMask(M);
3151 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003152}
3153
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003154/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3155/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003156bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
3157 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003158 return false;
3159
Evan Cheng2064a2b2006-03-28 06:50:32 +00003160 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003161 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3162 isUndefOrEqual(N->getMaskElt(1), 7) &&
3163 isUndefOrEqual(N->getMaskElt(2), 2) &&
3164 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003165}
3166
Nate Begeman0b10b912009-11-07 23:17:15 +00003167/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3168/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3169/// <2, 3, 2, 3>
3170bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
3171 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00003172
Nate Begeman0b10b912009-11-07 23:17:15 +00003173 if (NumElems != 4)
3174 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003175
Nate Begeman0b10b912009-11-07 23:17:15 +00003176 return isUndefOrEqual(N->getMaskElt(0), 2) &&
3177 isUndefOrEqual(N->getMaskElt(1), 3) &&
3178 isUndefOrEqual(N->getMaskElt(2), 2) &&
3179 isUndefOrEqual(N->getMaskElt(3), 3);
3180}
3181
Evan Cheng5ced1d82006-04-06 23:23:56 +00003182/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3183/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003184bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3185 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003186
Evan Cheng5ced1d82006-04-06 23:23:56 +00003187 if (NumElems != 2 && NumElems != 4)
3188 return false;
3189
Evan Chengc5cdff22006-04-07 21:53:05 +00003190 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003191 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003192 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003193
Evan Chengc5cdff22006-04-07 21:53:05 +00003194 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003195 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003196 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003197
3198 return true;
3199}
3200
Nate Begeman0b10b912009-11-07 23:17:15 +00003201/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3202/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3203bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003204 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003205
David Greenea20244d2011-03-02 17:23:43 +00003206 if ((NumElems != 2 && NumElems != 4)
3207 || N->getValueType(0).getSizeInBits() > 128)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003208 return false;
3209
Evan Chengc5cdff22006-04-07 21:53:05 +00003210 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003211 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003212 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003213
Nate Begeman9008ca62009-04-27 18:41:29 +00003214 for (unsigned i = 0; i < NumElems/2; ++i)
3215 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003216 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003217
3218 return true;
3219}
3220
Evan Cheng0038e592006-03-28 00:39:58 +00003221/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3222/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003223static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003224 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003225 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003226
3227 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3228 "Unsupported vector type for unpckh");
3229
3230 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng0038e592006-03-28 00:39:58 +00003231 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003232
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003233 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3234 // independently on 128-bit lanes.
3235 unsigned NumLanes = VT.getSizeInBits()/128;
3236 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003237
3238 unsigned Start = 0;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003239 unsigned End = NumLaneElts;
3240 for (unsigned s = 0; s < NumLanes; ++s) {
3241 for (unsigned i = Start, j = s * NumLaneElts;
David Greenea20244d2011-03-02 17:23:43 +00003242 i != End;
3243 i += 2, ++j) {
3244 int BitI = Mask[i];
3245 int BitI1 = Mask[i+1];
3246 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003247 return false;
David Greenea20244d2011-03-02 17:23:43 +00003248 if (V2IsSplat) {
3249 if (!isUndefOrEqual(BitI1, NumElts))
3250 return false;
3251 } else {
3252 if (!isUndefOrEqual(BitI1, j + NumElts))
3253 return false;
3254 }
Evan Cheng39623da2006-04-20 08:58:49 +00003255 }
David Greenea20244d2011-03-02 17:23:43 +00003256 // Process the next 128 bits.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003257 Start += NumLaneElts;
3258 End += NumLaneElts;
Evan Cheng0038e592006-03-28 00:39:58 +00003259 }
David Greenea20244d2011-03-02 17:23:43 +00003260
Evan Cheng0038e592006-03-28 00:39:58 +00003261 return true;
3262}
3263
Nate Begeman9008ca62009-04-27 18:41:29 +00003264bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3265 SmallVector<int, 8> M;
3266 N->getMask(M);
3267 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003268}
3269
Evan Cheng4fcb9222006-03-28 02:43:26 +00003270/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3271/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003272static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003273 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003274 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003275
3276 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3277 "Unsupported vector type for unpckh");
3278
3279 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003280 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003281
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003282 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3283 // independently on 128-bit lanes.
3284 unsigned NumLanes = VT.getSizeInBits()/128;
3285 unsigned NumLaneElts = NumElts/NumLanes;
3286
3287 unsigned Start = 0;
3288 unsigned End = NumLaneElts;
3289 for (unsigned l = 0; l != NumLanes; ++l) {
3290 for (unsigned i = Start, j = (l*NumLaneElts)+NumLaneElts/2;
3291 i != End; i += 2, ++j) {
3292 int BitI = Mask[i];
3293 int BitI1 = Mask[i+1];
3294 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003295 return false;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003296 if (V2IsSplat) {
3297 if (isUndefOrEqual(BitI1, NumElts))
3298 return false;
3299 } else {
3300 if (!isUndefOrEqual(BitI1, j+NumElts))
3301 return false;
3302 }
Evan Cheng39623da2006-04-20 08:58:49 +00003303 }
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003304 // Process the next 128 bits.
3305 Start += NumLaneElts;
3306 End += NumLaneElts;
Evan Cheng4fcb9222006-03-28 02:43:26 +00003307 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003308 return true;
3309}
3310
Nate Begeman9008ca62009-04-27 18:41:29 +00003311bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3312 SmallVector<int, 8> M;
3313 N->getMask(M);
3314 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003315}
3316
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003317/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3318/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3319/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003320static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003321 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003322 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003323 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003324
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003325 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3326 // independently on 128-bit lanes.
3327 unsigned NumLanes = VT.getSizeInBits() / 128;
3328 unsigned NumLaneElts = NumElems / NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003329
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003330 for (unsigned s = 0; s < NumLanes; ++s) {
3331 for (unsigned i = s * NumLaneElts, j = s * NumLaneElts;
3332 i != NumLaneElts * (s + 1);
David Greenea20244d2011-03-02 17:23:43 +00003333 i += 2, ++j) {
3334 int BitI = Mask[i];
3335 int BitI1 = Mask[i+1];
3336
3337 if (!isUndefOrEqual(BitI, j))
3338 return false;
3339 if (!isUndefOrEqual(BitI1, j))
3340 return false;
3341 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003342 }
David Greenea20244d2011-03-02 17:23:43 +00003343
Rafael Espindola15684b22009-04-24 12:40:33 +00003344 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003345}
3346
Nate Begeman9008ca62009-04-27 18:41:29 +00003347bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3348 SmallVector<int, 8> M;
3349 N->getMask(M);
3350 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3351}
3352
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003353/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3354/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3355/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003356static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003357 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003358 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3359 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003360
Nate Begeman9008ca62009-04-27 18:41:29 +00003361 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3362 int BitI = Mask[i];
3363 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003364 if (!isUndefOrEqual(BitI, j))
3365 return false;
3366 if (!isUndefOrEqual(BitI1, j))
3367 return false;
3368 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003369 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003370}
3371
Nate Begeman9008ca62009-04-27 18:41:29 +00003372bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3373 SmallVector<int, 8> M;
3374 N->getMask(M);
3375 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3376}
3377
Evan Cheng017dcc62006-04-21 01:05:10 +00003378/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3379/// specifies a shuffle of elements that is suitable for input to MOVSS,
3380/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003381static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003382 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003383 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003384
3385 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003386
Nate Begeman9008ca62009-04-27 18:41:29 +00003387 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003388 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003389
Nate Begeman9008ca62009-04-27 18:41:29 +00003390 for (int i = 1; i < NumElts; ++i)
3391 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003392 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003393
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003394 return true;
3395}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003396
Nate Begeman9008ca62009-04-27 18:41:29 +00003397bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3398 SmallVector<int, 8> M;
3399 N->getMask(M);
3400 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003401}
3402
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003403/// isVPERMILMask - Return true if the specified VECTOR_SHUFFLE operand
3404/// specifies a shuffle of elements that is suitable for input to VPERMIL*.
3405static bool isVPERMILMask(const SmallVectorImpl<int> &Mask, EVT VT) {
3406 unsigned NumElts = VT.getVectorNumElements();
3407 unsigned NumLanes = VT.getSizeInBits()/128;
3408
3409 // Match any permutation of 128-bit vector with 32/64-bit types
3410 if (NumLanes == 1) {
3411 if (NumElts == 4 || NumElts == 2)
3412 return true;
3413 return false;
3414 }
3415
3416 // Only match 256-bit with 32/64-bit types
3417 if (NumElts != 8 && NumElts != 4)
3418 return false;
3419
3420 // The mask on the high lane should be the same as the low. Actually,
3421 // they can differ if any of the corresponding index in a lane is undef.
3422 int LaneSize = NumElts/NumLanes;
3423 for (int i = 0; i < LaneSize; ++i) {
3424 int HighElt = i+LaneSize;
3425 if (Mask[i] < 0 || Mask[HighElt] < 0)
3426 continue;
3427
3428 if (Mask[HighElt]-Mask[i] != LaneSize)
3429 return false;
3430 }
3431
3432 return true;
3433}
3434
3435/// getShuffleVPERMILImmediateediate - Return the appropriate immediate to shuffle
3436/// the specified VECTOR_MASK mask with VPERMIL* instructions.
3437static unsigned getShuffleVPERMILImmediate(SDNode *N) {
3438 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3439 EVT VT = SVOp->getValueType(0);
3440
3441 int NumElts = VT.getVectorNumElements();
3442 int NumLanes = VT.getSizeInBits()/128;
3443
3444 unsigned Mask = 0;
3445 for (int i = 0; i < NumElts/NumLanes /* lane size */; ++i)
3446 Mask |= SVOp->getMaskElt(i) << (i*2);
3447
3448 return Mask;
3449}
3450
Evan Cheng017dcc62006-04-21 01:05:10 +00003451/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3452/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003453/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003454static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003455 bool V2IsSplat = false, bool V2IsUndef = false) {
3456 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003457 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003458 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003459
Nate Begeman9008ca62009-04-27 18:41:29 +00003460 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003461 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003462
Nate Begeman9008ca62009-04-27 18:41:29 +00003463 for (int i = 1; i < NumOps; ++i)
3464 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3465 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3466 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003467 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003468
Evan Cheng39623da2006-04-20 08:58:49 +00003469 return true;
3470}
3471
Nate Begeman9008ca62009-04-27 18:41:29 +00003472static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003473 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003474 SmallVector<int, 8> M;
3475 N->getMask(M);
3476 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003477}
3478
Evan Chengd9539472006-04-14 21:59:03 +00003479/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3480/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003481/// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
3482bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N,
3483 const X86Subtarget *Subtarget) {
3484 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003485 return false;
3486
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003487 // The second vector must be undef
3488 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3489 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003490
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003491 EVT VT = N->getValueType(0);
3492 unsigned NumElems = VT.getVectorNumElements();
3493
3494 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3495 (VT.getSizeInBits() == 256 && NumElems != 8))
3496 return false;
3497
3498 // "i+1" is the value the indexed mask element must have
3499 for (unsigned i = 0; i < NumElems; i += 2)
3500 if (!isUndefOrEqual(N->getMaskElt(i), i+1) ||
3501 !isUndefOrEqual(N->getMaskElt(i+1), i+1))
Nate Begeman9008ca62009-04-27 18:41:29 +00003502 return false;
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003503
3504 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003505}
3506
3507/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3508/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003509/// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
3510bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N,
3511 const X86Subtarget *Subtarget) {
3512 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003513 return false;
3514
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003515 // The second vector must be undef
3516 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3517 return false;
3518
3519 EVT VT = N->getValueType(0);
3520 unsigned NumElems = VT.getVectorNumElements();
3521
3522 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3523 (VT.getSizeInBits() == 256 && NumElems != 8))
3524 return false;
3525
3526 // "i" is the value the indexed mask element must have
3527 for (unsigned i = 0; i < NumElems; i += 2)
3528 if (!isUndefOrEqual(N->getMaskElt(i), i) ||
3529 !isUndefOrEqual(N->getMaskElt(i+1), i))
Nate Begeman9008ca62009-04-27 18:41:29 +00003530 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003531
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003532 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003533}
3534
Evan Cheng0b457f02008-09-25 20:50:48 +00003535/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3536/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003537bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3538 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopherfd179292009-08-27 18:07:15 +00003539
Nate Begeman9008ca62009-04-27 18:41:29 +00003540 for (int i = 0; i < e; ++i)
3541 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003542 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003543 for (int i = 0; i < e; ++i)
3544 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003545 return false;
3546 return true;
3547}
3548
David Greenec38a03e2011-02-03 15:50:00 +00003549/// isVEXTRACTF128Index - Return true if the specified
3550/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
3551/// suitable for input to VEXTRACTF128.
3552bool X86::isVEXTRACTF128Index(SDNode *N) {
3553 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3554 return false;
3555
3556 // The index should be aligned on a 128-bit boundary.
3557 uint64_t Index =
3558 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3559
3560 unsigned VL = N->getValueType(0).getVectorNumElements();
3561 unsigned VBits = N->getValueType(0).getSizeInBits();
3562 unsigned ElSize = VBits / VL;
3563 bool Result = (Index * ElSize) % 128 == 0;
3564
3565 return Result;
3566}
3567
David Greeneccacdc12011-02-04 16:08:29 +00003568/// isVINSERTF128Index - Return true if the specified INSERT_SUBVECTOR
3569/// operand specifies a subvector insert that is suitable for input to
3570/// VINSERTF128.
3571bool X86::isVINSERTF128Index(SDNode *N) {
3572 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3573 return false;
3574
3575 // The index should be aligned on a 128-bit boundary.
3576 uint64_t Index =
3577 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
3578
3579 unsigned VL = N->getValueType(0).getVectorNumElements();
3580 unsigned VBits = N->getValueType(0).getSizeInBits();
3581 unsigned ElSize = VBits / VL;
3582 bool Result = (Index * ElSize) % 128 == 0;
3583
3584 return Result;
3585}
3586
Evan Cheng63d33002006-03-22 08:01:21 +00003587/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003588/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003589unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003590 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3591 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3592
Evan Chengb9df0ca2006-03-22 02:53:00 +00003593 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3594 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003595 for (int i = 0; i < NumOperands; ++i) {
3596 int Val = SVOp->getMaskElt(NumOperands-i-1);
3597 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003598 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003599 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003600 if (i != NumOperands - 1)
3601 Mask <<= Shift;
3602 }
Evan Cheng63d33002006-03-22 08:01:21 +00003603 return Mask;
3604}
3605
Evan Cheng506d3df2006-03-29 23:07:14 +00003606/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003607/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003608unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003609 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003610 unsigned Mask = 0;
3611 // 8 nodes, but we only care about the last 4.
3612 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003613 int Val = SVOp->getMaskElt(i);
3614 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003615 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003616 if (i != 4)
3617 Mask <<= 2;
3618 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003619 return Mask;
3620}
3621
3622/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003623/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003624unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003625 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003626 unsigned Mask = 0;
3627 // 8 nodes, but we only care about the first 4.
3628 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003629 int Val = SVOp->getMaskElt(i);
3630 if (Val >= 0)
3631 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00003632 if (i != 0)
3633 Mask <<= 2;
3634 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003635 return Mask;
3636}
3637
Nate Begemana09008b2009-10-19 02:17:23 +00003638/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3639/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3640unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3641 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3642 EVT VVT = N->getValueType(0);
3643 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3644 int Val = 0;
3645
3646 unsigned i, e;
3647 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3648 Val = SVOp->getMaskElt(i);
3649 if (Val >= 0)
3650 break;
3651 }
Eli Friedman63f8dde2011-07-25 21:36:45 +00003652 assert(Val - i > 0 && "PALIGNR imm should be positive");
Nate Begemana09008b2009-10-19 02:17:23 +00003653 return (Val - i) * EltSize;
3654}
3655
David Greenec38a03e2011-02-03 15:50:00 +00003656/// getExtractVEXTRACTF128Immediate - Return the appropriate immediate
3657/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
3658/// instructions.
3659unsigned X86::getExtractVEXTRACTF128Immediate(SDNode *N) {
3660 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3661 llvm_unreachable("Illegal extract subvector for VEXTRACTF128");
3662
3663 uint64_t Index =
3664 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3665
3666 EVT VecVT = N->getOperand(0).getValueType();
3667 EVT ElVT = VecVT.getVectorElementType();
3668
3669 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00003670 return Index / NumElemsPerChunk;
3671}
3672
David Greeneccacdc12011-02-04 16:08:29 +00003673/// getInsertVINSERTF128Immediate - Return the appropriate immediate
3674/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
3675/// instructions.
3676unsigned X86::getInsertVINSERTF128Immediate(SDNode *N) {
3677 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3678 llvm_unreachable("Illegal insert subvector for VINSERTF128");
3679
3680 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00003681 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00003682
3683 EVT VecVT = N->getValueType(0);
3684 EVT ElVT = VecVT.getVectorElementType();
3685
3686 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00003687 return Index / NumElemsPerChunk;
3688}
3689
Evan Cheng37b73872009-07-30 08:33:02 +00003690/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3691/// constant +0.0.
3692bool X86::isZeroNode(SDValue Elt) {
3693 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00003694 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00003695 (isa<ConstantFPSDNode>(Elt) &&
3696 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3697}
3698
Nate Begeman9008ca62009-04-27 18:41:29 +00003699/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3700/// their permute mask.
3701static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3702 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003703 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003704 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00003705 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00003706
Nate Begeman5a5ca152009-04-29 05:20:52 +00003707 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003708 int idx = SVOp->getMaskElt(i);
3709 if (idx < 0)
3710 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003711 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003712 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003713 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003714 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003715 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003716 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3717 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003718}
3719
Evan Cheng779ccea2007-12-07 21:30:01 +00003720/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3721/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00003722static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00003723 unsigned NumElems = VT.getVectorNumElements();
3724 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003725 int idx = Mask[i];
3726 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003727 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003728 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003729 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003730 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003731 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003732 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003733}
3734
Evan Cheng533a0aa2006-04-19 20:35:22 +00003735/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3736/// match movhlps. The lower half elements should come from upper half of
3737/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003738/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00003739static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
3740 if (Op->getValueType(0).getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00003741 return false;
3742 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003743 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003744 return false;
3745 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003746 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003747 return false;
3748 return true;
3749}
3750
Evan Cheng5ced1d82006-04-06 23:23:56 +00003751/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00003752/// is promoted to a vector. It also returns the LoadSDNode by reference if
3753/// required.
3754static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00003755 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3756 return false;
3757 N = N->getOperand(0).getNode();
3758 if (!ISD::isNON_EXTLoad(N))
3759 return false;
3760 if (LD)
3761 *LD = cast<LoadSDNode>(N);
3762 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003763}
3764
Evan Cheng533a0aa2006-04-19 20:35:22 +00003765/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3766/// match movlp{s|d}. The lower half elements should come from lower half of
3767/// V1 (and in order), and the upper half elements should come from the upper
3768/// half of V2 (and in order). And since V1 will become the source of the
3769/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003770static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3771 ShuffleVectorSDNode *Op) {
Evan Cheng466685d2006-10-09 20:57:25 +00003772 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003773 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00003774 // Is V2 is a vector load, don't do this transformation. We will try to use
3775 // load folding shufps op.
3776 if (ISD::isNON_EXTLoad(V2))
3777 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003778
Nate Begeman5a5ca152009-04-29 05:20:52 +00003779 unsigned NumElems = Op->getValueType(0).getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003780
Evan Cheng533a0aa2006-04-19 20:35:22 +00003781 if (NumElems != 2 && NumElems != 4)
3782 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003783 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003784 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003785 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003786 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003787 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003788 return false;
3789 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003790}
3791
Evan Cheng39623da2006-04-20 08:58:49 +00003792/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
3793/// all the same.
3794static bool isSplatVector(SDNode *N) {
3795 if (N->getOpcode() != ISD::BUILD_VECTOR)
3796 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003797
Dan Gohman475871a2008-07-27 21:46:04 +00003798 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00003799 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
3800 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003801 return false;
3802 return true;
3803}
3804
Evan Cheng213d2cf2007-05-17 18:45:50 +00003805/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00003806/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00003807/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00003808static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00003809 SDValue V1 = N->getOperand(0);
3810 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003811 unsigned NumElems = N->getValueType(0).getVectorNumElements();
3812 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003813 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003814 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003815 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00003816 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
3817 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003818 if (Opc != ISD::BUILD_VECTOR ||
3819 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00003820 return false;
3821 } else if (Idx >= 0) {
3822 unsigned Opc = V1.getOpcode();
3823 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
3824 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003825 if (Opc != ISD::BUILD_VECTOR ||
3826 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00003827 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00003828 }
3829 }
3830 return true;
3831}
3832
3833/// getZeroVector - Returns a vector of specified type with all zero elements.
3834///
Owen Andersone50ed302009-08-10 22:56:29 +00003835static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003836 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003837 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003838
Dale Johannesen0488fb62010-09-30 23:57:10 +00003839 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003840 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00003841 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003842 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003843 if (HasSSE2) { // SSE2
3844 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3845 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
3846 } else { // SSE1
3847 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
3848 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
3849 }
3850 } else if (VT.getSizeInBits() == 256) { // AVX
3851 // 256-bit logic and arithmetic instructions in AVX are
3852 // all floating-point, no support for integer ops. Default
3853 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00003854 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003855 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
3856 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00003857 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003858 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00003859}
3860
Chris Lattner8a594482007-11-25 00:24:49 +00003861/// getOnesVector - Returns a vector of specified type with all bits set.
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00003862/// Always build ones vectors as <4 x i32>. For 256-bit types, use two
3863/// <4 x i32> inserted in a <8 x i32> appropriately. Then bitcast to their
3864/// original type, ensuring they get CSE'd.
Owen Andersone50ed302009-08-10 22:56:29 +00003865static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003866 assert(VT.isVector() && "Expected a vector type");
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00003867 assert((VT.is128BitVector() || VT.is256BitVector())
3868 && "Expected a 128-bit or 256-bit vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003869
Owen Anderson825b72b2009-08-11 20:47:22 +00003870 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00003871 SDValue Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
3872 Cst, Cst, Cst, Cst);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00003873
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00003874 if (VT.is256BitVector()) {
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00003875 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, MVT::v8i32),
3876 Vec, DAG.getConstant(0, MVT::i32), DAG, dl);
3877 Vec = Insert128BitVector(InsV, Vec,
3878 DAG.getConstant(4 /* NumElems/2 */, MVT::i32), DAG, dl);
3879 }
3880
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003881 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00003882}
3883
Evan Cheng39623da2006-04-20 08:58:49 +00003884/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
3885/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00003886static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003887 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003888 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003889
Evan Cheng39623da2006-04-20 08:58:49 +00003890 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003891 SmallVector<int, 8> MaskVec;
3892 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00003893
Nate Begeman5a5ca152009-04-29 05:20:52 +00003894 for (unsigned i = 0; i != NumElems; ++i) {
3895 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003896 MaskVec[i] = NumElems;
3897 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00003898 }
Evan Cheng39623da2006-04-20 08:58:49 +00003899 }
Evan Cheng39623da2006-04-20 08:58:49 +00003900 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00003901 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
3902 SVOp->getOperand(1), &MaskVec[0]);
3903 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00003904}
3905
Evan Cheng017dcc62006-04-21 01:05:10 +00003906/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
3907/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00003908static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003909 SDValue V2) {
3910 unsigned NumElems = VT.getVectorNumElements();
3911 SmallVector<int, 8> Mask;
3912 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00003913 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003914 Mask.push_back(i);
3915 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00003916}
3917
Nate Begeman9008ca62009-04-27 18:41:29 +00003918/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003919static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003920 SDValue V2) {
3921 unsigned NumElems = VT.getVectorNumElements();
3922 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00003923 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003924 Mask.push_back(i);
3925 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00003926 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003927 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00003928}
3929
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00003930/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003931static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003932 SDValue V2) {
3933 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00003934 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00003935 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00003936 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003937 Mask.push_back(i + Half);
3938 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00003939 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003940 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00003941}
3942
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00003943// PromoteSplatv8v16 - All i16 and i8 vector types can't be used directly by
3944// a generic shuffle instruction because the target has no such instructions.
3945// Generate shuffles which repeat i16 and i8 several times until they can be
3946// represented by v4f32 and then be manipulated by target suported shuffles.
3947static SDValue PromoteSplatv8v16(SDValue V, SelectionDAG &DAG, int &EltNo) {
3948 EVT VT = V.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00003949 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00003950 DebugLoc dl = V.getDebugLoc();
Rafael Espindola15684b22009-04-24 12:40:33 +00003951
Nate Begeman9008ca62009-04-27 18:41:29 +00003952 while (NumElems > 4) {
3953 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00003954 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00003955 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00003956 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00003957 EltNo -= NumElems/2;
3958 }
3959 NumElems >>= 1;
3960 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00003961 return V;
3962}
Eric Christopherfd179292009-08-27 18:07:15 +00003963
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00003964/// getLegalSplat - Generate a legal splat with supported x86 shuffles
3965static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
3966 EVT VT = V.getValueType();
3967 DebugLoc dl = V.getDebugLoc();
3968 assert((VT.getSizeInBits() == 128 || VT.getSizeInBits() == 256)
3969 && "Vector size not supported");
3970
3971 bool Is128 = VT.getSizeInBits() == 128;
3972 EVT NVT = Is128 ? MVT::v4f32 : MVT::v8f32;
3973 V = DAG.getNode(ISD::BITCAST, dl, NVT, V);
3974
3975 if (Is128) {
3976 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
3977 V = DAG.getVectorShuffle(NVT, dl, V, DAG.getUNDEF(NVT), &SplatMask[0]);
3978 } else {
3979 // The second half of indicies refer to the higher part, which is a
3980 // duplication of the lower one. This makes this shuffle a perfect match
3981 // for the VPERM instruction.
3982 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
3983 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
3984 V = DAG.getVectorShuffle(NVT, dl, V, DAG.getUNDEF(NVT), &SplatMask[0]);
3985 }
3986
3987 return DAG.getNode(ISD::BITCAST, dl, VT, V);
3988}
3989
Bruno Cardoso Lopes6a32adc2011-07-25 23:05:25 +00003990/// PromoteVectorToScalarSplat - Since there's no native support for
3991/// scalar_to_vector for 256-bit AVX, a 128-bit scalar_to_vector +
3992/// INSERT_SUBVECTOR is generated. Recognize this idiom and do the
3993/// shuffle before the insertion, this yields less instructions in the end.
3994static SDValue PromoteVectorToScalarSplat(ShuffleVectorSDNode *SV,
3995 SelectionDAG &DAG) {
3996 EVT SrcVT = SV->getValueType(0);
3997 SDValue V1 = SV->getOperand(0);
3998 DebugLoc dl = SV->getDebugLoc();
3999 int NumElems = SrcVT.getVectorNumElements();
4000
4001 assert(SrcVT.is256BitVector() && "unknown howto handle vector type");
4002
4003 SmallVector<int, 4> Mask;
4004 for (int i = 0; i < NumElems/2; ++i)
4005 Mask.push_back(SV->getMaskElt(i));
4006
4007 EVT SVT = EVT::getVectorVT(*DAG.getContext(), SrcVT.getVectorElementType(),
4008 NumElems/2);
4009 SDValue SV1 = DAG.getVectorShuffle(SVT, dl, V1.getOperand(1),
4010 DAG.getUNDEF(SVT), &Mask[0]);
4011 SDValue InsV = Insert128BitVector(DAG.getUNDEF(SrcVT), SV1,
4012 DAG.getConstant(0, MVT::i32), DAG, dl);
4013
4014 return Insert128BitVector(InsV, SV1,
4015 DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4016}
4017
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004018/// PromoteSplat - Promote a splat of v4i32, v8i16 or v16i8 to v4f32 and
4019/// v8i32, v16i16 or v32i8 to v8f32.
4020static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4021 EVT SrcVT = SV->getValueType(0);
4022 SDValue V1 = SV->getOperand(0);
4023 DebugLoc dl = SV->getDebugLoc();
4024
4025 int EltNo = SV->getSplatIndex();
4026 int NumElems = SrcVT.getVectorNumElements();
4027 unsigned Size = SrcVT.getSizeInBits();
4028
4029 // Extract the 128-bit part containing the splat element and update
4030 // the splat element index when it refers to the higher register.
4031 if (Size == 256) {
4032 unsigned Idx = (EltNo > NumElems/2) ? NumElems/2 : 0;
4033 V1 = Extract128BitVector(V1, DAG.getConstant(Idx, MVT::i32), DAG, dl);
4034 if (Idx > 0)
4035 EltNo -= NumElems/2;
4036 }
4037
4038 // Make this 128-bit vector duplicate i8 and i16 elements
4039 if (NumElems > 4)
4040 V1 = PromoteSplatv8v16(V1, DAG, EltNo);
4041
4042 // Recreate the 256-bit vector and place the same 128-bit vector
4043 // into the low and high part. This is necessary because we want
4044 // to use VPERM to shuffle the v8f32 vector, and VPERM only shuffles
4045 // inside each separate v4f32 lane.
4046 if (Size == 256) {
4047 SDValue InsV = Insert128BitVector(DAG.getUNDEF(SrcVT), V1,
4048 DAG.getConstant(0, MVT::i32), DAG, dl);
4049 V1 = Insert128BitVector(InsV, V1,
4050 DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4051 }
4052
4053 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004054}
4055
Evan Chengba05f722006-04-21 23:03:30 +00004056/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004057/// vector of zero or undef vector. This produces a shuffle where the low
4058/// element of V2 is swizzled into the zero/undef vector, landing at element
4059/// 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 +00004060static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00004061 bool isZero, bool HasSSE2,
4062 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004063 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00004064 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00004065 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
4066 unsigned NumElems = VT.getVectorNumElements();
4067 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004068 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004069 // If this is the insertion idx, put the low elt of V2 here.
4070 MaskVec.push_back(i == Idx ? NumElems : i);
4071 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004072}
4073
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004074/// getShuffleScalarElt - Returns the scalar element that will make up the ith
4075/// element of the result of the vector shuffle.
Benjamin Kramer050db522011-03-26 12:38:19 +00004076static SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
4077 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004078 if (Depth == 6)
4079 return SDValue(); // Limit search depth.
4080
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004081 SDValue V = SDValue(N, 0);
4082 EVT VT = V.getValueType();
4083 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004084
4085 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4086 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4087 Index = SV->getMaskElt(Index);
4088
4089 if (Index < 0)
4090 return DAG.getUNDEF(VT.getVectorElementType());
4091
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004092 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004093 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004094 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00004095 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004096
4097 // Recurse into target specific vector shuffles to find scalars.
4098 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004099 int NumElems = VT.getVectorNumElements();
4100 SmallVector<unsigned, 16> ShuffleMask;
4101 SDValue ImmN;
4102
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004103 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004104 case X86ISD::SHUFPS:
4105 case X86ISD::SHUFPD:
4106 ImmN = N->getOperand(N->getNumOperands()-1);
4107 DecodeSHUFPSMask(NumElems,
4108 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4109 ShuffleMask);
4110 break;
4111 case X86ISD::PUNPCKHBW:
4112 case X86ISD::PUNPCKHWD:
4113 case X86ISD::PUNPCKHDQ:
4114 case X86ISD::PUNPCKHQDQ:
4115 DecodePUNPCKHMask(NumElems, ShuffleMask);
4116 break;
4117 case X86ISD::UNPCKHPS:
4118 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00004119 case X86ISD::VUNPCKHPSY:
4120 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004121 DecodeUNPCKHPMask(NumElems, ShuffleMask);
4122 break;
4123 case X86ISD::PUNPCKLBW:
4124 case X86ISD::PUNPCKLWD:
4125 case X86ISD::PUNPCKLDQ:
4126 case X86ISD::PUNPCKLQDQ:
David Greenec4db4e52011-02-28 19:06:56 +00004127 DecodePUNPCKLMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004128 break;
4129 case X86ISD::UNPCKLPS:
4130 case X86ISD::UNPCKLPD:
David Greenec4db4e52011-02-28 19:06:56 +00004131 case X86ISD::VUNPCKLPSY:
4132 case X86ISD::VUNPCKLPDY:
4133 DecodeUNPCKLPMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004134 break;
4135 case X86ISD::MOVHLPS:
4136 DecodeMOVHLPSMask(NumElems, ShuffleMask);
4137 break;
4138 case X86ISD::MOVLHPS:
4139 DecodeMOVLHPSMask(NumElems, ShuffleMask);
4140 break;
4141 case X86ISD::PSHUFD:
4142 ImmN = N->getOperand(N->getNumOperands()-1);
4143 DecodePSHUFMask(NumElems,
4144 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4145 ShuffleMask);
4146 break;
4147 case X86ISD::PSHUFHW:
4148 ImmN = N->getOperand(N->getNumOperands()-1);
4149 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4150 ShuffleMask);
4151 break;
4152 case X86ISD::PSHUFLW:
4153 ImmN = N->getOperand(N->getNumOperands()-1);
4154 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4155 ShuffleMask);
4156 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004157 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004158 case X86ISD::MOVSD: {
4159 // The index 0 always comes from the first element of the second source,
4160 // this is why MOVSS and MOVSD are used in the first place. The other
4161 // elements come from the other positions of the first source vector.
4162 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004163 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
4164 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004165 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004166 case X86ISD::VPERMIL:
4167 ImmN = N->getOperand(N->getNumOperands()-1);
4168 DecodeVPERMILMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4169 ShuffleMask);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004170 default:
4171 assert("not implemented for target shuffle node");
4172 return SDValue();
4173 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004174
4175 Index = ShuffleMask[Index];
4176 if (Index < 0)
4177 return DAG.getUNDEF(VT.getVectorElementType());
4178
4179 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
4180 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
4181 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004182 }
4183
4184 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004185 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004186 V = V.getOperand(0);
4187 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004188 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004189
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004190 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004191 return SDValue();
4192 }
4193
4194 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4195 return (Index == 0) ? V.getOperand(0)
4196 : DAG.getUNDEF(VT.getVectorElementType());
4197
4198 if (V.getOpcode() == ISD::BUILD_VECTOR)
4199 return V.getOperand(Index);
4200
4201 return SDValue();
4202}
4203
4204/// getNumOfConsecutiveZeros - Return the number of elements of a vector
4205/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00004206/// search can start in two different directions, from left or right.
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004207static
4208unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
4209 bool ZerosFromLeft, SelectionDAG &DAG) {
4210 int i = 0;
4211
4212 while (i < NumElems) {
4213 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004214 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004215 if (!(Elt.getNode() &&
4216 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
4217 break;
4218 ++i;
4219 }
4220
4221 return i;
4222}
4223
4224/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
4225/// MaskE correspond consecutively to elements from one of the vector operands,
4226/// starting from its index OpIdx. Also tell OpNum which source vector operand.
4227static
4228bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
4229 int OpIdx, int NumElems, unsigned &OpNum) {
4230 bool SeenV1 = false;
4231 bool SeenV2 = false;
4232
4233 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
4234 int Idx = SVOp->getMaskElt(i);
4235 // Ignore undef indicies
4236 if (Idx < 0)
4237 continue;
4238
4239 if (Idx < NumElems)
4240 SeenV1 = true;
4241 else
4242 SeenV2 = true;
4243
4244 // Only accept consecutive elements from the same vector
4245 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
4246 return false;
4247 }
4248
4249 OpNum = SeenV1 ? 0 : 1;
4250 return true;
4251}
4252
4253/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
4254/// logical left shift of a vector.
4255static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4256 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4257 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4258 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4259 false /* check zeros from right */, DAG);
4260 unsigned OpSrc;
4261
4262 if (!NumZeros)
4263 return false;
4264
4265 // Considering the elements in the mask that are not consecutive zeros,
4266 // check if they consecutively come from only one of the source vectors.
4267 //
4268 // V1 = {X, A, B, C} 0
4269 // \ \ \ /
4270 // vector_shuffle V1, V2 <1, 2, 3, X>
4271 //
4272 if (!isShuffleMaskConsecutive(SVOp,
4273 0, // Mask Start Index
4274 NumElems-NumZeros-1, // Mask End Index
4275 NumZeros, // Where to start looking in the src vector
4276 NumElems, // Number of elements in vector
4277 OpSrc)) // Which source operand ?
4278 return false;
4279
4280 isLeft = false;
4281 ShAmt = NumZeros;
4282 ShVal = SVOp->getOperand(OpSrc);
4283 return true;
4284}
4285
4286/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
4287/// logical left shift of a vector.
4288static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4289 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4290 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4291 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4292 true /* check zeros from left */, DAG);
4293 unsigned OpSrc;
4294
4295 if (!NumZeros)
4296 return false;
4297
4298 // Considering the elements in the mask that are not consecutive zeros,
4299 // check if they consecutively come from only one of the source vectors.
4300 //
4301 // 0 { A, B, X, X } = V2
4302 // / \ / /
4303 // vector_shuffle V1, V2 <X, X, 4, 5>
4304 //
4305 if (!isShuffleMaskConsecutive(SVOp,
4306 NumZeros, // Mask Start Index
4307 NumElems-1, // Mask End Index
4308 0, // Where to start looking in the src vector
4309 NumElems, // Number of elements in vector
4310 OpSrc)) // Which source operand ?
4311 return false;
4312
4313 isLeft = true;
4314 ShAmt = NumZeros;
4315 ShVal = SVOp->getOperand(OpSrc);
4316 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004317}
4318
4319/// isVectorShift - Returns true if the shuffle can be implemented as a
4320/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004321static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00004322 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004323 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
4324 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
4325 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004326
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004327 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00004328}
4329
Evan Chengc78d3b42006-04-24 18:01:45 +00004330/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4331///
Dan Gohman475871a2008-07-27 21:46:04 +00004332static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00004333 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00004334 SelectionDAG &DAG,
4335 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004336 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00004337 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004338
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004339 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004340 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004341 bool First = true;
4342 for (unsigned i = 0; i < 16; ++i) {
4343 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4344 if (ThisIsNonZero && First) {
4345 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004346 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004347 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004348 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004349 First = false;
4350 }
4351
4352 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00004353 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004354 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4355 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004356 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004357 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00004358 }
4359 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004360 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4361 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4362 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00004363 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004364 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00004365 } else
4366 ThisElt = LastElt;
4367
Gabor Greifba36cb52008-08-28 21:40:38 +00004368 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00004369 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00004370 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00004371 }
4372 }
4373
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004374 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00004375}
4376
Bill Wendlinga348c562007-03-22 18:42:45 +00004377/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00004378///
Dan Gohman475871a2008-07-27 21:46:04 +00004379static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00004380 unsigned NumNonZero, unsigned NumZero,
4381 SelectionDAG &DAG,
4382 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004383 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00004384 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004385
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004386 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004387 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004388 bool First = true;
4389 for (unsigned i = 0; i < 8; ++i) {
4390 bool isNonZero = (NonZeros & (1 << i)) != 0;
4391 if (isNonZero) {
4392 if (First) {
4393 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004394 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004395 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004396 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004397 First = false;
4398 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004399 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004400 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00004401 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00004402 }
4403 }
4404
4405 return V;
4406}
4407
Evan Chengf26ffe92008-05-29 08:22:04 +00004408/// getVShift - Return a vector logical shift node.
4409///
Owen Andersone50ed302009-08-10 22:56:29 +00004410static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00004411 unsigned NumBits, SelectionDAG &DAG,
4412 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004413 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00004414 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004415 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
4416 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004417 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00004418 DAG.getConstant(NumBits,
4419 TLI.getShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00004420}
4421
Dan Gohman475871a2008-07-27 21:46:04 +00004422SDValue
Evan Chengc3630942009-12-09 21:00:30 +00004423X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00004424 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00004425
Evan Chengc3630942009-12-09 21:00:30 +00004426 // Check if the scalar load can be widened into a vector load. And if
4427 // the address is "base + cst" see if the cst can be "absorbed" into
4428 // the shuffle mask.
4429 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4430 SDValue Ptr = LD->getBasePtr();
4431 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4432 return SDValue();
4433 EVT PVT = LD->getValueType(0);
4434 if (PVT != MVT::i32 && PVT != MVT::f32)
4435 return SDValue();
4436
4437 int FI = -1;
4438 int64_t Offset = 0;
4439 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4440 FI = FINode->getIndex();
4441 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00004442 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00004443 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4444 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4445 Offset = Ptr.getConstantOperandVal(1);
4446 Ptr = Ptr.getOperand(0);
4447 } else {
4448 return SDValue();
4449 }
4450
4451 SDValue Chain = LD->getChain();
4452 // Make sure the stack object alignment is at least 16.
4453 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
4454 if (DAG.InferPtrAlignment(Ptr) < 16) {
4455 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004456 // Can't change the alignment. FIXME: It's possible to compute
4457 // the exact stack offset and reference FI + adjust offset instead.
4458 // If someone *really* cares about this. That's the way to implement it.
4459 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004460 } else {
4461 MFI->setObjectAlignment(FI, 16);
4462 }
4463 }
4464
4465 // (Offset % 16) must be multiple of 4. Then address is then
4466 // Ptr + (Offset & ~15).
4467 if (Offset < 0)
4468 return SDValue();
4469 if ((Offset % 16) & 3)
4470 return SDValue();
4471 int64_t StartOffset = Offset & ~15;
4472 if (StartOffset)
4473 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4474 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4475
4476 int EltNo = (Offset - StartOffset) >> 2;
4477 int Mask[4] = { EltNo, EltNo, EltNo, EltNo };
4478 EVT VT = (PVT == MVT::i32) ? MVT::v4i32 : MVT::v4f32;
Chris Lattner51abfe42010-09-21 06:02:19 +00004479 SDValue V1 = DAG.getLoad(VT, dl, Chain, Ptr,
4480 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004481 false, false, 0);
Evan Chengc3630942009-12-09 21:00:30 +00004482 // Canonicalize it to a v4i32 shuffle.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004483 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, V1);
4484 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Chengc3630942009-12-09 21:00:30 +00004485 DAG.getVectorShuffle(MVT::v4i32, dl, V1,
Chris Lattner51abfe42010-09-21 06:02:19 +00004486 DAG.getUNDEF(MVT::v4i32),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004487 }
4488
4489 return SDValue();
4490}
4491
Michael J. Spencerec38de22010-10-10 22:04:20 +00004492/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4493/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004494/// load which has the same value as a build_vector whose operands are 'elts'.
4495///
4496/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004497///
Nate Begeman1449f292010-03-24 22:19:06 +00004498/// FIXME: we'd also like to handle the case where the last elements are zero
4499/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4500/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004501static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004502 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004503 EVT EltVT = VT.getVectorElementType();
4504 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004505
Nate Begemanfdea31a2010-03-24 20:49:50 +00004506 LoadSDNode *LDBase = NULL;
4507 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004508
Nate Begeman1449f292010-03-24 22:19:06 +00004509 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004510 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004511 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004512 for (unsigned i = 0; i < NumElems; ++i) {
4513 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004514
Nate Begemanfdea31a2010-03-24 20:49:50 +00004515 if (!Elt.getNode() ||
4516 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4517 return SDValue();
4518 if (!LDBase) {
4519 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4520 return SDValue();
4521 LDBase = cast<LoadSDNode>(Elt.getNode());
4522 LastLoadedElt = i;
4523 continue;
4524 }
4525 if (Elt.getOpcode() == ISD::UNDEF)
4526 continue;
4527
4528 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4529 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4530 return SDValue();
4531 LastLoadedElt = i;
4532 }
Nate Begeman1449f292010-03-24 22:19:06 +00004533
4534 // If we have found an entire vector of loads and undefs, then return a large
4535 // load of the entire vector width starting at the base pointer. If we found
4536 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004537 if (LastLoadedElt == NumElems - 1) {
4538 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004539 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004540 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004541 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004542 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004543 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004544 LDBase->isVolatile(), LDBase->isNonTemporal(),
4545 LDBase->getAlignment());
Eli Friedman61cc47e2011-07-26 21:02:58 +00004546 } else if (NumElems == 4 && LastLoadedElt == 1 &&
4547 DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004548 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4549 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004550 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4551 Ops, 2, MVT::i32,
4552 LDBase->getMemOperand());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004553 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004554 }
4555 return SDValue();
4556}
4557
Evan Chengc3630942009-12-09 21:00:30 +00004558SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004559X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004560 DebugLoc dl = Op.getDebugLoc();
David Greenea5f26012011-02-07 19:36:54 +00004561
David Greenef125a292011-02-08 19:04:41 +00004562 EVT VT = Op.getValueType();
4563 EVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00004564 unsigned NumElems = Op.getNumOperands();
4565
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004566 // All zero's:
4567 // - pxor (SSE2), xorps (SSE1), vpxor (128 AVX), xorp[s|d] (256 AVX)
4568 // All one's:
4569 // - pcmpeqd (SSE2 and 128 AVX), fallback to constant pools (256 AVX)
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004570 if (ISD::isBuildVectorAllZeros(Op.getNode()) ||
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004571 ISD::isBuildVectorAllOnes(Op.getNode())) {
4572 // Canonicalize this to <4 x i32> or <8 x 32> (SSE) to
Chris Lattner8a594482007-11-25 00:24:49 +00004573 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
4574 // eliminated on x86-32 hosts.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004575 if (Op.getValueType() == MVT::v4i32 ||
4576 Op.getValueType() == MVT::v8i32)
Chris Lattner8a594482007-11-25 00:24:49 +00004577 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004578
Gabor Greifba36cb52008-08-28 21:40:38 +00004579 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00004580 return getOnesVector(Op.getValueType(), DAG, dl);
4581 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00004582 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004583
Owen Andersone50ed302009-08-10 22:56:29 +00004584 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004585
Evan Cheng0db9fe62006-04-25 20:13:52 +00004586 unsigned NumZero = 0;
4587 unsigned NumNonZero = 0;
4588 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004589 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004590 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004591 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004592 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00004593 if (Elt.getOpcode() == ISD::UNDEF)
4594 continue;
4595 Values.insert(Elt);
4596 if (Elt.getOpcode() != ISD::Constant &&
4597 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004598 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00004599 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00004600 NumZero++;
4601 else {
4602 NonZeros |= (1 << i);
4603 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004604 }
4605 }
4606
Chris Lattner97a2a562010-08-26 05:24:29 +00004607 // All undef vector. Return an UNDEF. All zero vectors were handled above.
4608 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00004609 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004610
Chris Lattner67f453a2008-03-09 05:42:06 +00004611 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00004612 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004613 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00004614 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00004615
Chris Lattner62098042008-03-09 01:05:04 +00004616 // If this is an insertion of an i64 value on x86-32, and if the top bits of
4617 // the value are obviously zero, truncate the value to i32 and do the
4618 // insertion that way. Only do this if the value is non-constant or if the
4619 // value is a constant being inserted into element 0. It is cheaper to do
4620 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00004621 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00004622 (!IsAllConstants || Idx == 0)) {
4623 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004624 // Handle SSE only.
4625 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4626 EVT VecVT = MVT::v4i32;
4627 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004628
Chris Lattner62098042008-03-09 01:05:04 +00004629 // Truncate the value (which may itself be a constant) to i32, and
4630 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00004631 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00004632 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00004633 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4634 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004635
Chris Lattner62098042008-03-09 01:05:04 +00004636 // Now we have our 32-bit value zero extended in the low element of
4637 // a vector. If Idx != 0, swizzle it into place.
4638 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004639 SmallVector<int, 4> Mask;
4640 Mask.push_back(Idx);
4641 for (unsigned i = 1; i != VecElts; ++i)
4642 Mask.push_back(i);
4643 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00004644 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00004645 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004646 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004647 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00004648 }
4649 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004650
Chris Lattner19f79692008-03-08 22:59:52 +00004651 // If we have a constant or non-constant insertion into the low element of
4652 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4653 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00004654 // depending on what the source datatype is.
4655 if (Idx == 0) {
4656 if (NumZero == 0) {
4657 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00004658 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4659 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00004660 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4661 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4662 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4663 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00004664 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4665 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00004666 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4667 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00004668 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4669 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4670 Subtarget->hasSSE2(), DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004671 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00004672 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004673 }
Evan Chengf26ffe92008-05-29 08:22:04 +00004674
4675 // Is it a vector logical left shift?
4676 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00004677 X86::isZeroNode(Op.getOperand(0)) &&
4678 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004679 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004680 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004681 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004682 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00004683 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004684 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004685
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004686 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00004687 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004688
Chris Lattner19f79692008-03-08 22:59:52 +00004689 // Otherwise, if this is a vector with i32 or f32 elements, and the element
4690 // is a non-constant being inserted into an element other than the low one,
4691 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
4692 // movd/movss) to move this into the low element, then shuffle it into
4693 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004694 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00004695 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00004696
Evan Cheng0db9fe62006-04-25 20:13:52 +00004697 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00004698 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4699 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00004700 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004701 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00004702 MaskVec.push_back(i == Idx ? 0 : 1);
4703 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004704 }
4705 }
4706
Chris Lattner67f453a2008-03-09 05:42:06 +00004707 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00004708 if (Values.size() == 1) {
4709 if (EVTBits == 32) {
4710 // Instead of a shuffle like this:
4711 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4712 // Check if it's possible to issue this instead.
4713 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4714 unsigned Idx = CountTrailingZeros_32(NonZeros);
4715 SDValue Item = Op.getOperand(Idx);
4716 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4717 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4718 }
Dan Gohman475871a2008-07-27 21:46:04 +00004719 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004720 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004721
Dan Gohmana3941172007-07-24 22:55:08 +00004722 // A vector full of immediates; various special cases are already
4723 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004724 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00004725 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00004726
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00004727 // For AVX-length vectors, build the individual 128-bit pieces and use
4728 // shuffles to put them in place.
4729 if (VT.getSizeInBits() == 256 && !ISD::isBuildVectorAllZeros(Op.getNode())) {
4730 SmallVector<SDValue, 32> V;
4731 for (unsigned i = 0; i < NumElems; ++i)
4732 V.push_back(Op.getOperand(i));
4733
4734 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
4735
4736 // Build both the lower and upper subvector.
4737 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
4738 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
4739 NumElems/2);
4740
4741 // Recreate the wider vector with the lower and upper part.
4742 SDValue Vec = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), Upper,
4743 DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4744 return Insert128BitVector(Vec, Lower, DAG.getConstant(0, MVT::i32),
4745 DAG, dl);
4746 }
4747
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004748 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004749 if (EVTBits == 64) {
4750 if (NumNonZero == 1) {
4751 // One half is zero or undef.
4752 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00004753 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004754 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00004755 return getShuffleVectorZeroOrUndef(V2, Idx, true,
4756 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00004757 }
Dan Gohman475871a2008-07-27 21:46:04 +00004758 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00004759 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004760
4761 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00004762 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004763 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00004764 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004765 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004766 }
4767
Bill Wendling826f36f2007-03-28 00:57:11 +00004768 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004769 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00004770 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004771 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004772 }
4773
4774 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004775 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00004776 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004777 if (NumElems == 4 && NumZero > 0) {
4778 for (unsigned i = 0; i < 4; ++i) {
4779 bool isZero = !(NonZeros & (1 << i));
4780 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00004781 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004782 else
Dale Johannesenace16102009-02-03 19:33:06 +00004783 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004784 }
4785
4786 for (unsigned i = 0; i < 2; ++i) {
4787 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
4788 default: break;
4789 case 0:
4790 V[i] = V[i*2]; // Must be a zero vector.
4791 break;
4792 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00004793 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004794 break;
4795 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00004796 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004797 break;
4798 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00004799 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004800 break;
4801 }
4802 }
4803
Nate Begeman9008ca62009-04-27 18:41:29 +00004804 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004805 bool Reverse = (NonZeros & 0x3) == 2;
4806 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004807 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004808 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
4809 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004810 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
4811 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004812 }
4813
Nate Begemanfdea31a2010-03-24 20:49:50 +00004814 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
4815 // Check for a build vector of consecutive loads.
4816 for (unsigned i = 0; i < NumElems; ++i)
4817 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004818
Nate Begemanfdea31a2010-03-24 20:49:50 +00004819 // Check for elements which are consecutive loads.
4820 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
4821 if (LD.getNode())
4822 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004823
4824 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004825 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00004826 SDValue Result;
4827 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
4828 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
4829 else
4830 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004831
Chris Lattner24faf612010-08-28 17:59:08 +00004832 for (unsigned i = 1; i < NumElems; ++i) {
4833 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
4834 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00004835 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00004836 }
4837 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00004838 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00004839
Chris Lattner6e80e442010-08-28 17:15:43 +00004840 // Otherwise, expand into a number of unpckl*, start by extending each of
4841 // our (non-undef) elements to the full vector width with the element in the
4842 // bottom slot of the vector (which generates no code for SSE).
4843 for (unsigned i = 0; i < NumElems; ++i) {
4844 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
4845 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
4846 else
4847 V[i] = DAG.getUNDEF(VT);
4848 }
4849
4850 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004851 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
4852 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
4853 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00004854 unsigned EltStride = NumElems >> 1;
4855 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00004856 for (unsigned i = 0; i < EltStride; ++i) {
4857 // If V[i+EltStride] is undef and this is the first round of mixing,
4858 // then it is safe to just drop this shuffle: V[i] is already in the
4859 // right place, the one element (since it's the first round) being
4860 // inserted as undef can be dropped. This isn't safe for successive
4861 // rounds because they will permute elements within both vectors.
4862 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
4863 EltStride == NumElems/2)
4864 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004865
Chris Lattner6e80e442010-08-28 17:15:43 +00004866 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00004867 }
Chris Lattner6e80e442010-08-28 17:15:43 +00004868 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004869 }
4870 return V[0];
4871 }
Dan Gohman475871a2008-07-27 21:46:04 +00004872 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004873}
4874
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004875SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004876X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004877 // We support concatenate two MMX registers and place them in a MMX
4878 // register. This is better than doing a stack convert.
4879 DebugLoc dl = Op.getDebugLoc();
4880 EVT ResVT = Op.getValueType();
4881 assert(Op.getNumOperands() == 2);
4882 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
4883 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
4884 int Mask[2];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004885 SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004886 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4887 InVec = Op.getOperand(1);
4888 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
4889 unsigned NumElts = ResVT.getVectorNumElements();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004890 VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004891 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
4892 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
4893 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004894 InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004895 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4896 Mask[0] = 0; Mask[1] = 2;
4897 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
4898 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004899 return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004900}
4901
Nate Begemanb9a47b82009-02-23 08:49:38 +00004902// v8i16 shuffles - Prefer shuffles in the following order:
4903// 1. [all] pshuflw, pshufhw, optional move
4904// 2. [ssse3] 1 x pshufb
4905// 3. [ssse3] 2 x pshufb + 1 x por
4906// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004907SDValue
4908X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
4909 SelectionDAG &DAG) const {
4910 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00004911 SDValue V1 = SVOp->getOperand(0);
4912 SDValue V2 = SVOp->getOperand(1);
4913 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004914 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00004915
Nate Begemanb9a47b82009-02-23 08:49:38 +00004916 // Determine if more than 1 of the words in each of the low and high quadwords
4917 // of the result come from the same quadword of one of the two inputs. Undef
4918 // mask values count as coming from any quadword, for better codegen.
4919 SmallVector<unsigned, 4> LoQuad(4);
4920 SmallVector<unsigned, 4> HiQuad(4);
4921 BitVector InputQuads(4);
4922 for (unsigned i = 0; i < 8; ++i) {
4923 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00004924 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004925 MaskVals.push_back(EltIdx);
4926 if (EltIdx < 0) {
4927 ++Quad[0];
4928 ++Quad[1];
4929 ++Quad[2];
4930 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00004931 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004932 }
4933 ++Quad[EltIdx / 4];
4934 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00004935 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004936
Nate Begemanb9a47b82009-02-23 08:49:38 +00004937 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004938 unsigned MaxQuad = 1;
4939 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004940 if (LoQuad[i] > MaxQuad) {
4941 BestLoQuad = i;
4942 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004943 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004944 }
4945
Nate Begemanb9a47b82009-02-23 08:49:38 +00004946 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004947 MaxQuad = 1;
4948 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004949 if (HiQuad[i] > MaxQuad) {
4950 BestHiQuad = i;
4951 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004952 }
4953 }
4954
Nate Begemanb9a47b82009-02-23 08:49:38 +00004955 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00004956 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00004957 // single pshufb instruction is necessary. If There are more than 2 input
4958 // quads, disable the next transformation since it does not help SSSE3.
4959 bool V1Used = InputQuads[0] || InputQuads[1];
4960 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004961 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004962 if (InputQuads.count() == 2 && V1Used && V2Used) {
4963 BestLoQuad = InputQuads.find_first();
4964 BestHiQuad = InputQuads.find_next(BestLoQuad);
4965 }
4966 if (InputQuads.count() > 2) {
4967 BestLoQuad = -1;
4968 BestHiQuad = -1;
4969 }
4970 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004971
Nate Begemanb9a47b82009-02-23 08:49:38 +00004972 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
4973 // the shuffle mask. If a quad is scored as -1, that means that it contains
4974 // words from all 4 input quadwords.
4975 SDValue NewV;
4976 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004977 SmallVector<int, 8> MaskV;
4978 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
4979 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00004980 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004981 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
4982 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
4983 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004984
Nate Begemanb9a47b82009-02-23 08:49:38 +00004985 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
4986 // source words for the shuffle, to aid later transformations.
4987 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00004988 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00004989 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004990 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00004991 if (idx != (int)i)
4992 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004993 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00004994 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004995 AllWordsInNewV = false;
4996 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00004997 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004998
Nate Begemanb9a47b82009-02-23 08:49:38 +00004999 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
5000 if (AllWordsInNewV) {
5001 for (int i = 0; i != 8; ++i) {
5002 int idx = MaskVals[i];
5003 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005004 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005005 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005006 if ((idx != i) && idx < 4)
5007 pshufhw = false;
5008 if ((idx != i) && idx > 3)
5009 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00005010 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00005011 V1 = NewV;
5012 V2Used = false;
5013 BestLoQuad = 0;
5014 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005015 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005016
Nate Begemanb9a47b82009-02-23 08:49:38 +00005017 // If we've eliminated the use of V2, and the new mask is a pshuflw or
5018 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00005019 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005020 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
5021 unsigned TargetMask = 0;
5022 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00005023 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005024 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
5025 X86::getShufflePSHUFLWImmediate(NewV.getNode());
5026 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005027 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00005028 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005029 }
Eric Christopherfd179292009-08-27 18:07:15 +00005030
Nate Begemanb9a47b82009-02-23 08:49:38 +00005031 // If we have SSSE3, and all words of the result are from 1 input vector,
5032 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
5033 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005034 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005035 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005036
Nate Begemanb9a47b82009-02-23 08:49:38 +00005037 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00005038 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00005039 // mask, and elements that come from V1 in the V2 mask, so that the two
5040 // results can be OR'd together.
5041 bool TwoInputs = V1Used && V2Used;
5042 for (unsigned i = 0; i != 8; ++i) {
5043 int EltIdx = MaskVals[i] * 2;
5044 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005045 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5046 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005047 continue;
5048 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005049 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
5050 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005051 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005052 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005053 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005054 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005055 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005056 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005057 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005058
Nate Begemanb9a47b82009-02-23 08:49:38 +00005059 // Calculate the shuffle mask for the second input, shuffle it, and
5060 // OR it with the first shuffled input.
5061 pshufbMask.clear();
5062 for (unsigned i = 0; i != 8; ++i) {
5063 int EltIdx = MaskVals[i] * 2;
5064 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005065 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5066 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005067 continue;
5068 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005069 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
5070 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005071 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005072 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00005073 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005074 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005075 MVT::v16i8, &pshufbMask[0], 16));
5076 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005077 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005078 }
5079
5080 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
5081 // and update MaskVals with new element order.
5082 BitVector InOrder(8);
5083 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005084 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005085 for (int i = 0; i != 4; ++i) {
5086 int idx = MaskVals[i];
5087 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005088 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005089 InOrder.set(i);
5090 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005091 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005092 InOrder.set(i);
5093 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005094 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005095 }
5096 }
5097 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005098 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00005099 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005100 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005101
5102 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5103 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
5104 NewV.getOperand(0),
5105 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
5106 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005107 }
Eric Christopherfd179292009-08-27 18:07:15 +00005108
Nate Begemanb9a47b82009-02-23 08:49:38 +00005109 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
5110 // and update MaskVals with the new element order.
5111 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005112 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005113 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005114 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005115 for (unsigned i = 4; i != 8; ++i) {
5116 int idx = MaskVals[i];
5117 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005118 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005119 InOrder.set(i);
5120 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005121 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005122 InOrder.set(i);
5123 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005124 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005125 }
5126 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005127 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005128 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005129
5130 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5131 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
5132 NewV.getOperand(0),
5133 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
5134 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005135 }
Eric Christopherfd179292009-08-27 18:07:15 +00005136
Nate Begemanb9a47b82009-02-23 08:49:38 +00005137 // In case BestHi & BestLo were both -1, which means each quadword has a word
5138 // from each of the four input quadwords, calculate the InOrder bitvector now
5139 // before falling through to the insert/extract cleanup.
5140 if (BestLoQuad == -1 && BestHiQuad == -1) {
5141 NewV = V1;
5142 for (int i = 0; i != 8; ++i)
5143 if (MaskVals[i] < 0 || MaskVals[i] == i)
5144 InOrder.set(i);
5145 }
Eric Christopherfd179292009-08-27 18:07:15 +00005146
Nate Begemanb9a47b82009-02-23 08:49:38 +00005147 // The other elements are put in the right place using pextrw and pinsrw.
5148 for (unsigned i = 0; i != 8; ++i) {
5149 if (InOrder[i])
5150 continue;
5151 int EltIdx = MaskVals[i];
5152 if (EltIdx < 0)
5153 continue;
5154 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00005155 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005156 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00005157 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005158 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00005159 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005160 DAG.getIntPtrConstant(i));
5161 }
5162 return NewV;
5163}
5164
5165// v16i8 shuffles - Prefer shuffles in the following order:
5166// 1. [ssse3] 1 x pshufb
5167// 2. [ssse3] 2 x pshufb + 1 x por
5168// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
5169static
Nate Begeman9008ca62009-04-27 18:41:29 +00005170SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00005171 SelectionDAG &DAG,
5172 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005173 SDValue V1 = SVOp->getOperand(0);
5174 SDValue V2 = SVOp->getOperand(1);
5175 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005176 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00005177 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00005178
Nate Begemanb9a47b82009-02-23 08:49:38 +00005179 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00005180 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00005181 // present, fall back to case 3.
5182 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
5183 bool V1Only = true;
5184 bool V2Only = true;
5185 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005186 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00005187 if (EltIdx < 0)
5188 continue;
5189 if (EltIdx < 16)
5190 V2Only = false;
5191 else
5192 V1Only = false;
5193 }
Eric Christopherfd179292009-08-27 18:07:15 +00005194
Nate Begemanb9a47b82009-02-23 08:49:38 +00005195 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
5196 if (TLI.getSubtarget()->hasSSSE3()) {
5197 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005198
Nate Begemanb9a47b82009-02-23 08:49:38 +00005199 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00005200 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005201 //
5202 // Otherwise, we have elements from both input vectors, and must zero out
5203 // elements that come from V2 in the first mask, and V1 in the second mask
5204 // so that we can OR them together.
5205 bool TwoInputs = !(V1Only || V2Only);
5206 for (unsigned i = 0; i != 16; ++i) {
5207 int EltIdx = MaskVals[i];
5208 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005209 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005210 continue;
5211 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005212 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005213 }
5214 // If all the elements are from V2, assign it to V1 and return after
5215 // building the first pshufb.
5216 if (V2Only)
5217 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00005218 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005219 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005220 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005221 if (!TwoInputs)
5222 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00005223
Nate Begemanb9a47b82009-02-23 08:49:38 +00005224 // Calculate the shuffle mask for the second input, shuffle it, and
5225 // OR it with the first shuffled input.
5226 pshufbMask.clear();
5227 for (unsigned i = 0; i != 16; ++i) {
5228 int EltIdx = MaskVals[i];
5229 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005230 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005231 continue;
5232 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005233 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005234 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005235 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005236 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005237 MVT::v16i8, &pshufbMask[0], 16));
5238 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005239 }
Eric Christopherfd179292009-08-27 18:07:15 +00005240
Nate Begemanb9a47b82009-02-23 08:49:38 +00005241 // No SSSE3 - Calculate in place words and then fix all out of place words
5242 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
5243 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005244 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5245 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005246 SDValue NewV = V2Only ? V2 : V1;
5247 for (int i = 0; i != 8; ++i) {
5248 int Elt0 = MaskVals[i*2];
5249 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00005250
Nate Begemanb9a47b82009-02-23 08:49:38 +00005251 // This word of the result is all undef, skip it.
5252 if (Elt0 < 0 && Elt1 < 0)
5253 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005254
Nate Begemanb9a47b82009-02-23 08:49:38 +00005255 // This word of the result is already in the correct place, skip it.
5256 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
5257 continue;
5258 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
5259 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005260
Nate Begemanb9a47b82009-02-23 08:49:38 +00005261 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
5262 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
5263 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00005264
5265 // If Elt0 and Elt1 are defined, are consecutive, and can be load
5266 // using a single extract together, load it and store it.
5267 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005268 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005269 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00005270 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005271 DAG.getIntPtrConstant(i));
5272 continue;
5273 }
5274
Nate Begemanb9a47b82009-02-23 08:49:38 +00005275 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00005276 // source byte is not also odd, shift the extracted word left 8 bits
5277 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005278 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005279 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005280 DAG.getIntPtrConstant(Elt1 / 2));
5281 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005282 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00005283 DAG.getConstant(8,
5284 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005285 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005286 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
5287 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005288 }
5289 // If Elt0 is defined, extract it from the appropriate source. If the
5290 // source byte is not also even, shift the extracted word right 8 bits. If
5291 // Elt1 was also defined, OR the extracted values together before
5292 // inserting them in the result.
5293 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005294 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005295 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
5296 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005297 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00005298 DAG.getConstant(8,
5299 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005300 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005301 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
5302 DAG.getConstant(0x00FF, MVT::i16));
5303 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00005304 : InsElt0;
5305 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005306 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005307 DAG.getIntPtrConstant(i));
5308 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005309 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005310}
5311
Evan Cheng7a831ce2007-12-15 03:00:47 +00005312/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005313/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00005314/// done when every pair / quad of shuffle mask elements point to elements in
5315/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005316/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00005317static
Nate Begeman9008ca62009-04-27 18:41:29 +00005318SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005319 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00005320 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00005321 SDValue V1 = SVOp->getOperand(0);
5322 SDValue V2 = SVOp->getOperand(1);
5323 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00005324 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005325 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00005326 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005327 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00005328 case MVT::v4f32: NewVT = MVT::v2f64; break;
5329 case MVT::v4i32: NewVT = MVT::v2i64; break;
5330 case MVT::v8i16: NewVT = MVT::v4i32; break;
5331 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00005332 }
5333
Nate Begeman9008ca62009-04-27 18:41:29 +00005334 int Scale = NumElems / NewWidth;
5335 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00005336 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005337 int StartIdx = -1;
5338 for (int j = 0; j < Scale; ++j) {
5339 int EltIdx = SVOp->getMaskElt(i+j);
5340 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005341 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00005342 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00005343 StartIdx = EltIdx - (EltIdx % Scale);
5344 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00005345 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005346 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005347 if (StartIdx == -1)
5348 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00005349 else
Nate Begeman9008ca62009-04-27 18:41:29 +00005350 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005351 }
5352
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005353 V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
5354 V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00005355 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005356}
5357
Evan Chengd880b972008-05-09 21:53:03 +00005358/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005359///
Owen Andersone50ed302009-08-10 22:56:29 +00005360static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00005361 SDValue SrcOp, SelectionDAG &DAG,
5362 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005363 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005364 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00005365 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00005366 LD = dyn_cast<LoadSDNode>(SrcOp);
5367 if (!LD) {
5368 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
5369 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00005370 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00005371 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00005372 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005373 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00005374 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005375 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00005376 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005377 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005378 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
5379 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5380 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00005381 SrcOp.getOperand(0)
5382 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005383 }
5384 }
5385 }
5386
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005387 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005388 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005389 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00005390 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005391}
5392
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00005393/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
5394/// which could not be matched by any known target speficic shuffle
5395static SDValue
5396LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
5397 return SDValue();
5398}
5399
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005400/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
5401/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00005402static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005403LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005404 SDValue V1 = SVOp->getOperand(0);
5405 SDValue V2 = SVOp->getOperand(1);
5406 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00005407 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00005408
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005409 assert(VT.getSizeInBits() == 128 && "Unsupported vector size");
5410
Evan Chengace3c172008-07-22 21:13:36 +00005411 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00005412 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005413 SmallVector<int, 8> Mask1(4U, -1);
5414 SmallVector<int, 8> PermMask;
5415 SVOp->getMask(PermMask);
5416
Evan Chengace3c172008-07-22 21:13:36 +00005417 unsigned NumHi = 0;
5418 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00005419 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005420 int Idx = PermMask[i];
5421 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005422 Locs[i] = std::make_pair(-1, -1);
5423 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005424 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
5425 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005426 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00005427 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005428 NumLo++;
5429 } else {
5430 Locs[i] = std::make_pair(1, NumHi);
5431 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005432 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005433 NumHi++;
5434 }
5435 }
5436 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005437
Evan Chengace3c172008-07-22 21:13:36 +00005438 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005439 // If no more than two elements come from either vector. This can be
5440 // implemented with two shuffles. First shuffle gather the elements.
5441 // The second shuffle, which takes the first shuffle as both of its
5442 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00005443 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005444
Nate Begeman9008ca62009-04-27 18:41:29 +00005445 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00005446
Evan Chengace3c172008-07-22 21:13:36 +00005447 for (unsigned i = 0; i != 4; ++i) {
5448 if (Locs[i].first == -1)
5449 continue;
5450 else {
5451 unsigned Idx = (i < 2) ? 0 : 4;
5452 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005453 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005454 }
5455 }
5456
Nate Begeman9008ca62009-04-27 18:41:29 +00005457 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005458 } else if (NumLo == 3 || NumHi == 3) {
5459 // Otherwise, we must have three elements from one vector, call it X, and
5460 // one element from the other, call it Y. First, use a shufps to build an
5461 // intermediate vector with the one element from Y and the element from X
5462 // that will be in the same half in the final destination (the indexes don't
5463 // matter). Then, use a shufps to build the final vector, taking the half
5464 // containing the element from Y from the intermediate, and the other half
5465 // from X.
5466 if (NumHi == 3) {
5467 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00005468 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005469 std::swap(V1, V2);
5470 }
5471
5472 // Find the element from V2.
5473 unsigned HiIndex;
5474 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005475 int Val = PermMask[HiIndex];
5476 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005477 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005478 if (Val >= 4)
5479 break;
5480 }
5481
Nate Begeman9008ca62009-04-27 18:41:29 +00005482 Mask1[0] = PermMask[HiIndex];
5483 Mask1[1] = -1;
5484 Mask1[2] = PermMask[HiIndex^1];
5485 Mask1[3] = -1;
5486 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005487
5488 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005489 Mask1[0] = PermMask[0];
5490 Mask1[1] = PermMask[1];
5491 Mask1[2] = HiIndex & 1 ? 6 : 4;
5492 Mask1[3] = HiIndex & 1 ? 4 : 6;
5493 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005494 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005495 Mask1[0] = HiIndex & 1 ? 2 : 0;
5496 Mask1[1] = HiIndex & 1 ? 0 : 2;
5497 Mask1[2] = PermMask[2];
5498 Mask1[3] = PermMask[3];
5499 if (Mask1[2] >= 0)
5500 Mask1[2] += 4;
5501 if (Mask1[3] >= 0)
5502 Mask1[3] += 4;
5503 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005504 }
Evan Chengace3c172008-07-22 21:13:36 +00005505 }
5506
5507 // Break it into (shuffle shuffle_hi, shuffle_lo).
5508 Locs.clear();
David Greenec4db4e52011-02-28 19:06:56 +00005509 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005510 SmallVector<int,8> LoMask(4U, -1);
5511 SmallVector<int,8> HiMask(4U, -1);
5512
5513 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00005514 unsigned MaskIdx = 0;
5515 unsigned LoIdx = 0;
5516 unsigned HiIdx = 2;
5517 for (unsigned i = 0; i != 4; ++i) {
5518 if (i == 2) {
5519 MaskPtr = &HiMask;
5520 MaskIdx = 1;
5521 LoIdx = 0;
5522 HiIdx = 2;
5523 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005524 int Idx = PermMask[i];
5525 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005526 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005527 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005528 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005529 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005530 LoIdx++;
5531 } else {
5532 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005533 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005534 HiIdx++;
5535 }
5536 }
5537
Nate Begeman9008ca62009-04-27 18:41:29 +00005538 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5539 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5540 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00005541 for (unsigned i = 0; i != 4; ++i) {
5542 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005543 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00005544 } else {
5545 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005546 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00005547 }
5548 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005549 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00005550}
5551
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005552static bool MayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005553 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005554 V = V.getOperand(0);
5555 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5556 V = V.getOperand(0);
5557 if (MayFoldLoad(V))
5558 return true;
5559 return false;
5560}
5561
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005562// FIXME: the version above should always be used. Since there's
5563// a bug where several vector shuffles can't be folded because the
5564// DAG is not updated during lowering and a node claims to have two
5565// uses while it only has one, use this version, and let isel match
5566// another instruction if the load really happens to have more than
5567// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00005568// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005569static bool RelaxedMayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005570 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005571 V = V.getOperand(0);
5572 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5573 V = V.getOperand(0);
5574 if (ISD::isNormalLoad(V.getNode()))
5575 return true;
5576 return false;
5577}
5578
5579/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5580/// a vector extract, and if both can be later optimized into a single load.
5581/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5582/// here because otherwise a target specific shuffle node is going to be
5583/// emitted for this shuffle, and the optimization not done.
5584/// FIXME: This is probably not the best approach, but fix the problem
5585/// until the right path is decided.
5586static
5587bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5588 const TargetLowering &TLI) {
5589 EVT VT = V.getValueType();
5590 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5591
5592 // Be sure that the vector shuffle is present in a pattern like this:
5593 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5594 if (!V.hasOneUse())
5595 return false;
5596
5597 SDNode *N = *V.getNode()->use_begin();
5598 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5599 return false;
5600
5601 SDValue EltNo = N->getOperand(1);
5602 if (!isa<ConstantSDNode>(EltNo))
5603 return false;
5604
5605 // If the bit convert changed the number of elements, it is unsafe
5606 // to examine the mask.
5607 bool HasShuffleIntoBitcast = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005608 if (V.getOpcode() == ISD::BITCAST) {
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005609 EVT SrcVT = V.getOperand(0).getValueType();
5610 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5611 return false;
5612 V = V.getOperand(0);
5613 HasShuffleIntoBitcast = true;
5614 }
5615
5616 // Select the input vector, guarding against out of range extract vector.
5617 unsigned NumElems = VT.getVectorNumElements();
5618 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5619 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5620 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5621
5622 // Skip one more bit_convert if necessary
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005623 if (V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005624 V = V.getOperand(0);
5625
5626 if (ISD::isNormalLoad(V.getNode())) {
5627 // Is the original load suitable?
5628 LoadSDNode *LN0 = cast<LoadSDNode>(V);
5629
5630 // FIXME: avoid the multi-use bug that is preventing lots of
5631 // of foldings to be detected, this is still wrong of course, but
5632 // give the temporary desired behavior, and if it happens that
5633 // the load has real more uses, during isel it will not fold, and
5634 // will generate poor code.
5635 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
5636 return false;
5637
5638 if (!HasShuffleIntoBitcast)
5639 return true;
5640
5641 // If there's a bitcast before the shuffle, check if the load type and
5642 // alignment is valid.
5643 unsigned Align = LN0->getAlignment();
5644 unsigned NewAlign =
5645 TLI.getTargetData()->getABITypeAlignment(
5646 VT.getTypeForEVT(*DAG.getContext()));
5647
5648 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
5649 return false;
5650 }
5651
5652 return true;
5653}
5654
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005655static
Evan Cheng835580f2010-10-07 20:50:20 +00005656SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
5657 EVT VT = Op.getValueType();
5658
5659 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005660 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
5661 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00005662 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
5663 V1, DAG));
5664}
5665
5666static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005667SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
5668 bool HasSSE2) {
5669 SDValue V1 = Op.getOperand(0);
5670 SDValue V2 = Op.getOperand(1);
5671 EVT VT = Op.getValueType();
5672
5673 assert(VT != MVT::v2i64 && "unsupported shuffle type");
5674
5675 if (HasSSE2 && VT == MVT::v2f64)
5676 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
5677
5678 // v4f32 or v4i32
5679 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
5680}
5681
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005682static
5683SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
5684 SDValue V1 = Op.getOperand(0);
5685 SDValue V2 = Op.getOperand(1);
5686 EVT VT = Op.getValueType();
5687
5688 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
5689 "unsupported shuffle type");
5690
5691 if (V2.getOpcode() == ISD::UNDEF)
5692 V2 = V1;
5693
5694 // v4i32 or v4f32
5695 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
5696}
5697
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005698static
5699SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
5700 SDValue V1 = Op.getOperand(0);
5701 SDValue V2 = Op.getOperand(1);
5702 EVT VT = Op.getValueType();
5703 unsigned NumElems = VT.getVectorNumElements();
5704
5705 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
5706 // operand of these instructions is only memory, so check if there's a
5707 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
5708 // same masks.
5709 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005710
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00005711 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005712 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005713 CanFoldLoad = true;
5714
5715 // When V1 is a load, it can be folded later into a store in isel, example:
5716 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
5717 // turns into:
5718 // (MOVLPSmr addr:$src1, VR128:$src2)
5719 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005720 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005721 CanFoldLoad = true;
5722
Eric Christopher893a8822011-02-20 05:04:42 +00005723 // Both of them can't be memory operations though.
5724 if (MayFoldVectorLoad(V1) && MayFoldVectorLoad(V2))
5725 CanFoldLoad = false;
Owen Anderson95771af2011-02-25 21:41:48 +00005726
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005727 if (CanFoldLoad) {
5728 if (HasSSE2 && NumElems == 2)
5729 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
5730
5731 if (NumElems == 4)
5732 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
5733 }
5734
5735 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5736 // movl and movlp will both match v2i64, but v2i64 is never matched by
5737 // movl earlier because we make it strict to avoid messing with the movlp load
5738 // folding logic (see the code above getMOVLP call). Match it here then,
5739 // this is horrible, but will stay like this until we move all shuffle
5740 // matching to x86 specific nodes. Note that for the 1st condition all
5741 // types are matched with movsd.
5742 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
5743 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5744 else if (HasSSE2)
5745 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5746
5747
5748 assert(VT != MVT::v4i32 && "unsupported shuffle type");
5749
5750 // Invert the operand order and use SHUFPS to match it.
5751 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
5752 X86::getShuffleSHUFImmediate(SVOp), DAG);
5753}
5754
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00005755static inline unsigned getUNPCKLOpcode(EVT VT) {
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005756 switch(VT.getSimpleVT().SimpleTy) {
5757 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
5758 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005759 case MVT::v4f32: return X86ISD::UNPCKLPS;
5760 case MVT::v2f64: return X86ISD::UNPCKLPD;
David Greenec4db4e52011-02-28 19:06:56 +00005761 case MVT::v8f32: return X86ISD::VUNPCKLPSY;
5762 case MVT::v4f64: return X86ISD::VUNPCKLPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005763 case MVT::v16i8: return X86ISD::PUNPCKLBW;
5764 case MVT::v8i16: return X86ISD::PUNPCKLWD;
5765 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00005766 llvm_unreachable("Unknown type for unpckl");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005767 }
5768 return 0;
5769}
5770
5771static inline unsigned getUNPCKHOpcode(EVT VT) {
5772 switch(VT.getSimpleVT().SimpleTy) {
5773 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
5774 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
5775 case MVT::v4f32: return X86ISD::UNPCKHPS;
5776 case MVT::v2f64: return X86ISD::UNPCKHPD;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00005777 case MVT::v8f32: return X86ISD::VUNPCKHPSY;
5778 case MVT::v4f64: return X86ISD::VUNPCKHPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005779 case MVT::v16i8: return X86ISD::PUNPCKHBW;
5780 case MVT::v8i16: return X86ISD::PUNPCKHWD;
5781 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00005782 llvm_unreachable("Unknown type for unpckh");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005783 }
5784 return 0;
5785}
5786
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005787static
5788SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005789 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005790 const X86Subtarget *Subtarget) {
5791 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5792 EVT VT = Op.getValueType();
5793 DebugLoc dl = Op.getDebugLoc();
5794 SDValue V1 = Op.getOperand(0);
5795 SDValue V2 = Op.getOperand(1);
5796
5797 if (isZeroShuffle(SVOp))
5798 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
5799
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005800 // Handle splat operations
5801 if (SVOp->isSplat()) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00005802 unsigned NumElem = VT.getVectorNumElements();
5803 // Special case, this is the only place now where it's allowed to return
5804 // a vector_shuffle operation without using a target specific node, because
5805 // *hopefully* it will be optimized away by the dag combiner. FIXME: should
5806 // this be moved to DAGCombine instead?
5807 if (NumElem <= 4 && CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005808 return Op;
5809
Bruno Cardoso Lopes6a32adc2011-07-25 23:05:25 +00005810 // Since there's no native support for scalar_to_vector for 256-bit AVX, a
5811 // 128-bit scalar_to_vector + INSERT_SUBVECTOR is generated. Recognize this
5812 // idiom and do the shuffle before the insertion, this yields less
5813 // instructions in the end.
5814 if (VT.is256BitVector() &&
5815 V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
5816 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
5817 V1.getOperand(1).getOpcode() == ISD::SCALAR_TO_VECTOR)
5818 return PromoteVectorToScalarSplat(SVOp, DAG);
5819
5820 // Handle splats by matching through known shuffle masks
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00005821 if ((VT.is128BitVector() && NumElem <= 4) ||
5822 (VT.is256BitVector() && NumElem <= 8))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005823 return SDValue();
5824
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00005825 // All i16 and i8 vector types can't be used directly by a generic shuffle
5826 // instruction because the target has no such instruction. Generate shuffles
5827 // which repeat i16 and i8 several times until they fit in i32, and then can
5828 // be manipulated by target suported shuffles. After the insertion of the
5829 // necessary shuffles, the result is bitcasted back to v4f32 or v8f32.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005830 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005831 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005832
5833 // If the shuffle can be profitably rewritten as a narrower shuffle, then
5834 // do it!
5835 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
5836 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5837 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005838 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005839 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
5840 // FIXME: Figure out a cleaner way to do this.
5841 // Try to make use of movq to zero out the top part.
5842 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
5843 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5844 if (NewOp.getNode()) {
5845 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
5846 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
5847 DAG, Subtarget, dl);
5848 }
5849 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
5850 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5851 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
5852 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
5853 DAG, Subtarget, dl);
5854 }
5855 }
5856 return SDValue();
5857}
5858
Dan Gohman475871a2008-07-27 21:46:04 +00005859SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005860X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00005861 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005862 SDValue V1 = Op.getOperand(0);
5863 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005864 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005865 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00005866 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005867 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005868 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
5869 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00005870 bool V1IsSplat = false;
5871 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005872 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005873 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005874 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005875 MachineFunction &MF = DAG.getMachineFunction();
5876 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005877
Dale Johannesen0488fb62010-09-30 23:57:10 +00005878 // Shuffle operations on MMX not supported.
5879 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00005880 return Op;
5881
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005882 // Vector shuffle lowering takes 3 steps:
5883 //
5884 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
5885 // narrowing and commutation of operands should be handled.
5886 // 2) Matching of shuffles with known shuffle masks to x86 target specific
5887 // shuffle nodes.
5888 // 3) Rewriting of unmatched masks into new generic shuffle operations,
5889 // so the shuffle can be broken into other shuffles and the legalizer can
5890 // try the lowering again.
5891 //
5892 // The general ideia is that no vector_shuffle operation should be left to
5893 // be matched during isel, all of them must be converted to a target specific
5894 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00005895
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005896 // Normalize the input vectors. Here splats, zeroed vectors, profitable
5897 // narrowing and commutation of operands should be handled. The actual code
5898 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005899 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005900 if (NewOp.getNode())
5901 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00005902
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005903 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
5904 // unpckh_undef). Only use pshufd if speed is more important than size.
5905 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00005906 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005907 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00005908 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00005909
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005910 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00005911 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00005912 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005913
Dale Johannesen0488fb62010-09-30 23:57:10 +00005914 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005915 return getMOVHighToLow(Op, dl, DAG);
5916
5917 // Use to match splats
5918 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
5919 (VT == MVT::v2f64 || VT == MVT::v2i64))
5920 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5921
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005922 if (X86::isPSHUFDMask(SVOp)) {
5923 // The actual implementation will match the mask in the if above and then
5924 // during isel it can match several different instructions, not only pshufd
5925 // as its name says, sad but true, emulate the behavior for now...
5926 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
5927 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
5928
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005929 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5930
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005931 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005932 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
5933
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005934 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005935 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
5936 TargetMask, DAG);
5937
5938 if (VT == MVT::v4f32)
5939 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
5940 TargetMask, DAG);
5941 }
Eric Christopherfd179292009-08-27 18:07:15 +00005942
Evan Chengf26ffe92008-05-29 08:22:04 +00005943 // Check if this can be converted into a logical shift.
5944 bool isLeft = false;
5945 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00005946 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00005947 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00005948 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00005949 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005950 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00005951 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005952 EVT EltVT = VT.getVectorElementType();
5953 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005954 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005955 }
Eric Christopherfd179292009-08-27 18:07:15 +00005956
Nate Begeman9008ca62009-04-27 18:41:29 +00005957 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005958 if (V1IsUndef)
5959 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00005960 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00005961 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00005962 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005963 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005964 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5965
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005966 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005967 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5968 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00005969 }
Eric Christopherfd179292009-08-27 18:07:15 +00005970
Nate Begeman9008ca62009-04-27 18:41:29 +00005971 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00005972 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
5973 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005974
Dale Johannesen0488fb62010-09-30 23:57:10 +00005975 if (X86::isMOVHLPSMask(SVOp))
5976 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005977
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00005978 if (X86::isMOVSHDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005979 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005980
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00005981 if (X86::isMOVSLDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005982 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00005983
Dale Johannesen0488fb62010-09-30 23:57:10 +00005984 if (X86::isMOVLPMask(SVOp))
5985 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005986
Nate Begeman9008ca62009-04-27 18:41:29 +00005987 if (ShouldXformToMOVHLPS(SVOp) ||
5988 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
5989 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005990
Evan Chengf26ffe92008-05-29 08:22:04 +00005991 if (isShift) {
5992 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005993 EVT EltVT = VT.getVectorElementType();
5994 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005995 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005996 }
Eric Christopherfd179292009-08-27 18:07:15 +00005997
Evan Cheng9eca5e82006-10-25 21:49:50 +00005998 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00005999 // FIXME: This should also accept a bitcast of a splat? Be careful, not
6000 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00006001 V1IsSplat = isSplatVector(V1.getNode());
6002 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00006003
Chris Lattner8a594482007-11-25 00:24:49 +00006004 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00006005 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006006 Op = CommuteVectorShuffle(SVOp, DAG);
6007 SVOp = cast<ShuffleVectorSDNode>(Op);
6008 V1 = SVOp->getOperand(0);
6009 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00006010 std::swap(V1IsSplat, V2IsSplat);
6011 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006012 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00006013 }
6014
Nate Begeman9008ca62009-04-27 18:41:29 +00006015 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
6016 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00006017 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00006018 return V1;
6019 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
6020 // the instruction selector will not match, so get a canonical MOVL with
6021 // swapped operands to undo the commute.
6022 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00006023 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006024
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006025 if (X86::isUNPCKLMask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006026 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006027
6028 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006029 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00006030
Evan Cheng9bbbb982006-10-25 20:48:19 +00006031 if (V2IsSplat) {
6032 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00006033 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00006034 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00006035 SDValue NewMask = NormalizeMask(SVOp, DAG);
6036 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
6037 if (NSVOp != SVOp) {
6038 if (X86::isUNPCKLMask(NSVOp, true)) {
6039 return NewMask;
6040 } else if (X86::isUNPCKHMask(NSVOp, true)) {
6041 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006042 }
6043 }
6044 }
6045
Evan Cheng9eca5e82006-10-25 21:49:50 +00006046 if (Commuted) {
6047 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00006048 // FIXME: this seems wrong.
6049 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
6050 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006051
6052 if (X86::isUNPCKLMask(NewSVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006053 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006054
6055 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006056 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006057 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006058
Nate Begeman9008ca62009-04-27 18:41:29 +00006059 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00006060 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00006061 return CommuteVectorShuffle(SVOp, DAG);
6062
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00006063 // The checks below are all present in isShuffleMaskLegal, but they are
6064 // inlined here right now to enable us to directly emit target specific
6065 // nodes, and remove one by one until they don't return Op anymore.
6066 SmallVector<int, 16> M;
6067 SVOp->getMask(M);
6068
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006069 if (isPALIGNRMask(M, VT, HasSSSE3))
6070 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
6071 X86::getShufflePALIGNRImmediate(SVOp),
6072 DAG);
6073
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006074 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
6075 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00006076 if (VT == MVT::v2f64)
6077 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006078 if (VT == MVT::v2i64)
6079 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
6080 }
6081
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00006082 if (isPSHUFHWMask(M, VT))
6083 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
6084 X86::getShufflePSHUFHWImmediate(SVOp),
6085 DAG);
6086
6087 if (isPSHUFLWMask(M, VT))
6088 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
6089 X86::getShufflePSHUFLWImmediate(SVOp),
6090 DAG);
6091
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00006092 if (isSHUFPMask(M, VT)) {
6093 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6094 if (VT == MVT::v4f32 || VT == MVT::v4i32)
6095 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
6096 TargetMask, DAG);
6097 if (VT == MVT::v2f64 || VT == MVT::v2i64)
6098 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
6099 TargetMask, DAG);
6100 }
6101
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006102 if (X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006103 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006104 if (X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006105 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006106
Evan Cheng14b32e12007-12-11 01:46:18 +00006107 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
Owen Anderson825b72b2009-08-11 20:47:22 +00006108 if (VT == MVT::v8i16) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00006109 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006110 if (NewOp.getNode())
Evan Cheng14b32e12007-12-11 01:46:18 +00006111 return NewOp;
6112 }
6113
Owen Anderson825b72b2009-08-11 20:47:22 +00006114 if (VT == MVT::v16i8) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006115 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006116 if (NewOp.getNode())
6117 return NewOp;
6118 }
Eric Christopherfd179292009-08-27 18:07:15 +00006119
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006120 // Handle all 128-bit wide vectors with 4 elements, and match them with
6121 // several different shuffle types.
6122 if (NumElems == 4 && VT.getSizeInBits() == 128)
6123 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006124
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006125 //===--------------------------------------------------------------------===//
6126 // Custom lower or generate target specific nodes for 256-bit shuffles.
6127
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00006128 // Handle VPERMIL permutations
6129 if (isVPERMILMask(M, VT)) {
6130 unsigned TargetMask = getShuffleVPERMILImmediate(SVOp);
6131 if (VT == MVT::v8f32)
6132 return getTargetShuffleNode(X86ISD::VPERMIL, dl, VT, V1, TargetMask, DAG);
6133 }
6134
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006135 // Handle general 256-bit shuffles
6136 if (VT.is256BitVector())
6137 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
6138
Dan Gohman475871a2008-07-27 21:46:04 +00006139 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006140}
6141
Dan Gohman475871a2008-07-27 21:46:04 +00006142SDValue
6143X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00006144 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006145 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006146 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006147 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006148 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006149 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006150 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006151 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006152 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006153 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00006154 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6155 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
6156 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006157 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6158 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006159 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006160 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00006161 Op.getOperand(0)),
6162 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006163 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006164 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006165 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006166 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006167 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00006168 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00006169 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
6170 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006171 // result has a single use which is a store or a bitcast to i32. And in
6172 // the case of a store, it's not worth it if the index is a constant 0,
6173 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00006174 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00006175 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006176 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006177 if ((User->getOpcode() != ISD::STORE ||
6178 (isa<ConstantSDNode>(Op.getOperand(1)) &&
6179 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006180 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00006181 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00006182 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00006183 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006184 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00006185 Op.getOperand(0)),
6186 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006187 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Owen Anderson825b72b2009-08-11 20:47:22 +00006188 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00006189 // ExtractPS works with constant index.
6190 if (isa<ConstantSDNode>(Op.getOperand(1)))
6191 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006192 }
Dan Gohman475871a2008-07-27 21:46:04 +00006193 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006194}
6195
6196
Dan Gohman475871a2008-07-27 21:46:04 +00006197SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006198X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
6199 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006200 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00006201 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006202
David Greene74a579d2011-02-10 16:57:36 +00006203 SDValue Vec = Op.getOperand(0);
6204 EVT VecVT = Vec.getValueType();
6205
6206 // If this is a 256-bit vector result, first extract the 128-bit
6207 // vector and then extract from the 128-bit vector.
6208 if (VecVT.getSizeInBits() > 128) {
6209 DebugLoc dl = Op.getNode()->getDebugLoc();
6210 unsigned NumElems = VecVT.getVectorNumElements();
6211 SDValue Idx = Op.getOperand(1);
6212
6213 if (!isa<ConstantSDNode>(Idx))
6214 return SDValue();
6215
6216 unsigned ExtractNumElems = NumElems / (VecVT.getSizeInBits() / 128);
6217 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
6218
6219 // Get the 128-bit vector.
6220 bool Upper = IdxVal >= ExtractNumElems;
6221 Vec = Extract128BitVector(Vec, Idx, DAG, dl);
6222
6223 // Extract from it.
6224 SDValue ScaledIdx = Idx;
6225 if (Upper)
6226 ScaledIdx = DAG.getNode(ISD::SUB, dl, Idx.getValueType(), Idx,
6227 DAG.getConstant(ExtractNumElems,
6228 Idx.getValueType()));
6229 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
6230 ScaledIdx);
6231 }
6232
6233 assert(Vec.getValueSizeInBits() <= 128 && "Unexpected vector length");
6234
Evan Cheng62a3f152008-03-24 21:52:23 +00006235 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006236 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006237 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00006238 return Res;
6239 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00006240
Owen Andersone50ed302009-08-10 22:56:29 +00006241 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006242 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006243 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006244 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00006245 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006246 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006247 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006248 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6249 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006250 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006251 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00006252 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006253 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00006254 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00006255 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006256 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00006257 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006258 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006259 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006260 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006261 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006262 if (Idx == 0)
6263 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00006264
Evan Cheng0db9fe62006-04-25 20:13:52 +00006265 // SHUFPS the element to the lowest double word, then movss.
Nate Begeman9008ca62009-04-27 18:41:29 +00006266 int Mask[4] = { Idx, -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006267 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006268 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006269 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006270 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006271 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00006272 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006273 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
6274 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
6275 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006276 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006277 if (Idx == 0)
6278 return Op;
6279
6280 // UNPCKHPD the element to the lowest double word, then movsd.
6281 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
6282 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00006283 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006284 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006285 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006286 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006287 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006288 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006289 }
6290
Dan Gohman475871a2008-07-27 21:46:04 +00006291 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006292}
6293
Dan Gohman475871a2008-07-27 21:46:04 +00006294SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006295X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
6296 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006297 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006298 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006299 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006300
Dan Gohman475871a2008-07-27 21:46:04 +00006301 SDValue N0 = Op.getOperand(0);
6302 SDValue N1 = Op.getOperand(1);
6303 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00006304
Dan Gohman8a55ce42009-09-23 21:02:20 +00006305 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00006306 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006307 unsigned Opc;
6308 if (VT == MVT::v8i16)
6309 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006310 else if (VT == MVT::v16i8)
6311 Opc = X86ISD::PINSRB;
6312 else
6313 Opc = X86ISD::PINSRB;
6314
Nate Begeman14d12ca2008-02-11 04:19:36 +00006315 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
6316 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006317 if (N1.getValueType() != MVT::i32)
6318 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6319 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006320 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00006321 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006322 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006323 // Bits [7:6] of the constant are the source select. This will always be
6324 // zero here. The DAG Combiner may combine an extract_elt index into these
6325 // bits. For example (insert (extract, 3), 2) could be matched by putting
6326 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00006327 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00006328 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00006329 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00006330 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006331 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00006332 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00006333 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00006334 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006335 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00006336 // PINSR* works with constant index.
6337 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006338 }
Dan Gohman475871a2008-07-27 21:46:04 +00006339 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006340}
6341
Dan Gohman475871a2008-07-27 21:46:04 +00006342SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006343X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006344 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006345 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006346
David Greene6b381262011-02-09 15:32:06 +00006347 DebugLoc dl = Op.getDebugLoc();
6348 SDValue N0 = Op.getOperand(0);
6349 SDValue N1 = Op.getOperand(1);
6350 SDValue N2 = Op.getOperand(2);
6351
6352 // If this is a 256-bit vector result, first insert into a 128-bit
6353 // vector and then insert into the 256-bit vector.
6354 if (VT.getSizeInBits() > 128) {
6355 if (!isa<ConstantSDNode>(N2))
6356 return SDValue();
6357
6358 // Get the 128-bit vector.
6359 unsigned NumElems = VT.getVectorNumElements();
6360 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
6361 bool Upper = IdxVal >= NumElems / 2;
6362
6363 SDValue SubN0 = Extract128BitVector(N0, N2, DAG, dl);
6364
6365 // Insert into it.
6366 SDValue ScaledN2 = N2;
6367 if (Upper)
6368 ScaledN2 = DAG.getNode(ISD::SUB, dl, N2.getValueType(), N2,
Owen Anderson95771af2011-02-25 21:41:48 +00006369 DAG.getConstant(NumElems /
David Greene6b381262011-02-09 15:32:06 +00006370 (VT.getSizeInBits() / 128),
6371 N2.getValueType()));
6372 Op = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, SubN0.getValueType(), SubN0,
6373 N1, ScaledN2);
6374
6375 // Insert the 128-bit vector
6376 // FIXME: Why UNDEF?
6377 return Insert128BitVector(N0, Op, N2, DAG, dl);
6378 }
6379
Nate Begeman14d12ca2008-02-11 04:19:36 +00006380 if (Subtarget->hasSSE41())
6381 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
6382
Dan Gohman8a55ce42009-09-23 21:02:20 +00006383 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00006384 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00006385
Dan Gohman8a55ce42009-09-23 21:02:20 +00006386 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00006387 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
6388 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006389 if (N1.getValueType() != MVT::i32)
6390 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6391 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006392 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00006393 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006394 }
Dan Gohman475871a2008-07-27 21:46:04 +00006395 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006396}
6397
Dan Gohman475871a2008-07-27 21:46:04 +00006398SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006399X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00006400 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006401 DebugLoc dl = Op.getDebugLoc();
David Greene2fcdfb42011-02-10 23:11:29 +00006402 EVT OpVT = Op.getValueType();
6403
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00006404 // If this is a 256-bit vector result, first insert into a 128-bit
6405 // vector and then insert into the 256-bit vector.
6406 if (OpVT.getSizeInBits() > 128) {
6407 // Insert into a 128-bit vector.
6408 EVT VT128 = EVT::getVectorVT(*Context,
6409 OpVT.getVectorElementType(),
6410 OpVT.getVectorNumElements() / 2);
6411
6412 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
6413
6414 // Insert the 128-bit vector.
6415 return Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, OpVT), Op,
6416 DAG.getConstant(0, MVT::i32),
6417 DAG, dl);
6418 }
6419
Chris Lattnerf172ecd2010-07-04 23:07:25 +00006420 if (Op.getValueType() == MVT::v1i64 &&
6421 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00006422 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00006423
Owen Anderson825b72b2009-08-11 20:47:22 +00006424 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00006425 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
6426 "Expected an SSE type!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006427 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00006428 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006429}
6430
David Greene91585092011-01-26 15:38:49 +00006431// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
6432// a simple subregister reference or explicit instructions to grab
6433// upper bits of a vector.
6434SDValue
6435X86TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6436 if (Subtarget->hasAVX()) {
David Greenea5f26012011-02-07 19:36:54 +00006437 DebugLoc dl = Op.getNode()->getDebugLoc();
6438 SDValue Vec = Op.getNode()->getOperand(0);
6439 SDValue Idx = Op.getNode()->getOperand(1);
6440
6441 if (Op.getNode()->getValueType(0).getSizeInBits() == 128
6442 && Vec.getNode()->getValueType(0).getSizeInBits() == 256) {
6443 return Extract128BitVector(Vec, Idx, DAG, dl);
6444 }
David Greene91585092011-01-26 15:38:49 +00006445 }
6446 return SDValue();
6447}
6448
David Greenecfe33c42011-01-26 19:13:22 +00006449// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
6450// simple superregister reference or explicit instructions to insert
6451// the upper bits of a vector.
6452SDValue
6453X86TargetLowering::LowerINSERT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6454 if (Subtarget->hasAVX()) {
6455 DebugLoc dl = Op.getNode()->getDebugLoc();
6456 SDValue Vec = Op.getNode()->getOperand(0);
6457 SDValue SubVec = Op.getNode()->getOperand(1);
6458 SDValue Idx = Op.getNode()->getOperand(2);
6459
6460 if (Op.getNode()->getValueType(0).getSizeInBits() == 256
6461 && SubVec.getNode()->getValueType(0).getSizeInBits() == 128) {
David Greenea5f26012011-02-07 19:36:54 +00006462 return Insert128BitVector(Vec, SubVec, Idx, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00006463 }
6464 }
6465 return SDValue();
6466}
6467
Bill Wendling056292f2008-09-16 21:48:12 +00006468// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
6469// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
6470// one of the above mentioned nodes. It has to be wrapped because otherwise
6471// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
6472// be used to form addressing mode. These wrapped nodes will be selected
6473// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00006474SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006475X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006476 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006477
Chris Lattner41621a22009-06-26 19:22:52 +00006478 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6479 // global base reg.
6480 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006481 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006482 CodeModel::Model M = getTargetMachine().getCodeModel();
6483
Chris Lattner4f066492009-07-11 20:29:19 +00006484 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006485 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006486 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006487 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006488 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006489 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006490 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006491
Evan Cheng1606e8e2009-03-13 07:51:59 +00006492 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00006493 CP->getAlignment(),
6494 CP->getOffset(), OpFlag);
6495 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00006496 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006497 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00006498 if (OpFlag) {
6499 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00006500 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006501 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006502 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006503 }
6504
6505 return Result;
6506}
6507
Dan Gohmand858e902010-04-17 15:26:15 +00006508SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006509 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006510
Chris Lattner18c59872009-06-27 04:16:01 +00006511 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6512 // global base reg.
6513 unsigned char OpFlag = 0;
6514 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006515 CodeModel::Model M = getTargetMachine().getCodeModel();
6516
Chris Lattner4f066492009-07-11 20:29:19 +00006517 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006518 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006519 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006520 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006521 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006522 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006523 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006524
Chris Lattner18c59872009-06-27 04:16:01 +00006525 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
6526 OpFlag);
6527 DebugLoc DL = JT->getDebugLoc();
6528 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006529
Chris Lattner18c59872009-06-27 04:16:01 +00006530 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00006531 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00006532 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6533 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006534 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006535 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006536
Chris Lattner18c59872009-06-27 04:16:01 +00006537 return Result;
6538}
6539
6540SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006541X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006542 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00006543
Chris Lattner18c59872009-06-27 04:16:01 +00006544 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6545 // global base reg.
6546 unsigned char OpFlag = 0;
6547 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006548 CodeModel::Model M = getTargetMachine().getCodeModel();
6549
Chris Lattner4f066492009-07-11 20:29:19 +00006550 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006551 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006552 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006553 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006554 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006555 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006556 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006557
Chris Lattner18c59872009-06-27 04:16:01 +00006558 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00006559
Chris Lattner18c59872009-06-27 04:16:01 +00006560 DebugLoc DL = Op.getDebugLoc();
6561 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006562
6563
Chris Lattner18c59872009-06-27 04:16:01 +00006564 // With PIC, the address is actually $g + Offset.
6565 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00006566 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00006567 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6568 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006569 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006570 Result);
6571 }
Eric Christopherfd179292009-08-27 18:07:15 +00006572
Chris Lattner18c59872009-06-27 04:16:01 +00006573 return Result;
6574}
6575
Dan Gohman475871a2008-07-27 21:46:04 +00006576SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006577X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00006578 // Create the TargetBlockAddressAddress node.
6579 unsigned char OpFlags =
6580 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00006581 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00006582 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00006583 DebugLoc dl = Op.getDebugLoc();
6584 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
6585 /*isTarget=*/true, OpFlags);
6586
Dan Gohmanf705adb2009-10-30 01:28:02 +00006587 if (Subtarget->isPICStyleRIPRel() &&
6588 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00006589 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6590 else
6591 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00006592
Dan Gohman29cbade2009-11-20 23:18:13 +00006593 // With PIC, the address is actually $g + Offset.
6594 if (isGlobalRelativeToPICBase(OpFlags)) {
6595 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6596 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
6597 Result);
6598 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00006599
6600 return Result;
6601}
6602
6603SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00006604X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00006605 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00006606 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00006607 // Create the TargetGlobalAddress node, folding in the constant
6608 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00006609 unsigned char OpFlags =
6610 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006611 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00006612 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006613 if (OpFlags == X86II::MO_NO_FLAG &&
6614 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00006615 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00006616 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00006617 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006618 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00006619 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006620 }
Eric Christopherfd179292009-08-27 18:07:15 +00006621
Chris Lattner4f066492009-07-11 20:29:19 +00006622 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006623 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00006624 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6625 else
6626 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00006627
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006628 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00006629 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006630 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6631 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006632 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006633 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006634
Chris Lattner36c25012009-07-10 07:34:39 +00006635 // For globals that require a load from a stub to get the address, emit the
6636 // load.
6637 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00006638 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006639 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006640
Dan Gohman6520e202008-10-18 02:06:02 +00006641 // If there was a non-zero offset that we didn't fold, create an explicit
6642 // addition for it.
6643 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006644 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00006645 DAG.getConstant(Offset, getPointerTy()));
6646
Evan Cheng0db9fe62006-04-25 20:13:52 +00006647 return Result;
6648}
6649
Evan Chengda43bcf2008-09-24 00:05:32 +00006650SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006651X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00006652 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00006653 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006654 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00006655}
6656
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006657static SDValue
6658GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00006659 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00006660 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006661 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00006662 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006663 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006664 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006665 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006666 GA->getOffset(),
6667 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006668 if (InFlag) {
6669 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006670 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006671 } else {
6672 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006673 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006674 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006675
6676 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00006677 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006678
Rafael Espindola15f1b662009-04-24 12:59:40 +00006679 SDValue Flag = Chain.getValue(1);
6680 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006681}
6682
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006683// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006684static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006685LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006686 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00006687 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00006688 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
6689 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006690 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006691 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006692 InFlag = Chain.getValue(1);
6693
Chris Lattnerb903bed2009-06-26 21:20:29 +00006694 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006695}
6696
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006697// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006698static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006699LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006700 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006701 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
6702 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006703}
6704
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006705// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
6706// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00006707static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006708 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00006709 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006710 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00006711
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006712 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
6713 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
6714 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00006715
Michael J. Spencerec38de22010-10-10 22:04:20 +00006716 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006717 DAG.getIntPtrConstant(0),
6718 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00006719
Chris Lattnerb903bed2009-06-26 21:20:29 +00006720 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006721 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
6722 // initialexec.
6723 unsigned WrapperKind = X86ISD::Wrapper;
6724 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006725 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00006726 } else if (is64Bit) {
6727 assert(model == TLSModel::InitialExec);
6728 OperandFlags = X86II::MO_GOTTPOFF;
6729 WrapperKind = X86ISD::WrapperRIP;
6730 } else {
6731 assert(model == TLSModel::InitialExec);
6732 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00006733 }
Eric Christopherfd179292009-08-27 18:07:15 +00006734
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006735 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
6736 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00006737 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00006738 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006739 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006740 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006741
Rafael Espindola9a580232009-02-27 13:37:18 +00006742 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006743 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006744 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006745
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006746 // The address of the thread local variable is the add of the thread
6747 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00006748 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006749}
6750
Dan Gohman475871a2008-07-27 21:46:04 +00006751SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006752X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00006753
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006754 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00006755 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00006756
Eric Christopher30ef0e52010-06-03 04:07:48 +00006757 if (Subtarget->isTargetELF()) {
6758 // TODO: implement the "local dynamic" model
6759 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00006760
Eric Christopher30ef0e52010-06-03 04:07:48 +00006761 // If GV is an alias then use the aliasee for determining
6762 // thread-localness.
6763 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
6764 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006765
6766 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00006767 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006768
Eric Christopher30ef0e52010-06-03 04:07:48 +00006769 switch (model) {
6770 case TLSModel::GeneralDynamic:
6771 case TLSModel::LocalDynamic: // not implemented
6772 if (Subtarget->is64Bit())
6773 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
6774 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006775
Eric Christopher30ef0e52010-06-03 04:07:48 +00006776 case TLSModel::InitialExec:
6777 case TLSModel::LocalExec:
6778 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
6779 Subtarget->is64Bit());
6780 }
6781 } else if (Subtarget->isTargetDarwin()) {
6782 // Darwin only has one model of TLS. Lower to that.
6783 unsigned char OpFlag = 0;
6784 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
6785 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006786
Eric Christopher30ef0e52010-06-03 04:07:48 +00006787 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6788 // global base reg.
6789 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
6790 !Subtarget->is64Bit();
6791 if (PIC32)
6792 OpFlag = X86II::MO_TLVP_PIC_BASE;
6793 else
6794 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006795 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006796 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00006797 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00006798 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00006799 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006800
Eric Christopher30ef0e52010-06-03 04:07:48 +00006801 // With PIC32, the address is actually $g + Offset.
6802 if (PIC32)
6803 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6804 DAG.getNode(X86ISD::GlobalBaseReg,
6805 DebugLoc(), getPointerTy()),
6806 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006807
Eric Christopher30ef0e52010-06-03 04:07:48 +00006808 // Lowering the machine isd will make sure everything is in the right
6809 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00006810 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00006811 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00006812 SDValue Args[] = { Chain, Offset };
6813 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006814
Eric Christopher30ef0e52010-06-03 04:07:48 +00006815 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
6816 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6817 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00006818
Eric Christopher30ef0e52010-06-03 04:07:48 +00006819 // And our return value (tls address) is in the standard call return value
6820 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00006821 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
6822 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006823 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006824
Eric Christopher30ef0e52010-06-03 04:07:48 +00006825 assert(false &&
6826 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00006827
Torok Edwinc23197a2009-07-14 16:55:14 +00006828 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00006829 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006830}
6831
Evan Cheng0db9fe62006-04-25 20:13:52 +00006832
Nadav Rotem43012222011-05-11 08:12:09 +00006833/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00006834/// take a 2 x i32 value to shift plus a shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00006835SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00006836 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00006837 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006838 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006839 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006840 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00006841 SDValue ShOpLo = Op.getOperand(0);
6842 SDValue ShOpHi = Op.getOperand(1);
6843 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00006844 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00006845 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00006846 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00006847
Dan Gohman475871a2008-07-27 21:46:04 +00006848 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006849 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006850 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
6851 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006852 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006853 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
6854 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006855 }
Evan Chenge3413162006-01-09 18:33:28 +00006856
Owen Anderson825b72b2009-08-11 20:47:22 +00006857 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
6858 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00006859 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00006860 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00006861
Dan Gohman475871a2008-07-27 21:46:04 +00006862 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00006863 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00006864 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
6865 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00006866
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006867 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006868 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6869 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006870 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006871 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6872 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006873 }
6874
Dan Gohman475871a2008-07-27 21:46:04 +00006875 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00006876 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006877}
Evan Chenga3195e82006-01-12 22:54:21 +00006878
Dan Gohmand858e902010-04-17 15:26:15 +00006879SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
6880 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006881 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00006882
Dale Johannesen0488fb62010-09-30 23:57:10 +00006883 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006884 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006885
Owen Anderson825b72b2009-08-11 20:47:22 +00006886 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00006887 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00006888
Eli Friedman36df4992009-05-27 00:47:34 +00006889 // These are really Legal; return the operand so the caller accepts it as
6890 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006891 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00006892 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00006893 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00006894 Subtarget->is64Bit()) {
6895 return Op;
6896 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006897
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006898 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006899 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006900 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00006901 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006902 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00006903 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00006904 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006905 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006906 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006907 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
6908}
Evan Cheng0db9fe62006-04-25 20:13:52 +00006909
Owen Andersone50ed302009-08-10 22:56:29 +00006910SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00006911 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00006912 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006913 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00006914 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00006915 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00006916 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006917 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00006918 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00006919 else
Owen Anderson825b72b2009-08-11 20:47:22 +00006920 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006921
Chris Lattner492a43e2010-09-22 01:28:21 +00006922 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006923
Stuart Hastings84be9582011-06-02 15:57:11 +00006924 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
6925 MachineMemOperand *MMO;
6926 if (FI) {
6927 int SSFI = FI->getIndex();
6928 MMO =
6929 DAG.getMachineFunction()
6930 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6931 MachineMemOperand::MOLoad, ByteSize, ByteSize);
6932 } else {
6933 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
6934 StackSlot = StackSlot.getOperand(1);
6935 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006936 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006937 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
6938 X86ISD::FILD, DL,
6939 Tys, Ops, array_lengthof(Ops),
6940 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006941
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006942 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006943 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00006944 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006945
6946 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
6947 // shouldn't be necessary except that RFP cannot be live across
6948 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006949 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006950 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
6951 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006952 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00006953 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006954 SDValue Ops[] = {
6955 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
6956 };
Chris Lattner492a43e2010-09-22 01:28:21 +00006957 MachineMemOperand *MMO =
6958 DAG.getMachineFunction()
6959 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006960 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006961
Chris Lattner492a43e2010-09-22 01:28:21 +00006962 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
6963 Ops, array_lengthof(Ops),
6964 Op.getValueType(), MMO);
6965 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006966 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006967 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006968 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006969
Evan Cheng0db9fe62006-04-25 20:13:52 +00006970 return Result;
6971}
6972
Bill Wendling8b8a6362009-01-17 03:56:04 +00006973// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006974SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
6975 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00006976 // This algorithm is not obvious. Here it is in C code, more or less:
6977 /*
6978 double uint64_to_double( uint32_t hi, uint32_t lo ) {
6979 static const __m128i exp = { 0x4330000045300000ULL, 0 };
6980 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00006981
Bill Wendling8b8a6362009-01-17 03:56:04 +00006982 // Copy ints to xmm registers.
6983 __m128i xh = _mm_cvtsi32_si128( hi );
6984 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00006985
Bill Wendling8b8a6362009-01-17 03:56:04 +00006986 // Combine into low half of a single xmm register.
6987 __m128i x = _mm_unpacklo_epi32( xh, xl );
6988 __m128d d;
6989 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00006990
Bill Wendling8b8a6362009-01-17 03:56:04 +00006991 // Merge in appropriate exponents to give the integer bits the right
6992 // magnitude.
6993 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00006994
Bill Wendling8b8a6362009-01-17 03:56:04 +00006995 // Subtract away the biases to deal with the IEEE-754 double precision
6996 // implicit 1.
6997 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00006998
Bill Wendling8b8a6362009-01-17 03:56:04 +00006999 // All conversions up to here are exact. The correctly rounded result is
7000 // calculated using the current rounding mode using the following
7001 // horizontal add.
7002 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
7003 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
7004 // store doesn't really need to be here (except
7005 // maybe to zero the other double)
7006 return sd;
7007 }
7008 */
Dale Johannesen040225f2008-10-21 23:07:49 +00007009
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007010 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00007011 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00007012
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007013 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00007014 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00007015 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
7016 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
7017 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
7018 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007019 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007020 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007021
Bill Wendling8b8a6362009-01-17 03:56:04 +00007022 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00007023 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007024 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00007025 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007026 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007027 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007028 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007029
Owen Anderson825b72b2009-08-11 20:47:22 +00007030 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7031 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007032 Op.getOperand(0),
7033 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007034 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7035 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007036 Op.getOperand(0),
7037 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007038 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
7039 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00007040 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007041 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007042 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007043 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
Owen Anderson825b72b2009-08-11 20:47:22 +00007044 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00007045 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007046 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007047 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007048
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007049 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00007050 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00007051 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
7052 DAG.getUNDEF(MVT::v2f64), ShufMask);
7053 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
7054 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007055 DAG.getIntPtrConstant(0));
7056}
7057
Bill Wendling8b8a6362009-01-17 03:56:04 +00007058// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007059SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
7060 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007061 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007062 // FP constant to bias correct the final result.
7063 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00007064 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007065
7066 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00007067 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7068 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling8b8a6362009-01-17 03:56:04 +00007069 Op.getOperand(0),
7070 DAG.getIntPtrConstant(0)));
7071
Owen Anderson825b72b2009-08-11 20:47:22 +00007072 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007073 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007074 DAG.getIntPtrConstant(0));
7075
7076 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007077 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007078 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007079 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007080 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007081 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007082 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007083 MVT::v2f64, Bias)));
7084 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007085 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007086 DAG.getIntPtrConstant(0));
7087
7088 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007089 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007090
7091 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00007092 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00007093
Owen Anderson825b72b2009-08-11 20:47:22 +00007094 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007095 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00007096 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00007097 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007098 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00007099 }
7100
7101 // Handle final rounding.
7102 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00007103}
7104
Dan Gohmand858e902010-04-17 15:26:15 +00007105SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
7106 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00007107 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007108 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007109
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007110 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00007111 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
7112 // the optimization here.
7113 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00007114 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00007115
Owen Andersone50ed302009-08-10 22:56:29 +00007116 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007117 EVT DstVT = Op.getValueType();
7118 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007119 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007120 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007121 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00007122
7123 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00007124 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007125 if (SrcVT == MVT::i32) {
7126 SDValue WordOff = DAG.getConstant(4, getPointerTy());
7127 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
7128 getPointerTy(), StackSlot, WordOff);
7129 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007130 StackSlot, MachinePointerInfo(),
7131 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007132 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007133 OffsetSlot, MachinePointerInfo(),
7134 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007135 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
7136 return Fild;
7137 }
7138
7139 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
7140 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007141 StackSlot, MachinePointerInfo(),
7142 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007143 // For i64 source, we need to add the appropriate power of 2 if the input
7144 // was negative. This is the same as the optimization in
7145 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
7146 // we must be careful to do the computation in x87 extended precision, not
7147 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00007148 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
7149 MachineMemOperand *MMO =
7150 DAG.getMachineFunction()
7151 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7152 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007153
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007154 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
7155 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007156 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
7157 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007158
7159 APInt FF(32, 0x5F800000ULL);
7160
7161 // Check whether the sign bit is set.
7162 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
7163 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
7164 ISD::SETLT);
7165
7166 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
7167 SDValue FudgePtr = DAG.getConstantPool(
7168 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
7169 getPointerTy());
7170
7171 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
7172 SDValue Zero = DAG.getIntPtrConstant(0);
7173 SDValue Four = DAG.getIntPtrConstant(4);
7174 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
7175 Zero, Four);
7176 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
7177
7178 // Load the value out, extending it from f32 to f80.
7179 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00007180 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00007181 FudgePtr, MachinePointerInfo::getConstantPool(),
7182 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007183 // Extend everything to 80 bits to force it to be done on x87.
7184 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
7185 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007186}
7187
Dan Gohman475871a2008-07-27 21:46:04 +00007188std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00007189FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00007190 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00007191
Owen Andersone50ed302009-08-10 22:56:29 +00007192 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00007193
7194 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007195 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
7196 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00007197 }
7198
Owen Anderson825b72b2009-08-11 20:47:22 +00007199 assert(DstTy.getSimpleVT() <= MVT::i64 &&
7200 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00007201 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00007202
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007203 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007204 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00007205 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007206 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00007207 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00007208 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00007209 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007210 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007211
Evan Cheng87c89352007-10-15 20:11:21 +00007212 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
7213 // stack slot.
7214 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00007215 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00007216 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007217 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00007218
Michael J. Spencerec38de22010-10-10 22:04:20 +00007219
7220
Evan Cheng0db9fe62006-04-25 20:13:52 +00007221 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00007222 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007223 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007224 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
7225 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
7226 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007227 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007228
Dan Gohman475871a2008-07-27 21:46:04 +00007229 SDValue Chain = DAG.getEntryNode();
7230 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00007231 EVT TheVT = Op.getOperand(0).getValueType();
7232 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007233 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00007234 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007235 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007236 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00007237 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00007238 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00007239 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00007240 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00007241
Chris Lattner492a43e2010-09-22 01:28:21 +00007242 MachineMemOperand *MMO =
7243 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7244 MachineMemOperand::MOLoad, MemSize, MemSize);
7245 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
7246 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007247 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00007248 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007249 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7250 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007251
Chris Lattner07290932010-09-22 01:05:16 +00007252 MachineMemOperand *MMO =
7253 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7254 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007255
Evan Cheng0db9fe62006-04-25 20:13:52 +00007256 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00007257 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00007258 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
7259 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00007260
Chris Lattner27a6c732007-11-24 07:07:01 +00007261 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007262}
7263
Dan Gohmand858e902010-04-17 15:26:15 +00007264SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
7265 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00007266 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007267 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007268
Eli Friedman948e95a2009-05-23 09:59:16 +00007269 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00007270 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00007271 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
7272 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00007273
Chris Lattner27a6c732007-11-24 07:07:01 +00007274 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007275 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007276 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00007277}
7278
Dan Gohmand858e902010-04-17 15:26:15 +00007279SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
7280 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00007281 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
7282 SDValue FIST = Vals.first, StackSlot = Vals.second;
7283 assert(FIST.getNode() && "Unexpected failure");
7284
7285 // Load the result.
7286 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007287 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007288}
7289
Dan Gohmand858e902010-04-17 15:26:15 +00007290SDValue X86TargetLowering::LowerFABS(SDValue Op,
7291 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007292 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007293 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007294 EVT VT = Op.getValueType();
7295 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007296 if (VT.isVector())
7297 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007298 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007299 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007300 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00007301 CV.push_back(C);
7302 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007303 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007304 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00007305 CV.push_back(C);
7306 CV.push_back(C);
7307 CV.push_back(C);
7308 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007309 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007310 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007311 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007312 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007313 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007314 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007315 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007316}
7317
Dan Gohmand858e902010-04-17 15:26:15 +00007318SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007319 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007320 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007321 EVT VT = Op.getValueType();
7322 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00007323 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007324 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007325 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007326 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007327 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00007328 CV.push_back(C);
7329 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007330 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007331 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00007332 CV.push_back(C);
7333 CV.push_back(C);
7334 CV.push_back(C);
7335 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007336 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007337 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007338 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007339 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007340 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007341 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007342 if (VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007343 return DAG.getNode(ISD::BITCAST, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007344 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007345 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007346 Op.getOperand(0)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007347 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00007348 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007349 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00007350 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007351}
7352
Dan Gohmand858e902010-04-17 15:26:15 +00007353SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007354 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00007355 SDValue Op0 = Op.getOperand(0);
7356 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007357 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007358 EVT VT = Op.getValueType();
7359 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00007360
7361 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007362 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007363 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007364 SrcVT = VT;
7365 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007366 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007367 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007368 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007369 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007370 }
7371
7372 // At this point the operands and the result should have the same
7373 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00007374
Evan Cheng68c47cb2007-01-05 07:55:56 +00007375 // First get the sign bit of second operand.
7376 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007377 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007378 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
7379 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007380 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007381 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
7382 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7383 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7384 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007385 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007386 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007387 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007388 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007389 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007390 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007391 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007392
7393 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007394 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007395 // Op0 is MVT::f32, Op1 is MVT::f64.
7396 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
7397 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
7398 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007399 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00007400 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00007401 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007402 }
7403
Evan Cheng73d6cf12007-01-05 21:37:56 +00007404 // Clear first operand sign bit.
7405 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00007406 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007407 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
7408 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007409 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007410 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
7411 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7412 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7413 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007414 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007415 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007416 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007417 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007418 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007419 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007420 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007421
7422 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00007423 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007424}
7425
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00007426SDValue X86TargetLowering::LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) const {
7427 SDValue N0 = Op.getOperand(0);
7428 DebugLoc dl = Op.getDebugLoc();
7429 EVT VT = Op.getValueType();
7430
7431 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
7432 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
7433 DAG.getConstant(1, VT));
7434 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
7435}
7436
Dan Gohman076aee32009-03-04 19:44:21 +00007437/// Emit nodes that will be selected as "test Op0,Op0", or something
7438/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007439SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007440 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00007441 DebugLoc dl = Op.getDebugLoc();
7442
Dan Gohman31125812009-03-07 01:58:32 +00007443 // CF and OF aren't always set the way we want. Determine which
7444 // of these we need.
7445 bool NeedCF = false;
7446 bool NeedOF = false;
7447 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007448 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00007449 case X86::COND_A: case X86::COND_AE:
7450 case X86::COND_B: case X86::COND_BE:
7451 NeedCF = true;
7452 break;
7453 case X86::COND_G: case X86::COND_GE:
7454 case X86::COND_L: case X86::COND_LE:
7455 case X86::COND_O: case X86::COND_NO:
7456 NeedOF = true;
7457 break;
Dan Gohman31125812009-03-07 01:58:32 +00007458 }
7459
Dan Gohman076aee32009-03-04 19:44:21 +00007460 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00007461 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
7462 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007463 if (Op.getResNo() != 0 || NeedOF || NeedCF)
7464 // Emit a CMP with 0, which is the TEST pattern.
7465 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7466 DAG.getConstant(0, Op.getValueType()));
7467
7468 unsigned Opcode = 0;
7469 unsigned NumOperands = 0;
7470 switch (Op.getNode()->getOpcode()) {
7471 case ISD::ADD:
7472 // Due to an isel shortcoming, be conservative if this add is likely to be
7473 // selected as part of a load-modify-store instruction. When the root node
7474 // in a match is a store, isel doesn't know how to remap non-chain non-flag
7475 // uses of other nodes in the match, such as the ADD in this case. This
7476 // leads to the ADD being left around and reselected, with the result being
7477 // two adds in the output. Alas, even if none our users are stores, that
7478 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
7479 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
7480 // climbing the DAG back to the root, and it doesn't seem to be worth the
7481 // effort.
7482 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00007483 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007484 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
7485 goto default_case;
7486
7487 if (ConstantSDNode *C =
7488 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
7489 // An add of one will be selected as an INC.
7490 if (C->getAPIntValue() == 1) {
7491 Opcode = X86ISD::INC;
7492 NumOperands = 1;
7493 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00007494 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007495
7496 // An add of negative one (subtract of one) will be selected as a DEC.
7497 if (C->getAPIntValue().isAllOnesValue()) {
7498 Opcode = X86ISD::DEC;
7499 NumOperands = 1;
7500 break;
7501 }
Dan Gohman076aee32009-03-04 19:44:21 +00007502 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007503
7504 // Otherwise use a regular EFLAGS-setting add.
7505 Opcode = X86ISD::ADD;
7506 NumOperands = 2;
7507 break;
7508 case ISD::AND: {
7509 // If the primary and result isn't used, don't bother using X86ISD::AND,
7510 // because a TEST instruction will be better.
7511 bool NonFlagUse = false;
7512 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7513 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
7514 SDNode *User = *UI;
7515 unsigned UOpNo = UI.getOperandNo();
7516 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
7517 // Look pass truncate.
7518 UOpNo = User->use_begin().getOperandNo();
7519 User = *User->use_begin();
7520 }
7521
7522 if (User->getOpcode() != ISD::BRCOND &&
7523 User->getOpcode() != ISD::SETCC &&
7524 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
7525 NonFlagUse = true;
7526 break;
7527 }
Dan Gohman076aee32009-03-04 19:44:21 +00007528 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007529
7530 if (!NonFlagUse)
7531 break;
7532 }
7533 // FALL THROUGH
7534 case ISD::SUB:
7535 case ISD::OR:
7536 case ISD::XOR:
7537 // Due to the ISEL shortcoming noted above, be conservative if this op is
7538 // likely to be selected as part of a load-modify-store instruction.
7539 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7540 UE = Op.getNode()->use_end(); UI != UE; ++UI)
7541 if (UI->getOpcode() == ISD::STORE)
7542 goto default_case;
7543
7544 // Otherwise use a regular EFLAGS-setting instruction.
7545 switch (Op.getNode()->getOpcode()) {
7546 default: llvm_unreachable("unexpected operator!");
7547 case ISD::SUB: Opcode = X86ISD::SUB; break;
7548 case ISD::OR: Opcode = X86ISD::OR; break;
7549 case ISD::XOR: Opcode = X86ISD::XOR; break;
7550 case ISD::AND: Opcode = X86ISD::AND; break;
7551 }
7552
7553 NumOperands = 2;
7554 break;
7555 case X86ISD::ADD:
7556 case X86ISD::SUB:
7557 case X86ISD::INC:
7558 case X86ISD::DEC:
7559 case X86ISD::OR:
7560 case X86ISD::XOR:
7561 case X86ISD::AND:
7562 return SDValue(Op.getNode(), 1);
7563 default:
7564 default_case:
7565 break;
Dan Gohman076aee32009-03-04 19:44:21 +00007566 }
7567
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007568 if (Opcode == 0)
7569 // Emit a CMP with 0, which is the TEST pattern.
7570 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7571 DAG.getConstant(0, Op.getValueType()));
7572
7573 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
7574 SmallVector<SDValue, 4> Ops;
7575 for (unsigned i = 0; i != NumOperands; ++i)
7576 Ops.push_back(Op.getOperand(i));
7577
7578 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
7579 DAG.ReplaceAllUsesWith(Op, New);
7580 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00007581}
7582
7583/// Emit nodes that will be selected as "cmp Op0,Op1", or something
7584/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007585SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007586 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00007587 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
7588 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00007589 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00007590
7591 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00007592 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00007593}
7594
Evan Chengd40d03e2010-01-06 19:38:29 +00007595/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
7596/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00007597SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
7598 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00007599 SDValue Op0 = And.getOperand(0);
7600 SDValue Op1 = And.getOperand(1);
7601 if (Op0.getOpcode() == ISD::TRUNCATE)
7602 Op0 = Op0.getOperand(0);
7603 if (Op1.getOpcode() == ISD::TRUNCATE)
7604 Op1 = Op1.getOperand(0);
7605
Evan Chengd40d03e2010-01-06 19:38:29 +00007606 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00007607 if (Op1.getOpcode() == ISD::SHL)
7608 std::swap(Op0, Op1);
7609 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00007610 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
7611 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00007612 // If we looked past a truncate, check that it's only truncating away
7613 // known zeros.
7614 unsigned BitWidth = Op0.getValueSizeInBits();
7615 unsigned AndBitWidth = And.getValueSizeInBits();
7616 if (BitWidth > AndBitWidth) {
7617 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
7618 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
7619 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
7620 return SDValue();
7621 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007622 LHS = Op1;
7623 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00007624 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007625 } else if (Op1.getOpcode() == ISD::Constant) {
7626 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
7627 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00007628 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
7629 LHS = AndLHS.getOperand(0);
7630 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007631 }
Evan Chengd40d03e2010-01-06 19:38:29 +00007632 }
Evan Cheng0488db92007-09-25 01:57:46 +00007633
Evan Chengd40d03e2010-01-06 19:38:29 +00007634 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00007635 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00007636 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00007637 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00007638 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00007639 // Also promote i16 to i32 for performance / code size reason.
7640 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00007641 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00007642 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00007643
Evan Chengd40d03e2010-01-06 19:38:29 +00007644 // If the operand types disagree, extend the shift amount to match. Since
7645 // BT ignores high bits (like shifts) we can use anyextend.
7646 if (LHS.getValueType() != RHS.getValueType())
7647 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007648
Evan Chengd40d03e2010-01-06 19:38:29 +00007649 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
7650 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
7651 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7652 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00007653 }
7654
Evan Cheng54de3ea2010-01-05 06:52:31 +00007655 return SDValue();
7656}
7657
Dan Gohmand858e902010-04-17 15:26:15 +00007658SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00007659 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
7660 SDValue Op0 = Op.getOperand(0);
7661 SDValue Op1 = Op.getOperand(1);
7662 DebugLoc dl = Op.getDebugLoc();
7663 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7664
7665 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00007666 // Lower (X & (1 << N)) == 0 to BT(X, N).
7667 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
7668 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Andrew Trickf6c39412011-03-23 23:11:02 +00007669 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007670 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00007671 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007672 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7673 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
7674 if (NewSetCC.getNode())
7675 return NewSetCC;
7676 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00007677
Chris Lattner481eebc2010-12-19 21:23:48 +00007678 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
7679 // these.
7680 if (Op1.getOpcode() == ISD::Constant &&
Andrew Trickf6c39412011-03-23 23:11:02 +00007681 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
Evan Cheng2c755ba2010-02-27 07:36:59 +00007682 cast<ConstantSDNode>(Op1)->isNullValue()) &&
7683 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007684
Chris Lattner481eebc2010-12-19 21:23:48 +00007685 // If the input is a setcc, then reuse the input setcc or use a new one with
7686 // the inverted condition.
7687 if (Op0.getOpcode() == X86ISD::SETCC) {
7688 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
7689 bool Invert = (CC == ISD::SETNE) ^
7690 cast<ConstantSDNode>(Op1)->isNullValue();
7691 if (!Invert) return Op0;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007692
Evan Cheng2c755ba2010-02-27 07:36:59 +00007693 CCode = X86::GetOppositeBranchCondition(CCode);
Chris Lattner481eebc2010-12-19 21:23:48 +00007694 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7695 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
7696 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007697 }
7698
Evan Chenge5b51ac2010-04-17 06:13:15 +00007699 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00007700 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007701 if (X86CC == X86::COND_INVALID)
7702 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007703
Chris Lattnerc19d1c32010-12-19 22:08:31 +00007704 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00007705 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattnerc19d1c32010-12-19 22:08:31 +00007706 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
Evan Cheng0488db92007-09-25 01:57:46 +00007707}
7708
Dan Gohmand858e902010-04-17 15:26:15 +00007709SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007710 SDValue Cond;
7711 SDValue Op0 = Op.getOperand(0);
7712 SDValue Op1 = Op.getOperand(1);
7713 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00007714 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00007715 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
7716 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007717 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00007718
7719 if (isFP) {
7720 unsigned SSECC = 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007721 EVT VT0 = Op0.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00007722 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
7723 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00007724 bool Swap = false;
7725
7726 switch (SetCCOpcode) {
7727 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007728 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00007729 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007730 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00007731 case ISD::SETGT: Swap = true; // Fallthrough
7732 case ISD::SETLT:
7733 case ISD::SETOLT: SSECC = 1; break;
7734 case ISD::SETOGE:
7735 case ISD::SETGE: Swap = true; // Fallthrough
7736 case ISD::SETLE:
7737 case ISD::SETOLE: SSECC = 2; break;
7738 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007739 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00007740 case ISD::SETNE: SSECC = 4; break;
7741 case ISD::SETULE: Swap = true;
7742 case ISD::SETUGE: SSECC = 5; break;
7743 case ISD::SETULT: Swap = true;
7744 case ISD::SETUGT: SSECC = 6; break;
7745 case ISD::SETO: SSECC = 7; break;
7746 }
7747 if (Swap)
7748 std::swap(Op0, Op1);
7749
Nate Begemanfb8ead02008-07-25 19:05:58 +00007750 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00007751 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00007752 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00007753 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007754 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
7755 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007756 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007757 }
7758 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00007759 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007760 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
7761 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007762 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007763 }
Torok Edwinc23197a2009-07-14 16:55:14 +00007764 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00007765 }
7766 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00007767 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00007768 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007769
Nate Begeman30a0de92008-07-17 16:51:19 +00007770 // We are handling one of the integer comparisons here. Since SSE only has
7771 // GT and EQ comparisons for integer, swapping operands and multiple
7772 // operations may be required for some comparisons.
7773 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
7774 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007775
Owen Anderson825b72b2009-08-11 20:47:22 +00007776 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00007777 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007778 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007779 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007780 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
7781 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00007782 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007783
Nate Begeman30a0de92008-07-17 16:51:19 +00007784 switch (SetCCOpcode) {
7785 default: break;
7786 case ISD::SETNE: Invert = true;
7787 case ISD::SETEQ: Opc = EQOpc; break;
7788 case ISD::SETLT: Swap = true;
7789 case ISD::SETGT: Opc = GTOpc; break;
7790 case ISD::SETGE: Swap = true;
7791 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
7792 case ISD::SETULT: Swap = true;
7793 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
7794 case ISD::SETUGE: Swap = true;
7795 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
7796 }
7797 if (Swap)
7798 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007799
Nate Begeman30a0de92008-07-17 16:51:19 +00007800 // Since SSE has no unsigned integer comparisons, we need to flip the sign
7801 // bits of the inputs before performing those operations.
7802 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00007803 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00007804 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
7805 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00007806 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00007807 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
7808 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00007809 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
7810 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00007811 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007812
Dale Johannesenace16102009-02-03 19:33:06 +00007813 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00007814
7815 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00007816 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00007817 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00007818
Nate Begeman30a0de92008-07-17 16:51:19 +00007819 return Result;
7820}
Evan Cheng0488db92007-09-25 01:57:46 +00007821
Evan Cheng370e5342008-12-03 08:38:43 +00007822// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00007823static bool isX86LogicalCmp(SDValue Op) {
7824 unsigned Opc = Op.getNode()->getOpcode();
7825 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
7826 return true;
7827 if (Op.getResNo() == 1 &&
7828 (Opc == X86ISD::ADD ||
7829 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +00007830 Opc == X86ISD::ADC ||
7831 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +00007832 Opc == X86ISD::SMUL ||
7833 Opc == X86ISD::UMUL ||
7834 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00007835 Opc == X86ISD::DEC ||
7836 Opc == X86ISD::OR ||
7837 Opc == X86ISD::XOR ||
7838 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00007839 return true;
7840
Chris Lattner9637d5b2010-12-05 07:49:54 +00007841 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
7842 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007843
Dan Gohman076aee32009-03-04 19:44:21 +00007844 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00007845}
7846
Chris Lattnera2b56002010-12-05 01:23:24 +00007847static bool isZero(SDValue V) {
7848 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
7849 return C && C->isNullValue();
7850}
7851
Chris Lattner96908b12010-12-05 02:00:51 +00007852static bool isAllOnes(SDValue V) {
7853 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
7854 return C && C->isAllOnesValue();
7855}
7856
Dan Gohmand858e902010-04-17 15:26:15 +00007857SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007858 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007859 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +00007860 SDValue Op1 = Op.getOperand(1);
7861 SDValue Op2 = Op.getOperand(2);
7862 DebugLoc DL = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007863 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00007864
Dan Gohman1a492952009-10-20 16:22:37 +00007865 if (Cond.getOpcode() == ISD::SETCC) {
7866 SDValue NewCond = LowerSETCC(Cond, DAG);
7867 if (NewCond.getNode())
7868 Cond = NewCond;
7869 }
Evan Cheng734503b2006-09-11 02:19:56 +00007870
Chris Lattnera2b56002010-12-05 01:23:24 +00007871 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00007872 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +00007873 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00007874 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007875 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +00007876 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
7877 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007878 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007879
Chris Lattnera2b56002010-12-05 01:23:24 +00007880 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007881
7882 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +00007883 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
7884 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +00007885
7886 SDValue CmpOp0 = Cmp.getOperand(0);
7887 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
7888 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007889
Chris Lattner96908b12010-12-05 02:00:51 +00007890 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +00007891 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
7892 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007893
Chris Lattner96908b12010-12-05 02:00:51 +00007894 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
7895 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007896
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007897 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +00007898 if (N2C == 0 || !N2C->isNullValue())
7899 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
7900 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007901 }
7902 }
7903
Chris Lattnera2b56002010-12-05 01:23:24 +00007904 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +00007905 if (Cond.getOpcode() == ISD::AND &&
7906 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7907 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007908 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007909 Cond = Cond.getOperand(0);
7910 }
7911
Evan Cheng3f41d662007-10-08 22:16:29 +00007912 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7913 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007914 if (Cond.getOpcode() == X86ISD::SETCC ||
7915 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007916 CC = Cond.getOperand(0);
7917
Dan Gohman475871a2008-07-27 21:46:04 +00007918 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007919 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00007920 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00007921
Evan Cheng3f41d662007-10-08 22:16:29 +00007922 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007923 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00007924 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00007925 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00007926
Chris Lattnerd1980a52009-03-12 06:52:53 +00007927 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
7928 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00007929 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007930 addTest = false;
7931 }
7932 }
7933
7934 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007935 // Look pass the truncate.
7936 if (Cond.getOpcode() == ISD::TRUNCATE)
7937 Cond = Cond.getOperand(0);
7938
7939 // We know the result of AND is compared against zero. Try to match
7940 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007941 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +00007942 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +00007943 if (NewSetCC.getNode()) {
7944 CC = NewSetCC.getOperand(0);
7945 Cond = NewSetCC.getOperand(1);
7946 addTest = false;
7947 }
7948 }
7949 }
7950
7951 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007952 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007953 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007954 }
7955
Benjamin Kramere915ff32010-12-22 23:09:28 +00007956 // a < b ? -1 : 0 -> RES = ~setcc_carry
7957 // a < b ? 0 : -1 -> RES = setcc_carry
7958 // a >= b ? -1 : 0 -> RES = setcc_carry
7959 // a >= b ? 0 : -1 -> RES = ~setcc_carry
7960 if (Cond.getOpcode() == X86ISD::CMP) {
7961 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
7962
7963 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
7964 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
7965 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
7966 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
7967 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
7968 return DAG.getNOT(DL, Res, Res.getValueType());
7969 return Res;
7970 }
7971 }
7972
Evan Cheng0488db92007-09-25 01:57:46 +00007973 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
7974 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007975 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007976 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +00007977 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00007978}
7979
Evan Cheng370e5342008-12-03 08:38:43 +00007980// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
7981// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
7982// from the AND / OR.
7983static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
7984 Opc = Op.getOpcode();
7985 if (Opc != ISD::OR && Opc != ISD::AND)
7986 return false;
7987 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7988 Op.getOperand(0).hasOneUse() &&
7989 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
7990 Op.getOperand(1).hasOneUse());
7991}
7992
Evan Cheng961d6d42009-02-02 08:19:07 +00007993// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
7994// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00007995static bool isXor1OfSetCC(SDValue Op) {
7996 if (Op.getOpcode() != ISD::XOR)
7997 return false;
7998 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7999 if (N1C && N1C->getAPIntValue() == 1) {
8000 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8001 Op.getOperand(0).hasOneUse();
8002 }
8003 return false;
8004}
8005
Dan Gohmand858e902010-04-17 15:26:15 +00008006SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008007 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008008 SDValue Chain = Op.getOperand(0);
8009 SDValue Cond = Op.getOperand(1);
8010 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008011 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008012 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00008013
Dan Gohman1a492952009-10-20 16:22:37 +00008014 if (Cond.getOpcode() == ISD::SETCC) {
8015 SDValue NewCond = LowerSETCC(Cond, DAG);
8016 if (NewCond.getNode())
8017 Cond = NewCond;
8018 }
Chris Lattnere55484e2008-12-25 05:34:37 +00008019#if 0
8020 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00008021 else if (Cond.getOpcode() == X86ISD::ADD ||
8022 Cond.getOpcode() == X86ISD::SUB ||
8023 Cond.getOpcode() == X86ISD::SMUL ||
8024 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00008025 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00008026#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00008027
Evan Chengad9c0a32009-12-15 00:53:42 +00008028 // Look pass (and (setcc_carry (cmp ...)), 1).
8029 if (Cond.getOpcode() == ISD::AND &&
8030 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8031 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008032 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008033 Cond = Cond.getOperand(0);
8034 }
8035
Evan Cheng3f41d662007-10-08 22:16:29 +00008036 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8037 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00008038 if (Cond.getOpcode() == X86ISD::SETCC ||
8039 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008040 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008041
Dan Gohman475871a2008-07-27 21:46:04 +00008042 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008043 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00008044 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00008045 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00008046 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008047 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00008048 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00008049 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008050 default: break;
8051 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00008052 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00008053 // These can only come from an arithmetic instruction with overflow,
8054 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008055 Cond = Cond.getNode()->getOperand(1);
8056 addTest = false;
8057 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008058 }
Evan Cheng0488db92007-09-25 01:57:46 +00008059 }
Evan Cheng370e5342008-12-03 08:38:43 +00008060 } else {
8061 unsigned CondOpc;
8062 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
8063 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00008064 if (CondOpc == ISD::OR) {
8065 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
8066 // two branches instead of an explicit OR instruction with a
8067 // separate test.
8068 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008069 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00008070 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008071 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008072 Chain, Dest, CC, Cmp);
8073 CC = Cond.getOperand(1).getOperand(0);
8074 Cond = Cmp;
8075 addTest = false;
8076 }
8077 } else { // ISD::AND
8078 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
8079 // two branches instead of an explicit AND instruction with a
8080 // separate test. However, we only do this if this block doesn't
8081 // have a fall-through edge, because this requires an explicit
8082 // jmp when the condition is false.
8083 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008084 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00008085 Op.getNode()->hasOneUse()) {
8086 X86::CondCode CCode =
8087 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8088 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008089 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00008090 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00008091 // Look for an unconditional branch following this conditional branch.
8092 // We need this because we need to reverse the successors in order
8093 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00008094 if (User->getOpcode() == ISD::BR) {
8095 SDValue FalseBB = User->getOperand(1);
8096 SDNode *NewBR =
8097 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00008098 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00008099 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00008100 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00008101
Dale Johannesene4d209d2009-02-03 20:21:25 +00008102 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008103 Chain, Dest, CC, Cmp);
8104 X86::CondCode CCode =
8105 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
8106 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008107 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00008108 Cond = Cmp;
8109 addTest = false;
8110 }
8111 }
Dan Gohman279c22e2008-10-21 03:29:32 +00008112 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00008113 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
8114 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
8115 // It should be transformed during dag combiner except when the condition
8116 // is set by a arithmetics with overflow node.
8117 X86::CondCode CCode =
8118 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8119 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008120 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00008121 Cond = Cond.getOperand(0).getOperand(1);
8122 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00008123 }
Evan Cheng0488db92007-09-25 01:57:46 +00008124 }
8125
8126 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008127 // Look pass the truncate.
8128 if (Cond.getOpcode() == ISD::TRUNCATE)
8129 Cond = Cond.getOperand(0);
8130
8131 // We know the result of AND is compared against zero. Try to match
8132 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008133 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008134 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
8135 if (NewSetCC.getNode()) {
8136 CC = NewSetCC.getOperand(0);
8137 Cond = NewSetCC.getOperand(1);
8138 addTest = false;
8139 }
8140 }
8141 }
8142
8143 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008144 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008145 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008146 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00008147 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00008148 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00008149}
8150
Anton Korobeynikove060b532007-04-17 19:34:00 +00008151
8152// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
8153// Calls to _alloca is needed to probe the stack when allocating more than 4k
8154// bytes in one go. Touching the stack at 4K increments is necessary to ensure
8155// that the guard pages used by the OS virtual memory manager are allocated in
8156// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00008157SDValue
8158X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008159 SelectionDAG &DAG) const {
Duncan Sands1e1ca0b2010-10-21 16:02:12 +00008160 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) &&
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008161 "This should be used only on Windows targets");
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008162 assert(!Subtarget->isTargetEnvMacho());
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008163 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008164
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008165 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00008166 SDValue Chain = Op.getOperand(0);
8167 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008168 // FIXME: Ensure alignment here
8169
Dan Gohman475871a2008-07-27 21:46:04 +00008170 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008171
Owen Anderson825b72b2009-08-11 20:47:22 +00008172 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008173 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008174
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008175 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008176 Flag = Chain.getValue(1);
8177
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008178 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008179
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008180 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00008181 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008182
Dale Johannesendd64c412009-02-04 00:33:20 +00008183 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008184
Dan Gohman475871a2008-07-27 21:46:04 +00008185 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008186 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008187}
8188
Dan Gohmand858e902010-04-17 15:26:15 +00008189SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00008190 MachineFunction &MF = DAG.getMachineFunction();
8191 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
8192
Dan Gohman69de1932008-02-06 22:27:42 +00008193 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00008194 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00008195
Anton Korobeynikove7beda12010-10-03 22:52:07 +00008196 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00008197 // vastart just stores the address of the VarArgsFrameIndex slot into the
8198 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00008199 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8200 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008201 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
8202 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008203 }
8204
8205 // __va_list_tag:
8206 // gp_offset (0 - 6 * 8)
8207 // fp_offset (48 - 48 + 8 * 16)
8208 // overflow_arg_area (point to parameters coming in memory).
8209 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00008210 SmallVector<SDValue, 8> MemOps;
8211 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00008212 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008213 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008214 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
8215 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008216 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008217 MemOps.push_back(Store);
8218
8219 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008220 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008221 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008222 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008223 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
8224 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008225 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008226 MemOps.push_back(Store);
8227
8228 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00008229 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008230 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00008231 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8232 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008233 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
8234 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00008235 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008236 MemOps.push_back(Store);
8237
8238 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00008239 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008240 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00008241 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
8242 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008243 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
8244 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008245 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008246 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00008247 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00008248}
8249
Dan Gohmand858e902010-04-17 15:26:15 +00008250SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00008251 assert(Subtarget->is64Bit() &&
8252 "LowerVAARG only handles 64-bit va_arg!");
8253 assert((Subtarget->isTargetLinux() ||
8254 Subtarget->isTargetDarwin()) &&
8255 "Unhandled target in LowerVAARG");
8256 assert(Op.getNode()->getNumOperands() == 4);
8257 SDValue Chain = Op.getOperand(0);
8258 SDValue SrcPtr = Op.getOperand(1);
8259 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
8260 unsigned Align = Op.getConstantOperandVal(3);
8261 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00008262
Dan Gohman320afb82010-10-12 18:00:49 +00008263 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008264 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Dan Gohman320afb82010-10-12 18:00:49 +00008265 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
8266 uint8_t ArgMode;
8267
8268 // Decide which area this value should be read from.
8269 // TODO: Implement the AMD64 ABI in its entirety. This simple
8270 // selection mechanism works only for the basic types.
8271 if (ArgVT == MVT::f80) {
8272 llvm_unreachable("va_arg for f80 not yet implemented");
8273 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
8274 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
8275 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
8276 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
8277 } else {
8278 llvm_unreachable("Unhandled argument type in LowerVAARG");
8279 }
8280
8281 if (ArgMode == 2) {
8282 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00008283 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00008284 !(DAG.getMachineFunction()
8285 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00008286 Subtarget->hasXMM());
Dan Gohman320afb82010-10-12 18:00:49 +00008287 }
8288
8289 // Insert VAARG_64 node into the DAG
8290 // VAARG_64 returns two values: Variable Argument Address, Chain
8291 SmallVector<SDValue, 11> InstOps;
8292 InstOps.push_back(Chain);
8293 InstOps.push_back(SrcPtr);
8294 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
8295 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
8296 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
8297 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
8298 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
8299 VTs, &InstOps[0], InstOps.size(),
8300 MVT::i64,
8301 MachinePointerInfo(SV),
8302 /*Align=*/0,
8303 /*Volatile=*/false,
8304 /*ReadMem=*/true,
8305 /*WriteMem=*/true);
8306 Chain = VAARG.getValue(1);
8307
8308 // Load the next argument and return it
8309 return DAG.getLoad(ArgVT, dl,
8310 Chain,
8311 VAARG,
8312 MachinePointerInfo(),
8313 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00008314}
8315
Dan Gohmand858e902010-04-17 15:26:15 +00008316SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00008317 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00008318 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00008319 SDValue Chain = Op.getOperand(0);
8320 SDValue DstPtr = Op.getOperand(1);
8321 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00008322 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
8323 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00008324 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00008325
Chris Lattnere72f2022010-09-21 05:40:29 +00008326 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00008327 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00008328 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00008329 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00008330}
8331
Dan Gohman475871a2008-07-27 21:46:04 +00008332SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008333X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008334 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008335 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00008336 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00008337 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00008338 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00008339 case Intrinsic::x86_sse_comieq_ss:
8340 case Intrinsic::x86_sse_comilt_ss:
8341 case Intrinsic::x86_sse_comile_ss:
8342 case Intrinsic::x86_sse_comigt_ss:
8343 case Intrinsic::x86_sse_comige_ss:
8344 case Intrinsic::x86_sse_comineq_ss:
8345 case Intrinsic::x86_sse_ucomieq_ss:
8346 case Intrinsic::x86_sse_ucomilt_ss:
8347 case Intrinsic::x86_sse_ucomile_ss:
8348 case Intrinsic::x86_sse_ucomigt_ss:
8349 case Intrinsic::x86_sse_ucomige_ss:
8350 case Intrinsic::x86_sse_ucomineq_ss:
8351 case Intrinsic::x86_sse2_comieq_sd:
8352 case Intrinsic::x86_sse2_comilt_sd:
8353 case Intrinsic::x86_sse2_comile_sd:
8354 case Intrinsic::x86_sse2_comigt_sd:
8355 case Intrinsic::x86_sse2_comige_sd:
8356 case Intrinsic::x86_sse2_comineq_sd:
8357 case Intrinsic::x86_sse2_ucomieq_sd:
8358 case Intrinsic::x86_sse2_ucomilt_sd:
8359 case Intrinsic::x86_sse2_ucomile_sd:
8360 case Intrinsic::x86_sse2_ucomigt_sd:
8361 case Intrinsic::x86_sse2_ucomige_sd:
8362 case Intrinsic::x86_sse2_ucomineq_sd: {
8363 unsigned Opc = 0;
8364 ISD::CondCode CC = ISD::SETCC_INVALID;
8365 switch (IntNo) {
8366 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008367 case Intrinsic::x86_sse_comieq_ss:
8368 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008369 Opc = X86ISD::COMI;
8370 CC = ISD::SETEQ;
8371 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008372 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008373 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008374 Opc = X86ISD::COMI;
8375 CC = ISD::SETLT;
8376 break;
8377 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008378 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008379 Opc = X86ISD::COMI;
8380 CC = ISD::SETLE;
8381 break;
8382 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008383 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008384 Opc = X86ISD::COMI;
8385 CC = ISD::SETGT;
8386 break;
8387 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008388 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008389 Opc = X86ISD::COMI;
8390 CC = ISD::SETGE;
8391 break;
8392 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008393 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008394 Opc = X86ISD::COMI;
8395 CC = ISD::SETNE;
8396 break;
8397 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008398 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008399 Opc = X86ISD::UCOMI;
8400 CC = ISD::SETEQ;
8401 break;
8402 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008403 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008404 Opc = X86ISD::UCOMI;
8405 CC = ISD::SETLT;
8406 break;
8407 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008408 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008409 Opc = X86ISD::UCOMI;
8410 CC = ISD::SETLE;
8411 break;
8412 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008413 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008414 Opc = X86ISD::UCOMI;
8415 CC = ISD::SETGT;
8416 break;
8417 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008418 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008419 Opc = X86ISD::UCOMI;
8420 CC = ISD::SETGE;
8421 break;
8422 case Intrinsic::x86_sse_ucomineq_ss:
8423 case Intrinsic::x86_sse2_ucomineq_sd:
8424 Opc = X86ISD::UCOMI;
8425 CC = ISD::SETNE;
8426 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008427 }
Evan Cheng734503b2006-09-11 02:19:56 +00008428
Dan Gohman475871a2008-07-27 21:46:04 +00008429 SDValue LHS = Op.getOperand(1);
8430 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00008431 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00008432 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008433 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
8434 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8435 DAG.getConstant(X86CC, MVT::i8), Cond);
8436 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00008437 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008438 // ptest and testp intrinsics. The intrinsic these come from are designed to
8439 // return an integer value, not just an instruction so lower it to the ptest
8440 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00008441 case Intrinsic::x86_sse41_ptestz:
8442 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008443 case Intrinsic::x86_sse41_ptestnzc:
8444 case Intrinsic::x86_avx_ptestz_256:
8445 case Intrinsic::x86_avx_ptestc_256:
8446 case Intrinsic::x86_avx_ptestnzc_256:
8447 case Intrinsic::x86_avx_vtestz_ps:
8448 case Intrinsic::x86_avx_vtestc_ps:
8449 case Intrinsic::x86_avx_vtestnzc_ps:
8450 case Intrinsic::x86_avx_vtestz_pd:
8451 case Intrinsic::x86_avx_vtestc_pd:
8452 case Intrinsic::x86_avx_vtestnzc_pd:
8453 case Intrinsic::x86_avx_vtestz_ps_256:
8454 case Intrinsic::x86_avx_vtestc_ps_256:
8455 case Intrinsic::x86_avx_vtestnzc_ps_256:
8456 case Intrinsic::x86_avx_vtestz_pd_256:
8457 case Intrinsic::x86_avx_vtestc_pd_256:
8458 case Intrinsic::x86_avx_vtestnzc_pd_256: {
8459 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00008460 unsigned X86CC = 0;
8461 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00008462 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008463 case Intrinsic::x86_avx_vtestz_ps:
8464 case Intrinsic::x86_avx_vtestz_pd:
8465 case Intrinsic::x86_avx_vtestz_ps_256:
8466 case Intrinsic::x86_avx_vtestz_pd_256:
8467 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008468 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008469 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008470 // ZF = 1
8471 X86CC = X86::COND_E;
8472 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008473 case Intrinsic::x86_avx_vtestc_ps:
8474 case Intrinsic::x86_avx_vtestc_pd:
8475 case Intrinsic::x86_avx_vtestc_ps_256:
8476 case Intrinsic::x86_avx_vtestc_pd_256:
8477 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008478 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008479 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008480 // CF = 1
8481 X86CC = X86::COND_B;
8482 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008483 case Intrinsic::x86_avx_vtestnzc_ps:
8484 case Intrinsic::x86_avx_vtestnzc_pd:
8485 case Intrinsic::x86_avx_vtestnzc_ps_256:
8486 case Intrinsic::x86_avx_vtestnzc_pd_256:
8487 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00008488 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008489 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008490 // ZF and CF = 0
8491 X86CC = X86::COND_A;
8492 break;
8493 }
Eric Christopherfd179292009-08-27 18:07:15 +00008494
Eric Christopher71c67532009-07-29 00:28:05 +00008495 SDValue LHS = Op.getOperand(1);
8496 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008497 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
8498 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00008499 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
8500 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
8501 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00008502 }
Evan Cheng5759f972008-05-04 09:15:50 +00008503
8504 // Fix vector shift instructions where the last operand is a non-immediate
8505 // i32 value.
8506 case Intrinsic::x86_sse2_pslli_w:
8507 case Intrinsic::x86_sse2_pslli_d:
8508 case Intrinsic::x86_sse2_pslli_q:
8509 case Intrinsic::x86_sse2_psrli_w:
8510 case Intrinsic::x86_sse2_psrli_d:
8511 case Intrinsic::x86_sse2_psrli_q:
8512 case Intrinsic::x86_sse2_psrai_w:
8513 case Intrinsic::x86_sse2_psrai_d:
8514 case Intrinsic::x86_mmx_pslli_w:
8515 case Intrinsic::x86_mmx_pslli_d:
8516 case Intrinsic::x86_mmx_pslli_q:
8517 case Intrinsic::x86_mmx_psrli_w:
8518 case Intrinsic::x86_mmx_psrli_d:
8519 case Intrinsic::x86_mmx_psrli_q:
8520 case Intrinsic::x86_mmx_psrai_w:
8521 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00008522 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00008523 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00008524 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00008525
8526 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00008527 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00008528 switch (IntNo) {
8529 case Intrinsic::x86_sse2_pslli_w:
8530 NewIntNo = Intrinsic::x86_sse2_psll_w;
8531 break;
8532 case Intrinsic::x86_sse2_pslli_d:
8533 NewIntNo = Intrinsic::x86_sse2_psll_d;
8534 break;
8535 case Intrinsic::x86_sse2_pslli_q:
8536 NewIntNo = Intrinsic::x86_sse2_psll_q;
8537 break;
8538 case Intrinsic::x86_sse2_psrli_w:
8539 NewIntNo = Intrinsic::x86_sse2_psrl_w;
8540 break;
8541 case Intrinsic::x86_sse2_psrli_d:
8542 NewIntNo = Intrinsic::x86_sse2_psrl_d;
8543 break;
8544 case Intrinsic::x86_sse2_psrli_q:
8545 NewIntNo = Intrinsic::x86_sse2_psrl_q;
8546 break;
8547 case Intrinsic::x86_sse2_psrai_w:
8548 NewIntNo = Intrinsic::x86_sse2_psra_w;
8549 break;
8550 case Intrinsic::x86_sse2_psrai_d:
8551 NewIntNo = Intrinsic::x86_sse2_psra_d;
8552 break;
8553 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00008554 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00008555 switch (IntNo) {
8556 case Intrinsic::x86_mmx_pslli_w:
8557 NewIntNo = Intrinsic::x86_mmx_psll_w;
8558 break;
8559 case Intrinsic::x86_mmx_pslli_d:
8560 NewIntNo = Intrinsic::x86_mmx_psll_d;
8561 break;
8562 case Intrinsic::x86_mmx_pslli_q:
8563 NewIntNo = Intrinsic::x86_mmx_psll_q;
8564 break;
8565 case Intrinsic::x86_mmx_psrli_w:
8566 NewIntNo = Intrinsic::x86_mmx_psrl_w;
8567 break;
8568 case Intrinsic::x86_mmx_psrli_d:
8569 NewIntNo = Intrinsic::x86_mmx_psrl_d;
8570 break;
8571 case Intrinsic::x86_mmx_psrli_q:
8572 NewIntNo = Intrinsic::x86_mmx_psrl_q;
8573 break;
8574 case Intrinsic::x86_mmx_psrai_w:
8575 NewIntNo = Intrinsic::x86_mmx_psra_w;
8576 break;
8577 case Intrinsic::x86_mmx_psrai_d:
8578 NewIntNo = Intrinsic::x86_mmx_psra_d;
8579 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00008580 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00008581 }
8582 break;
8583 }
8584 }
Mon P Wangefa42202009-09-03 19:56:25 +00008585
8586 // The vector shift intrinsics with scalars uses 32b shift amounts but
8587 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
8588 // to be zero.
8589 SDValue ShOps[4];
8590 ShOps[0] = ShAmt;
8591 ShOps[1] = DAG.getConstant(0, MVT::i32);
8592 if (ShAmtVT == MVT::v4i32) {
8593 ShOps[2] = DAG.getUNDEF(MVT::i32);
8594 ShOps[3] = DAG.getUNDEF(MVT::i32);
8595 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
8596 } else {
8597 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00008598// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00008599 }
8600
Owen Andersone50ed302009-08-10 22:56:29 +00008601 EVT VT = Op.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008602 ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008603 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008604 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00008605 Op.getOperand(1), ShAmt);
8606 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00008607 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008608}
Evan Cheng72261582005-12-20 06:22:03 +00008609
Dan Gohmand858e902010-04-17 15:26:15 +00008610SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
8611 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00008612 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8613 MFI->setReturnAddressIsTaken(true);
8614
Bill Wendling64e87322009-01-16 19:25:27 +00008615 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008616 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00008617
8618 if (Depth > 0) {
8619 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
8620 SDValue Offset =
8621 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00008622 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008623 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00008624 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008625 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00008626 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00008627 }
8628
8629 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00008630 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00008631 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00008632 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00008633}
8634
Dan Gohmand858e902010-04-17 15:26:15 +00008635SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00008636 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8637 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00008638
Owen Andersone50ed302009-08-10 22:56:29 +00008639 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008640 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00008641 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
8642 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00008643 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00008644 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00008645 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
8646 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00008647 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00008648 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00008649}
8650
Dan Gohman475871a2008-07-27 21:46:04 +00008651SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008652 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008653 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008654}
8655
Dan Gohmand858e902010-04-17 15:26:15 +00008656SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008657 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00008658 SDValue Chain = Op.getOperand(0);
8659 SDValue Offset = Op.getOperand(1);
8660 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008661 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008662
Dan Gohmand8816272010-08-11 18:14:00 +00008663 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
8664 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
8665 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008666 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008667
Dan Gohmand8816272010-08-11 18:14:00 +00008668 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
8669 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008670 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008671 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
8672 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00008673 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008674 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008675
Dale Johannesene4d209d2009-02-03 20:21:25 +00008676 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008677 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008678 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008679}
8680
Dan Gohman475871a2008-07-27 21:46:04 +00008681SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008682 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008683 SDValue Root = Op.getOperand(0);
8684 SDValue Trmp = Op.getOperand(1); // trampoline
8685 SDValue FPtr = Op.getOperand(2); // nested function
8686 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008687 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008688
Dan Gohman69de1932008-02-06 22:27:42 +00008689 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008690
8691 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008692 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00008693
8694 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00008695 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
8696 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00008697
Evan Cheng0e6a0522011-07-18 20:57:22 +00008698 const unsigned char N86R10 = X86_MC::getX86RegNum(X86::R10);
8699 const unsigned char N86R11 = X86_MC::getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00008700
8701 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
8702
8703 // Load the pointer to the nested function into R11.
8704 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00008705 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00008706 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008707 Addr, MachinePointerInfo(TrmpAddr),
8708 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008709
Owen Anderson825b72b2009-08-11 20:47:22 +00008710 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8711 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008712 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
8713 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00008714 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008715
8716 // Load the 'nest' parameter value into R10.
8717 // R10 is specified in X86CallingConv.td
8718 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00008719 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8720 DAG.getConstant(10, MVT::i64));
8721 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008722 Addr, MachinePointerInfo(TrmpAddr, 10),
8723 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008724
Owen Anderson825b72b2009-08-11 20:47:22 +00008725 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8726 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008727 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
8728 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00008729 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008730
8731 // Jump to the nested function.
8732 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00008733 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8734 DAG.getConstant(20, MVT::i64));
8735 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008736 Addr, MachinePointerInfo(TrmpAddr, 20),
8737 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008738
8739 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00008740 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8741 DAG.getConstant(22, MVT::i64));
8742 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008743 MachinePointerInfo(TrmpAddr, 22),
8744 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008745
Dan Gohman475871a2008-07-27 21:46:04 +00008746 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008747 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008748 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008749 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00008750 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00008751 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00008752 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00008753 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008754
8755 switch (CC) {
8756 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00008757 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008758 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008759 case CallingConv::X86_StdCall: {
8760 // Pass 'nest' parameter in ECX.
8761 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008762 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008763
8764 // Check that ECX wasn't needed by an 'inreg' parameter.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008765 FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00008766 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008767
Chris Lattner58d74912008-03-12 17:45:29 +00008768 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00008769 unsigned InRegCount = 0;
8770 unsigned Idx = 1;
8771
8772 for (FunctionType::param_iterator I = FTy->param_begin(),
8773 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00008774 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00008775 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008776 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008777
8778 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00008779 report_fatal_error("Nest register in use - reduce number of inreg"
8780 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008781 }
8782 }
8783 break;
8784 }
8785 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00008786 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00008787 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008788 // Pass 'nest' parameter in EAX.
8789 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008790 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008791 break;
8792 }
8793
Dan Gohman475871a2008-07-27 21:46:04 +00008794 SDValue OutChains[4];
8795 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008796
Owen Anderson825b72b2009-08-11 20:47:22 +00008797 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8798 DAG.getConstant(10, MVT::i32));
8799 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008800
Chris Lattnera62fe662010-02-05 19:20:30 +00008801 // This is storing the opcode for MOV32ri.
8802 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Evan Cheng0e6a0522011-07-18 20:57:22 +00008803 const unsigned char N86Reg = X86_MC::getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00008804 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008805 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008806 Trmp, MachinePointerInfo(TrmpAddr),
8807 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008808
Owen Anderson825b72b2009-08-11 20:47:22 +00008809 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8810 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008811 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
8812 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00008813 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008814
Chris Lattnera62fe662010-02-05 19:20:30 +00008815 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00008816 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8817 DAG.getConstant(5, MVT::i32));
8818 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008819 MachinePointerInfo(TrmpAddr, 5),
8820 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008821
Owen Anderson825b72b2009-08-11 20:47:22 +00008822 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8823 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008824 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
8825 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00008826 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008827
Dan Gohman475871a2008-07-27 21:46:04 +00008828 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008829 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008830 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008831 }
8832}
8833
Dan Gohmand858e902010-04-17 15:26:15 +00008834SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
8835 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008836 /*
8837 The rounding mode is in bits 11:10 of FPSR, and has the following
8838 settings:
8839 00 Round to nearest
8840 01 Round to -inf
8841 10 Round to +inf
8842 11 Round to 0
8843
8844 FLT_ROUNDS, on the other hand, expects the following:
8845 -1 Undefined
8846 0 Round to 0
8847 1 Round to nearest
8848 2 Round to +inf
8849 3 Round to -inf
8850
8851 To perform the conversion, we do:
8852 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
8853 */
8854
8855 MachineFunction &MF = DAG.getMachineFunction();
8856 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00008857 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008858 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00008859 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00008860 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008861
8862 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00008863 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008864 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008865
Michael J. Spencerec38de22010-10-10 22:04:20 +00008866
Chris Lattner2156b792010-09-22 01:11:26 +00008867 MachineMemOperand *MMO =
8868 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8869 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008870
Chris Lattner2156b792010-09-22 01:11:26 +00008871 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
8872 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
8873 DAG.getVTList(MVT::Other),
8874 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008875
8876 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00008877 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00008878 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008879
8880 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00008881 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00008882 DAG.getNode(ISD::SRL, DL, MVT::i16,
8883 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008884 CWD, DAG.getConstant(0x800, MVT::i16)),
8885 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00008886 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00008887 DAG.getNode(ISD::SRL, DL, MVT::i16,
8888 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008889 CWD, DAG.getConstant(0x400, MVT::i16)),
8890 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008891
Dan Gohman475871a2008-07-27 21:46:04 +00008892 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00008893 DAG.getNode(ISD::AND, DL, MVT::i16,
8894 DAG.getNode(ISD::ADD, DL, MVT::i16,
8895 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00008896 DAG.getConstant(1, MVT::i16)),
8897 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008898
8899
Duncan Sands83ec4b62008-06-06 12:08:01 +00008900 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00008901 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008902}
8903
Dan Gohmand858e902010-04-17 15:26:15 +00008904SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008905 EVT VT = Op.getValueType();
8906 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008907 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008908 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008909
8910 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008911 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00008912 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00008913 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008914 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008915 }
Evan Cheng18efe262007-12-14 02:13:44 +00008916
Evan Cheng152804e2007-12-14 08:30:15 +00008917 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008918 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008919 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008920
8921 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008922 SDValue Ops[] = {
8923 Op,
8924 DAG.getConstant(NumBits+NumBits-1, OpVT),
8925 DAG.getConstant(X86::COND_E, MVT::i8),
8926 Op.getValue(1)
8927 };
8928 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008929
8930 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00008931 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00008932
Owen Anderson825b72b2009-08-11 20:47:22 +00008933 if (VT == MVT::i8)
8934 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008935 return Op;
8936}
8937
Dan Gohmand858e902010-04-17 15:26:15 +00008938SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008939 EVT VT = Op.getValueType();
8940 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008941 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008942 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008943
8944 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008945 if (VT == MVT::i8) {
8946 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008947 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008948 }
Evan Cheng152804e2007-12-14 08:30:15 +00008949
8950 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008951 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008952 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008953
8954 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008955 SDValue Ops[] = {
8956 Op,
8957 DAG.getConstant(NumBits, OpVT),
8958 DAG.getConstant(X86::COND_E, MVT::i8),
8959 Op.getValue(1)
8960 };
8961 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008962
Owen Anderson825b72b2009-08-11 20:47:22 +00008963 if (VT == MVT::i8)
8964 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008965 return Op;
8966}
8967
Dan Gohmand858e902010-04-17 15:26:15 +00008968SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008969 EVT VT = Op.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00008970 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008971 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00008972
Mon P Wangaf9b9522008-12-18 21:42:19 +00008973 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
8974 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
8975 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
8976 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
8977 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
8978 //
8979 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
8980 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
8981 // return AloBlo + AloBhi + AhiBlo;
8982
8983 SDValue A = Op.getOperand(0);
8984 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008985
Dale Johannesene4d209d2009-02-03 20:21:25 +00008986 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008987 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8988 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008989 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008990 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8991 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008992 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008993 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008994 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008995 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008996 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008997 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008998 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008999 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009000 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009001 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009002 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9003 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009004 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009005 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9006 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009007 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
9008 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009009 return Res;
9010}
9011
Nadav Rotem43012222011-05-11 08:12:09 +00009012SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
9013
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009014 EVT VT = Op.getValueType();
9015 DebugLoc dl = Op.getDebugLoc();
9016 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +00009017 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009018
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009019 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009020
Nadav Rotem43012222011-05-11 08:12:09 +00009021 // Must have SSE2.
9022 if (!Subtarget->hasSSE2()) return SDValue();
Nate Begeman51409212010-07-28 00:21:48 +00009023
Nadav Rotem43012222011-05-11 08:12:09 +00009024 // Optimize shl/srl/sra with constant shift amount.
9025 if (isSplatVector(Amt.getNode())) {
9026 SDValue SclrAmt = Amt->getOperand(0);
9027 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
9028 uint64_t ShiftAmt = C->getZExtValue();
9029
9030 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SHL)
9031 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9032 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9033 R, DAG.getConstant(ShiftAmt, MVT::i32));
9034
9035 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SHL)
9036 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9037 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9038 R, DAG.getConstant(ShiftAmt, MVT::i32));
9039
9040 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SHL)
9041 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9042 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9043 R, DAG.getConstant(ShiftAmt, MVT::i32));
9044
9045 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SRL)
9046 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9047 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9048 R, DAG.getConstant(ShiftAmt, MVT::i32));
9049
9050 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRL)
9051 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9052 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
9053 R, DAG.getConstant(ShiftAmt, MVT::i32));
9054
9055 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRL)
9056 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9057 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
9058 R, DAG.getConstant(ShiftAmt, MVT::i32));
9059
9060 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRA)
9061 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9062 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
9063 R, DAG.getConstant(ShiftAmt, MVT::i32));
9064
9065 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRA)
9066 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9067 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
9068 R, DAG.getConstant(ShiftAmt, MVT::i32));
9069 }
9070 }
9071
9072 // Lower SHL with variable shift amount.
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009073 // Cannot lower SHL without SSE2 or later.
9074 if (!Subtarget->hasSSE2()) return SDValue();
Nadav Rotem43012222011-05-11 08:12:09 +00009075
9076 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009077 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9078 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9079 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
9080
9081 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009082
Nate Begeman51409212010-07-28 00:21:48 +00009083 std::vector<Constant*> CV(4, CI);
9084 Constant *C = ConstantVector::get(CV);
9085 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9086 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009087 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009088 false, false, 16);
9089
9090 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009091 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009092 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
9093 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
9094 }
Nadav Rotem43012222011-05-11 08:12:09 +00009095 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009096 // a = a << 5;
9097 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9098 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9099 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
9100
9101 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
9102 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
9103
9104 std::vector<Constant*> CVM1(16, CM1);
9105 std::vector<Constant*> CVM2(16, CM2);
9106 Constant *C = ConstantVector::get(CVM1);
9107 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9108 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009109 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009110 false, false, 16);
9111
9112 // r = pblendv(r, psllw(r & (char16)15, 4), a);
9113 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9114 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9115 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9116 DAG.getConstant(4, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00009117 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009118 // a += a
9119 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009120
Nate Begeman51409212010-07-28 00:21:48 +00009121 C = ConstantVector::get(CVM2);
9122 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9123 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009124 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00009125 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009126
Nate Begeman51409212010-07-28 00:21:48 +00009127 // r = pblendv(r, psllw(r & (char16)63, 2), a);
9128 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9129 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9130 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9131 DAG.getConstant(2, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00009132 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009133 // a += a
9134 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009135
Nate Begeman51409212010-07-28 00:21:48 +00009136 // return pblendv(r, r+r, a);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009137 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT,
Nate Begeman51409212010-07-28 00:21:48 +00009138 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
9139 return R;
9140 }
9141 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009142}
Mon P Wangaf9b9522008-12-18 21:42:19 +00009143
Dan Gohmand858e902010-04-17 15:26:15 +00009144SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00009145 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
9146 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00009147 // looks for this combo and may remove the "setcc" instruction if the "setcc"
9148 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00009149 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00009150 SDValue LHS = N->getOperand(0);
9151 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00009152 unsigned BaseOp = 0;
9153 unsigned Cond = 0;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009154 DebugLoc DL = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00009155 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009156 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00009157 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00009158 // A subtract of one will be selected as a INC. Note that INC doesn't
9159 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009160 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9161 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009162 BaseOp = X86ISD::INC;
9163 Cond = X86::COND_O;
9164 break;
9165 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009166 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00009167 Cond = X86::COND_O;
9168 break;
9169 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009170 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00009171 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009172 break;
9173 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00009174 // A subtract of one will be selected as a DEC. Note that DEC doesn't
9175 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009176 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9177 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009178 BaseOp = X86ISD::DEC;
9179 Cond = X86::COND_O;
9180 break;
9181 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009182 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00009183 Cond = X86::COND_O;
9184 break;
9185 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009186 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00009187 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009188 break;
9189 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00009190 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00009191 Cond = X86::COND_O;
9192 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009193 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
9194 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
9195 MVT::i32);
9196 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009197
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009198 SDValue SetCC =
9199 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
9200 DAG.getConstant(X86::COND_O, MVT::i32),
9201 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009202
Dan Gohman6e5fda22011-07-22 18:45:15 +00009203 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009204 }
Bill Wendling74c37652008-12-09 22:08:41 +00009205 }
Bill Wendling3fafd932008-11-26 22:37:40 +00009206
Bill Wendling61edeb52008-12-02 01:06:39 +00009207 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009208 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009209 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00009210
Bill Wendling61edeb52008-12-02 01:06:39 +00009211 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009212 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
9213 DAG.getConstant(Cond, MVT::i32),
9214 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00009215
Dan Gohman6e5fda22011-07-22 18:45:15 +00009216 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +00009217}
9218
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009219SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const{
9220 DebugLoc dl = Op.getDebugLoc();
9221 SDNode* Node = Op.getNode();
9222 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
9223 EVT VT = Node->getValueType(0);
9224
9225 if (Subtarget->hasSSE2() && VT.isVector()) {
9226 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
9227 ExtraVT.getScalarType().getSizeInBits();
9228 SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
9229
9230 unsigned SHLIntrinsicsID = 0;
9231 unsigned SRAIntrinsicsID = 0;
9232 switch (VT.getSimpleVT().SimpleTy) {
9233 default:
9234 return SDValue();
9235 case MVT::v2i64: {
9236 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_q;
9237 SRAIntrinsicsID = 0;
9238 break;
9239 }
9240 case MVT::v4i32: {
9241 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_d;
9242 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_d;
9243 break;
9244 }
9245 case MVT::v8i16: {
9246 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_w;
9247 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_w;
9248 break;
9249 }
9250 }
9251
9252 SDValue Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9253 DAG.getConstant(SHLIntrinsicsID, MVT::i32),
9254 Node->getOperand(0), ShAmt);
9255
9256 // In case of 1 bit sext, no need to shr
9257 if (ExtraVT.getScalarType().getSizeInBits() == 1) return Tmp1;
9258
9259 if (SRAIntrinsicsID) {
9260 Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9261 DAG.getConstant(SRAIntrinsicsID, MVT::i32),
9262 Tmp1, ShAmt);
9263 }
9264 return Tmp1;
9265 }
9266
9267 return SDValue();
9268}
9269
9270
Eric Christopher9a9d2752010-07-22 02:48:34 +00009271SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
9272 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009273
Eric Christopher77ed1352011-07-08 00:04:56 +00009274 // Go ahead and emit the fence on x86-64 even if we asked for no-sse2.
9275 // There isn't any reason to disable it if the target processor supports it.
9276 if (!Subtarget->hasSSE2() && !Subtarget->is64Bit()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +00009277 SDValue Chain = Op.getOperand(0);
Eric Christopher77ed1352011-07-08 00:04:56 +00009278 SDValue Zero = DAG.getConstant(0, MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +00009279 SDValue Ops[] = {
9280 DAG.getRegister(X86::ESP, MVT::i32), // Base
9281 DAG.getTargetConstant(1, MVT::i8), // Scale
9282 DAG.getRegister(0, MVT::i32), // Index
9283 DAG.getTargetConstant(0, MVT::i32), // Disp
9284 DAG.getRegister(0, MVT::i32), // Segment.
9285 Zero,
9286 Chain
9287 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00009288 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +00009289 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
9290 array_lengthof(Ops));
9291 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +00009292 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00009293
Eric Christopher9a9d2752010-07-22 02:48:34 +00009294 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +00009295 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +00009296 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009297
Chris Lattner132929a2010-08-14 17:26:09 +00009298 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
9299 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
9300 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
9301 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009302
Chris Lattner132929a2010-08-14 17:26:09 +00009303 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
9304 if (!Op1 && !Op2 && !Op3 && Op4)
9305 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009306
Chris Lattner132929a2010-08-14 17:26:09 +00009307 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
9308 if (Op1 && !Op2 && !Op3 && !Op4)
9309 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009310
9311 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +00009312 // (MFENCE)>;
9313 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +00009314}
9315
Dan Gohmand858e902010-04-17 15:26:15 +00009316SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009317 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009318 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00009319 unsigned Reg = 0;
9320 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00009321 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009322 default:
9323 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00009324 case MVT::i8: Reg = X86::AL; size = 1; break;
9325 case MVT::i16: Reg = X86::AX; size = 2; break;
9326 case MVT::i32: Reg = X86::EAX; size = 4; break;
9327 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00009328 assert(Subtarget->is64Bit() && "Node not type legal!");
9329 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00009330 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00009331 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009332 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00009333 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00009334 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009335 Op.getOperand(1),
9336 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +00009337 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009338 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009339 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009340 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
9341 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
9342 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +00009343 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009344 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00009345 return cpOut;
9346}
9347
Duncan Sands1607f052008-12-01 11:39:25 +00009348SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009349 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +00009350 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009351 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +00009352 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009353 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009354 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009355 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
9356 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00009357 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +00009358 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
9359 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +00009360 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +00009361 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00009362 rdx.getValue(1)
9363 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009364 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009365}
9366
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009367SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
Dale Johannesen7d07b482010-05-21 00:52:33 +00009368 SelectionDAG &DAG) const {
9369 EVT SrcVT = Op.getOperand(0).getValueType();
9370 EVT DstVT = Op.getValueType();
Chris Lattner2a786eb2010-12-19 20:19:20 +00009371 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
9372 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +00009373 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +00009374 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009375 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +00009376 // i64 <=> MMX conversions are Legal.
9377 if (SrcVT==MVT::i64 && DstVT.isVector())
9378 return Op;
9379 if (DstVT==MVT::i64 && SrcVT.isVector())
9380 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +00009381 // MMX <=> MMX conversions are Legal.
9382 if (SrcVT.isVector() && DstVT.isVector())
9383 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +00009384 // All other conversions need to be expanded.
9385 return SDValue();
9386}
Chris Lattner5b856542010-12-20 00:59:46 +00009387
Dan Gohmand858e902010-04-17 15:26:15 +00009388SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009389 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009390 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00009391 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009392 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00009393 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009394 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009395 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009396 Node->getOperand(0),
9397 Node->getOperand(1), negOp,
9398 cast<AtomicSDNode>(Node)->getSrcValue(),
9399 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang63307c32008-05-05 19:05:59 +00009400}
9401
Chris Lattner5b856542010-12-20 00:59:46 +00009402static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
9403 EVT VT = Op.getNode()->getValueType(0);
9404
9405 // Let legalize expand this if it isn't a legal type yet.
9406 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
9407 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009408
Chris Lattner5b856542010-12-20 00:59:46 +00009409 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009410
Chris Lattner5b856542010-12-20 00:59:46 +00009411 unsigned Opc;
9412 bool ExtraOp = false;
9413 switch (Op.getOpcode()) {
9414 default: assert(0 && "Invalid code");
9415 case ISD::ADDC: Opc = X86ISD::ADD; break;
9416 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
9417 case ISD::SUBC: Opc = X86ISD::SUB; break;
9418 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
9419 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009420
Chris Lattner5b856542010-12-20 00:59:46 +00009421 if (!ExtraOp)
9422 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9423 Op.getOperand(1));
9424 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9425 Op.getOperand(1), Op.getOperand(2));
9426}
9427
Evan Cheng0db9fe62006-04-25 20:13:52 +00009428/// LowerOperation - Provide custom lowering hooks for some operations.
9429///
Dan Gohmand858e902010-04-17 15:26:15 +00009430SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00009431 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009432 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009433 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Eric Christopher9a9d2752010-07-22 02:48:34 +00009434 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009435 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
9436 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009437 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00009438 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009439 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
9440 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
9441 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
David Greene91585092011-01-26 15:38:49 +00009442 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op, DAG);
David Greenecfe33c42011-01-26 19:13:22 +00009443 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009444 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
9445 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
9446 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00009447 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00009448 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +00009449 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009450 case ISD::SHL_PARTS:
9451 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +00009452 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009453 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00009454 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009455 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00009456 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009457 case ISD::FABS: return LowerFABS(Op, DAG);
9458 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009459 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009460 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009461 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00009462 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009463 case ISD::SELECT: return LowerSELECT(Op, DAG);
9464 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009465 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009466 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00009467 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00009468 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009469 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00009470 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
9471 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009472 case ISD::FRAME_TO_ARGS_OFFSET:
9473 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00009474 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009475 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009476 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00009477 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00009478 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
9479 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009480 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +00009481 case ISD::SRA:
9482 case ISD::SRL:
9483 case ISD::SHL: return LowerShift(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00009484 case ISD::SADDO:
9485 case ISD::UADDO:
9486 case ISD::SSUBO:
9487 case ISD::USUBO:
9488 case ISD::SMULO:
9489 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00009490 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009491 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +00009492 case ISD::ADDC:
9493 case ISD::ADDE:
9494 case ISD::SUBC:
9495 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009496 }
Chris Lattner27a6c732007-11-24 07:07:01 +00009497}
9498
Duncan Sands1607f052008-12-01 11:39:25 +00009499void X86TargetLowering::
9500ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00009501 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009502 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009503 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00009504 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +00009505
9506 SDValue Chain = Node->getOperand(0);
9507 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009508 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009509 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00009510 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009511 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +00009512 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +00009513 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +00009514 SDValue Result =
9515 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
9516 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +00009517 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +00009518 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009519 Results.push_back(Result.getValue(2));
9520}
9521
Duncan Sands126d9072008-07-04 11:47:58 +00009522/// ReplaceNodeResults - Replace a node with an illegal result type
9523/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00009524void X86TargetLowering::ReplaceNodeResults(SDNode *N,
9525 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00009526 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009527 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +00009528 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00009529 default:
Duncan Sands1607f052008-12-01 11:39:25 +00009530 assert(false && "Do not know how to custom type legalize this operation!");
9531 return;
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009532 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +00009533 case ISD::ADDC:
9534 case ISD::ADDE:
9535 case ISD::SUBC:
9536 case ISD::SUBE:
9537 // We don't want to expand or promote these.
9538 return;
Duncan Sands1607f052008-12-01 11:39:25 +00009539 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +00009540 std::pair<SDValue,SDValue> Vals =
9541 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +00009542 SDValue FIST = Vals.first, StackSlot = Vals.second;
9543 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +00009544 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +00009545 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +00009546 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
9547 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +00009548 }
9549 return;
9550 }
9551 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009552 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +00009553 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009554 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009555 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +00009556 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00009557 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009558 eax.getValue(2));
9559 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
9560 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +00009561 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009562 Results.push_back(edx.getValue(1));
9563 return;
9564 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009565 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +00009566 EVT T = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009567 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands1607f052008-12-01 11:39:25 +00009568 SDValue cpInL, cpInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00009569 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
9570 DAG.getConstant(0, MVT::i32));
9571 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
9572 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00009573 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
9574 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +00009575 cpInL.getValue(1));
9576 SDValue swapInL, swapInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00009577 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
9578 DAG.getConstant(0, MVT::i32));
9579 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
9580 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00009581 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +00009582 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00009583 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +00009584 swapInL.getValue(1));
9585 SDValue Ops[] = { swapInH.getValue(0),
9586 N->getOperand(1),
9587 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009588 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +00009589 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
9590 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys,
9591 Ops, 3, T, MMO);
Dale Johannesendd64c412009-02-04 00:33:20 +00009592 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson825b72b2009-08-11 20:47:22 +00009593 MVT::i32, Result.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00009594 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson825b72b2009-08-11 20:47:22 +00009595 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +00009596 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson825b72b2009-08-11 20:47:22 +00009597 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009598 Results.push_back(cpOutH.getValue(1));
9599 return;
9600 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009601 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00009602 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
9603 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009604 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00009605 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
9606 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009607 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00009608 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
9609 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009610 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00009611 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
9612 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009613 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00009614 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
9615 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009616 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00009617 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
9618 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009619 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00009620 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
9621 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00009622 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00009623}
9624
Evan Cheng72261582005-12-20 06:22:03 +00009625const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
9626 switch (Opcode) {
9627 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00009628 case X86ISD::BSF: return "X86ISD::BSF";
9629 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00009630 case X86ISD::SHLD: return "X86ISD::SHLD";
9631 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00009632 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00009633 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00009634 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00009635 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00009636 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00009637 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00009638 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
9639 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
9640 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00009641 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00009642 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00009643 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +00009644 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00009645 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00009646 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00009647 case X86ISD::COMI: return "X86ISD::COMI";
9648 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00009649 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +00009650 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +00009651 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
9652 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +00009653 case X86ISD::CMOV: return "X86ISD::CMOV";
9654 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00009655 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00009656 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
9657 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00009658 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00009659 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +00009660 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +00009661 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00009662 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00009663 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
9664 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00009665 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +00009666 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +00009667 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Nate Begemanb65c1752010-12-17 22:55:37 +00009668 case X86ISD::PSIGNB: return "X86ISD::PSIGNB";
9669 case X86ISD::PSIGNW: return "X86ISD::PSIGNW";
9670 case X86ISD::PSIGND: return "X86ISD::PSIGND";
Nate Begeman672fb622010-12-20 22:04:24 +00009671 case X86ISD::PBLENDVB: return "X86ISD::PBLENDVB";
Evan Cheng8ca29322006-11-10 21:43:37 +00009672 case X86ISD::FMAX: return "X86ISD::FMAX";
9673 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00009674 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
9675 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00009676 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +00009677 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009678 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00009679 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009680 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00009681 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
9682 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009683 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
9684 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
9685 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
9686 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
9687 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
9688 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00009689 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
9690 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00009691 case X86ISD::VSHL: return "X86ISD::VSHL";
9692 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00009693 case X86ISD::CMPPD: return "X86ISD::CMPPD";
9694 case X86ISD::CMPPS: return "X86ISD::CMPPS";
9695 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
9696 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
9697 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
9698 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
9699 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
9700 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
9701 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
9702 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009703 case X86ISD::ADD: return "X86ISD::ADD";
9704 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +00009705 case X86ISD::ADC: return "X86ISD::ADC";
9706 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +00009707 case X86ISD::SMUL: return "X86ISD::SMUL";
9708 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +00009709 case X86ISD::INC: return "X86ISD::INC";
9710 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +00009711 case X86ISD::OR: return "X86ISD::OR";
9712 case X86ISD::XOR: return "X86ISD::XOR";
9713 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +00009714 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +00009715 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009716 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009717 case X86ISD::PALIGN: return "X86ISD::PALIGN";
9718 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
9719 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
9720 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
9721 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
9722 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
9723 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
9724 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
9725 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009726 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00009727 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009728 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00009729 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
9730 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009731 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
9732 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
9733 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
9734 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
9735 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
9736 case X86ISD::MOVSD: return "X86ISD::MOVSD";
9737 case X86ISD::MOVSS: return "X86ISD::MOVSS";
9738 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
9739 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
David Greenefbf05d32011-02-22 23:31:46 +00009740 case X86ISD::VUNPCKLPDY: return "X86ISD::VUNPCKLPDY";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009741 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
9742 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
9743 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
9744 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
9745 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
9746 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
9747 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
9748 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
9749 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
9750 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00009751 case X86ISD::VPERMIL: return "X86ISD::VPERMIL";
Dan Gohmand6708ea2009-08-15 01:38:56 +00009752 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +00009753 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009754 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Evan Cheng72261582005-12-20 06:22:03 +00009755 }
9756}
Evan Cheng3a03ebb2005-12-21 23:05:39 +00009757
Chris Lattnerc9addb72007-03-30 23:15:24 +00009758// isLegalAddressingMode - Return true if the addressing mode represented
9759// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00009760bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009761 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +00009762 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009763 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +00009764 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +00009765
Chris Lattnerc9addb72007-03-30 23:15:24 +00009766 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009767 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +00009768 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00009769
Chris Lattnerc9addb72007-03-30 23:15:24 +00009770 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +00009771 unsigned GVFlags =
9772 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009773
Chris Lattnerdfed4132009-07-10 07:38:24 +00009774 // If a reference to this global requires an extra load, we can't fold it.
9775 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +00009776 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009777
Chris Lattnerdfed4132009-07-10 07:38:24 +00009778 // If BaseGV requires a register for the PIC base, we cannot also have a
9779 // BaseReg specified.
9780 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +00009781 return false;
Evan Cheng52787842007-08-01 23:46:47 +00009782
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009783 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +00009784 if ((M != CodeModel::Small || R != Reloc::Static) &&
9785 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009786 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +00009787 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009788
Chris Lattnerc9addb72007-03-30 23:15:24 +00009789 switch (AM.Scale) {
9790 case 0:
9791 case 1:
9792 case 2:
9793 case 4:
9794 case 8:
9795 // These scales always work.
9796 break;
9797 case 3:
9798 case 5:
9799 case 9:
9800 // These scales are formed with basereg+scalereg. Only accept if there is
9801 // no basereg yet.
9802 if (AM.HasBaseReg)
9803 return false;
9804 break;
9805 default: // Other stuff never works.
9806 return false;
9807 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009808
Chris Lattnerc9addb72007-03-30 23:15:24 +00009809 return true;
9810}
9811
9812
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009813bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00009814 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +00009815 return false;
Evan Chenge127a732007-10-29 07:57:50 +00009816 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
9817 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00009818 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +00009819 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00009820 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +00009821}
9822
Owen Andersone50ed302009-08-10 22:56:29 +00009823bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009824 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009825 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009826 unsigned NumBits1 = VT1.getSizeInBits();
9827 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00009828 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009829 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00009830 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009831}
Evan Cheng2bd122c2007-10-26 01:56:11 +00009832
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009833bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00009834 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00009835 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00009836}
9837
Owen Andersone50ed302009-08-10 22:56:29 +00009838bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00009839 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +00009840 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00009841}
9842
Owen Andersone50ed302009-08-10 22:56:29 +00009843bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +00009844 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +00009845 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +00009846}
9847
Evan Cheng60c07e12006-07-05 22:17:51 +00009848/// isShuffleMaskLegal - Targets can use this to indicate that they only
9849/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
9850/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
9851/// are assumed to be legal.
9852bool
Eric Christopherfd179292009-08-27 18:07:15 +00009853X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +00009854 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +00009855 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +00009856 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +00009857 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +00009858
Nate Begemana09008b2009-10-19 02:17:23 +00009859 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +00009860 return (VT.getVectorNumElements() == 2 ||
9861 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
9862 isMOVLMask(M, VT) ||
9863 isSHUFPMask(M, VT) ||
9864 isPSHUFDMask(M, VT) ||
9865 isPSHUFHWMask(M, VT) ||
9866 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +00009867 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +00009868 isUNPCKLMask(M, VT) ||
9869 isUNPCKHMask(M, VT) ||
9870 isUNPCKL_v_undef_Mask(M, VT) ||
9871 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009872}
9873
Dan Gohman7d8143f2008-04-09 20:09:42 +00009874bool
Nate Begeman5a5ca152009-04-29 05:20:52 +00009875X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +00009876 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00009877 unsigned NumElts = VT.getVectorNumElements();
9878 // FIXME: This collection of masks seems suspect.
9879 if (NumElts == 2)
9880 return true;
9881 if (NumElts == 4 && VT.getSizeInBits() == 128) {
9882 return (isMOVLMask(Mask, VT) ||
9883 isCommutedMOVLMask(Mask, VT, true) ||
9884 isSHUFPMask(Mask, VT) ||
9885 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009886 }
9887 return false;
9888}
9889
9890//===----------------------------------------------------------------------===//
9891// X86 Scheduler Hooks
9892//===----------------------------------------------------------------------===//
9893
Mon P Wang63307c32008-05-05 19:05:59 +00009894// private utility function
9895MachineBasicBlock *
9896X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
9897 MachineBasicBlock *MBB,
9898 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009899 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009900 unsigned LoadOpc,
9901 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009902 unsigned notOpc,
9903 unsigned EAXreg,
9904 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009905 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009906 // For the atomic bitwise operator, we generate
9907 // thisMBB:
9908 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009909 // ld t1 = [bitinstr.addr]
9910 // op t2 = t1, [bitinstr.val]
9911 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009912 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9913 // bz newMBB
9914 // fallthrough -->nextMBB
9915 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9916 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009917 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009918 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009919
Mon P Wang63307c32008-05-05 19:05:59 +00009920 /// First build the CFG
9921 MachineFunction *F = MBB->getParent();
9922 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009923 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9924 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9925 F->insert(MBBIter, newMBB);
9926 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009927
Dan Gohman14152b42010-07-06 20:24:04 +00009928 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9929 nextMBB->splice(nextMBB->begin(), thisMBB,
9930 llvm::next(MachineBasicBlock::iterator(bInstr)),
9931 thisMBB->end());
9932 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009933
Mon P Wang63307c32008-05-05 19:05:59 +00009934 // Update thisMBB to fall through to newMBB
9935 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009936
Mon P Wang63307c32008-05-05 19:05:59 +00009937 // newMBB jumps to itself and fall through to nextMBB
9938 newMBB->addSuccessor(nextMBB);
9939 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009940
Mon P Wang63307c32008-05-05 19:05:59 +00009941 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009942 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009943 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +00009944 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009945 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009946 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009947 int numArgs = bInstr->getNumOperands() - 1;
9948 for (int i=0; i < numArgs; ++i)
9949 argOpers[i] = &bInstr->getOperand(i+1);
9950
9951 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009952 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009953 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009954
Dale Johannesen140be2d2008-08-19 18:47:28 +00009955 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009956 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009957 for (int i=0; i <= lastAddrIndx; ++i)
9958 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009959
Dale Johannesen140be2d2008-08-19 18:47:28 +00009960 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009961 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009962 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009963 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009964 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009965 tt = t1;
9966
Dale Johannesen140be2d2008-08-19 18:47:28 +00009967 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +00009968 assert((argOpers[valArgIndx]->isReg() ||
9969 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009970 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +00009971 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009972 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009973 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009974 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009975 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +00009976 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009977
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009978 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +00009979 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009980
Dale Johannesene4d209d2009-02-03 20:21:25 +00009981 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +00009982 for (int i=0; i <= lastAddrIndx; ++i)
9983 (*MIB).addOperand(*argOpers[i]);
9984 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +00009985 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009986 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9987 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +00009988
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009989 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +00009990 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009991
Mon P Wang63307c32008-05-05 19:05:59 +00009992 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009993 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009994
Dan Gohman14152b42010-07-06 20:24:04 +00009995 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009996 return nextMBB;
9997}
9998
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00009999// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +000010000MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010001X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
10002 MachineBasicBlock *MBB,
10003 unsigned regOpcL,
10004 unsigned regOpcH,
10005 unsigned immOpcL,
10006 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010007 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010008 // For the atomic bitwise operator, we generate
10009 // thisMBB (instructions are in pairs, except cmpxchg8b)
10010 // ld t1,t2 = [bitinstr.addr]
10011 // newMBB:
10012 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
10013 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +000010014 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010015 // mov ECX, EBX <- t5, t6
10016 // mov EAX, EDX <- t1, t2
10017 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
10018 // mov t3, t4 <- EAX, EDX
10019 // bz newMBB
10020 // result in out1, out2
10021 // fallthrough -->nextMBB
10022
10023 const TargetRegisterClass *RC = X86::GR32RegisterClass;
10024 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010025 const unsigned NotOpc = X86::NOT32r;
10026 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10027 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10028 MachineFunction::iterator MBBIter = MBB;
10029 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010030
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010031 /// First build the CFG
10032 MachineFunction *F = MBB->getParent();
10033 MachineBasicBlock *thisMBB = MBB;
10034 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10035 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10036 F->insert(MBBIter, newMBB);
10037 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010038
Dan Gohman14152b42010-07-06 20:24:04 +000010039 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10040 nextMBB->splice(nextMBB->begin(), thisMBB,
10041 llvm::next(MachineBasicBlock::iterator(bInstr)),
10042 thisMBB->end());
10043 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010044
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010045 // Update thisMBB to fall through to newMBB
10046 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010047
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010048 // newMBB jumps to itself and fall through to nextMBB
10049 newMBB->addSuccessor(nextMBB);
10050 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010051
Dale Johannesene4d209d2009-02-03 20:21:25 +000010052 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010053 // Insert instructions into newMBB based on incoming instruction
10054 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010055 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010056 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010057 MachineOperand& dest1Oper = bInstr->getOperand(0);
10058 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010059 MachineOperand* argOpers[2 + X86::AddrNumOperands];
10060 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010061 argOpers[i] = &bInstr->getOperand(i+2);
10062
Dan Gohman71ea4e52010-05-14 21:01:44 +000010063 // We use some of the operands multiple times, so conservatively just
10064 // clear any kill flags that might be present.
10065 if (argOpers[i]->isReg() && argOpers[i]->isUse())
10066 argOpers[i]->setIsKill(false);
10067 }
10068
Evan Chengad5b52f2010-01-08 19:14:57 +000010069 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010070 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +000010071
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010072 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010073 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010074 for (int i=0; i <= lastAddrIndx; ++i)
10075 (*MIB).addOperand(*argOpers[i]);
10076 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010077 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +000010078 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +000010079 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010080 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +000010081 MachineOperand newOp3 = *(argOpers[3]);
10082 if (newOp3.isImm())
10083 newOp3.setImm(newOp3.getImm()+4);
10084 else
10085 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010086 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +000010087 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010088
10089 // t3/4 are defined later, at the bottom of the loop
10090 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
10091 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010092 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010093 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010094 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010095 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
10096
Evan Cheng306b4ca2010-01-08 23:41:50 +000010097 // The subsequent operations should be using the destination registers of
10098 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +000010099 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +000010100 t1 = F->getRegInfo().createVirtualRegister(RC);
10101 t2 = F->getRegInfo().createVirtualRegister(RC);
10102 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
10103 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010104 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +000010105 t1 = dest1Oper.getReg();
10106 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010107 }
10108
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010109 int valArgIndx = lastAddrIndx + 1;
10110 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +000010111 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010112 "invalid operand");
10113 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
10114 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010115 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010116 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010117 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010118 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +000010119 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000010120 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010121 (*MIB).addOperand(*argOpers[valArgIndx]);
10122 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000010123 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010124 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000010125 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010126 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010127 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010128 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010129 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +000010130 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000010131 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010132 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010133
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010134 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010135 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010136 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010137 MIB.addReg(t2);
10138
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010139 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010140 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010141 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010142 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +000010143
Dale Johannesene4d209d2009-02-03 20:21:25 +000010144 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010145 for (int i=0; i <= lastAddrIndx; ++i)
10146 (*MIB).addOperand(*argOpers[i]);
10147
10148 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010149 (*MIB).setMemRefs(bInstr->memoperands_begin(),
10150 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010151
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010152 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010153 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010154 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010155 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +000010156
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010157 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010158 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010159
Dan Gohman14152b42010-07-06 20:24:04 +000010160 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010161 return nextMBB;
10162}
10163
10164// private utility function
10165MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +000010166X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
10167 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010168 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000010169 // For the atomic min/max operator, we generate
10170 // thisMBB:
10171 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000010172 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +000010173 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +000010174 // cmp t1, t2
10175 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +000010176 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000010177 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
10178 // bz newMBB
10179 // fallthrough -->nextMBB
10180 //
10181 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10182 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010183 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000010184 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010185
Mon P Wang63307c32008-05-05 19:05:59 +000010186 /// First build the CFG
10187 MachineFunction *F = MBB->getParent();
10188 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010189 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10190 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10191 F->insert(MBBIter, newMBB);
10192 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010193
Dan Gohman14152b42010-07-06 20:24:04 +000010194 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10195 nextMBB->splice(nextMBB->begin(), thisMBB,
10196 llvm::next(MachineBasicBlock::iterator(mInstr)),
10197 thisMBB->end());
10198 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010199
Mon P Wang63307c32008-05-05 19:05:59 +000010200 // Update thisMBB to fall through to newMBB
10201 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010202
Mon P Wang63307c32008-05-05 19:05:59 +000010203 // newMBB jumps to newMBB and fall through to nextMBB
10204 newMBB->addSuccessor(nextMBB);
10205 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010206
Dale Johannesene4d209d2009-02-03 20:21:25 +000010207 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000010208 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010209 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010210 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +000010211 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010212 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000010213 int numArgs = mInstr->getNumOperands() - 1;
10214 for (int i=0; i < numArgs; ++i)
10215 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010216
Mon P Wang63307c32008-05-05 19:05:59 +000010217 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010218 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010219 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000010220
Mon P Wangab3e7472008-05-05 22:56:23 +000010221 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010222 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000010223 for (int i=0; i <= lastAddrIndx; ++i)
10224 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +000010225
Mon P Wang63307c32008-05-05 19:05:59 +000010226 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +000010227 assert((argOpers[valArgIndx]->isReg() ||
10228 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000010229 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +000010230
10231 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +000010232 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010233 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +000010234 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010235 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000010236 (*MIB).addOperand(*argOpers[valArgIndx]);
10237
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010238 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +000010239 MIB.addReg(t1);
10240
Dale Johannesene4d209d2009-02-03 20:21:25 +000010241 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +000010242 MIB.addReg(t1);
10243 MIB.addReg(t2);
10244
10245 // Generate movc
10246 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010247 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +000010248 MIB.addReg(t2);
10249 MIB.addReg(t1);
10250
10251 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +000010252 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +000010253 for (int i=0; i <= lastAddrIndx; ++i)
10254 (*MIB).addOperand(*argOpers[i]);
10255 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +000010256 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010257 (*MIB).setMemRefs(mInstr->memoperands_begin(),
10258 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000010259
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010260 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +000010261 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +000010262
Mon P Wang63307c32008-05-05 19:05:59 +000010263 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010264 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000010265
Dan Gohman14152b42010-07-06 20:24:04 +000010266 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000010267 return nextMBB;
10268}
10269
Eric Christopherf83a5de2009-08-27 18:08:16 +000010270// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010271// or XMM0_V32I8 in AVX all of this code can be replaced with that
10272// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +000010273MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +000010274X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +000010275 unsigned numArgs, bool memArg) const {
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010276 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
10277 "Target must have SSE4.2 or AVX features enabled");
10278
Eric Christopherb120ab42009-08-18 22:50:32 +000010279 DebugLoc dl = MI->getDebugLoc();
10280 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Eric Christopherb120ab42009-08-18 22:50:32 +000010281 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010282 if (!Subtarget->hasAVX()) {
10283 if (memArg)
10284 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
10285 else
10286 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
10287 } else {
10288 if (memArg)
10289 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
10290 else
10291 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
10292 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010293
Eric Christopher41c902f2010-11-30 08:20:21 +000010294 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Eric Christopherb120ab42009-08-18 22:50:32 +000010295 for (unsigned i = 0; i < numArgs; ++i) {
10296 MachineOperand &Op = MI->getOperand(i+1);
Eric Christopherb120ab42009-08-18 22:50:32 +000010297 if (!(Op.isReg() && Op.isImplicit()))
10298 MIB.addOperand(Op);
10299 }
Eric Christopher41c902f2010-11-30 08:20:21 +000010300 BuildMI(*BB, MI, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000010301 .addReg(X86::XMM0);
10302
Dan Gohman14152b42010-07-06 20:24:04 +000010303 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000010304 return BB;
10305}
10306
10307MachineBasicBlock *
Eric Christopher228232b2010-11-30 07:20:12 +000010308X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010309 DebugLoc dl = MI->getDebugLoc();
10310 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010311
Eric Christopher228232b2010-11-30 07:20:12 +000010312 // Address into RAX/EAX, other two args into ECX, EDX.
10313 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
10314 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
10315 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
10316 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000010317 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010318
Eric Christopher228232b2010-11-30 07:20:12 +000010319 unsigned ValOps = X86::AddrNumOperands;
10320 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10321 .addReg(MI->getOperand(ValOps).getReg());
10322 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
10323 .addReg(MI->getOperand(ValOps+1).getReg());
10324
10325 // The instruction doesn't actually take any operands though.
10326 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010327
Eric Christopher228232b2010-11-30 07:20:12 +000010328 MI->eraseFromParent(); // The pseudo is gone now.
10329 return BB;
10330}
10331
10332MachineBasicBlock *
10333X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010334 DebugLoc dl = MI->getDebugLoc();
10335 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010336
Eric Christopher228232b2010-11-30 07:20:12 +000010337 // First arg in ECX, the second in EAX.
10338 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10339 .addReg(MI->getOperand(0).getReg());
10340 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
10341 .addReg(MI->getOperand(1).getReg());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010342
Eric Christopher228232b2010-11-30 07:20:12 +000010343 // The instruction doesn't actually take any operands though.
10344 BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010345
Eric Christopher228232b2010-11-30 07:20:12 +000010346 MI->eraseFromParent(); // The pseudo is gone now.
10347 return BB;
10348}
10349
10350MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000010351X86TargetLowering::EmitVAARG64WithCustomInserter(
10352 MachineInstr *MI,
10353 MachineBasicBlock *MBB) const {
10354 // Emit va_arg instruction on X86-64.
10355
10356 // Operands to this pseudo-instruction:
10357 // 0 ) Output : destination address (reg)
10358 // 1-5) Input : va_list address (addr, i64mem)
10359 // 6 ) ArgSize : Size (in bytes) of vararg type
10360 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
10361 // 8 ) Align : Alignment of type
10362 // 9 ) EFLAGS (implicit-def)
10363
10364 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
10365 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
10366
10367 unsigned DestReg = MI->getOperand(0).getReg();
10368 MachineOperand &Base = MI->getOperand(1);
10369 MachineOperand &Scale = MI->getOperand(2);
10370 MachineOperand &Index = MI->getOperand(3);
10371 MachineOperand &Disp = MI->getOperand(4);
10372 MachineOperand &Segment = MI->getOperand(5);
10373 unsigned ArgSize = MI->getOperand(6).getImm();
10374 unsigned ArgMode = MI->getOperand(7).getImm();
10375 unsigned Align = MI->getOperand(8).getImm();
10376
10377 // Memory Reference
10378 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
10379 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
10380 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
10381
10382 // Machine Information
10383 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10384 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
10385 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
10386 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
10387 DebugLoc DL = MI->getDebugLoc();
10388
10389 // struct va_list {
10390 // i32 gp_offset
10391 // i32 fp_offset
10392 // i64 overflow_area (address)
10393 // i64 reg_save_area (address)
10394 // }
10395 // sizeof(va_list) = 24
10396 // alignment(va_list) = 8
10397
10398 unsigned TotalNumIntRegs = 6;
10399 unsigned TotalNumXMMRegs = 8;
10400 bool UseGPOffset = (ArgMode == 1);
10401 bool UseFPOffset = (ArgMode == 2);
10402 unsigned MaxOffset = TotalNumIntRegs * 8 +
10403 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
10404
10405 /* Align ArgSize to a multiple of 8 */
10406 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
10407 bool NeedsAlign = (Align > 8);
10408
10409 MachineBasicBlock *thisMBB = MBB;
10410 MachineBasicBlock *overflowMBB;
10411 MachineBasicBlock *offsetMBB;
10412 MachineBasicBlock *endMBB;
10413
10414 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
10415 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
10416 unsigned OffsetReg = 0;
10417
10418 if (!UseGPOffset && !UseFPOffset) {
10419 // If we only pull from the overflow region, we don't create a branch.
10420 // We don't need to alter control flow.
10421 OffsetDestReg = 0; // unused
10422 OverflowDestReg = DestReg;
10423
10424 offsetMBB = NULL;
10425 overflowMBB = thisMBB;
10426 endMBB = thisMBB;
10427 } else {
10428 // First emit code to check if gp_offset (or fp_offset) is below the bound.
10429 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
10430 // If not, pull from overflow_area. (branch to overflowMBB)
10431 //
10432 // thisMBB
10433 // | .
10434 // | .
10435 // offsetMBB overflowMBB
10436 // | .
10437 // | .
10438 // endMBB
10439
10440 // Registers for the PHI in endMBB
10441 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
10442 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
10443
10444 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10445 MachineFunction *MF = MBB->getParent();
10446 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10447 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10448 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10449
10450 MachineFunction::iterator MBBIter = MBB;
10451 ++MBBIter;
10452
10453 // Insert the new basic blocks
10454 MF->insert(MBBIter, offsetMBB);
10455 MF->insert(MBBIter, overflowMBB);
10456 MF->insert(MBBIter, endMBB);
10457
10458 // Transfer the remainder of MBB and its successor edges to endMBB.
10459 endMBB->splice(endMBB->begin(), thisMBB,
10460 llvm::next(MachineBasicBlock::iterator(MI)),
10461 thisMBB->end());
10462 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
10463
10464 // Make offsetMBB and overflowMBB successors of thisMBB
10465 thisMBB->addSuccessor(offsetMBB);
10466 thisMBB->addSuccessor(overflowMBB);
10467
10468 // endMBB is a successor of both offsetMBB and overflowMBB
10469 offsetMBB->addSuccessor(endMBB);
10470 overflowMBB->addSuccessor(endMBB);
10471
10472 // Load the offset value into a register
10473 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
10474 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
10475 .addOperand(Base)
10476 .addOperand(Scale)
10477 .addOperand(Index)
10478 .addDisp(Disp, UseFPOffset ? 4 : 0)
10479 .addOperand(Segment)
10480 .setMemRefs(MMOBegin, MMOEnd);
10481
10482 // Check if there is enough room left to pull this argument.
10483 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
10484 .addReg(OffsetReg)
10485 .addImm(MaxOffset + 8 - ArgSizeA8);
10486
10487 // Branch to "overflowMBB" if offset >= max
10488 // Fall through to "offsetMBB" otherwise
10489 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
10490 .addMBB(overflowMBB);
10491 }
10492
10493 // In offsetMBB, emit code to use the reg_save_area.
10494 if (offsetMBB) {
10495 assert(OffsetReg != 0);
10496
10497 // Read the reg_save_area address.
10498 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
10499 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
10500 .addOperand(Base)
10501 .addOperand(Scale)
10502 .addOperand(Index)
10503 .addDisp(Disp, 16)
10504 .addOperand(Segment)
10505 .setMemRefs(MMOBegin, MMOEnd);
10506
10507 // Zero-extend the offset
10508 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
10509 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
10510 .addImm(0)
10511 .addReg(OffsetReg)
10512 .addImm(X86::sub_32bit);
10513
10514 // Add the offset to the reg_save_area to get the final address.
10515 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
10516 .addReg(OffsetReg64)
10517 .addReg(RegSaveReg);
10518
10519 // Compute the offset for the next argument
10520 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
10521 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
10522 .addReg(OffsetReg)
10523 .addImm(UseFPOffset ? 16 : 8);
10524
10525 // Store it back into the va_list.
10526 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
10527 .addOperand(Base)
10528 .addOperand(Scale)
10529 .addOperand(Index)
10530 .addDisp(Disp, UseFPOffset ? 4 : 0)
10531 .addOperand(Segment)
10532 .addReg(NextOffsetReg)
10533 .setMemRefs(MMOBegin, MMOEnd);
10534
10535 // Jump to endMBB
10536 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
10537 .addMBB(endMBB);
10538 }
10539
10540 //
10541 // Emit code to use overflow area
10542 //
10543
10544 // Load the overflow_area address into a register.
10545 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
10546 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
10547 .addOperand(Base)
10548 .addOperand(Scale)
10549 .addOperand(Index)
10550 .addDisp(Disp, 8)
10551 .addOperand(Segment)
10552 .setMemRefs(MMOBegin, MMOEnd);
10553
10554 // If we need to align it, do so. Otherwise, just copy the address
10555 // to OverflowDestReg.
10556 if (NeedsAlign) {
10557 // Align the overflow address
10558 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
10559 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
10560
10561 // aligned_addr = (addr + (align-1)) & ~(align-1)
10562 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
10563 .addReg(OverflowAddrReg)
10564 .addImm(Align-1);
10565
10566 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
10567 .addReg(TmpReg)
10568 .addImm(~(uint64_t)(Align-1));
10569 } else {
10570 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
10571 .addReg(OverflowAddrReg);
10572 }
10573
10574 // Compute the next overflow address after this argument.
10575 // (the overflow address should be kept 8-byte aligned)
10576 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
10577 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
10578 .addReg(OverflowDestReg)
10579 .addImm(ArgSizeA8);
10580
10581 // Store the new overflow address.
10582 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
10583 .addOperand(Base)
10584 .addOperand(Scale)
10585 .addOperand(Index)
10586 .addDisp(Disp, 8)
10587 .addOperand(Segment)
10588 .addReg(NextAddrReg)
10589 .setMemRefs(MMOBegin, MMOEnd);
10590
10591 // If we branched, emit the PHI to the front of endMBB.
10592 if (offsetMBB) {
10593 BuildMI(*endMBB, endMBB->begin(), DL,
10594 TII->get(X86::PHI), DestReg)
10595 .addReg(OffsetDestReg).addMBB(offsetMBB)
10596 .addReg(OverflowDestReg).addMBB(overflowMBB);
10597 }
10598
10599 // Erase the pseudo instruction
10600 MI->eraseFromParent();
10601
10602 return endMBB;
10603}
10604
10605MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000010606X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
10607 MachineInstr *MI,
10608 MachineBasicBlock *MBB) const {
10609 // Emit code to save XMM registers to the stack. The ABI says that the
10610 // number of registers to save is given in %al, so it's theoretically
10611 // possible to do an indirect jump trick to avoid saving all of them,
10612 // however this code takes a simpler approach and just executes all
10613 // of the stores if %al is non-zero. It's less code, and it's probably
10614 // easier on the hardware branch predictor, and stores aren't all that
10615 // expensive anyway.
10616
10617 // Create the new basic blocks. One block contains all the XMM stores,
10618 // and one block is the final destination regardless of whether any
10619 // stores were performed.
10620 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10621 MachineFunction *F = MBB->getParent();
10622 MachineFunction::iterator MBBIter = MBB;
10623 ++MBBIter;
10624 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
10625 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
10626 F->insert(MBBIter, XMMSaveMBB);
10627 F->insert(MBBIter, EndMBB);
10628
Dan Gohman14152b42010-07-06 20:24:04 +000010629 // Transfer the remainder of MBB and its successor edges to EndMBB.
10630 EndMBB->splice(EndMBB->begin(), MBB,
10631 llvm::next(MachineBasicBlock::iterator(MI)),
10632 MBB->end());
10633 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
10634
Dan Gohmand6708ea2009-08-15 01:38:56 +000010635 // The original block will now fall through to the XMM save block.
10636 MBB->addSuccessor(XMMSaveMBB);
10637 // The XMMSaveMBB will fall through to the end block.
10638 XMMSaveMBB->addSuccessor(EndMBB);
10639
10640 // Now add the instructions.
10641 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10642 DebugLoc DL = MI->getDebugLoc();
10643
10644 unsigned CountReg = MI->getOperand(0).getReg();
10645 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
10646 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
10647
10648 if (!Subtarget->isTargetWin64()) {
10649 // If %al is 0, branch around the XMM save block.
10650 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010651 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010652 MBB->addSuccessor(EndMBB);
10653 }
10654
10655 // In the XMM save block, save all the XMM argument registers.
10656 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
10657 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000010658 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000010659 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000010660 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000010661 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000010662 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010663 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
10664 .addFrameIndex(RegSaveFrameIndex)
10665 .addImm(/*Scale=*/1)
10666 .addReg(/*IndexReg=*/0)
10667 .addImm(/*Disp=*/Offset)
10668 .addReg(/*Segment=*/0)
10669 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000010670 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010671 }
10672
Dan Gohman14152b42010-07-06 20:24:04 +000010673 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000010674
10675 return EndMBB;
10676}
Mon P Wang63307c32008-05-05 19:05:59 +000010677
Evan Cheng60c07e12006-07-05 22:17:51 +000010678MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000010679X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010680 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000010681 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10682 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000010683
Chris Lattner52600972009-09-02 05:57:00 +000010684 // To "insert" a SELECT_CC instruction, we actually have to insert the
10685 // diamond control-flow pattern. The incoming instruction knows the
10686 // destination vreg to set, the condition code register to branch on, the
10687 // true/false values to select between, and a branch opcode to use.
10688 const BasicBlock *LLVM_BB = BB->getBasicBlock();
10689 MachineFunction::iterator It = BB;
10690 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000010691
Chris Lattner52600972009-09-02 05:57:00 +000010692 // thisMBB:
10693 // ...
10694 // TrueVal = ...
10695 // cmpTY ccX, r1, r2
10696 // bCC copy1MBB
10697 // fallthrough --> copy0MBB
10698 MachineBasicBlock *thisMBB = BB;
10699 MachineFunction *F = BB->getParent();
10700 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
10701 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000010702 F->insert(It, copy0MBB);
10703 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000010704
Bill Wendling730c07e2010-06-25 20:48:10 +000010705 // If the EFLAGS register isn't dead in the terminator, then claim that it's
10706 // live into the sink and copy blocks.
10707 const MachineFunction *MF = BB->getParent();
10708 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
10709 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +000010710
Dan Gohman14152b42010-07-06 20:24:04 +000010711 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
10712 const MachineOperand &MO = MI->getOperand(I);
10713 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +000010714 unsigned Reg = MO.getReg();
10715 if (Reg != X86::EFLAGS) continue;
10716 copy0MBB->addLiveIn(Reg);
10717 sinkMBB->addLiveIn(Reg);
10718 }
10719
Dan Gohman14152b42010-07-06 20:24:04 +000010720 // Transfer the remainder of BB and its successor edges to sinkMBB.
10721 sinkMBB->splice(sinkMBB->begin(), BB,
10722 llvm::next(MachineBasicBlock::iterator(MI)),
10723 BB->end());
10724 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
10725
10726 // Add the true and fallthrough blocks as its successors.
10727 BB->addSuccessor(copy0MBB);
10728 BB->addSuccessor(sinkMBB);
10729
10730 // Create the conditional branch instruction.
10731 unsigned Opc =
10732 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
10733 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
10734
Chris Lattner52600972009-09-02 05:57:00 +000010735 // copy0MBB:
10736 // %FalseValue = ...
10737 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000010738 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000010739
Chris Lattner52600972009-09-02 05:57:00 +000010740 // sinkMBB:
10741 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
10742 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000010743 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
10744 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000010745 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
10746 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
10747
Dan Gohman14152b42010-07-06 20:24:04 +000010748 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000010749 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000010750}
10751
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010752MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010753X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010754 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010755 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10756 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010757
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000010758 assert(!Subtarget->isTargetEnvMacho());
10759
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010760 // The lowering is pretty easy: we're just emitting the call to _alloca. The
10761 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010762
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000010763 if (Subtarget->isTargetWin64()) {
10764 if (Subtarget->isTargetCygMing()) {
10765 // ___chkstk(Mingw64):
10766 // Clobbers R10, R11, RAX and EFLAGS.
10767 // Updates RSP.
10768 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
10769 .addExternalSymbol("___chkstk")
10770 .addReg(X86::RAX, RegState::Implicit)
10771 .addReg(X86::RSP, RegState::Implicit)
10772 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
10773 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
10774 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
10775 } else {
10776 // __chkstk(MSVCRT): does not update stack pointer.
10777 // Clobbers R10, R11 and EFLAGS.
10778 // FIXME: RAX(allocated size) might be reused and not killed.
10779 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
10780 .addExternalSymbol("__chkstk")
10781 .addReg(X86::RAX, RegState::Implicit)
10782 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
10783 // RAX has the offset to subtracted from RSP.
10784 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
10785 .addReg(X86::RSP)
10786 .addReg(X86::RAX);
10787 }
10788 } else {
10789 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010790 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
10791
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000010792 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
10793 .addExternalSymbol(StackProbeSymbol)
10794 .addReg(X86::EAX, RegState::Implicit)
10795 .addReg(X86::ESP, RegState::Implicit)
10796 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
10797 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
10798 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
10799 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010800
Dan Gohman14152b42010-07-06 20:24:04 +000010801 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010802 return BB;
10803}
Chris Lattner52600972009-09-02 05:57:00 +000010804
10805MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000010806X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
10807 MachineBasicBlock *BB) const {
10808 // This is pretty easy. We're taking the value that we received from
10809 // our load from the relocation, sticking it in either RDI (x86-64)
10810 // or EAX and doing an indirect call. The return value will then
10811 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010812 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000010813 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000010814 DebugLoc DL = MI->getDebugLoc();
10815 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000010816
10817 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000010818 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000010819
Eric Christopher30ef0e52010-06-03 04:07:48 +000010820 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000010821 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
10822 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000010823 .addReg(X86::RIP)
10824 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000010825 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000010826 MI->getOperand(3).getTargetFlags())
10827 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000010828 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000010829 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +000010830 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000010831 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
10832 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000010833 .addReg(0)
10834 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000010835 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000010836 MI->getOperand(3).getTargetFlags())
10837 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000010838 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000010839 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010840 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000010841 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
10842 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000010843 .addReg(TII->getGlobalBaseReg(F))
10844 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000010845 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000010846 MI->getOperand(3).getTargetFlags())
10847 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000010848 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000010849 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010850 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000010851
Dan Gohman14152b42010-07-06 20:24:04 +000010852 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000010853 return BB;
10854}
10855
10856MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000010857X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010858 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000010859 switch (MI->getOpcode()) {
10860 default: assert(false && "Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000010861 case X86::TAILJMPd64:
10862 case X86::TAILJMPr64:
10863 case X86::TAILJMPm64:
10864 assert(!"TAILJMP64 would not be touched here.");
10865 case X86::TCRETURNdi64:
10866 case X86::TCRETURNri64:
10867 case X86::TCRETURNmi64:
10868 // Defs of TCRETURNxx64 has Win64's callee-saved registers, as subset.
10869 // On AMD64, additional defs should be added before register allocation.
10870 if (!Subtarget->isTargetWin64()) {
10871 MI->addRegisterDefined(X86::RSI);
10872 MI->addRegisterDefined(X86::RDI);
10873 MI->addRegisterDefined(X86::XMM6);
10874 MI->addRegisterDefined(X86::XMM7);
10875 MI->addRegisterDefined(X86::XMM8);
10876 MI->addRegisterDefined(X86::XMM9);
10877 MI->addRegisterDefined(X86::XMM10);
10878 MI->addRegisterDefined(X86::XMM11);
10879 MI->addRegisterDefined(X86::XMM12);
10880 MI->addRegisterDefined(X86::XMM13);
10881 MI->addRegisterDefined(X86::XMM14);
10882 MI->addRegisterDefined(X86::XMM15);
10883 }
10884 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010885 case X86::WIN_ALLOCA:
10886 return EmitLoweredWinAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010887 case X86::TLSCall_32:
10888 case X86::TLSCall_64:
10889 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000010890 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000010891 case X86::CMOV_FR32:
10892 case X86::CMOV_FR64:
10893 case X86::CMOV_V4F32:
10894 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000010895 case X86::CMOV_V2I64:
Chris Lattner314a1132010-03-14 18:31:44 +000010896 case X86::CMOV_GR16:
10897 case X86::CMOV_GR32:
10898 case X86::CMOV_RFP32:
10899 case X86::CMOV_RFP64:
10900 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010901 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000010902
Dale Johannesen849f2142007-07-03 00:53:03 +000010903 case X86::FP32_TO_INT16_IN_MEM:
10904 case X86::FP32_TO_INT32_IN_MEM:
10905 case X86::FP32_TO_INT64_IN_MEM:
10906 case X86::FP64_TO_INT16_IN_MEM:
10907 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000010908 case X86::FP64_TO_INT64_IN_MEM:
10909 case X86::FP80_TO_INT16_IN_MEM:
10910 case X86::FP80_TO_INT32_IN_MEM:
10911 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000010912 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10913 DebugLoc DL = MI->getDebugLoc();
10914
Evan Cheng60c07e12006-07-05 22:17:51 +000010915 // Change the floating point control register to use "round towards zero"
10916 // mode when truncating to an integer value.
10917 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000010918 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000010919 addFrameReference(BuildMI(*BB, MI, DL,
10920 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010921
10922 // Load the old value of the high byte of the control word...
10923 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +000010924 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +000010925 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010926 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010927
10928 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000010929 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010930 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000010931
10932 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000010933 addFrameReference(BuildMI(*BB, MI, DL,
10934 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010935
10936 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000010937 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010938 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000010939
10940 // Get the X86 opcode to use.
10941 unsigned Opc;
10942 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000010943 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000010944 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
10945 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
10946 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
10947 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
10948 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
10949 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000010950 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
10951 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
10952 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000010953 }
10954
10955 X86AddressMode AM;
10956 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000010957 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010958 AM.BaseType = X86AddressMode::RegBase;
10959 AM.Base.Reg = Op.getReg();
10960 } else {
10961 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000010962 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000010963 }
10964 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000010965 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010966 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010967 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000010968 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010969 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010970 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000010971 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010972 AM.GV = Op.getGlobal();
10973 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000010974 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010975 }
Dan Gohman14152b42010-07-06 20:24:04 +000010976 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010977 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000010978
10979 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000010980 addFrameReference(BuildMI(*BB, MI, DL,
10981 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010982
Dan Gohman14152b42010-07-06 20:24:04 +000010983 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000010984 return BB;
10985 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010986 // String/text processing lowering.
10987 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010988 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010989 return EmitPCMP(MI, BB, 3, false /* in-mem */);
10990 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010991 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010992 return EmitPCMP(MI, BB, 3, true /* in-mem */);
10993 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010994 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010995 return EmitPCMP(MI, BB, 5, false /* in mem */);
10996 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010997 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010998 return EmitPCMP(MI, BB, 5, true /* in mem */);
10999
Eric Christopher228232b2010-11-30 07:20:12 +000011000 // Thread synchronization.
11001 case X86::MONITOR:
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011002 return EmitMonitor(MI, BB);
Eric Christopher228232b2010-11-30 07:20:12 +000011003 case X86::MWAIT:
11004 return EmitMwait(MI, BB);
11005
Eric Christopherb120ab42009-08-18 22:50:32 +000011006 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000011007 case X86::ATOMAND32:
11008 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011009 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011010 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011011 X86::NOT32r, X86::EAX,
11012 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000011013 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000011014 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
11015 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011016 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011017 X86::NOT32r, X86::EAX,
11018 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000011019 case X86::ATOMXOR32:
11020 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011021 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011022 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011023 X86::NOT32r, X86::EAX,
11024 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000011025 case X86::ATOMNAND32:
11026 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011027 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011028 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011029 X86::NOT32r, X86::EAX,
11030 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000011031 case X86::ATOMMIN32:
11032 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
11033 case X86::ATOMMAX32:
11034 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
11035 case X86::ATOMUMIN32:
11036 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
11037 case X86::ATOMUMAX32:
11038 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000011039
11040 case X86::ATOMAND16:
11041 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
11042 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011043 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011044 X86::NOT16r, X86::AX,
11045 X86::GR16RegisterClass);
11046 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000011047 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011048 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011049 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011050 X86::NOT16r, X86::AX,
11051 X86::GR16RegisterClass);
11052 case X86::ATOMXOR16:
11053 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
11054 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011055 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011056 X86::NOT16r, X86::AX,
11057 X86::GR16RegisterClass);
11058 case X86::ATOMNAND16:
11059 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
11060 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011061 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011062 X86::NOT16r, X86::AX,
11063 X86::GR16RegisterClass, true);
11064 case X86::ATOMMIN16:
11065 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
11066 case X86::ATOMMAX16:
11067 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
11068 case X86::ATOMUMIN16:
11069 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
11070 case X86::ATOMUMAX16:
11071 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
11072
11073 case X86::ATOMAND8:
11074 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
11075 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011076 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011077 X86::NOT8r, X86::AL,
11078 X86::GR8RegisterClass);
11079 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000011080 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011081 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011082 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011083 X86::NOT8r, X86::AL,
11084 X86::GR8RegisterClass);
11085 case X86::ATOMXOR8:
11086 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
11087 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011088 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011089 X86::NOT8r, X86::AL,
11090 X86::GR8RegisterClass);
11091 case X86::ATOMNAND8:
11092 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
11093 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011094 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011095 X86::NOT8r, X86::AL,
11096 X86::GR8RegisterClass, true);
11097 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011098 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000011099 case X86::ATOMAND64:
11100 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011101 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011102 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011103 X86::NOT64r, X86::RAX,
11104 X86::GR64RegisterClass);
11105 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000011106 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
11107 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011108 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011109 X86::NOT64r, X86::RAX,
11110 X86::GR64RegisterClass);
11111 case X86::ATOMXOR64:
11112 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011113 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011114 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011115 X86::NOT64r, X86::RAX,
11116 X86::GR64RegisterClass);
11117 case X86::ATOMNAND64:
11118 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
11119 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011120 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011121 X86::NOT64r, X86::RAX,
11122 X86::GR64RegisterClass, true);
11123 case X86::ATOMMIN64:
11124 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
11125 case X86::ATOMMAX64:
11126 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
11127 case X86::ATOMUMIN64:
11128 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
11129 case X86::ATOMUMAX64:
11130 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011131
11132 // This group does 64-bit operations on a 32-bit host.
11133 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011134 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011135 X86::AND32rr, X86::AND32rr,
11136 X86::AND32ri, X86::AND32ri,
11137 false);
11138 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011139 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011140 X86::OR32rr, X86::OR32rr,
11141 X86::OR32ri, X86::OR32ri,
11142 false);
11143 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011144 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011145 X86::XOR32rr, X86::XOR32rr,
11146 X86::XOR32ri, X86::XOR32ri,
11147 false);
11148 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011149 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011150 X86::AND32rr, X86::AND32rr,
11151 X86::AND32ri, X86::AND32ri,
11152 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011153 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011154 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011155 X86::ADD32rr, X86::ADC32rr,
11156 X86::ADD32ri, X86::ADC32ri,
11157 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011158 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011159 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011160 X86::SUB32rr, X86::SBB32rr,
11161 X86::SUB32ri, X86::SBB32ri,
11162 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000011163 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011164 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000011165 X86::MOV32rr, X86::MOV32rr,
11166 X86::MOV32ri, X86::MOV32ri,
11167 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011168 case X86::VASTART_SAVE_XMM_REGS:
11169 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000011170
11171 case X86::VAARG_64:
11172 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000011173 }
11174}
11175
11176//===----------------------------------------------------------------------===//
11177// X86 Optimization Hooks
11178//===----------------------------------------------------------------------===//
11179
Dan Gohman475871a2008-07-27 21:46:04 +000011180void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000011181 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000011182 APInt &KnownZero,
11183 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000011184 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000011185 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011186 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000011187 assert((Opc >= ISD::BUILTIN_OP_END ||
11188 Opc == ISD::INTRINSIC_WO_CHAIN ||
11189 Opc == ISD::INTRINSIC_W_CHAIN ||
11190 Opc == ISD::INTRINSIC_VOID) &&
11191 "Should use MaskedValueIsZero if you don't know whether Op"
11192 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011193
Dan Gohmanf4f92f52008-02-13 23:07:24 +000011194 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011195 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000011196 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011197 case X86ISD::ADD:
11198 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000011199 case X86ISD::ADC:
11200 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011201 case X86ISD::SMUL:
11202 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000011203 case X86ISD::INC:
11204 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000011205 case X86ISD::OR:
11206 case X86ISD::XOR:
11207 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011208 // These nodes' second result is a boolean.
11209 if (Op.getResNo() == 0)
11210 break;
11211 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011212 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000011213 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
11214 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000011215 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011216 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011217}
Chris Lattner259e97c2006-01-31 19:43:35 +000011218
Owen Andersonbc146b02010-09-21 20:42:50 +000011219unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
11220 unsigned Depth) const {
11221 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
11222 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
11223 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000011224
Owen Andersonbc146b02010-09-21 20:42:50 +000011225 // Fallback case.
11226 return 1;
11227}
11228
Evan Cheng206ee9d2006-07-07 08:33:52 +000011229/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000011230/// node is a GlobalAddress + offset.
11231bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000011232 const GlobalValue* &GA,
11233 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000011234 if (N->getOpcode() == X86ISD::Wrapper) {
11235 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000011236 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000011237 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000011238 return true;
11239 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000011240 }
Evan Chengad4196b2008-05-12 19:56:52 +000011241 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000011242}
11243
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011244/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
11245static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
11246 TargetLowering::DAGCombinerInfo &DCI) {
11247 DebugLoc dl = N->getDebugLoc();
11248 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
11249 SDValue V1 = SVOp->getOperand(0);
11250 SDValue V2 = SVOp->getOperand(1);
11251 EVT VT = SVOp->getValueType(0);
11252
11253 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
11254 V2.getOpcode() == ISD::CONCAT_VECTORS) {
11255 //
11256 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000011257 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011258 // V UNDEF BUILD_VECTOR UNDEF
11259 // \ / \ /
11260 // CONCAT_VECTOR CONCAT_VECTOR
11261 // \ /
11262 // \ /
11263 // RESULT: V + zero extended
11264 //
11265 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
11266 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
11267 V1.getOperand(1).getOpcode() != ISD::UNDEF)
11268 return SDValue();
11269
11270 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
11271 return SDValue();
11272
11273 // To match the shuffle mask, the first half of the mask should
11274 // be exactly the first vector, and all the rest a splat with the
11275 // first element of the second one.
11276 int NumElems = VT.getVectorNumElements();
11277 for (int i = 0; i < NumElems/2; ++i)
11278 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
11279 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
11280 return SDValue();
11281
11282 // Emit a zeroed vector and insert the desired subvector on its
11283 // first half.
11284 SDValue Zeros = getZeroVector(VT, true /* HasSSE2 */, DAG, dl);
11285 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0),
11286 DAG.getConstant(0, MVT::i32), DAG, dl);
11287 return DCI.CombineTo(N, InsV);
11288 }
11289
11290 return SDValue();
11291}
11292
11293/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000011294static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Mon P Wanga0fd0d52010-12-19 23:55:53 +000011295 TargetLowering::DAGCombinerInfo &DCI) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000011296 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000011297 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000011298
Mon P Wanga0fd0d52010-12-19 23:55:53 +000011299 // Don't create instructions with illegal types after legalize types has run.
11300 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11301 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
11302 return SDValue();
11303
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011304 // Only handle pure VECTOR_SHUFFLE nodes.
11305 if (VT.getSizeInBits() == 256 && N->getOpcode() == ISD::VECTOR_SHUFFLE)
11306 return PerformShuffleCombine256(N, DAG, DCI);
11307
11308 // Only handle 128 wide vector from here on.
11309 if (VT.getSizeInBits() != 128)
11310 return SDValue();
11311
11312 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
11313 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
11314 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000011315 SmallVector<SDValue, 16> Elts;
11316 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011317 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000011318
Nate Begemanfdea31a2010-03-24 20:49:50 +000011319 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000011320}
Evan Chengd880b972008-05-09 21:53:03 +000011321
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000011322/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
11323/// generation and convert it from being a bunch of shuffles and extracts
11324/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011325static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
11326 const TargetLowering &TLI) {
11327 SDValue InputVector = N->getOperand(0);
11328
11329 // Only operate on vectors of 4 elements, where the alternative shuffling
11330 // gets to be more expensive.
11331 if (InputVector.getValueType() != MVT::v4i32)
11332 return SDValue();
11333
11334 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
11335 // single use which is a sign-extend or zero-extend, and all elements are
11336 // used.
11337 SmallVector<SDNode *, 4> Uses;
11338 unsigned ExtractedElements = 0;
11339 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
11340 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
11341 if (UI.getUse().getResNo() != InputVector.getResNo())
11342 return SDValue();
11343
11344 SDNode *Extract = *UI;
11345 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
11346 return SDValue();
11347
11348 if (Extract->getValueType(0) != MVT::i32)
11349 return SDValue();
11350 if (!Extract->hasOneUse())
11351 return SDValue();
11352 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
11353 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
11354 return SDValue();
11355 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
11356 return SDValue();
11357
11358 // Record which element was extracted.
11359 ExtractedElements |=
11360 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
11361
11362 Uses.push_back(Extract);
11363 }
11364
11365 // If not all the elements were used, this may not be worthwhile.
11366 if (ExtractedElements != 15)
11367 return SDValue();
11368
11369 // Ok, we've now decided to do the transformation.
11370 DebugLoc dl = InputVector.getDebugLoc();
11371
11372 // Store the value to a temporary stack slot.
11373 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000011374 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
11375 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011376
11377 // Replace each use (extract) with a load of the appropriate element.
11378 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
11379 UE = Uses.end(); UI != UE; ++UI) {
11380 SDNode *Extract = *UI;
11381
Nadav Rotem86694292011-05-17 08:31:57 +000011382 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011383 SDValue Idx = Extract->getOperand(1);
11384 unsigned EltSize =
11385 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
11386 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
11387 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
11388
Nadav Rotem86694292011-05-17 08:31:57 +000011389 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000011390 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011391
11392 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000011393 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000011394 ScalarAddr, MachinePointerInfo(),
11395 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011396
11397 // Replace the exact with the load.
11398 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
11399 }
11400
11401 // The replacement was made in place; don't return anything.
11402 return SDValue();
11403}
11404
Chris Lattner83e6c992006-10-04 06:57:07 +000011405/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011406static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000011407 const X86Subtarget *Subtarget) {
11408 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000011409 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000011410 // Get the LHS/RHS of the select.
11411 SDValue LHS = N->getOperand(1);
11412 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000011413
Dan Gohman670e5392009-09-21 18:03:22 +000011414 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000011415 // instructions match the semantics of the common C idiom x<y?x:y but not
11416 // x<=y?x:y, because of how they handle negative zero (which can be
11417 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000011418 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000011419 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000011420 Cond.getOpcode() == ISD::SETCC) {
11421 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011422
Chris Lattner47b4ce82009-03-11 05:48:52 +000011423 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000011424 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000011425 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
11426 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000011427 switch (CC) {
11428 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000011429 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000011430 // Converting this to a min would handle NaNs incorrectly, and swapping
11431 // the operands would cause it to handle comparisons between positive
11432 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011433 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000011434 if (!UnsafeFPMath &&
11435 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
11436 break;
11437 std::swap(LHS, RHS);
11438 }
Dan Gohman670e5392009-09-21 18:03:22 +000011439 Opcode = X86ISD::FMIN;
11440 break;
11441 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000011442 // Converting this to a min would handle comparisons between positive
11443 // and negative zero incorrectly.
11444 if (!UnsafeFPMath &&
11445 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
11446 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011447 Opcode = X86ISD::FMIN;
11448 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000011449 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000011450 // Converting this to a min would handle both negative zeros and NaNs
11451 // incorrectly, but we can swap the operands to fix both.
11452 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011453 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011454 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000011455 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011456 Opcode = X86ISD::FMIN;
11457 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011458
Dan Gohman670e5392009-09-21 18:03:22 +000011459 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011460 // Converting this to a max would handle comparisons between positive
11461 // and negative zero incorrectly.
11462 if (!UnsafeFPMath &&
11463 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(LHS))
11464 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011465 Opcode = X86ISD::FMAX;
11466 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000011467 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000011468 // Converting this to a max would handle NaNs incorrectly, and swapping
11469 // the operands would cause it to handle comparisons between positive
11470 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011471 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000011472 if (!UnsafeFPMath &&
11473 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
11474 break;
11475 std::swap(LHS, RHS);
11476 }
Dan Gohman670e5392009-09-21 18:03:22 +000011477 Opcode = X86ISD::FMAX;
11478 break;
11479 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011480 // Converting this to a max would handle both negative zeros and NaNs
11481 // incorrectly, but we can swap the operands to fix both.
11482 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011483 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011484 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011485 case ISD::SETGE:
11486 Opcode = X86ISD::FMAX;
11487 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000011488 }
Dan Gohman670e5392009-09-21 18:03:22 +000011489 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000011490 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
11491 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000011492 switch (CC) {
11493 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000011494 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011495 // Converting this to a min would handle comparisons between positive
11496 // and negative zero incorrectly, and swapping the operands would
11497 // cause it to handle NaNs incorrectly.
11498 if (!UnsafeFPMath &&
11499 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000011500 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011501 break;
11502 std::swap(LHS, RHS);
11503 }
Dan Gohman670e5392009-09-21 18:03:22 +000011504 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000011505 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011506 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000011507 // Converting this to a min would handle NaNs incorrectly.
11508 if (!UnsafeFPMath &&
11509 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
11510 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011511 Opcode = X86ISD::FMIN;
11512 break;
11513 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011514 // Converting this to a min would handle both negative zeros and NaNs
11515 // incorrectly, but we can swap the operands to fix both.
11516 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011517 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011518 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011519 case ISD::SETGE:
11520 Opcode = X86ISD::FMIN;
11521 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011522
Dan Gohman670e5392009-09-21 18:03:22 +000011523 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000011524 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011525 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011526 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011527 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000011528 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011529 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000011530 // Converting this to a max would handle comparisons between positive
11531 // and negative zero incorrectly, and swapping the operands would
11532 // cause it to handle NaNs incorrectly.
11533 if (!UnsafeFPMath &&
11534 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000011535 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011536 break;
11537 std::swap(LHS, RHS);
11538 }
Dan Gohman670e5392009-09-21 18:03:22 +000011539 Opcode = X86ISD::FMAX;
11540 break;
11541 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000011542 // Converting this to a max would handle both negative zeros and NaNs
11543 // incorrectly, but we can swap the operands to fix both.
11544 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011545 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011546 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000011547 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011548 Opcode = X86ISD::FMAX;
11549 break;
11550 }
Chris Lattner83e6c992006-10-04 06:57:07 +000011551 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011552
Chris Lattner47b4ce82009-03-11 05:48:52 +000011553 if (Opcode)
11554 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000011555 }
Eric Christopherfd179292009-08-27 18:07:15 +000011556
Chris Lattnerd1980a52009-03-12 06:52:53 +000011557 // If this is a select between two integer constants, try to do some
11558 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000011559 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
11560 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000011561 // Don't do this for crazy integer types.
11562 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
11563 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000011564 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000011565 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000011566
Chris Lattnercee56e72009-03-13 05:53:31 +000011567 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000011568 // Efficiently invertible.
11569 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
11570 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
11571 isa<ConstantSDNode>(Cond.getOperand(1))))) {
11572 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000011573 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000011574 }
Eric Christopherfd179292009-08-27 18:07:15 +000011575
Chris Lattnerd1980a52009-03-12 06:52:53 +000011576 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000011577 if (FalseC->getAPIntValue() == 0 &&
11578 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000011579 if (NeedsCondInvert) // Invert the condition if needed.
11580 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11581 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011582
Chris Lattnerd1980a52009-03-12 06:52:53 +000011583 // Zero extend the condition if needed.
11584 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011585
Chris Lattnercee56e72009-03-13 05:53:31 +000011586 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000011587 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000011588 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000011589 }
Eric Christopherfd179292009-08-27 18:07:15 +000011590
Chris Lattner97a29a52009-03-13 05:22:11 +000011591 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000011592 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000011593 if (NeedsCondInvert) // Invert the condition if needed.
11594 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11595 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011596
Chris Lattner97a29a52009-03-13 05:22:11 +000011597 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000011598 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
11599 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000011600 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000011601 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000011602 }
Eric Christopherfd179292009-08-27 18:07:15 +000011603
Chris Lattnercee56e72009-03-13 05:53:31 +000011604 // Optimize cases that will turn into an LEA instruction. This requires
11605 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000011606 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000011607 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000011608 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000011609
Chris Lattnercee56e72009-03-13 05:53:31 +000011610 bool isFastMultiplier = false;
11611 if (Diff < 10) {
11612 switch ((unsigned char)Diff) {
11613 default: break;
11614 case 1: // result = add base, cond
11615 case 2: // result = lea base( , cond*2)
11616 case 3: // result = lea base(cond, cond*2)
11617 case 4: // result = lea base( , cond*4)
11618 case 5: // result = lea base(cond, cond*4)
11619 case 8: // result = lea base( , cond*8)
11620 case 9: // result = lea base(cond, cond*8)
11621 isFastMultiplier = true;
11622 break;
11623 }
11624 }
Eric Christopherfd179292009-08-27 18:07:15 +000011625
Chris Lattnercee56e72009-03-13 05:53:31 +000011626 if (isFastMultiplier) {
11627 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
11628 if (NeedsCondInvert) // Invert the condition if needed.
11629 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11630 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011631
Chris Lattnercee56e72009-03-13 05:53:31 +000011632 // Zero extend the condition if needed.
11633 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
11634 Cond);
11635 // Scale the condition by the difference.
11636 if (Diff != 1)
11637 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
11638 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011639
Chris Lattnercee56e72009-03-13 05:53:31 +000011640 // Add the base if non-zero.
11641 if (FalseC->getAPIntValue() != 0)
11642 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11643 SDValue(FalseC, 0));
11644 return Cond;
11645 }
Eric Christopherfd179292009-08-27 18:07:15 +000011646 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000011647 }
11648 }
Eric Christopherfd179292009-08-27 18:07:15 +000011649
Dan Gohman475871a2008-07-27 21:46:04 +000011650 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000011651}
11652
Chris Lattnerd1980a52009-03-12 06:52:53 +000011653/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
11654static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
11655 TargetLowering::DAGCombinerInfo &DCI) {
11656 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000011657
Chris Lattnerd1980a52009-03-12 06:52:53 +000011658 // If the flag operand isn't dead, don't touch this CMOV.
11659 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
11660 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000011661
Evan Chengb5a55d92011-05-24 01:48:22 +000011662 SDValue FalseOp = N->getOperand(0);
11663 SDValue TrueOp = N->getOperand(1);
11664 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
11665 SDValue Cond = N->getOperand(3);
11666 if (CC == X86::COND_E || CC == X86::COND_NE) {
11667 switch (Cond.getOpcode()) {
11668 default: break;
11669 case X86ISD::BSR:
11670 case X86ISD::BSF:
11671 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
11672 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
11673 return (CC == X86::COND_E) ? FalseOp : TrueOp;
11674 }
11675 }
11676
Chris Lattnerd1980a52009-03-12 06:52:53 +000011677 // If this is a select between two integer constants, try to do some
11678 // optimizations. Note that the operands are ordered the opposite of SELECT
11679 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000011680 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
11681 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000011682 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
11683 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000011684 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
11685 CC = X86::GetOppositeBranchCondition(CC);
11686 std::swap(TrueC, FalseC);
11687 }
Eric Christopherfd179292009-08-27 18:07:15 +000011688
Chris Lattnerd1980a52009-03-12 06:52:53 +000011689 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000011690 // This is efficient for any integer data type (including i8/i16) and
11691 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000011692 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011693 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11694 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011695
Chris Lattnerd1980a52009-03-12 06:52:53 +000011696 // Zero extend the condition if needed.
11697 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011698
Chris Lattnerd1980a52009-03-12 06:52:53 +000011699 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
11700 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000011701 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000011702 if (N->getNumValues() == 2) // Dead flag value?
11703 return DCI.CombineTo(N, Cond, SDValue());
11704 return Cond;
11705 }
Eric Christopherfd179292009-08-27 18:07:15 +000011706
Chris Lattnercee56e72009-03-13 05:53:31 +000011707 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
11708 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000011709 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011710 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11711 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011712
Chris Lattner97a29a52009-03-13 05:22:11 +000011713 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000011714 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
11715 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000011716 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11717 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000011718
Chris Lattner97a29a52009-03-13 05:22:11 +000011719 if (N->getNumValues() == 2) // Dead flag value?
11720 return DCI.CombineTo(N, Cond, SDValue());
11721 return Cond;
11722 }
Eric Christopherfd179292009-08-27 18:07:15 +000011723
Chris Lattnercee56e72009-03-13 05:53:31 +000011724 // Optimize cases that will turn into an LEA instruction. This requires
11725 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000011726 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000011727 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000011728 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000011729
Chris Lattnercee56e72009-03-13 05:53:31 +000011730 bool isFastMultiplier = false;
11731 if (Diff < 10) {
11732 switch ((unsigned char)Diff) {
11733 default: break;
11734 case 1: // result = add base, cond
11735 case 2: // result = lea base( , cond*2)
11736 case 3: // result = lea base(cond, cond*2)
11737 case 4: // result = lea base( , cond*4)
11738 case 5: // result = lea base(cond, cond*4)
11739 case 8: // result = lea base( , cond*8)
11740 case 9: // result = lea base(cond, cond*8)
11741 isFastMultiplier = true;
11742 break;
11743 }
11744 }
Eric Christopherfd179292009-08-27 18:07:15 +000011745
Chris Lattnercee56e72009-03-13 05:53:31 +000011746 if (isFastMultiplier) {
11747 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000011748 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11749 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000011750 // Zero extend the condition if needed.
11751 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
11752 Cond);
11753 // Scale the condition by the difference.
11754 if (Diff != 1)
11755 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
11756 DAG.getConstant(Diff, Cond.getValueType()));
11757
11758 // Add the base if non-zero.
11759 if (FalseC->getAPIntValue() != 0)
11760 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11761 SDValue(FalseC, 0));
11762 if (N->getNumValues() == 2) // Dead flag value?
11763 return DCI.CombineTo(N, Cond, SDValue());
11764 return Cond;
11765 }
Eric Christopherfd179292009-08-27 18:07:15 +000011766 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000011767 }
11768 }
11769 return SDValue();
11770}
11771
11772
Evan Cheng0b0cd912009-03-28 05:57:29 +000011773/// PerformMulCombine - Optimize a single multiply with constant into two
11774/// in order to implement it with two cheaper instructions, e.g.
11775/// LEA + SHL, LEA + LEA.
11776static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
11777 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000011778 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
11779 return SDValue();
11780
Owen Andersone50ed302009-08-10 22:56:29 +000011781 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011782 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000011783 return SDValue();
11784
11785 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
11786 if (!C)
11787 return SDValue();
11788 uint64_t MulAmt = C->getZExtValue();
11789 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
11790 return SDValue();
11791
11792 uint64_t MulAmt1 = 0;
11793 uint64_t MulAmt2 = 0;
11794 if ((MulAmt % 9) == 0) {
11795 MulAmt1 = 9;
11796 MulAmt2 = MulAmt / 9;
11797 } else if ((MulAmt % 5) == 0) {
11798 MulAmt1 = 5;
11799 MulAmt2 = MulAmt / 5;
11800 } else if ((MulAmt % 3) == 0) {
11801 MulAmt1 = 3;
11802 MulAmt2 = MulAmt / 3;
11803 }
11804 if (MulAmt2 &&
11805 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
11806 DebugLoc DL = N->getDebugLoc();
11807
11808 if (isPowerOf2_64(MulAmt2) &&
11809 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
11810 // If second multiplifer is pow2, issue it first. We want the multiply by
11811 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
11812 // is an add.
11813 std::swap(MulAmt1, MulAmt2);
11814
11815 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000011816 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000011817 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000011818 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000011819 else
Evan Cheng73f24c92009-03-30 21:36:47 +000011820 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000011821 DAG.getConstant(MulAmt1, VT));
11822
Eric Christopherfd179292009-08-27 18:07:15 +000011823 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000011824 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000011825 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000011826 else
Evan Cheng73f24c92009-03-30 21:36:47 +000011827 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000011828 DAG.getConstant(MulAmt2, VT));
11829
11830 // Do not add new nodes to DAG combiner worklist.
11831 DCI.CombineTo(N, NewMul, false);
11832 }
11833 return SDValue();
11834}
11835
Evan Chengad9c0a32009-12-15 00:53:42 +000011836static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
11837 SDValue N0 = N->getOperand(0);
11838 SDValue N1 = N->getOperand(1);
11839 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
11840 EVT VT = N0.getValueType();
11841
11842 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
11843 // since the result of setcc_c is all zero's or all ones.
11844 if (N1C && N0.getOpcode() == ISD::AND &&
11845 N0.getOperand(1).getOpcode() == ISD::Constant) {
11846 SDValue N00 = N0.getOperand(0);
11847 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
11848 ((N00.getOpcode() == ISD::ANY_EXTEND ||
11849 N00.getOpcode() == ISD::ZERO_EXTEND) &&
11850 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
11851 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
11852 APInt ShAmt = N1C->getAPIntValue();
11853 Mask = Mask.shl(ShAmt);
11854 if (Mask != 0)
11855 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
11856 N00, DAG.getConstant(Mask, VT));
11857 }
11858 }
11859
11860 return SDValue();
11861}
Evan Cheng0b0cd912009-03-28 05:57:29 +000011862
Nate Begeman740ab032009-01-26 00:52:55 +000011863/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
11864/// when possible.
11865static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
11866 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000011867 EVT VT = N->getValueType(0);
11868 if (!VT.isVector() && VT.isInteger() &&
11869 N->getOpcode() == ISD::SHL)
11870 return PerformSHLCombine(N, DAG);
11871
Nate Begeman740ab032009-01-26 00:52:55 +000011872 // On X86 with SSE2 support, we can transform this to a vector shift if
11873 // all elements are shifted by the same amount. We can't do this in legalize
11874 // because the a constant vector is typically transformed to a constant pool
11875 // so we have no knowledge of the shift amount.
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011876 if (!Subtarget->hasSSE2())
11877 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000011878
Owen Anderson825b72b2009-08-11 20:47:22 +000011879 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011880 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000011881
Mon P Wang3becd092009-01-28 08:12:05 +000011882 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000011883 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000011884 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000011885 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000011886 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
11887 unsigned NumElts = VT.getVectorNumElements();
11888 unsigned i = 0;
11889 for (; i != NumElts; ++i) {
11890 SDValue Arg = ShAmtOp.getOperand(i);
11891 if (Arg.getOpcode() == ISD::UNDEF) continue;
11892 BaseShAmt = Arg;
11893 break;
11894 }
11895 for (; i != NumElts; ++i) {
11896 SDValue Arg = ShAmtOp.getOperand(i);
11897 if (Arg.getOpcode() == ISD::UNDEF) continue;
11898 if (Arg != BaseShAmt) {
11899 return SDValue();
11900 }
11901 }
11902 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000011903 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000011904 SDValue InVec = ShAmtOp.getOperand(0);
11905 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
11906 unsigned NumElts = InVec.getValueType().getVectorNumElements();
11907 unsigned i = 0;
11908 for (; i != NumElts; ++i) {
11909 SDValue Arg = InVec.getOperand(i);
11910 if (Arg.getOpcode() == ISD::UNDEF) continue;
11911 BaseShAmt = Arg;
11912 break;
11913 }
11914 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
11915 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000011916 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000011917 if (C->getZExtValue() == SplatIdx)
11918 BaseShAmt = InVec.getOperand(1);
11919 }
11920 }
11921 if (BaseShAmt.getNode() == 0)
11922 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
11923 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000011924 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011925 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000011926
Mon P Wangefa42202009-09-03 19:56:25 +000011927 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000011928 if (EltVT.bitsGT(MVT::i32))
11929 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
11930 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000011931 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000011932
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011933 // The shift amount is identical so we can do a vector shift.
11934 SDValue ValOp = N->getOperand(0);
11935 switch (N->getOpcode()) {
11936 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000011937 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011938 break;
11939 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000011940 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011941 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011942 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011943 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011944 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011945 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011946 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011947 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011948 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011949 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011950 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011951 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011952 break;
11953 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000011954 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011955 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011956 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011957 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011958 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011959 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011960 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011961 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011962 break;
11963 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000011964 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011965 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011966 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011967 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011968 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011969 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011970 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011971 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011972 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011973 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011974 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011975 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011976 break;
Nate Begeman740ab032009-01-26 00:52:55 +000011977 }
11978 return SDValue();
11979}
11980
Nate Begemanb65c1752010-12-17 22:55:37 +000011981
Stuart Hastings865f0932011-06-03 23:53:54 +000011982// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
11983// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
11984// and friends. Likewise for OR -> CMPNEQSS.
11985static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
11986 TargetLowering::DAGCombinerInfo &DCI,
11987 const X86Subtarget *Subtarget) {
11988 unsigned opcode;
11989
11990 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
11991 // we're requiring SSE2 for both.
11992 if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
11993 SDValue N0 = N->getOperand(0);
11994 SDValue N1 = N->getOperand(1);
11995 SDValue CMP0 = N0->getOperand(1);
11996 SDValue CMP1 = N1->getOperand(1);
11997 DebugLoc DL = N->getDebugLoc();
11998
11999 // The SETCCs should both refer to the same CMP.
12000 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
12001 return SDValue();
12002
12003 SDValue CMP00 = CMP0->getOperand(0);
12004 SDValue CMP01 = CMP0->getOperand(1);
12005 EVT VT = CMP00.getValueType();
12006
12007 if (VT == MVT::f32 || VT == MVT::f64) {
12008 bool ExpectingFlags = false;
12009 // Check for any users that want flags:
12010 for (SDNode::use_iterator UI = N->use_begin(),
12011 UE = N->use_end();
12012 !ExpectingFlags && UI != UE; ++UI)
12013 switch (UI->getOpcode()) {
12014 default:
12015 case ISD::BR_CC:
12016 case ISD::BRCOND:
12017 case ISD::SELECT:
12018 ExpectingFlags = true;
12019 break;
12020 case ISD::CopyToReg:
12021 case ISD::SIGN_EXTEND:
12022 case ISD::ZERO_EXTEND:
12023 case ISD::ANY_EXTEND:
12024 break;
12025 }
12026
12027 if (!ExpectingFlags) {
12028 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
12029 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
12030
12031 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
12032 X86::CondCode tmp = cc0;
12033 cc0 = cc1;
12034 cc1 = tmp;
12035 }
12036
12037 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
12038 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
12039 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
12040 X86ISD::NodeType NTOperator = is64BitFP ?
12041 X86ISD::FSETCCsd : X86ISD::FSETCCss;
12042 // FIXME: need symbolic constants for these magic numbers.
12043 // See X86ATTInstPrinter.cpp:printSSECC().
12044 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
12045 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
12046 DAG.getConstant(x86cc, MVT::i8));
12047 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
12048 OnesOrZeroesF);
12049 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
12050 DAG.getConstant(1, MVT::i32));
12051 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
12052 return OneBitOfTruth;
12053 }
12054 }
12055 }
12056 }
12057 return SDValue();
12058}
12059
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012060/// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
12061/// so it can be folded inside ANDNP.
12062static bool CanFoldXORWithAllOnes(const SDNode *N) {
12063 EVT VT = N->getValueType(0);
12064
12065 // Match direct AllOnes for 128 and 256-bit vectors
12066 if (ISD::isBuildVectorAllOnes(N))
12067 return true;
12068
12069 // Look through a bit convert.
12070 if (N->getOpcode() == ISD::BITCAST)
12071 N = N->getOperand(0).getNode();
12072
12073 // Sometimes the operand may come from a insert_subvector building a 256-bit
12074 // allones vector
12075 SDValue V1 = N->getOperand(0);
12076 SDValue V2 = N->getOperand(1);
12077
12078 if (VT.getSizeInBits() == 256 &&
12079 N->getOpcode() == ISD::INSERT_SUBVECTOR &&
12080 V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
12081 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
12082 ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
12083 ISD::isBuildVectorAllOnes(V2.getNode()))
12084 return true;
12085
12086 return false;
12087}
12088
Nate Begemanb65c1752010-12-17 22:55:37 +000012089static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
12090 TargetLowering::DAGCombinerInfo &DCI,
12091 const X86Subtarget *Subtarget) {
12092 if (DCI.isBeforeLegalizeOps())
12093 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012094
Stuart Hastings865f0932011-06-03 23:53:54 +000012095 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
12096 if (R.getNode())
12097 return R;
12098
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000012099 // Want to form ANDNP nodes:
12100 // 1) In the hopes of then easily combining them with OR and AND nodes
12101 // to form PBLEND/PSIGN.
12102 // 2) To match ANDN packed intrinsics
Nate Begemanb65c1752010-12-17 22:55:37 +000012103 EVT VT = N->getValueType(0);
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000012104 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000012105 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012106
Nate Begemanb65c1752010-12-17 22:55:37 +000012107 SDValue N0 = N->getOperand(0);
12108 SDValue N1 = N->getOperand(1);
12109 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012110
Nate Begemanb65c1752010-12-17 22:55:37 +000012111 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012112 if (N0.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012113 //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
12114 CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012115 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000012116
12117 // Check RHS for vnot
12118 if (N1.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012119 //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
12120 CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012121 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012122
Nate Begemanb65c1752010-12-17 22:55:37 +000012123 return SDValue();
12124}
12125
Evan Cheng760d1942010-01-04 21:22:48 +000012126static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000012127 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000012128 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000012129 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000012130 return SDValue();
12131
Stuart Hastings865f0932011-06-03 23:53:54 +000012132 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
12133 if (R.getNode())
12134 return R;
12135
Evan Cheng760d1942010-01-04 21:22:48 +000012136 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000012137 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64 && VT != MVT::v2i64)
Evan Cheng760d1942010-01-04 21:22:48 +000012138 return SDValue();
12139
Evan Cheng760d1942010-01-04 21:22:48 +000012140 SDValue N0 = N->getOperand(0);
12141 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012142
Nate Begemanb65c1752010-12-17 22:55:37 +000012143 // look for psign/blend
12144 if (Subtarget->hasSSSE3()) {
12145 if (VT == MVT::v2i64) {
12146 // Canonicalize pandn to RHS
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012147 if (N0.getOpcode() == X86ISD::ANDNP)
Nate Begemanb65c1752010-12-17 22:55:37 +000012148 std::swap(N0, N1);
12149 // or (and (m, x), (pandn m, y))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012150 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
Nate Begemanb65c1752010-12-17 22:55:37 +000012151 SDValue Mask = N1.getOperand(0);
12152 SDValue X = N1.getOperand(1);
12153 SDValue Y;
12154 if (N0.getOperand(0) == Mask)
12155 Y = N0.getOperand(1);
12156 if (N0.getOperand(1) == Mask)
12157 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012158
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012159 // Check to see if the mask appeared in both the AND and ANDNP and
Nate Begemanb65c1752010-12-17 22:55:37 +000012160 if (!Y.getNode())
12161 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012162
Nate Begemanb65c1752010-12-17 22:55:37 +000012163 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
12164 if (Mask.getOpcode() != ISD::BITCAST ||
12165 X.getOpcode() != ISD::BITCAST ||
12166 Y.getOpcode() != ISD::BITCAST)
12167 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012168
Nate Begemanb65c1752010-12-17 22:55:37 +000012169 // Look through mask bitcast.
12170 Mask = Mask.getOperand(0);
12171 EVT MaskVT = Mask.getValueType();
12172
12173 // Validate that the Mask operand is a vector sra node. The sra node
12174 // will be an intrinsic.
12175 if (Mask.getOpcode() != ISD::INTRINSIC_WO_CHAIN)
12176 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012177
Nate Begemanb65c1752010-12-17 22:55:37 +000012178 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
12179 // there is no psrai.b
12180 switch (cast<ConstantSDNode>(Mask.getOperand(0))->getZExtValue()) {
12181 case Intrinsic::x86_sse2_psrai_w:
12182 case Intrinsic::x86_sse2_psrai_d:
12183 break;
12184 default: return SDValue();
12185 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012186
Nate Begemanb65c1752010-12-17 22:55:37 +000012187 // Check that the SRA is all signbits.
12188 SDValue SraC = Mask.getOperand(2);
12189 unsigned SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
12190 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
12191 if ((SraAmt + 1) != EltBits)
12192 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012193
Nate Begemanb65c1752010-12-17 22:55:37 +000012194 DebugLoc DL = N->getDebugLoc();
12195
12196 // Now we know we at least have a plendvb with the mask val. See if
12197 // we can form a psignb/w/d.
12198 // psign = x.type == y.type == mask.type && y = sub(0, x);
12199 X = X.getOperand(0);
12200 Y = Y.getOperand(0);
12201 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
12202 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
12203 X.getValueType() == MaskVT && X.getValueType() == Y.getValueType()){
12204 unsigned Opc = 0;
12205 switch (EltBits) {
12206 case 8: Opc = X86ISD::PSIGNB; break;
12207 case 16: Opc = X86ISD::PSIGNW; break;
12208 case 32: Opc = X86ISD::PSIGND; break;
12209 default: break;
12210 }
12211 if (Opc) {
12212 SDValue Sign = DAG.getNode(Opc, DL, MaskVT, X, Mask.getOperand(1));
12213 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Sign);
12214 }
12215 }
12216 // PBLENDVB only available on SSE 4.1
12217 if (!Subtarget->hasSSE41())
12218 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012219
Nate Begemanb65c1752010-12-17 22:55:37 +000012220 X = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, X);
12221 Y = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Y);
12222 Mask = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Mask);
Nate Begeman672fb622010-12-20 22:04:24 +000012223 Mask = DAG.getNode(X86ISD::PBLENDVB, DL, MVT::v16i8, X, Y, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000012224 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Mask);
12225 }
12226 }
12227 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012228
Nate Begemanb65c1752010-12-17 22:55:37 +000012229 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000012230 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
12231 std::swap(N0, N1);
12232 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
12233 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000012234 if (!N0.hasOneUse() || !N1.hasOneUse())
12235 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000012236
12237 SDValue ShAmt0 = N0.getOperand(1);
12238 if (ShAmt0.getValueType() != MVT::i8)
12239 return SDValue();
12240 SDValue ShAmt1 = N1.getOperand(1);
12241 if (ShAmt1.getValueType() != MVT::i8)
12242 return SDValue();
12243 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
12244 ShAmt0 = ShAmt0.getOperand(0);
12245 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
12246 ShAmt1 = ShAmt1.getOperand(0);
12247
12248 DebugLoc DL = N->getDebugLoc();
12249 unsigned Opc = X86ISD::SHLD;
12250 SDValue Op0 = N0.getOperand(0);
12251 SDValue Op1 = N1.getOperand(0);
12252 if (ShAmt0.getOpcode() == ISD::SUB) {
12253 Opc = X86ISD::SHRD;
12254 std::swap(Op0, Op1);
12255 std::swap(ShAmt0, ShAmt1);
12256 }
12257
Evan Cheng8b1190a2010-04-28 01:18:01 +000012258 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000012259 if (ShAmt1.getOpcode() == ISD::SUB) {
12260 SDValue Sum = ShAmt1.getOperand(0);
12261 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000012262 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
12263 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
12264 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
12265 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000012266 return DAG.getNode(Opc, DL, VT,
12267 Op0, Op1,
12268 DAG.getNode(ISD::TRUNCATE, DL,
12269 MVT::i8, ShAmt0));
12270 }
12271 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
12272 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
12273 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000012274 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000012275 return DAG.getNode(Opc, DL, VT,
12276 N0.getOperand(0), N1.getOperand(0),
12277 DAG.getNode(ISD::TRUNCATE, DL,
12278 MVT::i8, ShAmt0));
12279 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012280
Evan Cheng760d1942010-01-04 21:22:48 +000012281 return SDValue();
12282}
12283
Chris Lattner149a4e52008-02-22 02:09:43 +000012284/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012285static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000012286 const X86Subtarget *Subtarget) {
Chris Lattner149a4e52008-02-22 02:09:43 +000012287 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
12288 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000012289 // A preferable solution to the general problem is to figure out the right
12290 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000012291
12292 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng7e2ff772008-05-08 00:57:18 +000012293 StoreSDNode *St = cast<StoreSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +000012294 EVT VT = St->getValue().getValueType();
Evan Cheng536e6672009-03-12 05:59:15 +000012295 if (VT.getSizeInBits() != 64)
12296 return SDValue();
12297
Devang Patel578efa92009-06-05 21:57:13 +000012298 const Function *F = DAG.getMachineFunction().getFunction();
12299 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000012300 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000012301 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000012302 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000012303 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000012304 isa<LoadSDNode>(St->getValue()) &&
12305 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
12306 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000012307 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012308 LoadSDNode *Ld = 0;
12309 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000012310 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000012311 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012312 // Must be a store of a load. We currently handle two cases: the load
12313 // is a direct child, and it's under an intervening TokenFactor. It is
12314 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000012315 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000012316 Ld = cast<LoadSDNode>(St->getChain());
12317 else if (St->getValue().hasOneUse() &&
12318 ChainVal->getOpcode() == ISD::TokenFactor) {
12319 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000012320 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000012321 TokenFactorIndex = i;
12322 Ld = cast<LoadSDNode>(St->getValue());
12323 } else
12324 Ops.push_back(ChainVal->getOperand(i));
12325 }
12326 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000012327
Evan Cheng536e6672009-03-12 05:59:15 +000012328 if (!Ld || !ISD::isNormalLoad(Ld))
12329 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012330
Evan Cheng536e6672009-03-12 05:59:15 +000012331 // If this is not the MMX case, i.e. we are just turning i64 load/store
12332 // into f64 load/store, avoid the transformation if there are multiple
12333 // uses of the loaded value.
12334 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
12335 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012336
Evan Cheng536e6672009-03-12 05:59:15 +000012337 DebugLoc LdDL = Ld->getDebugLoc();
12338 DebugLoc StDL = N->getDebugLoc();
12339 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
12340 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
12341 // pair instead.
12342 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012343 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000012344 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
12345 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000012346 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000012347 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000012348 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000012349 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000012350 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000012351 Ops.size());
12352 }
Evan Cheng536e6672009-03-12 05:59:15 +000012353 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000012354 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000012355 St->isVolatile(), St->isNonTemporal(),
12356 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000012357 }
Evan Cheng536e6672009-03-12 05:59:15 +000012358
12359 // Otherwise, lower to two pairs of 32-bit loads / stores.
12360 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000012361 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
12362 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000012363
Owen Anderson825b72b2009-08-11 20:47:22 +000012364 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000012365 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000012366 Ld->isVolatile(), Ld->isNonTemporal(),
12367 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000012368 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000012369 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000012370 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000012371 MinAlign(Ld->getAlignment(), 4));
12372
12373 SDValue NewChain = LoLd.getValue(1);
12374 if (TokenFactorIndex != -1) {
12375 Ops.push_back(LoLd);
12376 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000012377 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000012378 Ops.size());
12379 }
12380
12381 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000012382 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
12383 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000012384
12385 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012386 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000012387 St->isVolatile(), St->isNonTemporal(),
12388 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000012389 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012390 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000012391 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000012392 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000012393 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000012394 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000012395 }
Dan Gohman475871a2008-07-27 21:46:04 +000012396 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000012397}
12398
Chris Lattner6cf73262008-01-25 06:14:17 +000012399/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
12400/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012401static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000012402 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
12403 // F[X]OR(0.0, x) -> x
12404 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000012405 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
12406 if (C->getValueAPF().isPosZero())
12407 return N->getOperand(1);
12408 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
12409 if (C->getValueAPF().isPosZero())
12410 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000012411 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000012412}
12413
12414/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012415static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000012416 // FAND(0.0, x) -> 0.0
12417 // FAND(x, 0.0) -> 0.0
12418 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
12419 if (C->getValueAPF().isPosZero())
12420 return N->getOperand(0);
12421 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
12422 if (C->getValueAPF().isPosZero())
12423 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000012424 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000012425}
12426
Dan Gohmane5af2d32009-01-29 01:59:02 +000012427static SDValue PerformBTCombine(SDNode *N,
12428 SelectionDAG &DAG,
12429 TargetLowering::DAGCombinerInfo &DCI) {
12430 // BT ignores high bits in the bit index operand.
12431 SDValue Op1 = N->getOperand(1);
12432 if (Op1.hasOneUse()) {
12433 unsigned BitWidth = Op1.getValueSizeInBits();
12434 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
12435 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000012436 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
12437 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000012438 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000012439 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
12440 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
12441 DCI.CommitTargetLoweringOpt(TLO);
12442 }
12443 return SDValue();
12444}
Chris Lattner83e6c992006-10-04 06:57:07 +000012445
Eli Friedman7a5e5552009-06-07 06:52:44 +000012446static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
12447 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012448 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000012449 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000012450 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000012451 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000012452 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000012453 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012454 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000012455 }
12456 return SDValue();
12457}
12458
Evan Cheng2e489c42009-12-16 00:53:11 +000012459static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
12460 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
12461 // (and (i32 x86isd::setcc_carry), 1)
12462 // This eliminates the zext. This transformation is necessary because
12463 // ISD::SETCC is always legalized to i8.
12464 DebugLoc dl = N->getDebugLoc();
12465 SDValue N0 = N->getOperand(0);
12466 EVT VT = N->getValueType(0);
12467 if (N0.getOpcode() == ISD::AND &&
12468 N0.hasOneUse() &&
12469 N0.getOperand(0).hasOneUse()) {
12470 SDValue N00 = N0.getOperand(0);
12471 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
12472 return SDValue();
12473 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
12474 if (!C || C->getZExtValue() != 1)
12475 return SDValue();
12476 return DAG.getNode(ISD::AND, dl, VT,
12477 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
12478 N00.getOperand(0), N00.getOperand(1)),
12479 DAG.getConstant(1, VT));
12480 }
12481
12482 return SDValue();
12483}
12484
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012485// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
12486static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG) {
12487 unsigned X86CC = N->getConstantOperandVal(0);
12488 SDValue EFLAG = N->getOperand(1);
12489 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012490
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012491 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
12492 // a zext and produces an all-ones bit which is more useful than 0/1 in some
12493 // cases.
12494 if (X86CC == X86::COND_B)
12495 return DAG.getNode(ISD::AND, DL, MVT::i8,
12496 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
12497 DAG.getConstant(X86CC, MVT::i8), EFLAG),
12498 DAG.getConstant(1, MVT::i8));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012499
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012500 return SDValue();
12501}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012502
Benjamin Kramer1396c402011-06-18 11:09:41 +000012503static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
12504 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000012505 SDValue Op0 = N->getOperand(0);
12506 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
12507 // a 32-bit target where SSE doesn't support i64->FP operations.
12508 if (Op0.getOpcode() == ISD::LOAD) {
12509 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
12510 EVT VT = Ld->getValueType(0);
12511 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
12512 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
12513 !XTLI->getSubtarget()->is64Bit() &&
12514 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000012515 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
12516 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000012517 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
12518 return FILDChain;
12519 }
12520 }
12521 return SDValue();
12522}
12523
Chris Lattner23a01992010-12-20 01:37:09 +000012524// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
12525static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
12526 X86TargetLowering::DAGCombinerInfo &DCI) {
12527 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
12528 // the result is either zero or one (depending on the input carry bit).
12529 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
12530 if (X86::isZeroNode(N->getOperand(0)) &&
12531 X86::isZeroNode(N->getOperand(1)) &&
12532 // We don't have a good way to replace an EFLAGS use, so only do this when
12533 // dead right now.
12534 SDValue(N, 1).use_empty()) {
12535 DebugLoc DL = N->getDebugLoc();
12536 EVT VT = N->getValueType(0);
12537 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
12538 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
12539 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
12540 DAG.getConstant(X86::COND_B,MVT::i8),
12541 N->getOperand(2)),
12542 DAG.getConstant(1, VT));
12543 return DCI.CombineTo(N, Res1, CarryOut);
12544 }
12545
12546 return SDValue();
12547}
12548
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012549// fold (add Y, (sete X, 0)) -> adc 0, Y
12550// (add Y, (setne X, 0)) -> sbb -1, Y
12551// (sub (sete X, 0), Y) -> sbb 0, Y
12552// (sub (setne X, 0), Y) -> adc -1, Y
12553static SDValue OptimizeConditonalInDecrement(SDNode *N, SelectionDAG &DAG) {
12554 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012555
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012556 // Look through ZExts.
12557 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
12558 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
12559 return SDValue();
12560
12561 SDValue SetCC = Ext.getOperand(0);
12562 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
12563 return SDValue();
12564
12565 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
12566 if (CC != X86::COND_E && CC != X86::COND_NE)
12567 return SDValue();
12568
12569 SDValue Cmp = SetCC.getOperand(1);
12570 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000012571 !X86::isZeroNode(Cmp.getOperand(1)) ||
12572 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012573 return SDValue();
12574
12575 SDValue CmpOp0 = Cmp.getOperand(0);
12576 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
12577 DAG.getConstant(1, CmpOp0.getValueType()));
12578
12579 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
12580 if (CC == X86::COND_NE)
12581 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
12582 DL, OtherVal.getValueType(), OtherVal,
12583 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
12584 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
12585 DL, OtherVal.getValueType(), OtherVal,
12586 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
12587}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012588
Dan Gohman475871a2008-07-27 21:46:04 +000012589SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000012590 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000012591 SelectionDAG &DAG = DCI.DAG;
12592 switch (N->getOpcode()) {
12593 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012594 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012595 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000012596 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000012597 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012598 case ISD::ADD:
12599 case ISD::SUB: return OptimizeConditonalInDecrement(N, DAG);
Chris Lattner23a01992010-12-20 01:37:09 +000012600 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000012601 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000012602 case ISD::SHL:
12603 case ISD::SRA:
12604 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000012605 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000012606 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000012607 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000012608 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Chris Lattner6cf73262008-01-25 06:14:17 +000012609 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000012610 case X86ISD::FOR: return PerformFORCombine(N, DAG);
12611 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000012612 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000012613 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000012614 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012615 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012616 case X86ISD::SHUFPS: // Handle all target specific shuffles
12617 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000012618 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012619 case X86ISD::PUNPCKHBW:
12620 case X86ISD::PUNPCKHWD:
12621 case X86ISD::PUNPCKHDQ:
12622 case X86ISD::PUNPCKHQDQ:
12623 case X86ISD::UNPCKHPS:
12624 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +000012625 case X86ISD::VUNPCKHPSY:
12626 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012627 case X86ISD::PUNPCKLBW:
12628 case X86ISD::PUNPCKLWD:
12629 case X86ISD::PUNPCKLDQ:
12630 case X86ISD::PUNPCKLQDQ:
12631 case X86ISD::UNPCKLPS:
12632 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +000012633 case X86ISD::VUNPCKLPSY:
12634 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012635 case X86ISD::MOVHLPS:
12636 case X86ISD::MOVLHPS:
12637 case X86ISD::PSHUFD:
12638 case X86ISD::PSHUFHW:
12639 case X86ISD::PSHUFLW:
12640 case X86ISD::MOVSS:
12641 case X86ISD::MOVSD:
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +000012642 case X86ISD::VPERMIL:
Mon P Wanga0fd0d52010-12-19 23:55:53 +000012643 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI);
Evan Cheng206ee9d2006-07-07 08:33:52 +000012644 }
12645
Dan Gohman475871a2008-07-27 21:46:04 +000012646 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000012647}
12648
Evan Chenge5b51ac2010-04-17 06:13:15 +000012649/// isTypeDesirableForOp - Return true if the target has native support for
12650/// the specified value type and it is 'desirable' to use the type for the
12651/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
12652/// instruction encodings are longer and some i16 instructions are slow.
12653bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
12654 if (!isTypeLegal(VT))
12655 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000012656 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000012657 return true;
12658
12659 switch (Opc) {
12660 default:
12661 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000012662 case ISD::LOAD:
12663 case ISD::SIGN_EXTEND:
12664 case ISD::ZERO_EXTEND:
12665 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000012666 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000012667 case ISD::SRL:
12668 case ISD::SUB:
12669 case ISD::ADD:
12670 case ISD::MUL:
12671 case ISD::AND:
12672 case ISD::OR:
12673 case ISD::XOR:
12674 return false;
12675 }
12676}
12677
12678/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000012679/// beneficial for dag combiner to promote the specified node. If true, it
12680/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000012681bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000012682 EVT VT = Op.getValueType();
12683 if (VT != MVT::i16)
12684 return false;
12685
Evan Cheng4c26e932010-04-19 19:29:22 +000012686 bool Promote = false;
12687 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000012688 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000012689 default: break;
12690 case ISD::LOAD: {
12691 LoadSDNode *LD = cast<LoadSDNode>(Op);
12692 // If the non-extending load has a single use and it's not live out, then it
12693 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000012694 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
12695 Op.hasOneUse()*/) {
12696 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
12697 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
12698 // The only case where we'd want to promote LOAD (rather then it being
12699 // promoted as an operand is when it's only use is liveout.
12700 if (UI->getOpcode() != ISD::CopyToReg)
12701 return false;
12702 }
12703 }
Evan Cheng4c26e932010-04-19 19:29:22 +000012704 Promote = true;
12705 break;
12706 }
12707 case ISD::SIGN_EXTEND:
12708 case ISD::ZERO_EXTEND:
12709 case ISD::ANY_EXTEND:
12710 Promote = true;
12711 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000012712 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000012713 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000012714 SDValue N0 = Op.getOperand(0);
12715 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000012716 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000012717 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000012718 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000012719 break;
12720 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000012721 case ISD::ADD:
12722 case ISD::MUL:
12723 case ISD::AND:
12724 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000012725 case ISD::XOR:
12726 Commute = true;
12727 // fallthrough
12728 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000012729 SDValue N0 = Op.getOperand(0);
12730 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000012731 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000012732 return false;
12733 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000012734 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000012735 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000012736 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000012737 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000012738 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000012739 }
12740 }
12741
12742 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000012743 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000012744}
12745
Evan Cheng60c07e12006-07-05 22:17:51 +000012746//===----------------------------------------------------------------------===//
12747// X86 Inline Assembly Support
12748//===----------------------------------------------------------------------===//
12749
Chris Lattnerb8105652009-07-20 17:51:36 +000012750bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
12751 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000012752
12753 std::string AsmStr = IA->getAsmString();
12754
12755 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000012756 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000012757 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000012758
12759 switch (AsmPieces.size()) {
12760 default: return false;
12761 case 1:
12762 AsmStr = AsmPieces[0];
12763 AsmPieces.clear();
12764 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
12765
Chris Lattner7a2bdde2011-04-15 05:18:47 +000012766 // FIXME: this should verify that we are targeting a 486 or better. If not,
Evan Cheng55d42002011-01-08 01:24:27 +000012767 // we will turn this bswap into something that will be lowered to logical ops
12768 // instead of emitting the bswap asm. For now, we don't support 486 or lower
12769 // so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000012770 // bswap $0
12771 if (AsmPieces.size() == 2 &&
12772 (AsmPieces[0] == "bswap" ||
12773 AsmPieces[0] == "bswapq" ||
12774 AsmPieces[0] == "bswapl") &&
12775 (AsmPieces[1] == "$0" ||
12776 AsmPieces[1] == "${0:q}")) {
12777 // No need to check constraints, nothing other than the equivalent of
12778 // "=r,0" would be valid here.
Chris Lattnerdb125cf2011-07-18 04:54:35 +000012779 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000012780 if (!Ty || Ty->getBitWidth() % 16 != 0)
12781 return false;
12782 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000012783 }
12784 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000012785 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000012786 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000012787 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000012788 AsmPieces[1] == "$$8," &&
12789 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000012790 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
12791 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000012792 const std::string &ConstraintsStr = IA->getConstraintString();
12793 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000012794 std::sort(AsmPieces.begin(), AsmPieces.end());
12795 if (AsmPieces.size() == 4 &&
12796 AsmPieces[0] == "~{cc}" &&
12797 AsmPieces[1] == "~{dirflag}" &&
12798 AsmPieces[2] == "~{flags}" &&
12799 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000012800 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000012801 if (!Ty || Ty->getBitWidth() % 16 != 0)
12802 return false;
12803 return IntrinsicLowering::LowerToByteSwap(CI);
Dan Gohman0ef701e2010-03-04 19:58:08 +000012804 }
Chris Lattnerb8105652009-07-20 17:51:36 +000012805 }
12806 break;
12807 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000012808 if (CI->getType()->isIntegerTy(32) &&
12809 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
12810 SmallVector<StringRef, 4> Words;
12811 SplitString(AsmPieces[0], Words, " \t,");
12812 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
12813 Words[2] == "${0:w}") {
12814 Words.clear();
12815 SplitString(AsmPieces[1], Words, " \t,");
12816 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
12817 Words[2] == "$0") {
12818 Words.clear();
12819 SplitString(AsmPieces[2], Words, " \t,");
12820 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
12821 Words[2] == "${0:w}") {
12822 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000012823 const std::string &ConstraintsStr = IA->getConstraintString();
12824 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Peter Collingbourne948cf022010-11-13 19:54:30 +000012825 std::sort(AsmPieces.begin(), AsmPieces.end());
12826 if (AsmPieces.size() == 4 &&
12827 AsmPieces[0] == "~{cc}" &&
12828 AsmPieces[1] == "~{dirflag}" &&
12829 AsmPieces[2] == "~{flags}" &&
12830 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000012831 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000012832 if (!Ty || Ty->getBitWidth() % 16 != 0)
12833 return false;
12834 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000012835 }
12836 }
12837 }
12838 }
12839 }
Evan Cheng55d42002011-01-08 01:24:27 +000012840
12841 if (CI->getType()->isIntegerTy(64)) {
12842 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
12843 if (Constraints.size() >= 2 &&
12844 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
12845 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
12846 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
12847 SmallVector<StringRef, 4> Words;
12848 SplitString(AsmPieces[0], Words, " \t");
12849 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
Chris Lattnerb8105652009-07-20 17:51:36 +000012850 Words.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000012851 SplitString(AsmPieces[1], Words, " \t");
12852 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
12853 Words.clear();
12854 SplitString(AsmPieces[2], Words, " \t,");
12855 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
12856 Words[2] == "%edx") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000012857 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000012858 if (!Ty || Ty->getBitWidth() % 16 != 0)
12859 return false;
12860 return IntrinsicLowering::LowerToByteSwap(CI);
12861 }
Chris Lattnerb8105652009-07-20 17:51:36 +000012862 }
12863 }
12864 }
12865 }
12866 break;
12867 }
12868 return false;
12869}
12870
12871
12872
Chris Lattnerf4dff842006-07-11 02:54:03 +000012873/// getConstraintType - Given a constraint letter, return the type of
12874/// constraint it is for this target.
12875X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000012876X86TargetLowering::getConstraintType(const std::string &Constraint) const {
12877 if (Constraint.size() == 1) {
12878 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000012879 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000012880 case 'q':
12881 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000012882 case 'f':
12883 case 't':
12884 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000012885 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000012886 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000012887 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000012888 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000012889 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000012890 case 'a':
12891 case 'b':
12892 case 'c':
12893 case 'd':
12894 case 'S':
12895 case 'D':
12896 case 'A':
12897 return C_Register;
12898 case 'I':
12899 case 'J':
12900 case 'K':
12901 case 'L':
12902 case 'M':
12903 case 'N':
12904 case 'G':
12905 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000012906 case 'e':
12907 case 'Z':
12908 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000012909 default:
12910 break;
12911 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000012912 }
Chris Lattner4234f572007-03-25 02:14:49 +000012913 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000012914}
12915
John Thompson44ab89e2010-10-29 17:29:13 +000012916/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000012917/// This object must already have been set up with the operand type
12918/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000012919TargetLowering::ConstraintWeight
12920 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000012921 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000012922 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000012923 Value *CallOperandVal = info.CallOperandVal;
12924 // If we don't have a value, we can't do a match,
12925 // but allow it at the lowest weight.
12926 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000012927 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000012928 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000012929 // Look at the constraint type.
12930 switch (*constraint) {
12931 default:
John Thompson44ab89e2010-10-29 17:29:13 +000012932 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
12933 case 'R':
12934 case 'q':
12935 case 'Q':
12936 case 'a':
12937 case 'b':
12938 case 'c':
12939 case 'd':
12940 case 'S':
12941 case 'D':
12942 case 'A':
12943 if (CallOperandVal->getType()->isIntegerTy())
12944 weight = CW_SpecificReg;
12945 break;
12946 case 'f':
12947 case 't':
12948 case 'u':
12949 if (type->isFloatingPointTy())
12950 weight = CW_SpecificReg;
12951 break;
12952 case 'y':
Chris Lattner2a786eb2010-12-19 20:19:20 +000012953 if (type->isX86_MMXTy() && Subtarget->hasMMX())
John Thompson44ab89e2010-10-29 17:29:13 +000012954 weight = CW_SpecificReg;
12955 break;
12956 case 'x':
12957 case 'Y':
Nate Begeman2ea8ee72010-12-10 00:26:57 +000012958 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasXMM())
John Thompson44ab89e2010-10-29 17:29:13 +000012959 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000012960 break;
12961 case 'I':
12962 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
12963 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000012964 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000012965 }
12966 break;
John Thompson44ab89e2010-10-29 17:29:13 +000012967 case 'J':
12968 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12969 if (C->getZExtValue() <= 63)
12970 weight = CW_Constant;
12971 }
12972 break;
12973 case 'K':
12974 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12975 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
12976 weight = CW_Constant;
12977 }
12978 break;
12979 case 'L':
12980 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12981 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
12982 weight = CW_Constant;
12983 }
12984 break;
12985 case 'M':
12986 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12987 if (C->getZExtValue() <= 3)
12988 weight = CW_Constant;
12989 }
12990 break;
12991 case 'N':
12992 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12993 if (C->getZExtValue() <= 0xff)
12994 weight = CW_Constant;
12995 }
12996 break;
12997 case 'G':
12998 case 'C':
12999 if (dyn_cast<ConstantFP>(CallOperandVal)) {
13000 weight = CW_Constant;
13001 }
13002 break;
13003 case 'e':
13004 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13005 if ((C->getSExtValue() >= -0x80000000LL) &&
13006 (C->getSExtValue() <= 0x7fffffffLL))
13007 weight = CW_Constant;
13008 }
13009 break;
13010 case 'Z':
13011 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13012 if (C->getZExtValue() <= 0xffffffff)
13013 weight = CW_Constant;
13014 }
13015 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013016 }
13017 return weight;
13018}
13019
Dale Johannesenba2a0b92008-01-29 02:21:21 +000013020/// LowerXConstraint - try to replace an X constraint, which matches anything,
13021/// with another that has more specific requirements based on the type of the
13022/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000013023const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000013024LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000013025 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
13026 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000013027 if (ConstraintVT.isFloatingPoint()) {
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013028 if (Subtarget->hasXMMInt())
Chris Lattner5e764232008-04-26 23:02:14 +000013029 return "Y";
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013030 if (Subtarget->hasXMM())
Chris Lattner5e764232008-04-26 23:02:14 +000013031 return "x";
13032 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013033
Chris Lattner5e764232008-04-26 23:02:14 +000013034 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000013035}
13036
Chris Lattner48884cd2007-08-25 00:47:38 +000013037/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
13038/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000013039void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000013040 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000013041 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000013042 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000013043 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000013044
Eric Christopher100c8332011-06-02 23:16:42 +000013045 // Only support length 1 constraints for now.
13046 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000013047
Eric Christopher100c8332011-06-02 23:16:42 +000013048 char ConstraintLetter = Constraint[0];
13049 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013050 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000013051 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000013052 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000013053 if (C->getZExtValue() <= 31) {
13054 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000013055 break;
13056 }
Devang Patel84f7fd22007-03-17 00:13:28 +000013057 }
Chris Lattner48884cd2007-08-25 00:47:38 +000013058 return;
Evan Cheng364091e2008-09-22 23:57:37 +000013059 case 'J':
13060 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000013061 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000013062 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13063 break;
13064 }
13065 }
13066 return;
13067 case 'K':
13068 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000013069 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000013070 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13071 break;
13072 }
13073 }
13074 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000013075 case 'N':
13076 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000013077 if (C->getZExtValue() <= 255) {
13078 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000013079 break;
13080 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000013081 }
Chris Lattner48884cd2007-08-25 00:47:38 +000013082 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000013083 case 'e': {
13084 // 32-bit signed value
13085 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000013086 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
13087 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013088 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000013089 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000013090 break;
13091 }
13092 // FIXME gcc accepts some relocatable values here too, but only in certain
13093 // memory models; it's complicated.
13094 }
13095 return;
13096 }
13097 case 'Z': {
13098 // 32-bit unsigned value
13099 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000013100 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
13101 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013102 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13103 break;
13104 }
13105 }
13106 // FIXME gcc accepts some relocatable values here too, but only in certain
13107 // memory models; it's complicated.
13108 return;
13109 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013110 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013111 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000013112 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013113 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000013114 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000013115 break;
13116 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013117
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000013118 // In any sort of PIC mode addresses need to be computed at runtime by
13119 // adding in a register or some sort of table lookup. These can't
13120 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000013121 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000013122 return;
13123
Chris Lattnerdc43a882007-05-03 16:52:29 +000013124 // If we are in non-pic codegen mode, we allow the address of a global (with
13125 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000013126 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000013127 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000013128
Chris Lattner49921962009-05-08 18:23:14 +000013129 // Match either (GA), (GA+C), (GA+C1+C2), etc.
13130 while (1) {
13131 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
13132 Offset += GA->getOffset();
13133 break;
13134 } else if (Op.getOpcode() == ISD::ADD) {
13135 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
13136 Offset += C->getZExtValue();
13137 Op = Op.getOperand(0);
13138 continue;
13139 }
13140 } else if (Op.getOpcode() == ISD::SUB) {
13141 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
13142 Offset += -C->getZExtValue();
13143 Op = Op.getOperand(0);
13144 continue;
13145 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013146 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013147
Chris Lattner49921962009-05-08 18:23:14 +000013148 // Otherwise, this isn't something we can handle, reject it.
13149 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000013150 }
Eric Christopherfd179292009-08-27 18:07:15 +000013151
Dan Gohman46510a72010-04-15 01:51:59 +000013152 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013153 // If we require an extra load to get this address, as in PIC mode, we
13154 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000013155 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
13156 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013157 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000013158
Devang Patel0d881da2010-07-06 22:08:15 +000013159 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
13160 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000013161 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013162 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013163 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013164
Gabor Greifba36cb52008-08-28 21:40:38 +000013165 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000013166 Ops.push_back(Result);
13167 return;
13168 }
Dale Johannesen1784d162010-06-25 21:55:36 +000013169 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013170}
13171
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013172std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000013173X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000013174 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000013175 // First, see if this is a constraint that directly corresponds to an LLVM
13176 // register class.
13177 if (Constraint.size() == 1) {
13178 // GCC Constraint Letters
13179 switch (Constraint[0]) {
13180 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000013181 // TODO: Slight differences here in allocation order and leaving
13182 // RIP in the class. Do they matter any more here than they do
13183 // in the normal allocation?
13184 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
13185 if (Subtarget->is64Bit()) {
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013186 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000013187 return std::make_pair(0U, X86::GR32RegisterClass);
13188 else if (VT == MVT::i16)
13189 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000013190 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000013191 return std::make_pair(0U, X86::GR8RegisterClass);
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013192 else if (VT == MVT::i64 || VT == MVT::f64)
Eric Christopherd176af82011-06-29 17:23:50 +000013193 return std::make_pair(0U, X86::GR64RegisterClass);
13194 break;
13195 }
13196 // 32-bit fallthrough
13197 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013198 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000013199 return std::make_pair(0U, X86::GR32_ABCDRegisterClass);
13200 else if (VT == MVT::i16)
13201 return std::make_pair(0U, X86::GR16_ABCDRegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000013202 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000013203 return std::make_pair(0U, X86::GR8_ABCD_LRegisterClass);
13204 else if (VT == MVT::i64)
13205 return std::make_pair(0U, X86::GR64_ABCDRegisterClass);
13206 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000013207 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000013208 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000013209 if (VT == MVT::i8 || VT == MVT::i1)
Chris Lattner0f65cad2007-04-09 05:49:22 +000013210 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013211 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000013212 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000013213 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000013214 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000013215 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000013216 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000013217 if (VT == MVT::i8 || VT == MVT::i1)
Dale Johannesen5f3663e2009-10-07 22:47:20 +000013218 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
13219 if (VT == MVT::i16)
13220 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
13221 if (VT == MVT::i32 || !Subtarget->is64Bit())
13222 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
13223 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013224 case 'f': // FP Stack registers.
13225 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
13226 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000013227 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013228 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013229 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013230 return std::make_pair(0U, X86::RFP64RegisterClass);
13231 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000013232 case 'y': // MMX_REGS if MMX allowed.
13233 if (!Subtarget->hasMMX()) break;
13234 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000013235 case 'Y': // SSE_REGS if SSE2 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013236 if (!Subtarget->hasXMMInt()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000013237 // FALL THROUGH.
13238 case 'x': // SSE_REGS if SSE1 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013239 if (!Subtarget->hasXMM()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000013240
Owen Anderson825b72b2009-08-11 20:47:22 +000013241 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000013242 default: break;
13243 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000013244 case MVT::f32:
13245 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000013246 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013247 case MVT::f64:
13248 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000013249 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000013250 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000013251 case MVT::v16i8:
13252 case MVT::v8i16:
13253 case MVT::v4i32:
13254 case MVT::v2i64:
13255 case MVT::v4f32:
13256 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000013257 return std::make_pair(0U, X86::VR128RegisterClass);
13258 }
Chris Lattnerad043e82007-04-09 05:11:28 +000013259 break;
13260 }
13261 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013262
Chris Lattnerf76d1802006-07-31 23:26:50 +000013263 // Use the default implementation in TargetLowering to convert the register
13264 // constraint into a member of a register class.
13265 std::pair<unsigned, const TargetRegisterClass*> Res;
13266 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000013267
13268 // Not found as a standard register?
13269 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000013270 // Map st(0) -> st(7) -> ST0
13271 if (Constraint.size() == 7 && Constraint[0] == '{' &&
13272 tolower(Constraint[1]) == 's' &&
13273 tolower(Constraint[2]) == 't' &&
13274 Constraint[3] == '(' &&
13275 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
13276 Constraint[5] == ')' &&
13277 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000013278
Chris Lattner56d77c72009-09-13 22:41:48 +000013279 Res.first = X86::ST0+Constraint[4]-'0';
13280 Res.second = X86::RFP80RegisterClass;
13281 return Res;
13282 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000013283
Chris Lattner56d77c72009-09-13 22:41:48 +000013284 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000013285 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000013286 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000013287 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000013288 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000013289 }
Chris Lattner56d77c72009-09-13 22:41:48 +000013290
13291 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000013292 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000013293 Res.first = X86::EFLAGS;
13294 Res.second = X86::CCRRegisterClass;
13295 return Res;
13296 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000013297
Dale Johannesen330169f2008-11-13 21:52:36 +000013298 // 'A' means EAX + EDX.
13299 if (Constraint == "A") {
13300 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000013301 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000013302 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000013303 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000013304 return Res;
13305 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013306
Chris Lattnerf76d1802006-07-31 23:26:50 +000013307 // Otherwise, check to see if this is a register class of the wrong value
13308 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
13309 // turn into {ax},{dx}.
13310 if (Res.second->hasType(VT))
13311 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013312
Chris Lattnerf76d1802006-07-31 23:26:50 +000013313 // All of the single-register GCC register classes map their values onto
13314 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
13315 // really want an 8-bit or 32-bit register, map to the appropriate register
13316 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000013317 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000013318 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000013319 unsigned DestReg = 0;
13320 switch (Res.first) {
13321 default: break;
13322 case X86::AX: DestReg = X86::AL; break;
13323 case X86::DX: DestReg = X86::DL; break;
13324 case X86::CX: DestReg = X86::CL; break;
13325 case X86::BX: DestReg = X86::BL; break;
13326 }
13327 if (DestReg) {
13328 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000013329 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000013330 }
Owen Anderson825b72b2009-08-11 20:47:22 +000013331 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000013332 unsigned DestReg = 0;
13333 switch (Res.first) {
13334 default: break;
13335 case X86::AX: DestReg = X86::EAX; break;
13336 case X86::DX: DestReg = X86::EDX; break;
13337 case X86::CX: DestReg = X86::ECX; break;
13338 case X86::BX: DestReg = X86::EBX; break;
13339 case X86::SI: DestReg = X86::ESI; break;
13340 case X86::DI: DestReg = X86::EDI; break;
13341 case X86::BP: DestReg = X86::EBP; break;
13342 case X86::SP: DestReg = X86::ESP; break;
13343 }
13344 if (DestReg) {
13345 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000013346 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000013347 }
Owen Anderson825b72b2009-08-11 20:47:22 +000013348 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000013349 unsigned DestReg = 0;
13350 switch (Res.first) {
13351 default: break;
13352 case X86::AX: DestReg = X86::RAX; break;
13353 case X86::DX: DestReg = X86::RDX; break;
13354 case X86::CX: DestReg = X86::RCX; break;
13355 case X86::BX: DestReg = X86::RBX; break;
13356 case X86::SI: DestReg = X86::RSI; break;
13357 case X86::DI: DestReg = X86::RDI; break;
13358 case X86::BP: DestReg = X86::RBP; break;
13359 case X86::SP: DestReg = X86::RSP; break;
13360 }
13361 if (DestReg) {
13362 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000013363 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000013364 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000013365 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000013366 } else if (Res.second == X86::FR32RegisterClass ||
13367 Res.second == X86::FR64RegisterClass ||
13368 Res.second == X86::VR128RegisterClass) {
13369 // Handle references to XMM physical registers that got mapped into the
13370 // wrong class. This can happen with constraints like {xmm0} where the
13371 // target independent register mapper will just pick the first match it can
13372 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000013373 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000013374 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000013375 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000013376 Res.second = X86::FR64RegisterClass;
13377 else if (X86::VR128RegisterClass->hasType(VT))
13378 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000013379 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013380
Chris Lattnerf76d1802006-07-31 23:26:50 +000013381 return Res;
13382}