blob: adf6fff3a616b0490ba07b3eeb099207880591f8 [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"
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000019#include "X86ShuffleDecode.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000020#include "X86TargetMachine.h"
Chris Lattner8c6ed052009-09-16 01:46:41 +000021#include "X86TargetObjectFile.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"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000031#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Cheng4a460802006-01-11 00:33:36 +000032#include "llvm/CodeGen/MachineFunction.h"
33#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner5e1df8d2010-01-25 23:38:14 +000034#include "llvm/CodeGen/MachineJumpTableInfo.h"
Evan Chenga844bde2008-02-02 04:07:54 +000035#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000036#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000037#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattner589c6f62010-01-26 06:28:43 +000038#include "llvm/MC/MCAsmInfo.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000039#include "llvm/MC/MCContext.h"
Daniel Dunbar4e815f82010-03-15 23:51:06 +000040#include "llvm/MC/MCExpr.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000041#include "llvm/MC/MCSymbol.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000042#include "llvm/ADT/BitVector.h"
Evan Cheng14b32e12007-12-11 01:46:18 +000043#include "llvm/ADT/SmallSet.h"
Evan Chengb1712452010-01-27 06:25:16 +000044#include "llvm/ADT/Statistic.h"
Chris Lattner1a60aa72006-10-31 19:42:44 +000045#include "llvm/ADT/StringExtras.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000046#include "llvm/ADT/VectorExtras.h"
Mon P Wang3c81d352008-11-23 04:37:22 +000047#include "llvm/Support/CommandLine.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000048#include "llvm/Support/Debug.h"
Bill Wendlingec041eb2010-03-12 19:20:40 +000049#include "llvm/Support/Dwarf.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000050#include "llvm/Support/ErrorHandling.h"
51#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000052#include "llvm/Support/raw_ostream.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000053using namespace llvm;
Bill Wendlingec041eb2010-03-12 19:20:40 +000054using namespace dwarf;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000055
Evan Chengb1712452010-01-27 06:25:16 +000056STATISTIC(NumTailCalls, "Number of tail calls");
57
Mon P Wang3c81d352008-11-23 04:37:22 +000058static cl::opt<bool>
Mon P Wang9f22a4a2008-11-24 02:10:43 +000059DisableMMX("disable-mmx", cl::Hidden, cl::desc("Disable use of MMX"));
Mon P Wang3c81d352008-11-23 04:37:22 +000060
Evan Cheng10e86422008-04-25 19:11:04 +000061// Forward declarations.
Owen Andersone50ed302009-08-10 22:56:29 +000062static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +000063 SDValue V2);
Evan Cheng10e86422008-04-25 19:11:04 +000064
Chris Lattnerf0144122009-07-28 03:13:23 +000065static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
Michael J. Spencerec38de22010-10-10 22:04:20 +000066
Eric Christopher62f35a22010-07-05 19:26:33 +000067 bool is64Bit = TM.getSubtarget<X86Subtarget>().is64Bit();
Michael J. Spencerec38de22010-10-10 22:04:20 +000068
Eric Christopher62f35a22010-07-05 19:26:33 +000069 if (TM.getSubtarget<X86Subtarget>().isTargetDarwin()) {
70 if (is64Bit) return new X8664_MachoTargetObjectFile();
Anton Korobeynikov293d5922010-02-21 20:28:15 +000071 return new TargetLoweringObjectFileMachO();
Eric Christopher62f35a22010-07-05 19:26:33 +000072 } else if (TM.getSubtarget<X86Subtarget>().isTargetELF() ){
73 if (is64Bit) return new X8664_ELFTargetObjectFile(TM);
Anton Korobeynikov9184b252010-02-15 22:35:59 +000074 return new X8632_ELFTargetObjectFile(TM);
Eric Christopher62f35a22010-07-05 19:26:33 +000075 } else if (TM.getSubtarget<X86Subtarget>().isTargetCOFF()) {
Chris Lattnerf0144122009-07-28 03:13:23 +000076 return new TargetLoweringObjectFileCOFF();
Michael J. Spencerec38de22010-10-10 22:04:20 +000077 }
Eric Christopher62f35a22010-07-05 19:26:33 +000078 llvm_unreachable("unknown subtarget type");
Chris Lattnerf0144122009-07-28 03:13:23 +000079}
80
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +000081X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Chris Lattnerf0144122009-07-28 03:13:23 +000082 : TargetLowering(TM, createTLOF(TM)) {
Evan Cheng559806f2006-01-27 08:10:46 +000083 Subtarget = &TM.getSubtarget<X86Subtarget>();
Dale Johannesenf1fc3a82007-09-23 14:52:20 +000084 X86ScalarSSEf64 = Subtarget->hasSSE2();
85 X86ScalarSSEf32 = Subtarget->hasSSE1();
Evan Cheng25ab6902006-09-08 06:48:29 +000086 X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000087
Anton Korobeynikov2365f512007-07-14 14:06:15 +000088 RegInfo = TM.getRegisterInfo();
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000089 TD = getTargetData();
Anton Korobeynikov2365f512007-07-14 14:06:15 +000090
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000091 // Set up the TargetLowering object.
92
93 // X86 is weird, it always uses i8 for shift amounts and setcc results.
Owen Anderson825b72b2009-08-11 20:47:22 +000094 setShiftAmountType(MVT::i8);
Duncan Sands03228082008-11-23 15:47:28 +000095 setBooleanContents(ZeroOrOneBooleanContent);
Evan Cheng211ffa12010-05-19 20:19:50 +000096 setSchedulingPreference(Sched::RegPressure);
Evan Cheng25ab6902006-09-08 06:48:29 +000097 setStackPointerRegisterToSaveRestore(X86StackPtr);
Evan Cheng714554d2006-03-16 21:47:42 +000098
Michael J. Spencer92bf38c2010-10-10 23:11:06 +000099 if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000100 // Setup Windows compiler runtime calls.
101 setLibcallName(RTLIB::SDIV_I64, "_alldiv");
Michael J. Spencer335b8062010-10-11 05:29:15 +0000102 setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
103 setLibcallName(RTLIB::FPTOUINT_F64_I64, "_ftol2");
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000104 setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
Michael J. Spencer335b8062010-10-11 05:29:15 +0000105 setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
106 setLibcallCallingConv(RTLIB::FPTOUINT_F64_I64, CallingConv::X86_StdCall);
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000107 }
108
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000109 if (Subtarget->isTargetDarwin()) {
Evan Chengdf57fa02006-03-17 20:31:41 +0000110 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000111 setUseUnderscoreSetJmp(false);
112 setUseUnderscoreLongJmp(false);
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000113 } else if (Subtarget->isTargetMingw()) {
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000114 // MS runtime is weird: it exports _setjmp, but longjmp!
115 setUseUnderscoreSetJmp(true);
116 setUseUnderscoreLongJmp(false);
117 } else {
118 setUseUnderscoreSetJmp(true);
119 setUseUnderscoreLongJmp(true);
120 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000121
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000122 // Set up the register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000123 addRegisterClass(MVT::i8, X86::GR8RegisterClass);
Dan Gohman71edb242010-04-30 18:30:26 +0000124 addRegisterClass(MVT::i16, X86::GR16RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +0000125 addRegisterClass(MVT::i32, X86::GR32RegisterClass);
Evan Cheng25ab6902006-09-08 06:48:29 +0000126 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000127 addRegisterClass(MVT::i64, X86::GR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000128
Owen Anderson825b72b2009-08-11 20:47:22 +0000129 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Evan Chengc5484282006-10-04 00:56:09 +0000130
Scott Michelfdc40a02009-02-17 22:15:04 +0000131 // We don't accept any truncstore of integer registers.
Owen Anderson825b72b2009-08-11 20:47:22 +0000132 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000133 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000134 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000135 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000136 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
137 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
Evan Cheng7f042682008-10-15 02:05:31 +0000138
139 // SETOEQ and SETUNE require checking two conditions.
Owen Anderson825b72b2009-08-11 20:47:22 +0000140 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
141 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
142 setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
143 setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
144 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
145 setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
Chris Lattnerddf89562008-01-17 19:59:44 +0000146
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000147 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
148 // operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000149 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
150 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
151 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
Evan Cheng6892f282006-01-17 02:32:49 +0000152
Evan Cheng25ab6902006-09-08 06:48:29 +0000153 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000154 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
155 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand);
Eli Friedman948e95a2009-05-23 09:59:16 +0000156 } else if (!UseSoftFloat) {
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000157 // We have an algorithm for SSE2->double, and we turn this into a
158 // 64-bit FILD followed by conditional FADD for other targets.
159 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Eli Friedman948e95a2009-05-23 09:59:16 +0000160 // We have an algorithm for SSE2, and we turn this into a 64-bit
161 // FILD for other targets.
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000162 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000163 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000164
165 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
166 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000167 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
168 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000169
Devang Patel6a784892009-06-05 18:48:29 +0000170 if (!UseSoftFloat) {
Bill Wendling105be5a2009-03-13 08:41:47 +0000171 // SSE has no i16 to fp conversion, only i32
172 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000173 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000174 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000175 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000176 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000177 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
178 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000179 }
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000180 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000181 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
182 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Promote);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000183 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000184
Dale Johannesen73328d12007-09-19 23:55:34 +0000185 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
186 // are Legal, f80 is custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000187 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
188 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Evan Cheng6dab0532006-01-30 08:02:57 +0000189
Evan Cheng02568ff2006-01-30 22:13:22 +0000190 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
191 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000192 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
193 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
Evan Cheng02568ff2006-01-30 22:13:22 +0000194
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000195 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000196 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000197 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000198 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000199 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000200 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
201 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000202 }
203
204 // Handle FP_TO_UINT by promoting the destination to a larger signed
205 // conversion.
Owen Anderson825b72b2009-08-11 20:47:22 +0000206 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
207 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
208 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000209
Evan Cheng25ab6902006-09-08 06:48:29 +0000210 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000211 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
212 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
Eli Friedman948e95a2009-05-23 09:59:16 +0000213 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000214 if (X86ScalarSSEf32 && !Subtarget->hasSSE3())
Evan Cheng25ab6902006-09-08 06:48:29 +0000215 // Expand FP_TO_UINT into a select.
216 // FIXME: We would like to use a Custom expander here eventually to do
217 // the optimal thing for SSE vs. the default expansion in the legalizer.
Owen Anderson825b72b2009-08-11 20:47:22 +0000218 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000219 else
Eli Friedman948e95a2009-05-23 09:59:16 +0000220 // With SSE3 we can use fisttpll to convert to a signed i64; without
221 // SSE, we're stuck with a fistpll.
Owen Anderson825b72b2009-08-11 20:47:22 +0000222 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000223 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000224
Chris Lattner399610a2006-12-05 18:22:22 +0000225 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Michael J. Spencerec38de22010-10-10 22:04:20 +0000226 if (!X86ScalarSSEf64) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000227 setOperationAction(ISD::BIT_CONVERT , MVT::f32 , Expand);
228 setOperationAction(ISD::BIT_CONVERT , MVT::i32 , Expand);
Dale Johannesene39859a2010-05-21 18:40:15 +0000229 if (Subtarget->is64Bit()) {
Dale Johannesen7d07b482010-05-21 00:52:33 +0000230 setOperationAction(ISD::BIT_CONVERT , MVT::f64 , Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000231 // Without SSE, i64->f64 goes through memory.
232 setOperationAction(ISD::BIT_CONVERT , MVT::i64 , Expand);
Dale Johannesen7d07b482010-05-21 00:52:33 +0000233 }
Chris Lattnerf3597a12006-12-05 18:45:06 +0000234 }
Chris Lattner21f66852005-12-23 05:15:23 +0000235
Dan Gohmanb00ee212008-02-18 19:34:53 +0000236 // Scalar integer divide and remainder are lowered to use operations that
237 // produce two results, to match the available instructions. This exposes
238 // the two-result form to trivial CSE, which is able to combine x/y and x%y
239 // into a single instruction.
240 //
241 // Scalar integer multiply-high is also lowered to use two-result
242 // operations, to match the available instructions. However, plain multiply
243 // (low) operations are left as Legal, as there are single-result
244 // instructions for this in x86. Using the two-result multiply instructions
245 // when both high and low results are needed must be arranged by dagcombine.
Owen Anderson825b72b2009-08-11 20:47:22 +0000246 setOperationAction(ISD::MULHS , MVT::i8 , Expand);
247 setOperationAction(ISD::MULHU , MVT::i8 , Expand);
248 setOperationAction(ISD::SDIV , MVT::i8 , Expand);
249 setOperationAction(ISD::UDIV , MVT::i8 , Expand);
250 setOperationAction(ISD::SREM , MVT::i8 , Expand);
251 setOperationAction(ISD::UREM , MVT::i8 , Expand);
252 setOperationAction(ISD::MULHS , MVT::i16 , Expand);
253 setOperationAction(ISD::MULHU , MVT::i16 , Expand);
254 setOperationAction(ISD::SDIV , MVT::i16 , Expand);
255 setOperationAction(ISD::UDIV , MVT::i16 , Expand);
256 setOperationAction(ISD::SREM , MVT::i16 , Expand);
257 setOperationAction(ISD::UREM , MVT::i16 , Expand);
258 setOperationAction(ISD::MULHS , MVT::i32 , Expand);
259 setOperationAction(ISD::MULHU , MVT::i32 , Expand);
260 setOperationAction(ISD::SDIV , MVT::i32 , Expand);
261 setOperationAction(ISD::UDIV , MVT::i32 , Expand);
262 setOperationAction(ISD::SREM , MVT::i32 , Expand);
263 setOperationAction(ISD::UREM , MVT::i32 , Expand);
264 setOperationAction(ISD::MULHS , MVT::i64 , Expand);
265 setOperationAction(ISD::MULHU , MVT::i64 , Expand);
266 setOperationAction(ISD::SDIV , MVT::i64 , Expand);
267 setOperationAction(ISD::UDIV , MVT::i64 , Expand);
268 setOperationAction(ISD::SREM , MVT::i64 , Expand);
269 setOperationAction(ISD::UREM , MVT::i64 , Expand);
Dan Gohmana37c9f72007-09-25 18:23:27 +0000270
Owen Anderson825b72b2009-08-11 20:47:22 +0000271 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
272 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
273 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
274 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000275 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000276 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
277 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
278 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
279 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
280 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
281 setOperationAction(ISD::FREM , MVT::f32 , Expand);
282 setOperationAction(ISD::FREM , MVT::f64 , Expand);
283 setOperationAction(ISD::FREM , MVT::f80 , Expand);
284 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000285
Owen Anderson825b72b2009-08-11 20:47:22 +0000286 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
287 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
288 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
289 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000290 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
291 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000292 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
293 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
294 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000295 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000296 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
297 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
298 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000299 }
300
Owen Anderson825b72b2009-08-11 20:47:22 +0000301 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
302 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000303
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000304 // These should be promoted to a larger select which is supported.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000305 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000306 // X86 wants to expand cmov itself.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000307 setOperationAction(ISD::SELECT , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000308 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000309 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
310 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
311 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
312 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
313 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000314 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000315 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
316 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
317 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
318 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000319 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000320 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
321 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000322 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000323 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000324
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000325 // Darwin ABI issue.
Owen Anderson825b72b2009-08-11 20:47:22 +0000326 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
327 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
328 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
329 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000330 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000331 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
332 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000333 setOperationAction(ISD::BlockAddress , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000334 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000335 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
336 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
337 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
338 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000339 setOperationAction(ISD::BlockAddress , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000340 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000341 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Owen Anderson825b72b2009-08-11 20:47:22 +0000342 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
343 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
344 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000345 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000346 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
347 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
348 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000349 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000350
Evan Chengd2cde682008-03-10 19:38:10 +0000351 if (Subtarget->hasSSE1())
Owen Anderson825b72b2009-08-11 20:47:22 +0000352 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000353
Eric Christopher9a9d2752010-07-22 02:48:34 +0000354 // We may not have a libcall for MEMBARRIER so we should lower this.
355 setOperationAction(ISD::MEMBARRIER , MVT::Other, Custom);
Michael J. Spencerec38de22010-10-10 22:04:20 +0000356
Jim Grosbachf1ab49e2010-06-23 16:25:07 +0000357 // On X86 and X86-64, atomic operations are lowered to locked instructions.
358 // Locked instructions, in turn, have implicit fence semantics (all memory
359 // operations are flushed before issuing the locked instruction, and they
360 // are not buffered), so we can fold away the common pattern of
361 // fence-atomic-fence.
362 setShouldFoldAtomicFences(true);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000363
Mon P Wang63307c32008-05-05 19:05:59 +0000364 // Expand certain atomics
Owen Anderson825b72b2009-08-11 20:47:22 +0000365 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i8, Custom);
366 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i16, Custom);
367 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Custom);
368 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i64, Custom);
Bill Wendling5bf1b4e2008-08-20 00:28:16 +0000369
Owen Anderson825b72b2009-08-11 20:47:22 +0000370 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i8, Custom);
371 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i16, Custom);
372 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Custom);
373 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000374
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000375 if (!Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000376 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
377 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
378 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
379 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
380 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
381 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
382 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000383 }
384
Evan Cheng3c992d22006-03-07 02:02:57 +0000385 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000386 if (!Subtarget->isTargetDarwin() &&
387 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000388 !Subtarget->isTargetCygMing()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000389 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohman44066042008-07-01 00:05:16 +0000390 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000391
Owen Anderson825b72b2009-08-11 20:47:22 +0000392 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
393 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
394 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
395 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000396 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000397 setExceptionPointerRegister(X86::RAX);
398 setExceptionSelectorRegister(X86::RDX);
399 } else {
400 setExceptionPointerRegister(X86::EAX);
401 setExceptionSelectorRegister(X86::EDX);
402 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000403 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
404 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000405
Owen Anderson825b72b2009-08-11 20:47:22 +0000406 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000407
Owen Anderson825b72b2009-08-11 20:47:22 +0000408 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000409
Nate Begemanacc398c2006-01-25 18:21:52 +0000410 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000411 setOperationAction(ISD::VASTART , MVT::Other, Custom);
412 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000413 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000414 setOperationAction(ISD::VAARG , MVT::Other, Custom);
415 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000416 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000417 setOperationAction(ISD::VAARG , MVT::Other, Expand);
418 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000419 }
Evan Chengae642192007-03-02 23:16:35 +0000420
Owen Anderson825b72b2009-08-11 20:47:22 +0000421 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
422 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000423 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000424 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +0000425 if (Subtarget->isTargetCygMing())
Owen Anderson825b72b2009-08-11 20:47:22 +0000426 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +0000427 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000428 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000429
Evan Chengc7ce29b2009-02-13 22:36:38 +0000430 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000431 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000432 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000433 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
434 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000435
Evan Cheng223547a2006-01-31 22:28:30 +0000436 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000437 setOperationAction(ISD::FABS , MVT::f64, Custom);
438 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000439
440 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000441 setOperationAction(ISD::FNEG , MVT::f64, Custom);
442 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000443
Evan Cheng68c47cb2007-01-05 07:55:56 +0000444 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000445 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
446 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000447
Evan Chengd25e9e82006-02-02 00:28:23 +0000448 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000449 setOperationAction(ISD::FSIN , MVT::f64, Expand);
450 setOperationAction(ISD::FCOS , MVT::f64, Expand);
451 setOperationAction(ISD::FSIN , MVT::f32, Expand);
452 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000453
Chris Lattnera54aa942006-01-29 06:26:08 +0000454 // Expand FP immediates into loads from the stack, except for the special
455 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000456 addLegalFPImmediate(APFloat(+0.0)); // xorpd
457 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Evan Chengc7ce29b2009-02-13 22:36:38 +0000458 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000459 // Use SSE for f32, x87 for f64.
460 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000461 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
462 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000463
464 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000465 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000466
467 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000468 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000469
Owen Anderson825b72b2009-08-11 20:47:22 +0000470 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000471
472 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000473 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
474 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000475
476 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000477 setOperationAction(ISD::FSIN , MVT::f32, Expand);
478 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000479
Nate Begemane1795842008-02-14 08:57:00 +0000480 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000481 addLegalFPImmediate(APFloat(+0.0f)); // xorps
482 addLegalFPImmediate(APFloat(+0.0)); // FLD0
483 addLegalFPImmediate(APFloat(+1.0)); // FLD1
484 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
485 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
486
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000487 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000488 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
489 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000490 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000491 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000492 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000493 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000494 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
495 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000496
Owen Anderson825b72b2009-08-11 20:47:22 +0000497 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
498 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
499 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
500 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000501
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000502 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000503 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
504 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000505 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000506 addLegalFPImmediate(APFloat(+0.0)); // FLD0
507 addLegalFPImmediate(APFloat(+1.0)); // FLD1
508 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
509 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000510 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
511 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
512 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
513 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000514 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000515
Dale Johannesen59a58732007-08-05 18:49:15 +0000516 // Long double always uses X87.
Evan Cheng92722532009-03-26 23:06:32 +0000517 if (!UseSoftFloat) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000518 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
519 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
520 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000521 {
522 bool ignored;
523 APFloat TmpFlt(+0.0);
524 TmpFlt.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
525 &ignored);
526 addLegalFPImmediate(TmpFlt); // FLD0
527 TmpFlt.changeSign();
528 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
529 APFloat TmpFlt2(+1.0);
530 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
531 &ignored);
532 addLegalFPImmediate(TmpFlt2); // FLD1
533 TmpFlt2.changeSign();
534 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
535 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000536
Evan Chengc7ce29b2009-02-13 22:36:38 +0000537 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000538 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
539 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000540 }
Dale Johannesen2f429012007-09-26 21:10:55 +0000541 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000542
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000543 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000544 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
545 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
546 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000547
Owen Anderson825b72b2009-08-11 20:47:22 +0000548 setOperationAction(ISD::FLOG, MVT::f80, Expand);
549 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
550 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
551 setOperationAction(ISD::FEXP, MVT::f80, Expand);
552 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000553
Mon P Wangf007a8b2008-11-06 05:31:54 +0000554 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000555 // (for widening) or expand (for scalarization). Then we will selectively
556 // turn on ones that can be effectively codegen'd.
Owen Anderson825b72b2009-08-11 20:47:22 +0000557 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
558 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
559 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
560 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
561 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
562 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
563 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
564 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
565 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
566 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
567 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
568 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
569 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
570 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
571 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
572 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
573 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
574 setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
575 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
576 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
577 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
578 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
579 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
580 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
581 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
582 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
583 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
584 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
585 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
586 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
587 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
588 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
589 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
590 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
591 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
592 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
593 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
594 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
595 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
596 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
597 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
598 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
599 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
600 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
601 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
602 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
603 setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
604 setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
605 setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
606 setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
Dan Gohman87862e72009-12-11 21:31:27 +0000607 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
Dan Gohman2e141d72009-12-14 23:40:38 +0000608 setOperationAction(ISD::TRUNCATE, (MVT::SimpleValueType)VT, Expand);
609 setOperationAction(ISD::SIGN_EXTEND, (MVT::SimpleValueType)VT, Expand);
610 setOperationAction(ISD::ZERO_EXTEND, (MVT::SimpleValueType)VT, Expand);
611 setOperationAction(ISD::ANY_EXTEND, (MVT::SimpleValueType)VT, Expand);
612 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
613 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
614 setTruncStoreAction((MVT::SimpleValueType)VT,
615 (MVT::SimpleValueType)InnerVT, Expand);
616 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
617 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
618 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000619 }
620
Evan Chengc7ce29b2009-02-13 22:36:38 +0000621 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
622 // with -msoft-float, disable use of MMX as well.
Evan Cheng92722532009-03-26 23:06:32 +0000623 if (!UseSoftFloat && !DisableMMX && Subtarget->hasMMX()) {
Bill Wendlingd8dd5752010-09-07 20:03:56 +0000624 addRegisterClass(MVT::x86mmx, X86::VR64RegisterClass, false);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000625 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000626 }
627
Dale Johannesen0488fb62010-09-30 23:57:10 +0000628 // MMX-sized vectors (other than x86mmx) are expected to be expanded
629 // into smaller operations.
630 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
631 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
632 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
633 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
634 setOperationAction(ISD::AND, MVT::v8i8, Expand);
635 setOperationAction(ISD::AND, MVT::v4i16, Expand);
636 setOperationAction(ISD::AND, MVT::v2i32, Expand);
637 setOperationAction(ISD::AND, MVT::v1i64, Expand);
638 setOperationAction(ISD::OR, MVT::v8i8, Expand);
639 setOperationAction(ISD::OR, MVT::v4i16, Expand);
640 setOperationAction(ISD::OR, MVT::v2i32, Expand);
641 setOperationAction(ISD::OR, MVT::v1i64, Expand);
642 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
643 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
644 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
645 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
646 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
647 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
648 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
649 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
650 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
651 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
652 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
653 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
654 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
655 setOperationAction(ISD::BIT_CONVERT, MVT::v8i8, Expand);
656 setOperationAction(ISD::BIT_CONVERT, MVT::v4i16, Expand);
657 setOperationAction(ISD::BIT_CONVERT, MVT::v2i32, Expand);
658 setOperationAction(ISD::BIT_CONVERT, MVT::v1i64, Expand);
659
Evan Cheng92722532009-03-26 23:06:32 +0000660 if (!UseSoftFloat && Subtarget->hasSSE1()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000661 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000662
Owen Anderson825b72b2009-08-11 20:47:22 +0000663 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
664 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
665 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
666 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
667 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
668 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
669 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
670 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
671 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
672 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
673 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
674 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000675 }
676
Evan Cheng92722532009-03-26 23:06:32 +0000677 if (!UseSoftFloat && Subtarget->hasSSE2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000678 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000679
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000680 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
681 // registers cannot be used even for integer operations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000682 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
683 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
684 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
685 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000686
Owen Anderson825b72b2009-08-11 20:47:22 +0000687 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
688 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
689 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
690 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
691 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
692 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
693 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
694 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
695 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
696 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
697 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
698 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
699 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
700 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
701 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
702 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000703
Owen Anderson825b72b2009-08-11 20:47:22 +0000704 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
705 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
706 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
707 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000708
Owen Anderson825b72b2009-08-11 20:47:22 +0000709 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
710 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
711 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
712 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
713 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000714
Mon P Wangeb38ebf2010-01-24 00:05:03 +0000715 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2f64, Custom);
716 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2i64, Custom);
717 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i8, Custom);
718 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i16, Custom);
719 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
720
Evan Cheng2c3ae372006-04-12 21:21:57 +0000721 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Owen Anderson825b72b2009-08-11 20:47:22 +0000722 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
723 EVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000724 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000725 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000726 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000727 // Do not attempt to custom lower non-128-bit vectors
728 if (!VT.is128BitVector())
729 continue;
Owen Anderson825b72b2009-08-11 20:47:22 +0000730 setOperationAction(ISD::BUILD_VECTOR,
731 VT.getSimpleVT().SimpleTy, Custom);
732 setOperationAction(ISD::VECTOR_SHUFFLE,
733 VT.getSimpleVT().SimpleTy, Custom);
734 setOperationAction(ISD::EXTRACT_VECTOR_ELT,
735 VT.getSimpleVT().SimpleTy, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000736 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000737
Owen Anderson825b72b2009-08-11 20:47:22 +0000738 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
739 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
740 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
741 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
742 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
743 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000744
Nate Begemancdd1eec2008-02-12 22:51:28 +0000745 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000746 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
747 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000748 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000749
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000750 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Owen Anderson825b72b2009-08-11 20:47:22 +0000751 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) {
752 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
Owen Andersone50ed302009-08-10 22:56:29 +0000753 EVT VT = SVT;
David Greene9b9838d2009-06-29 16:47:10 +0000754
755 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000756 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000757 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +0000758
Owen Andersond6662ad2009-08-10 20:46:15 +0000759 setOperationAction(ISD::AND, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000760 AddPromotedToType (ISD::AND, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000761 setOperationAction(ISD::OR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000762 AddPromotedToType (ISD::OR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000763 setOperationAction(ISD::XOR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000764 AddPromotedToType (ISD::XOR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000765 setOperationAction(ISD::LOAD, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000766 AddPromotedToType (ISD::LOAD, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000767 setOperationAction(ISD::SELECT, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000768 AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000769 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000770
Owen Anderson825b72b2009-08-11 20:47:22 +0000771 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000772
Evan Cheng2c3ae372006-04-12 21:21:57 +0000773 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +0000774 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
775 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
776 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
777 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000778
Owen Anderson825b72b2009-08-11 20:47:22 +0000779 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
780 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000781 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000782
Nate Begeman14d12ca2008-02-11 04:19:36 +0000783 if (Subtarget->hasSSE41()) {
Dale Johannesen54feef22010-05-27 20:12:41 +0000784 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
785 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
786 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
787 setOperationAction(ISD::FRINT, MVT::f32, Legal);
788 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
789 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
790 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
791 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
792 setOperationAction(ISD::FRINT, MVT::f64, Legal);
793 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
794
Nate Begeman14d12ca2008-02-11 04:19:36 +0000795 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +0000796 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000797
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000798 // Can turn SHL into an integer multiply.
799 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
Nate Begeman51409212010-07-28 00:21:48 +0000800 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000801
Nate Begeman14d12ca2008-02-11 04:19:36 +0000802 // i8 and i16 vectors are custom , because the source register and source
803 // source memory operand types are not the same width. f32 vectors are
804 // custom since the immediate controlling the insert encodes additional
805 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +0000806 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
807 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
808 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
809 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000810
Owen Anderson825b72b2009-08-11 20:47:22 +0000811 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
812 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
813 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
814 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000815
816 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000817 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
818 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000819 }
820 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000821
Nate Begeman30a0de92008-07-17 16:51:19 +0000822 if (Subtarget->hasSSE42()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000823 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
Nate Begeman30a0de92008-07-17 16:51:19 +0000824 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000825
David Greene9b9838d2009-06-29 16:47:10 +0000826 if (!UseSoftFloat && Subtarget->hasAVX()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000827 addRegisterClass(MVT::v8f32, X86::VR256RegisterClass);
828 addRegisterClass(MVT::v4f64, X86::VR256RegisterClass);
829 addRegisterClass(MVT::v8i32, X86::VR256RegisterClass);
830 addRegisterClass(MVT::v4i64, X86::VR256RegisterClass);
Bruno Cardoso Lopes405f11b2010-08-10 01:43:16 +0000831 addRegisterClass(MVT::v32i8, X86::VR256RegisterClass);
David Greened94c1012009-06-29 22:50:51 +0000832
Owen Anderson825b72b2009-08-11 20:47:22 +0000833 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
834 setOperationAction(ISD::LOAD, MVT::v8i32, Legal);
835 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
836 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
837 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
838 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
839 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
840 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
841 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
842 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +0000843 setOperationAction(ISD::BUILD_VECTOR, MVT::v8f32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000844 //setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8f32, Custom);
845 //setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8f32, Custom);
846 //setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
847 //setOperationAction(ISD::VSETCC, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000848
849 // Operations to consider commented out -v16i16 v32i8
Owen Anderson825b72b2009-08-11 20:47:22 +0000850 //setOperationAction(ISD::ADD, MVT::v16i16, Legal);
851 setOperationAction(ISD::ADD, MVT::v8i32, Custom);
852 setOperationAction(ISD::ADD, MVT::v4i64, Custom);
853 //setOperationAction(ISD::SUB, MVT::v32i8, Legal);
854 //setOperationAction(ISD::SUB, MVT::v16i16, Legal);
855 setOperationAction(ISD::SUB, MVT::v8i32, Custom);
856 setOperationAction(ISD::SUB, MVT::v4i64, Custom);
857 //setOperationAction(ISD::MUL, MVT::v16i16, Legal);
858 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
859 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
860 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
861 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
862 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
863 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000864
Owen Anderson825b72b2009-08-11 20:47:22 +0000865 setOperationAction(ISD::VSETCC, MVT::v4f64, Custom);
866 // setOperationAction(ISD::VSETCC, MVT::v32i8, Custom);
867 // setOperationAction(ISD::VSETCC, MVT::v16i16, Custom);
868 setOperationAction(ISD::VSETCC, MVT::v8i32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000869
Owen Anderson825b72b2009-08-11 20:47:22 +0000870 // setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v32i8, Custom);
871 // setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i16, Custom);
872 // setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i16, Custom);
873 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i32, Custom);
874 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000875
Owen Anderson825b72b2009-08-11 20:47:22 +0000876 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f64, Custom);
877 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i64, Custom);
878 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f64, Custom);
879 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i64, Custom);
880 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f64, Custom);
881 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000882
883#if 0
884 // Not sure we want to do this since there are no 256-bit integer
885 // operations in AVX
886
887 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
888 // This includes 256-bit vectors
Owen Anderson825b72b2009-08-11 20:47:22 +0000889 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v4i64; ++i) {
890 EVT VT = (MVT::SimpleValueType)i;
David Greene9b9838d2009-06-29 16:47:10 +0000891
892 // Do not attempt to custom lower non-power-of-2 vectors
893 if (!isPowerOf2_32(VT.getVectorNumElements()))
894 continue;
895
896 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
897 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
898 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
899 }
900
901 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000902 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i64, Custom);
903 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i64, Custom);
Eric Christopherfd179292009-08-27 18:07:15 +0000904 }
David Greene9b9838d2009-06-29 16:47:10 +0000905#endif
906
907#if 0
908 // Not sure we want to do this since there are no 256-bit integer
909 // operations in AVX
910
911 // Promote v32i8, v16i16, v8i32 load, select, and, or, xor to v4i64.
912 // Including 256-bit vectors
Owen Anderson825b72b2009-08-11 20:47:22 +0000913 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v4i64; i++) {
914 EVT VT = (MVT::SimpleValueType)i;
David Greene9b9838d2009-06-29 16:47:10 +0000915
916 if (!VT.is256BitVector()) {
917 continue;
918 }
919 setOperationAction(ISD::AND, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000920 AddPromotedToType (ISD::AND, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000921 setOperationAction(ISD::OR, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000922 AddPromotedToType (ISD::OR, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000923 setOperationAction(ISD::XOR, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000924 AddPromotedToType (ISD::XOR, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000925 setOperationAction(ISD::LOAD, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000926 AddPromotedToType (ISD::LOAD, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000927 setOperationAction(ISD::SELECT, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000928 AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000929 }
930
Owen Anderson825b72b2009-08-11 20:47:22 +0000931 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
David Greene9b9838d2009-06-29 16:47:10 +0000932#endif
933 }
934
Evan Cheng6be2c582006-04-05 23:38:46 +0000935 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +0000936 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +0000937
Bill Wendling74c37652008-12-09 22:08:41 +0000938 // Add/Sub/Mul with overflow operations are custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000939 setOperationAction(ISD::SADDO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000940 setOperationAction(ISD::UADDO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000941 setOperationAction(ISD::SSUBO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000942 setOperationAction(ISD::USUBO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000943 setOperationAction(ISD::SMULO, MVT::i32, Custom);
Dan Gohman71c62a22010-06-02 19:13:40 +0000944
Eli Friedman962f5492010-06-02 19:35:46 +0000945 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
946 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +0000947 //
Eli Friedman962f5492010-06-02 19:35:46 +0000948 // FIXME: We really should do custom legalization for addition and
949 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
950 // than generic legalization for 64-bit multiplication-with-overflow, though.
Eli Friedmana993f0a2010-06-02 00:27:18 +0000951 if (Subtarget->is64Bit()) {
952 setOperationAction(ISD::SADDO, MVT::i64, Custom);
953 setOperationAction(ISD::UADDO, MVT::i64, Custom);
954 setOperationAction(ISD::SSUBO, MVT::i64, Custom);
955 setOperationAction(ISD::USUBO, MVT::i64, Custom);
956 setOperationAction(ISD::SMULO, MVT::i64, Custom);
957 }
Bill Wendling41ea7e72008-11-24 19:21:46 +0000958
Evan Chengd54f2d52009-03-31 19:38:51 +0000959 if (!Subtarget->is64Bit()) {
960 // These libcalls are not available in 32-bit.
961 setLibcallName(RTLIB::SHL_I128, 0);
962 setLibcallName(RTLIB::SRL_I128, 0);
963 setLibcallName(RTLIB::SRA_I128, 0);
964 }
965
Evan Cheng206ee9d2006-07-07 08:33:52 +0000966 // We have target-specific dag combine patterns for the following nodes:
967 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +0000968 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +0000969 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +0000970 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +0000971 setTargetDAGCombine(ISD::SHL);
972 setTargetDAGCombine(ISD::SRA);
973 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +0000974 setTargetDAGCombine(ISD::OR);
Chris Lattner149a4e52008-02-22 02:09:43 +0000975 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +0000976 setTargetDAGCombine(ISD::ZERO_EXTEND);
Evan Cheng0b0cd912009-03-28 05:57:29 +0000977 if (Subtarget->is64Bit())
978 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +0000979
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000980 computeRegisterProperties();
981
Evan Cheng87ed7162006-02-14 08:25:08 +0000982 // FIXME: These should be based on subtarget info. Plus, the values should
983 // be smaller when we are in optimizing for size mode.
Dan Gohman87060f52008-06-30 21:00:56 +0000984 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng255f20f2010-04-01 06:04:33 +0000985 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Dan Gohman87060f52008-06-30 21:00:56 +0000986 maxStoresPerMemmove = 3; // For @llvm.memmove -> sequence of stores
Evan Chengfb8075d2008-02-28 00:43:03 +0000987 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +0000988 benefitFromCodePlacementOpt = true;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000989}
990
Scott Michel5b8f82e2008-03-10 15:42:14 +0000991
Owen Anderson825b72b2009-08-11 20:47:22 +0000992MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
993 return MVT::i8;
Scott Michel5b8f82e2008-03-10 15:42:14 +0000994}
995
996
Evan Cheng29286502008-01-23 23:17:41 +0000997/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
998/// the desired ByVal argument alignment.
999static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) {
1000 if (MaxAlign == 16)
1001 return;
1002 if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1003 if (VTy->getBitWidth() == 128)
1004 MaxAlign = 16;
Evan Cheng29286502008-01-23 23:17:41 +00001005 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1006 unsigned EltAlign = 0;
1007 getMaxByValAlign(ATy->getElementType(), EltAlign);
1008 if (EltAlign > MaxAlign)
1009 MaxAlign = EltAlign;
1010 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
1011 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1012 unsigned EltAlign = 0;
1013 getMaxByValAlign(STy->getElementType(i), EltAlign);
1014 if (EltAlign > MaxAlign)
1015 MaxAlign = EltAlign;
1016 if (MaxAlign == 16)
1017 break;
1018 }
1019 }
1020 return;
1021}
1022
1023/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1024/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001025/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1026/// are at 4-byte boundaries.
Evan Cheng29286502008-01-23 23:17:41 +00001027unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001028 if (Subtarget->is64Bit()) {
1029 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001030 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001031 if (TyAlign > 8)
1032 return TyAlign;
1033 return 8;
1034 }
1035
Evan Cheng29286502008-01-23 23:17:41 +00001036 unsigned Align = 4;
Dale Johannesen0c191872008-02-08 19:48:20 +00001037 if (Subtarget->hasSSE1())
1038 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001039 return Align;
1040}
Chris Lattner2b02a442007-02-25 08:29:00 +00001041
Evan Chengf0df0312008-05-15 08:39:06 +00001042/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001043/// and store operations as a result of memset, memcpy, and memmove
1044/// lowering. If DstAlign is zero that means it's safe to destination
1045/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1046/// means there isn't a need to check it against alignment requirement,
1047/// probably because the source does not need to be loaded. If
1048/// 'NonScalarIntSafe' is true, that means it's safe to return a
1049/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1050/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1051/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001052/// It returns EVT::Other if the type should be determined using generic
1053/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001054EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001055X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1056 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001057 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001058 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001059 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001060 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1061 // linux. This is because the stack realignment code can't handle certain
1062 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001063 const Function *F = MF.getFunction();
Evan Chengf28f8bc2010-04-02 19:36:14 +00001064 if (NonScalarIntSafe &&
1065 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001066 if (Size >= 16 &&
1067 (Subtarget->isUnalignedMemAccessFast() ||
Chandler Carruthae1d41c2010-04-02 01:31:24 +00001068 ((DstAlign == 0 || DstAlign >= 16) &&
1069 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001070 Subtarget->getStackAlignment() >= 16) {
1071 if (Subtarget->hasSSE2())
1072 return MVT::v4i32;
Evan Chengf28f8bc2010-04-02 19:36:14 +00001073 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001074 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001075 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001076 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001077 Subtarget->getStackAlignment() >= 8 &&
Evan Chengc3b0c342010-04-08 07:37:57 +00001078 Subtarget->hasSSE2()) {
1079 // Do not use f64 to lower memcpy if source is string constant. It's
1080 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001081 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001082 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001083 }
Evan Chengf0df0312008-05-15 08:39:06 +00001084 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001085 return MVT::i64;
1086 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001087}
1088
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001089/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1090/// current function. The returned value is a member of the
1091/// MachineJumpTableInfo::JTEntryKind enum.
1092unsigned X86TargetLowering::getJumpTableEncoding() const {
1093 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1094 // symbol.
1095 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1096 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001097 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001098
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001099 // Otherwise, use the normal jump table encoding heuristics.
1100 return TargetLowering::getJumpTableEncoding();
1101}
1102
Chris Lattner589c6f62010-01-26 06:28:43 +00001103/// getPICBaseSymbol - Return the X86-32 PIC base.
1104MCSymbol *
1105X86TargetLowering::getPICBaseSymbol(const MachineFunction *MF,
1106 MCContext &Ctx) const {
1107 const MCAsmInfo &MAI = *getTargetMachine().getMCAsmInfo();
Chris Lattner9b97a732010-03-30 18:10:53 +00001108 return Ctx.GetOrCreateSymbol(Twine(MAI.getPrivateGlobalPrefix())+
1109 Twine(MF->getFunctionNumber())+"$pb");
Chris Lattner589c6f62010-01-26 06:28:43 +00001110}
1111
1112
Chris Lattnerc64daab2010-01-26 05:02:42 +00001113const MCExpr *
1114X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1115 const MachineBasicBlock *MBB,
1116 unsigned uid,MCContext &Ctx) const{
1117 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1118 Subtarget->isPICStyleGOT());
1119 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1120 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001121 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1122 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001123}
1124
Evan Chengcc415862007-11-09 01:32:10 +00001125/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1126/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001127SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001128 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001129 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001130 // This doesn't have DebugLoc associated with it, but is not really the
1131 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001132 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001133 return Table;
1134}
1135
Chris Lattner589c6f62010-01-26 06:28:43 +00001136/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1137/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1138/// MCExpr.
1139const MCExpr *X86TargetLowering::
1140getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1141 MCContext &Ctx) const {
1142 // X86-64 uses RIP relative addressing based on the jump table label.
1143 if (Subtarget->isPICStyleRIPRel())
1144 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1145
1146 // Otherwise, the reference is relative to the PIC base.
1147 return MCSymbolRefExpr::Create(getPICBaseSymbol(MF, Ctx), Ctx);
1148}
1149
Bill Wendlingb4202b82009-07-01 18:50:55 +00001150/// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling20c568f2009-06-30 22:38:32 +00001151unsigned X86TargetLowering::getFunctionAlignment(const Function *F) const {
Dan Gohman25103a22009-08-18 00:20:06 +00001152 return F->hasFnAttr(Attribute::OptimizeForSize) ? 0 : 4;
Bill Wendling20c568f2009-06-30 22:38:32 +00001153}
1154
Evan Chengdee81012010-07-26 21:50:05 +00001155std::pair<const TargetRegisterClass*, uint8_t>
1156X86TargetLowering::findRepresentativeClass(EVT VT) const{
1157 const TargetRegisterClass *RRC = 0;
1158 uint8_t Cost = 1;
1159 switch (VT.getSimpleVT().SimpleTy) {
1160 default:
1161 return TargetLowering::findRepresentativeClass(VT);
1162 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1163 RRC = (Subtarget->is64Bit()
1164 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1165 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001166 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001167 RRC = X86::VR64RegisterClass;
1168 break;
1169 case MVT::f32: case MVT::f64:
1170 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1171 case MVT::v4f32: case MVT::v2f64:
1172 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1173 case MVT::v4f64:
1174 RRC = X86::VR128RegisterClass;
1175 break;
1176 }
1177 return std::make_pair(RRC, Cost);
1178}
1179
Evan Cheng70017e42010-07-24 00:39:05 +00001180unsigned
1181X86TargetLowering::getRegPressureLimit(const TargetRegisterClass *RC,
1182 MachineFunction &MF) const {
1183 unsigned FPDiff = RegInfo->hasFP(MF) ? 1 : 0;
1184 switch (RC->getID()) {
1185 default:
1186 return 0;
1187 case X86::GR32RegClassID:
1188 return 4 - FPDiff;
1189 case X86::GR64RegClassID:
1190 return 8 - FPDiff;
1191 case X86::VR128RegClassID:
1192 return Subtarget->is64Bit() ? 10 : 4;
1193 case X86::VR64RegClassID:
1194 return 4;
1195 }
1196}
1197
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001198bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1199 unsigned &Offset) const {
1200 if (!Subtarget->isTargetLinux())
1201 return false;
1202
1203 if (Subtarget->is64Bit()) {
1204 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1205 Offset = 0x28;
1206 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1207 AddressSpace = 256;
1208 else
1209 AddressSpace = 257;
1210 } else {
1211 // %gs:0x14 on i386
1212 Offset = 0x14;
1213 AddressSpace = 256;
1214 }
1215 return true;
1216}
1217
1218
Chris Lattner2b02a442007-02-25 08:29:00 +00001219//===----------------------------------------------------------------------===//
1220// Return Value Calling Convention Implementation
1221//===----------------------------------------------------------------------===//
1222
Chris Lattner59ed56b2007-02-28 04:55:35 +00001223#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001224
Michael J. Spencerec38de22010-10-10 22:04:20 +00001225bool
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001226X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001227 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001228 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001229 SmallVector<CCValAssign, 16> RVLocs;
1230 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001231 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001232 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001233}
1234
Dan Gohman98ca4f22009-08-05 01:29:28 +00001235SDValue
1236X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001237 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001238 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001239 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001240 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001241 MachineFunction &MF = DAG.getMachineFunction();
1242 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001243
Chris Lattner9774c912007-02-27 05:28:59 +00001244 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001245 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1246 RVLocs, *DAG.getContext());
1247 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001248
Evan Chengdcea1632010-02-04 02:40:39 +00001249 // Add the regs to the liveout set for the function.
1250 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1251 for (unsigned i = 0; i != RVLocs.size(); ++i)
1252 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1253 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001254
Dan Gohman475871a2008-07-27 21:46:04 +00001255 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001256
Dan Gohman475871a2008-07-27 21:46:04 +00001257 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001258 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1259 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001260 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1261 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001262
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001263 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001264 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1265 CCValAssign &VA = RVLocs[i];
1266 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001267 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001268 EVT ValVT = ValToCopy.getValueType();
1269
Dale Johannesenc4510512010-09-24 19:05:48 +00001270 // If this is x86-64, and we disabled SSE, we can't return FP values,
1271 // or SSE or MMX vectors.
1272 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1273 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1274 (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001275 report_fatal_error("SSE register return with SSE disabled");
1276 }
1277 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1278 // llvm-gcc has never done it right and no one has noticed, so this
1279 // should be OK for now.
1280 if (ValVT == MVT::f64 &&
Chris Lattner83069682010-08-26 05:51:22 +00001281 (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001282 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001283
Chris Lattner447ff682008-03-11 03:23:40 +00001284 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1285 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001286 if (VA.getLocReg() == X86::ST0 ||
1287 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001288 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1289 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001290 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001291 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001292 RetOps.push_back(ValToCopy);
1293 // Don't emit a copytoreg.
1294 continue;
1295 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001296
Evan Cheng242b38b2009-02-23 09:03:22 +00001297 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1298 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001299 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001300 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001301 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001302 ValToCopy = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001303 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1304 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001305 // If we don't have SSE2 available, convert to v4f32 so the generated
1306 // register is legal.
1307 if (!Subtarget->hasSSE2())
1308 ValToCopy = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32,ValToCopy);
1309 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001310 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001311 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001312
Dale Johannesendd64c412009-02-04 00:33:20 +00001313 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001314 Flag = Chain.getValue(1);
1315 }
Dan Gohman61a92132008-04-21 23:59:07 +00001316
1317 // The x86-64 ABI for returning structs by value requires that we copy
1318 // the sret argument into %rax for the return. We saved the argument into
1319 // a virtual register in the entry block, so now we copy the value out
1320 // and into %rax.
1321 if (Subtarget->is64Bit() &&
1322 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1323 MachineFunction &MF = DAG.getMachineFunction();
1324 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1325 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001326 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001327 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001328 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001329
Dale Johannesendd64c412009-02-04 00:33:20 +00001330 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001331 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001332
1333 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001334 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001335 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001336
Chris Lattner447ff682008-03-11 03:23:40 +00001337 RetOps[0] = Chain; // Update chain.
1338
1339 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001340 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001341 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001342
1343 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001344 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001345}
1346
Dan Gohman98ca4f22009-08-05 01:29:28 +00001347/// LowerCallResult - Lower the result values of a call into the
1348/// appropriate copies out of appropriate physical registers.
1349///
1350SDValue
1351X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001352 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001353 const SmallVectorImpl<ISD::InputArg> &Ins,
1354 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001355 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001356
Chris Lattnere32bbf62007-02-28 07:09:55 +00001357 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001358 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001359 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001360 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Owen Andersone922c022009-07-22 00:24:57 +00001361 RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001362 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001363
Chris Lattner3085e152007-02-25 08:59:22 +00001364 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001365 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001366 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001367 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001368
Torok Edwin3f142c32009-02-01 18:15:56 +00001369 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001370 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Dan Gohman98ca4f22009-08-05 01:29:28 +00001371 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001372 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001373 }
1374
Evan Cheng79fb3b42009-02-20 20:43:02 +00001375 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001376
1377 // If this is a call to a function that returns an fp value on the floating
1378 // point stack, we must guarantee the the value is popped from the stack, so
1379 // a CopyFromReg is not good enough - the copy instruction may be eliminated
1380 // if the return value is not used. We use the FpGET_ST0 instructions
1381 // instead.
1382 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1383 // If we prefer to use the value in xmm registers, copy it out as f80 and
1384 // use a truncate to move it from fp stack reg to xmm reg.
1385 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1386 bool isST0 = VA.getLocReg() == X86::ST0;
1387 unsigned Opc = 0;
1388 if (CopyVT == MVT::f32) Opc = isST0 ? X86::FpGET_ST0_32:X86::FpGET_ST1_32;
1389 if (CopyVT == MVT::f64) Opc = isST0 ? X86::FpGET_ST0_64:X86::FpGET_ST1_64;
1390 if (CopyVT == MVT::f80) Opc = isST0 ? X86::FpGET_ST0_80:X86::FpGET_ST1_80;
1391 SDValue Ops[] = { Chain, InFlag };
1392 Chain = SDValue(DAG.getMachineNode(Opc, dl, CopyVT, MVT::Other, MVT::Flag,
1393 Ops, 2), 1);
1394 Val = Chain.getValue(0);
1395
1396 // Round the f80 to the right size, which also moves it to the appropriate
1397 // xmm register.
1398 if (CopyVT != VA.getValVT())
1399 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1400 // This truncation won't change the value.
1401 DAG.getIntPtrConstant(1));
1402 } else if (Is64Bit && CopyVT.isVector() && CopyVT.getSizeInBits() == 64) {
Evan Cheng242b38b2009-02-23 09:03:22 +00001403 // For x86-64, MMX values are returned in XMM0 / XMM1 except for v1i64.
1404 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1405 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001406 MVT::v2i64, InFlag).getValue(1);
Evan Cheng242b38b2009-02-23 09:03:22 +00001407 Val = Chain.getValue(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001408 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1409 Val, DAG.getConstant(0, MVT::i64));
Evan Cheng242b38b2009-02-23 09:03:22 +00001410 } else {
1411 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001412 MVT::i64, InFlag).getValue(1);
Evan Cheng242b38b2009-02-23 09:03:22 +00001413 Val = Chain.getValue(0);
1414 }
Evan Cheng79fb3b42009-02-20 20:43:02 +00001415 Val = DAG.getNode(ISD::BIT_CONVERT, dl, CopyVT, Val);
1416 } else {
1417 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1418 CopyVT, InFlag).getValue(1);
1419 Val = Chain.getValue(0);
1420 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001421 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001422 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001423 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001424
Dan Gohman98ca4f22009-08-05 01:29:28 +00001425 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001426}
1427
1428
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001429//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001430// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001431//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001432// StdCall calling convention seems to be standard for many Windows' API
1433// routines and around. It differs from C calling convention just a little:
1434// callee should clean up the stack, not caller. Symbols should be also
1435// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001436// For info on fast calling convention see Fast Calling Convention (tail call)
1437// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001438
Dan Gohman98ca4f22009-08-05 01:29:28 +00001439/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001440/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001441static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1442 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001443 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001444
Dan Gohman98ca4f22009-08-05 01:29:28 +00001445 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001446}
1447
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001448/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001449/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001450static bool
1451ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1452 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001453 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001454
Dan Gohman98ca4f22009-08-05 01:29:28 +00001455 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001456}
1457
Dan Gohman095cc292008-09-13 01:54:27 +00001458/// CCAssignFnForNode - Selects the correct CCAssignFn for a the
1459/// given CallingConvention value.
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001460CCAssignFn *X86TargetLowering::CCAssignFnForNode(CallingConv::ID CC) const {
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00001461 if (Subtarget->is64Bit()) {
Chris Lattner29689432010-03-11 00:22:57 +00001462 if (CC == CallingConv::GHC)
1463 return CC_X86_64_GHC;
1464 else if (Subtarget->isTargetWin64())
Anton Korobeynikov8f88cb02008-03-22 20:37:30 +00001465 return CC_X86_Win64_C;
Evan Chenge9ac9e62008-09-07 09:07:23 +00001466 else
1467 return CC_X86_64_C;
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00001468 }
1469
Gordon Henriksen86737662008-01-05 16:56:59 +00001470 if (CC == CallingConv::X86_FastCall)
1471 return CC_X86_32_FastCall;
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001472 else if (CC == CallingConv::X86_ThisCall)
1473 return CC_X86_32_ThisCall;
Evan Chengb188dd92008-09-10 18:25:29 +00001474 else if (CC == CallingConv::Fast)
1475 return CC_X86_32_FastCC;
Chris Lattner29689432010-03-11 00:22:57 +00001476 else if (CC == CallingConv::GHC)
1477 return CC_X86_32_GHC;
Gordon Henriksen86737662008-01-05 16:56:59 +00001478 else
1479 return CC_X86_32_C;
1480}
1481
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001482/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1483/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001484/// the specific parameter attribute. The copy will be passed as a byval
1485/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001486static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001487CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001488 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1489 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001490 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001491
Dale Johannesendd64c412009-02-04 00:33:20 +00001492 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Mon P Wang20adc9d2010-04-04 03:10:48 +00001493 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001494 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001495}
1496
Chris Lattner29689432010-03-11 00:22:57 +00001497/// IsTailCallConvention - Return true if the calling convention is one that
1498/// supports tail call optimization.
1499static bool IsTailCallConvention(CallingConv::ID CC) {
1500 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1501}
1502
Evan Cheng0c439eb2010-01-27 00:07:07 +00001503/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1504/// a tailcall target by changing its ABI.
1505static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001506 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001507}
1508
Dan Gohman98ca4f22009-08-05 01:29:28 +00001509SDValue
1510X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001511 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001512 const SmallVectorImpl<ISD::InputArg> &Ins,
1513 DebugLoc dl, SelectionDAG &DAG,
1514 const CCValAssign &VA,
1515 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001516 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001517 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001518 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001519 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001520 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001521 EVT ValVT;
1522
1523 // If value is passed by pointer we have address passed instead of the value
1524 // itself.
1525 if (VA.getLocInfo() == CCValAssign::Indirect)
1526 ValVT = VA.getLocVT();
1527 else
1528 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001529
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001530 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001531 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001532 // In case of tail call optimization mark all arguments mutable. Since they
1533 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001534 if (Flags.isByVal()) {
1535 int FI = MFI->CreateFixedObject(Flags.getByValSize(),
Evan Chenged2ae132010-07-03 00:40:23 +00001536 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001537 return DAG.getFrameIndex(FI, getPointerTy());
1538 } else {
1539 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001540 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001541 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1542 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001543 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001544 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001545 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001546}
1547
Dan Gohman475871a2008-07-27 21:46:04 +00001548SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001549X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001550 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001551 bool isVarArg,
1552 const SmallVectorImpl<ISD::InputArg> &Ins,
1553 DebugLoc dl,
1554 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001555 SmallVectorImpl<SDValue> &InVals)
1556 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001557 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001558 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001559
Gordon Henriksen86737662008-01-05 16:56:59 +00001560 const Function* Fn = MF.getFunction();
1561 if (Fn->hasExternalLinkage() &&
1562 Subtarget->isTargetCygMing() &&
1563 Fn->getName() == "main")
1564 FuncInfo->setForceFramePointer(true);
1565
Evan Cheng1bc78042006-04-26 01:20:17 +00001566 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001567 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001568 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001569
Chris Lattner29689432010-03-11 00:22:57 +00001570 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1571 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001572
Chris Lattner638402b2007-02-28 07:00:42 +00001573 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001574 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001575 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1576 ArgLocs, *DAG.getContext());
1577 CCInfo.AnalyzeFormalArguments(Ins, CCAssignFnForNode(CallConv));
Scott Michelfdc40a02009-02-17 22:15:04 +00001578
Chris Lattnerf39f7712007-02-28 05:46:49 +00001579 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001580 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001581 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1582 CCValAssign &VA = ArgLocs[i];
1583 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1584 // places.
1585 assert(VA.getValNo() != LastVal &&
1586 "Don't support value assigned to multiple locs yet");
1587 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001588
Chris Lattnerf39f7712007-02-28 05:46:49 +00001589 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001590 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001591 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001592 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001593 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001594 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001595 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001596 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001597 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001598 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001599 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001600 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1601 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001602 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001603 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001604 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001605 RC = X86::VR64RegisterClass;
1606 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001607 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001608
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001609 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001610 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001611
Chris Lattnerf39f7712007-02-28 05:46:49 +00001612 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1613 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1614 // right size.
1615 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001616 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001617 DAG.getValueType(VA.getValVT()));
1618 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001619 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001620 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001621 else if (VA.getLocInfo() == CCValAssign::BCvt)
Anton Korobeynikov6dde14b2009-08-03 08:14:14 +00001622 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001623
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001624 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001625 // Handle MMX values passed in XMM regs.
1626 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001627 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1628 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001629 } else
1630 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001631 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001632 } else {
1633 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001634 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001635 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001636
1637 // If value is passed via pointer - do a load.
1638 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001639 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1640 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001641
Dan Gohman98ca4f22009-08-05 01:29:28 +00001642 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001643 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001644
Dan Gohman61a92132008-04-21 23:59:07 +00001645 // The x86-64 ABI for returning structs by value requires that we copy
1646 // the sret argument into %rax for the return. Save the argument into
1647 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001648 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001649 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1650 unsigned Reg = FuncInfo->getSRetReturnReg();
1651 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001652 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001653 FuncInfo->setSRetReturnReg(Reg);
1654 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001655 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001656 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001657 }
1658
Chris Lattnerf39f7712007-02-28 05:46:49 +00001659 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001660 // Align stack specially for tail calls.
1661 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001662 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001663
Evan Cheng1bc78042006-04-26 01:20:17 +00001664 // If the function takes variable number of arguments, make a frame index for
1665 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001666 if (isVarArg) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001667 if (!IsWin64 && (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1668 CallConv != CallingConv::X86_ThisCall))) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001669 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001670 }
1671 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001672 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1673
1674 // FIXME: We should really autogenerate these arrays
1675 static const unsigned GPR64ArgRegsWin64[] = {
1676 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001677 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001678 static const unsigned GPR64ArgRegs64Bit[] = {
1679 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1680 };
1681 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001682 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1683 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1684 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001685 const unsigned *GPR64ArgRegs;
1686 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001687
1688 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001689 // The XMM registers which might contain var arg parameters are shadowed
1690 // in their paired GPR. So we only need to save the GPR to their home
1691 // slots.
1692 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001693 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001694 } else {
1695 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1696 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001697
1698 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001699 }
1700 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1701 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001702
Devang Patel578efa92009-06-05 21:57:13 +00001703 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Evan Chengc7ce29b2009-02-13 22:36:38 +00001704 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001705 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001706 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001707 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001708 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasSSE1())
Torok Edwin3f142c32009-02-01 18:15:56 +00001709 // Kernel mode asks for SSE to be disabled, so don't push them
1710 // on the stack.
1711 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001712
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001713 if (IsWin64) {
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001714 const TargetFrameInfo &TFI = *getTargetMachine().getFrameInfo();
1715 // Get to the caller-allocated home save location. Add 8 to account
1716 // for the return address.
1717 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001718 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001719 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001720 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
1721 } else {
1722 // For X86-64, if there are vararg parameters that are passed via
1723 // registers, then we must store them to their spots on the stack so they
1724 // may be loaded by deferencing the result of va_next.
1725 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1726 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1727 FuncInfo->setRegSaveFrameIndex(
1728 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001729 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001730 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001731
Gordon Henriksen86737662008-01-05 16:56:59 +00001732 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001733 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001734 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1735 getPointerTy());
1736 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001737 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001738 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1739 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001740 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
1741 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001742 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001743 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001744 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001745 MachinePointerInfo::getFixedStack(
1746 FuncInfo->getRegSaveFrameIndex(), Offset),
1747 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001748 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001749 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001750 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001751
Dan Gohmanface41a2009-08-16 21:24:25 +00001752 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1753 // Now store the XMM (fp + vector) parameter registers.
1754 SmallVector<SDValue, 11> SaveXMMOps;
1755 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001756
Dan Gohmanface41a2009-08-16 21:24:25 +00001757 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
1758 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1759 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001760
Dan Gohman1e93df62010-04-17 14:41:14 +00001761 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1762 FuncInfo->getRegSaveFrameIndex()));
1763 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1764 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001765
Dan Gohmanface41a2009-08-16 21:24:25 +00001766 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001767 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Dan Gohmanface41a2009-08-16 21:24:25 +00001768 X86::VR128RegisterClass);
1769 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1770 SaveXMMOps.push_back(Val);
1771 }
1772 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1773 MVT::Other,
1774 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001775 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001776
1777 if (!MemOps.empty())
1778 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1779 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001780 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001781 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001782
Gordon Henriksen86737662008-01-05 16:56:59 +00001783 // Some CCs need callee pop.
Dan Gohman4d3d6e12010-05-27 18:43:40 +00001784 if (Subtarget->IsCalleePop(isVarArg, CallConv)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001785 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001786 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001787 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001788 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001789 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001790 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001791 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001792
Gordon Henriksen86737662008-01-05 16:56:59 +00001793 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001794 // RegSaveFrameIndex is X86-64 only.
1795 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001796 if (CallConv == CallingConv::X86_FastCall ||
1797 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001798 // fastcc functions can't have varargs.
1799 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001800 }
Evan Cheng25caf632006-05-23 21:06:34 +00001801
Dan Gohman98ca4f22009-08-05 01:29:28 +00001802 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001803}
1804
Dan Gohman475871a2008-07-27 21:46:04 +00001805SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001806X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1807 SDValue StackPtr, SDValue Arg,
1808 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001809 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001810 ISD::ArgFlagsTy Flags) const {
Anton Korobeynikovc7c62bb2010-09-02 22:31:32 +00001811 const unsigned FirstStackArgOffset = (Subtarget->isTargetWin64() ? 32 : 0);
1812 unsigned LocMemOffset = FirstStackArgOffset + VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001813 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001814 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001815 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001816 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001817
1818 return DAG.getStore(Chain, dl, Arg, PtrOff,
1819 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001820 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001821}
1822
Bill Wendling64e87322009-01-16 19:25:27 +00001823/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001824/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001825SDValue
1826X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001827 SDValue &OutRetAddr, SDValue Chain,
1828 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001829 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001830 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001831 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001832 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001833
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001834 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001835 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1836 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001837 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001838}
1839
1840/// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1841/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001842static SDValue
1843EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001844 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001845 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001846 // Store the return address to the appropriate stack slot.
1847 if (!FPDiff) return Chain;
1848 // Calculate the new stack slot for the return address.
1849 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001850 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001851 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001852 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001853 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001854 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001855 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001856 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001857 return Chain;
1858}
1859
Dan Gohman98ca4f22009-08-05 01:29:28 +00001860SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001861X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001862 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001863 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001864 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001865 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001866 const SmallVectorImpl<ISD::InputArg> &Ins,
1867 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001868 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001869 MachineFunction &MF = DAG.getMachineFunction();
1870 bool Is64Bit = Subtarget->is64Bit();
1871 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00001872 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001873
Evan Cheng5f941932010-02-05 02:21:12 +00001874 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00001875 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00001876 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1877 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001878 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00001879
1880 // Sibcalls are automatically detected tailcalls which do not require
1881 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00001882 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00001883 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00001884
1885 if (isTailCall)
1886 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00001887 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00001888
Chris Lattner29689432010-03-11 00:22:57 +00001889 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1890 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001891
Chris Lattner638402b2007-02-28 07:00:42 +00001892 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00001893 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001894 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1895 ArgLocs, *DAG.getContext());
1896 CCInfo.AnalyzeCallOperands(Outs, CCAssignFnForNode(CallConv));
Scott Michelfdc40a02009-02-17 22:15:04 +00001897
Chris Lattner423c5f42007-02-28 05:31:48 +00001898 // Get a count of how many bytes are to be pushed on the stack.
1899 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00001900 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00001901 // This is a sibcall. The memory operands are available in caller's
1902 // own caller's stack.
1903 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00001904 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00001905 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001906
Gordon Henriksen86737662008-01-05 16:56:59 +00001907 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00001908 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001909 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00001910 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00001911 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1912 FPDiff = NumBytesCallerPushed - NumBytes;
1913
1914 // Set the delta of movement of the returnaddr stackslot.
1915 // But only set if delta is greater than previous delta.
1916 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1917 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
1918 }
1919
Evan Chengf22f9b32010-02-06 03:28:46 +00001920 if (!IsSibcall)
1921 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001922
Dan Gohman475871a2008-07-27 21:46:04 +00001923 SDValue RetAddrFrIdx;
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001924 // Load return adress for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00001925 if (isTailCall && FPDiff)
1926 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
1927 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00001928
Dan Gohman475871a2008-07-27 21:46:04 +00001929 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1930 SmallVector<SDValue, 8> MemOpChains;
1931 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00001932
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001933 // Walk the register/memloc assignments, inserting copies/loads. In the case
1934 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00001935 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1936 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001937 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00001938 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00001939 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00001940 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00001941
Chris Lattner423c5f42007-02-28 05:31:48 +00001942 // Promote the value if needed.
1943 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001944 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00001945 case CCValAssign::Full: break;
1946 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001947 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001948 break;
1949 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001950 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001951 break;
1952 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001953 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
1954 // Special case: passing MMX values in XMM registers.
Owen Anderson825b72b2009-08-11 20:47:22 +00001955 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
1956 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
1957 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001958 } else
1959 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
1960 break;
1961 case CCValAssign::BCvt:
1962 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001963 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001964 case CCValAssign::Indirect: {
1965 // Store the argument.
1966 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00001967 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001968 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00001969 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001970 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001971 Arg = SpillSlot;
1972 break;
1973 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00001974 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001975
Chris Lattner423c5f42007-02-28 05:31:48 +00001976 if (VA.isRegLoc()) {
1977 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00001978 if (isVarArg && Subtarget->isTargetWin64()) {
1979 // Win64 ABI requires argument XMM reg to be copied to the corresponding
1980 // shadow reg if callee is a varargs function.
1981 unsigned ShadowReg = 0;
1982 switch (VA.getLocReg()) {
1983 case X86::XMM0: ShadowReg = X86::RCX; break;
1984 case X86::XMM1: ShadowReg = X86::RDX; break;
1985 case X86::XMM2: ShadowReg = X86::R8; break;
1986 case X86::XMM3: ShadowReg = X86::R9; break;
1987 }
1988 if (ShadowReg)
1989 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
1990 }
Evan Chengf22f9b32010-02-06 03:28:46 +00001991 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00001992 assert(VA.isMemLoc());
1993 if (StackPtr.getNode() == 0)
1994 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
1995 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
1996 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001997 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001998 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001999
Evan Cheng32fe1032006-05-25 00:59:30 +00002000 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002001 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002002 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002003
Evan Cheng347d5f72006-04-28 21:29:37 +00002004 // Build a sequence of copy-to-reg nodes chained together with token chain
2005 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002006 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002007 // Tail call byval lowering might overwrite argument registers so in case of
2008 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002009 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002010 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002011 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002012 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002013 InFlag = Chain.getValue(1);
2014 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002015
Chris Lattner88e1fd52009-07-09 04:24:46 +00002016 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002017 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2018 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002019 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002020 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2021 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002022 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002023 InFlag);
2024 InFlag = Chain.getValue(1);
2025 } else {
2026 // If we are tail calling and generating PIC/GOT style code load the
2027 // address of the callee into ECX. The value in ecx is used as target of
2028 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2029 // for tail calls on PIC/GOT architectures. Normally we would just put the
2030 // address of GOT into ebx and then call target@PLT. But for tail calls
2031 // ebx would be restored (since ebx is callee saved) before jumping to the
2032 // target@PLT.
2033
2034 // Note: The actual moving to ECX is done further down.
2035 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2036 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2037 !G->getGlobal()->hasProtectedVisibility())
2038 Callee = LowerGlobalAddress(Callee, DAG);
2039 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002040 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002041 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002042 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002043
Nate Begemanc8ea6732010-07-21 20:49:52 +00002044 if (Is64Bit && isVarArg && !Subtarget->isTargetWin64()) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002045 // From AMD64 ABI document:
2046 // For calls that may call functions that use varargs or stdargs
2047 // (prototype-less calls or calls to functions containing ellipsis (...) in
2048 // the declaration) %al is used as hidden argument to specify the number
2049 // of SSE registers used. The contents of %al do not need to match exactly
2050 // the number of registers, but must be an ubound on the number of SSE
2051 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002052
Gordon Henriksen86737662008-01-05 16:56:59 +00002053 // Count the number of XMM registers allocated.
2054 static const unsigned XMMArgRegs[] = {
2055 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2056 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2057 };
2058 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Scott Michelfdc40a02009-02-17 22:15:04 +00002059 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002060 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002061
Dale Johannesendd64c412009-02-04 00:33:20 +00002062 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002063 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002064 InFlag = Chain.getValue(1);
2065 }
2066
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002067
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002068 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002069 if (isTailCall) {
2070 // Force all the incoming stack arguments to be loaded from the stack
2071 // before any new outgoing arguments are stored to the stack, because the
2072 // outgoing stack slots may alias the incoming argument stack slots, and
2073 // the alias isn't otherwise explicit. This is slightly more conservative
2074 // than necessary, because it means that each store effectively depends
2075 // on every argument instead of just those arguments it would clobber.
2076 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2077
Dan Gohman475871a2008-07-27 21:46:04 +00002078 SmallVector<SDValue, 8> MemOpChains2;
2079 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002080 int FI = 0;
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002081 // Do not flag preceeding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002082 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002083 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002084 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2085 CCValAssign &VA = ArgLocs[i];
2086 if (VA.isRegLoc())
2087 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002088 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002089 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002090 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002091 // Create frame index.
2092 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002093 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002094 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002095 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002096
Duncan Sands276dcbd2008-03-21 09:14:45 +00002097 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002098 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002099 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002100 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002101 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002102 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002103 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002104
Dan Gohman98ca4f22009-08-05 01:29:28 +00002105 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2106 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002107 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002108 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002109 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002110 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002111 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002112 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002113 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002114 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002115 }
2116 }
2117
2118 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002119 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002120 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002121
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002122 // Copy arguments to their registers.
2123 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002124 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002125 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002126 InFlag = Chain.getValue(1);
2127 }
Dan Gohman475871a2008-07-27 21:46:04 +00002128 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002129
Gordon Henriksen86737662008-01-05 16:56:59 +00002130 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002131 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002132 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002133 }
2134
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002135 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2136 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2137 // In the 64-bit large code model, we have to make all calls
2138 // through a register, since the call instruction's 32-bit
2139 // pc-relative offset may not be large enough to hold the whole
2140 // address.
2141 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002142 // If the callee is a GlobalAddress node (quite common, every direct call
2143 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2144 // it.
2145
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002146 // We should use extra load for direct calls to dllimported functions in
2147 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002148 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002149 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002150 unsigned char OpFlags = 0;
Eric Christopherfd179292009-08-27 18:07:15 +00002151
Chris Lattner48a7d022009-07-09 05:02:21 +00002152 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2153 // external symbols most go through the PLT in PIC mode. If the symbol
2154 // has hidden or protected visibility, or if it is static or local, then
2155 // we don't need to use the PLT - we can directly call it.
2156 if (Subtarget->isTargetELF() &&
2157 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002158 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002159 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002160 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002161 (GV->isDeclaration() || GV->isWeakForLinker()) &&
2162 Subtarget->getDarwinVers() < 9) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002163 // PC-relative references to external symbols should go through $stub,
2164 // unless we're building with the leopard linker or later, which
2165 // automatically synthesizes these stubs.
2166 OpFlags = X86II::MO_DARWIN_STUB;
2167 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002168
Devang Patel0d881da2010-07-06 22:08:15 +00002169 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002170 G->getOffset(), OpFlags);
2171 }
Bill Wendling056292f2008-09-16 21:48:12 +00002172 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002173 unsigned char OpFlags = 0;
2174
2175 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to external
2176 // symbols should go through the PLT.
2177 if (Subtarget->isTargetELF() &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002178 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002179 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002180 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002181 Subtarget->getDarwinVers() < 9) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002182 // PC-relative references to external symbols should go through $stub,
2183 // unless we're building with the leopard linker or later, which
2184 // automatically synthesizes these stubs.
2185 OpFlags = X86II::MO_DARWIN_STUB;
2186 }
Eric Christopherfd179292009-08-27 18:07:15 +00002187
Chris Lattner48a7d022009-07-09 05:02:21 +00002188 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2189 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002190 }
2191
Chris Lattnerd96d0722007-02-25 06:40:16 +00002192 // Returns a chain & a flag for retval copy to use.
Owen Anderson825b72b2009-08-11 20:47:22 +00002193 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00002194 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002195
Evan Chengf22f9b32010-02-06 03:28:46 +00002196 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002197 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2198 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002199 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002200 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002201
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002202 Ops.push_back(Chain);
2203 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002204
Dan Gohman98ca4f22009-08-05 01:29:28 +00002205 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002206 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002207
Gordon Henriksen86737662008-01-05 16:56:59 +00002208 // Add argument registers to the end of the list so that they are known live
2209 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002210 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2211 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2212 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002213
Evan Cheng586ccac2008-03-18 23:36:35 +00002214 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002215 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002216 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2217
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002218 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
2219 if (Is64Bit && isVarArg && !Subtarget->isTargetWin64())
Owen Anderson825b72b2009-08-11 20:47:22 +00002220 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002221
Gabor Greifba36cb52008-08-28 21:40:38 +00002222 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002223 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002224
Dan Gohman98ca4f22009-08-05 01:29:28 +00002225 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002226 // We used to do:
2227 //// If this is the first return lowered for this function, add the regs
2228 //// to the liveout set for the function.
2229 // This isn't right, although it's probably harmless on x86; liveouts
2230 // should be computed from returns not tail calls. Consider a void
2231 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002232 return DAG.getNode(X86ISD::TC_RETURN, dl,
2233 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002234 }
2235
Dale Johannesenace16102009-02-03 19:33:06 +00002236 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002237 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002238
Chris Lattner2d297092006-05-23 18:50:38 +00002239 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002240 unsigned NumBytesForCalleeToPush;
Dan Gohman4d3d6e12010-05-27 18:43:40 +00002241 if (Subtarget->IsCalleePop(isVarArg, CallConv))
Gordon Henriksen86737662008-01-05 16:56:59 +00002242 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002243 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002244 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002245 // pops the hidden struct pointer, so we have to push it back.
2246 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002247 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002248 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002249 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002250
Gordon Henriksenae636f82008-01-03 16:47:34 +00002251 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002252 if (!IsSibcall) {
2253 Chain = DAG.getCALLSEQ_END(Chain,
2254 DAG.getIntPtrConstant(NumBytes, true),
2255 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2256 true),
2257 InFlag);
2258 InFlag = Chain.getValue(1);
2259 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002260
Chris Lattner3085e152007-02-25 08:59:22 +00002261 // Handle result values, copying them out of physregs into vregs that we
2262 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002263 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2264 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002265}
2266
Evan Cheng25ab6902006-09-08 06:48:29 +00002267
2268//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002269// Fast Calling Convention (tail call) implementation
2270//===----------------------------------------------------------------------===//
2271
2272// Like std call, callee cleans arguments, convention except that ECX is
2273// reserved for storing the tail called function address. Only 2 registers are
2274// free for argument passing (inreg). Tail call optimization is performed
2275// provided:
2276// * tailcallopt is enabled
2277// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002278// On X86_64 architecture with GOT-style position independent code only local
2279// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002280// To keep the stack aligned according to platform abi the function
2281// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2282// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002283// If a tail called function callee has more arguments than the caller the
2284// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002285// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002286// original REtADDR, but before the saved framepointer or the spilled registers
2287// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2288// stack layout:
2289// arg1
2290// arg2
2291// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002292// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002293// move area ]
2294// (possible EBP)
2295// ESI
2296// EDI
2297// local1 ..
2298
2299/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2300/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002301unsigned
2302X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2303 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002304 MachineFunction &MF = DAG.getMachineFunction();
2305 const TargetMachine &TM = MF.getTarget();
2306 const TargetFrameInfo &TFI = *TM.getFrameInfo();
2307 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002308 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002309 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002310 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002311 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2312 // Number smaller than 12 so just add the difference.
2313 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2314 } else {
2315 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002316 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002317 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002318 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002319 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002320}
2321
Evan Cheng5f941932010-02-05 02:21:12 +00002322/// MatchingStackOffset - Return true if the given stack call argument is
2323/// already available in the same position (relatively) of the caller's
2324/// incoming argument stack.
2325static
2326bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2327 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2328 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002329 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2330 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002331 if (Arg.getOpcode() == ISD::CopyFromReg) {
2332 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
2333 if (!VR || TargetRegisterInfo::isPhysicalRegister(VR))
2334 return false;
2335 MachineInstr *Def = MRI->getVRegDef(VR);
2336 if (!Def)
2337 return false;
2338 if (!Flags.isByVal()) {
2339 if (!TII->isLoadFromStackSlot(Def, FI))
2340 return false;
2341 } else {
2342 unsigned Opcode = Def->getOpcode();
2343 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2344 Def->getOperand(1).isFI()) {
2345 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002346 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002347 } else
2348 return false;
2349 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002350 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2351 if (Flags.isByVal())
2352 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002353 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002354 // define @foo(%struct.X* %A) {
2355 // tail call @bar(%struct.X* byval %A)
2356 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002357 return false;
2358 SDValue Ptr = Ld->getBasePtr();
2359 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2360 if (!FINode)
2361 return false;
2362 FI = FINode->getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002363 } else
2364 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002365
Evan Cheng4cae1332010-03-05 08:38:04 +00002366 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002367 if (!MFI->isFixedObjectIndex(FI))
2368 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002369 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002370}
2371
Dan Gohman98ca4f22009-08-05 01:29:28 +00002372/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2373/// for tail call optimization. Targets which want to do tail call
2374/// optimization should implement this function.
2375bool
2376X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002377 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002378 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002379 bool isCalleeStructRet,
2380 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002381 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002382 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002383 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002384 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002385 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002386 CalleeCC != CallingConv::C)
2387 return false;
2388
Evan Cheng7096ae42010-01-29 06:45:59 +00002389 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002390 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002391 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002392 CallingConv::ID CallerCC = CallerF->getCallingConv();
2393 bool CCMatch = CallerCC == CalleeCC;
2394
Dan Gohman1797ed52010-02-08 20:27:50 +00002395 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002396 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002397 return true;
2398 return false;
2399 }
2400
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002401 // Look for obvious safe cases to perform tail call optimization that do not
2402 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002403
Evan Cheng2c12cb42010-03-26 16:26:03 +00002404 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2405 // emit a special epilogue.
2406 if (RegInfo->needsStackRealignment(MF))
2407 return false;
2408
Eric Christopher90eb4022010-07-22 00:26:08 +00002409 // Do not sibcall optimize vararg calls unless the call site is not passing
2410 // any arguments.
Evan Cheng3c262ee2010-03-26 02:13:13 +00002411 if (isVarArg && !Outs.empty())
Evan Cheng843bd692010-01-31 06:44:49 +00002412 return false;
2413
Evan Chenga375d472010-03-15 18:54:48 +00002414 // Also avoid sibcall optimization if either caller or callee uses struct
2415 // return semantics.
2416 if (isCalleeStructRet || isCallerStructRet)
2417 return false;
2418
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002419 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2420 // Therefore if it's not used by the call it is not safe to optimize this into
2421 // a sibcall.
2422 bool Unused = false;
2423 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2424 if (!Ins[i].Used) {
2425 Unused = true;
2426 break;
2427 }
2428 }
2429 if (Unused) {
2430 SmallVector<CCValAssign, 16> RVLocs;
2431 CCState CCInfo(CalleeCC, false, getTargetMachine(),
2432 RVLocs, *DAG.getContext());
2433 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002434 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002435 CCValAssign &VA = RVLocs[i];
2436 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2437 return false;
2438 }
2439 }
2440
Evan Cheng13617962010-04-30 01:12:32 +00002441 // If the calling conventions do not match, then we'd better make sure the
2442 // results are returned in the same way as what the caller expects.
2443 if (!CCMatch) {
2444 SmallVector<CCValAssign, 16> RVLocs1;
2445 CCState CCInfo1(CalleeCC, false, getTargetMachine(),
2446 RVLocs1, *DAG.getContext());
2447 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2448
2449 SmallVector<CCValAssign, 16> RVLocs2;
2450 CCState CCInfo2(CallerCC, false, getTargetMachine(),
2451 RVLocs2, *DAG.getContext());
2452 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2453
2454 if (RVLocs1.size() != RVLocs2.size())
2455 return false;
2456 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2457 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2458 return false;
2459 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2460 return false;
2461 if (RVLocs1[i].isRegLoc()) {
2462 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2463 return false;
2464 } else {
2465 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2466 return false;
2467 }
2468 }
2469 }
2470
Evan Chenga6bff982010-01-30 01:22:00 +00002471 // If the callee takes no arguments then go on to check the results of the
2472 // call.
2473 if (!Outs.empty()) {
2474 // Check if stack adjustment is needed. For now, do not do this if any
2475 // argument is passed on the stack.
2476 SmallVector<CCValAssign, 16> ArgLocs;
2477 CCState CCInfo(CalleeCC, isVarArg, getTargetMachine(),
2478 ArgLocs, *DAG.getContext());
2479 CCInfo.AnalyzeCallOperands(Outs, CCAssignFnForNode(CalleeCC));
Evan Chengb2c92902010-02-02 02:22:50 +00002480 if (CCInfo.getNextStackOffset()) {
2481 MachineFunction &MF = DAG.getMachineFunction();
2482 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2483 return false;
2484 if (Subtarget->isTargetWin64())
2485 // Win64 ABI has additional complications.
2486 return false;
2487
2488 // Check if the arguments are already laid out in the right way as
2489 // the caller's fixed stack objects.
2490 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002491 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2492 const X86InstrInfo *TII =
2493 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002494 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2495 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002496 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002497 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002498 if (VA.getLocInfo() == CCValAssign::Indirect)
2499 return false;
2500 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002501 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2502 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002503 return false;
2504 }
2505 }
2506 }
Evan Cheng9c044672010-05-29 01:35:22 +00002507
2508 // If the tailcall address may be in a register, then make sure it's
2509 // possible to register allocate for it. In 32-bit, the call address can
2510 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002511 // callee-saved registers are restored. These happen to be the same
2512 // registers used to pass 'inreg' arguments so watch out for those.
2513 if (!Subtarget->is64Bit() &&
2514 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002515 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002516 unsigned NumInRegs = 0;
2517 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2518 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002519 if (!VA.isRegLoc())
2520 continue;
2521 unsigned Reg = VA.getLocReg();
2522 switch (Reg) {
2523 default: break;
2524 case X86::EAX: case X86::EDX: case X86::ECX:
2525 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002526 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002527 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002528 }
2529 }
2530 }
Evan Chenga6bff982010-01-30 01:22:00 +00002531 }
Evan Chengb1712452010-01-27 06:25:16 +00002532
Evan Cheng86809cc2010-02-03 03:28:02 +00002533 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002534}
2535
Dan Gohman3df24e62008-09-03 23:12:08 +00002536FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002537X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2538 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002539}
2540
2541
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002542//===----------------------------------------------------------------------===//
2543// Other Lowering Hooks
2544//===----------------------------------------------------------------------===//
2545
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002546static bool MayFoldLoad(SDValue Op) {
2547 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2548}
2549
2550static bool MayFoldIntoStore(SDValue Op) {
2551 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2552}
2553
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002554static bool isTargetShuffle(unsigned Opcode) {
2555 switch(Opcode) {
2556 default: return false;
2557 case X86ISD::PSHUFD:
2558 case X86ISD::PSHUFHW:
2559 case X86ISD::PSHUFLW:
2560 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002561 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002562 case X86ISD::SHUFPS:
2563 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002564 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002565 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002566 case X86ISD::MOVLPS:
2567 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002568 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002569 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002570 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002571 case X86ISD::MOVSS:
2572 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002573 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002574 case X86ISD::UNPCKLPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002575 case X86ISD::PUNPCKLWD:
2576 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002577 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002578 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002579 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002580 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002581 case X86ISD::PUNPCKHWD:
2582 case X86ISD::PUNPCKHBW:
2583 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002584 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002585 return true;
2586 }
2587 return false;
2588}
2589
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002590static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002591 SDValue V1, SelectionDAG &DAG) {
2592 switch(Opc) {
2593 default: llvm_unreachable("Unknown x86 shuffle node");
2594 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002595 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002596 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002597 return DAG.getNode(Opc, dl, VT, V1);
2598 }
2599
2600 return SDValue();
2601}
2602
2603static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002604 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002605 switch(Opc) {
2606 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002607 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002608 case X86ISD::PSHUFHW:
2609 case X86ISD::PSHUFLW:
2610 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2611 }
2612
2613 return SDValue();
2614}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002615
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002616static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2617 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2618 switch(Opc) {
2619 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002620 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002621 case X86ISD::SHUFPD:
2622 case X86ISD::SHUFPS:
2623 return DAG.getNode(Opc, dl, VT, V1, V2,
2624 DAG.getConstant(TargetMask, MVT::i8));
2625 }
2626 return SDValue();
2627}
2628
2629static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2630 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2631 switch(Opc) {
2632 default: llvm_unreachable("Unknown x86 shuffle node");
2633 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002634 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002635 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002636 case X86ISD::MOVLPS:
2637 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002638 case X86ISD::MOVSS:
2639 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002640 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002641 case X86ISD::UNPCKLPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002642 case X86ISD::PUNPCKLWD:
2643 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002644 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002645 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002646 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002647 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002648 case X86ISD::PUNPCKHWD:
2649 case X86ISD::PUNPCKHBW:
2650 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002651 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002652 return DAG.getNode(Opc, dl, VT, V1, V2);
2653 }
2654 return SDValue();
2655}
2656
Dan Gohmand858e902010-04-17 15:26:15 +00002657SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002658 MachineFunction &MF = DAG.getMachineFunction();
2659 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2660 int ReturnAddrIndex = FuncInfo->getRAIndex();
2661
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002662 if (ReturnAddrIndex == 0) {
2663 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002664 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002665 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002666 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002667 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002668 }
2669
Evan Cheng25ab6902006-09-08 06:48:29 +00002670 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002671}
2672
2673
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002674bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2675 bool hasSymbolicDisplacement) {
2676 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002677 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002678 return false;
2679
2680 // If we don't have a symbolic displacement - we don't have any extra
2681 // restrictions.
2682 if (!hasSymbolicDisplacement)
2683 return true;
2684
2685 // FIXME: Some tweaks might be needed for medium code model.
2686 if (M != CodeModel::Small && M != CodeModel::Kernel)
2687 return false;
2688
2689 // For small code model we assume that latest object is 16MB before end of 31
2690 // bits boundary. We may also accept pretty large negative constants knowing
2691 // that all objects are in the positive half of address space.
2692 if (M == CodeModel::Small && Offset < 16*1024*1024)
2693 return true;
2694
2695 // For kernel code model we know that all object resist in the negative half
2696 // of 32bits address space. We may not accept negative offsets, since they may
2697 // be just off and we may accept pretty large positive ones.
2698 if (M == CodeModel::Kernel && Offset > 0)
2699 return true;
2700
2701 return false;
2702}
2703
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002704/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2705/// specific condition code, returning the condition code and the LHS/RHS of the
2706/// comparison to make.
2707static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2708 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002709 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002710 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2711 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2712 // X > -1 -> X == 0, jump !sign.
2713 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002714 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002715 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2716 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002717 return X86::COND_S;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002718 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002719 // X < 1 -> X <= 0
2720 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002721 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002722 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002723 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002724
Evan Chengd9558e02006-01-06 00:43:03 +00002725 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002726 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002727 case ISD::SETEQ: return X86::COND_E;
2728 case ISD::SETGT: return X86::COND_G;
2729 case ISD::SETGE: return X86::COND_GE;
2730 case ISD::SETLT: return X86::COND_L;
2731 case ISD::SETLE: return X86::COND_LE;
2732 case ISD::SETNE: return X86::COND_NE;
2733 case ISD::SETULT: return X86::COND_B;
2734 case ISD::SETUGT: return X86::COND_A;
2735 case ISD::SETULE: return X86::COND_BE;
2736 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002737 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002738 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002739
Chris Lattner4c78e022008-12-23 23:42:27 +00002740 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002741
Chris Lattner4c78e022008-12-23 23:42:27 +00002742 // If LHS is a foldable load, but RHS is not, flip the condition.
2743 if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) &&
2744 !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) {
2745 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2746 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002747 }
2748
Chris Lattner4c78e022008-12-23 23:42:27 +00002749 switch (SetCCOpcode) {
2750 default: break;
2751 case ISD::SETOLT:
2752 case ISD::SETOLE:
2753 case ISD::SETUGT:
2754 case ISD::SETUGE:
2755 std::swap(LHS, RHS);
2756 break;
2757 }
2758
2759 // On a floating point condition, the flags are set as follows:
2760 // ZF PF CF op
2761 // 0 | 0 | 0 | X > Y
2762 // 0 | 0 | 1 | X < Y
2763 // 1 | 0 | 0 | X == Y
2764 // 1 | 1 | 1 | unordered
2765 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002766 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002767 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002768 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002769 case ISD::SETOLT: // flipped
2770 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002771 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002772 case ISD::SETOLE: // flipped
2773 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002774 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002775 case ISD::SETUGT: // flipped
2776 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002777 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002778 case ISD::SETUGE: // flipped
2779 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002780 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002781 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002782 case ISD::SETNE: return X86::COND_NE;
2783 case ISD::SETUO: return X86::COND_P;
2784 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00002785 case ISD::SETOEQ:
2786 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00002787 }
Evan Chengd9558e02006-01-06 00:43:03 +00002788}
2789
Evan Cheng4a460802006-01-11 00:33:36 +00002790/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2791/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002792/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002793static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002794 switch (X86CC) {
2795 default:
2796 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00002797 case X86::COND_B:
2798 case X86::COND_BE:
2799 case X86::COND_E:
2800 case X86::COND_P:
2801 case X86::COND_A:
2802 case X86::COND_AE:
2803 case X86::COND_NE:
2804 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00002805 return true;
2806 }
2807}
2808
Evan Chengeb2f9692009-10-27 19:56:55 +00002809/// isFPImmLegal - Returns true if the target can instruction select the
2810/// specified FP immediate natively. If false, the legalizer will
2811/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00002812bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00002813 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
2814 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
2815 return true;
2816 }
2817 return false;
2818}
2819
Nate Begeman9008ca62009-04-27 18:41:29 +00002820/// isUndefOrInRange - Return true if Val is undef or if its value falls within
2821/// the specified range (L, H].
2822static bool isUndefOrInRange(int Val, int Low, int Hi) {
2823 return (Val < 0) || (Val >= Low && Val < Hi);
2824}
2825
2826/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
2827/// specified value.
2828static bool isUndefOrEqual(int Val, int CmpVal) {
2829 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00002830 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00002831 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00002832}
2833
Nate Begeman9008ca62009-04-27 18:41:29 +00002834/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
2835/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
2836/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00002837static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00002838 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00002839 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00002840 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00002841 return (Mask[0] < 2 && Mask[1] < 2);
2842 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002843}
2844
Nate Begeman9008ca62009-04-27 18:41:29 +00002845bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002846 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002847 N->getMask(M);
2848 return ::isPSHUFDMask(M, N->getValueType(0));
2849}
Evan Cheng0188ecb2006-03-22 18:59:22 +00002850
Nate Begeman9008ca62009-04-27 18:41:29 +00002851/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
2852/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00002853static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002854 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00002855 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002856
Nate Begeman9008ca62009-04-27 18:41:29 +00002857 // Lower quadword copied in order or undef.
2858 for (int i = 0; i != 4; ++i)
2859 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00002860 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002861
Evan Cheng506d3df2006-03-29 23:07:14 +00002862 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00002863 for (int i = 4; i != 8; ++i)
2864 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00002865 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002866
Evan Cheng506d3df2006-03-29 23:07:14 +00002867 return true;
2868}
2869
Nate Begeman9008ca62009-04-27 18:41:29 +00002870bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002871 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002872 N->getMask(M);
2873 return ::isPSHUFHWMask(M, N->getValueType(0));
2874}
Evan Cheng506d3df2006-03-29 23:07:14 +00002875
Nate Begeman9008ca62009-04-27 18:41:29 +00002876/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
2877/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00002878static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002879 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00002880 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002881
Rafael Espindola15684b22009-04-24 12:40:33 +00002882 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00002883 for (int i = 4; i != 8; ++i)
2884 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00002885 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002886
Rafael Espindola15684b22009-04-24 12:40:33 +00002887 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00002888 for (int i = 0; i != 4; ++i)
2889 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00002890 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002891
Rafael Espindola15684b22009-04-24 12:40:33 +00002892 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00002893}
2894
Nate Begeman9008ca62009-04-27 18:41:29 +00002895bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002896 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002897 N->getMask(M);
2898 return ::isPSHUFLWMask(M, N->getValueType(0));
2899}
2900
Nate Begemana09008b2009-10-19 02:17:23 +00002901/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
2902/// is suitable for input to PALIGNR.
2903static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
2904 bool hasSSSE3) {
2905 int i, e = VT.getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00002906
Nate Begemana09008b2009-10-19 02:17:23 +00002907 // Do not handle v2i64 / v2f64 shuffles with palignr.
2908 if (e < 4 || !hasSSSE3)
2909 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002910
Nate Begemana09008b2009-10-19 02:17:23 +00002911 for (i = 0; i != e; ++i)
2912 if (Mask[i] >= 0)
2913 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002914
Nate Begemana09008b2009-10-19 02:17:23 +00002915 // All undef, not a palignr.
2916 if (i == e)
2917 return false;
2918
2919 // Determine if it's ok to perform a palignr with only the LHS, since we
2920 // don't have access to the actual shuffle elements to see if RHS is undef.
2921 bool Unary = Mask[i] < (int)e;
2922 bool NeedsUnary = false;
2923
2924 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002925
Nate Begemana09008b2009-10-19 02:17:23 +00002926 // Check the rest of the elements to see if they are consecutive.
2927 for (++i; i != e; ++i) {
2928 int m = Mask[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00002929 if (m < 0)
Nate Begemana09008b2009-10-19 02:17:23 +00002930 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002931
Nate Begemana09008b2009-10-19 02:17:23 +00002932 Unary = Unary && (m < (int)e);
2933 NeedsUnary = NeedsUnary || (m < s);
2934
2935 if (NeedsUnary && !Unary)
2936 return false;
2937 if (Unary && m != ((s+i) & (e-1)))
2938 return false;
2939 if (!Unary && m != (s+i))
2940 return false;
2941 }
2942 return true;
2943}
2944
2945bool X86::isPALIGNRMask(ShuffleVectorSDNode *N) {
2946 SmallVector<int, 8> M;
2947 N->getMask(M);
2948 return ::isPALIGNRMask(M, N->getValueType(0), true);
2949}
2950
Evan Cheng14aed5e2006-03-24 01:18:28 +00002951/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
2952/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersone50ed302009-08-10 22:56:29 +00002953static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002954 int NumElems = VT.getVectorNumElements();
2955 if (NumElems != 2 && NumElems != 4)
2956 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002957
Nate Begeman9008ca62009-04-27 18:41:29 +00002958 int Half = NumElems / 2;
2959 for (int i = 0; i < Half; ++i)
2960 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002961 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002962 for (int i = Half; i < NumElems; ++i)
2963 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002964 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002965
Evan Cheng14aed5e2006-03-24 01:18:28 +00002966 return true;
2967}
2968
Nate Begeman9008ca62009-04-27 18:41:29 +00002969bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
2970 SmallVector<int, 8> M;
2971 N->getMask(M);
2972 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00002973}
2974
Evan Cheng213d2cf2007-05-17 18:45:50 +00002975/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00002976/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
2977/// half elements to come from vector 1 (which would equal the dest.) and
2978/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00002979static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002980 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00002981
2982 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00002983 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002984
Nate Begeman9008ca62009-04-27 18:41:29 +00002985 int Half = NumElems / 2;
2986 for (int i = 0; i < Half; ++i)
2987 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002988 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002989 for (int i = Half; i < NumElems; ++i)
2990 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002991 return false;
2992 return true;
2993}
2994
Nate Begeman9008ca62009-04-27 18:41:29 +00002995static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
2996 SmallVector<int, 8> M;
2997 N->getMask(M);
2998 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00002999}
3000
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003001/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3002/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003003bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
3004 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003005 return false;
3006
Evan Cheng2064a2b2006-03-28 06:50:32 +00003007 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003008 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3009 isUndefOrEqual(N->getMaskElt(1), 7) &&
3010 isUndefOrEqual(N->getMaskElt(2), 2) &&
3011 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003012}
3013
Nate Begeman0b10b912009-11-07 23:17:15 +00003014/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3015/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3016/// <2, 3, 2, 3>
3017bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
3018 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00003019
Nate Begeman0b10b912009-11-07 23:17:15 +00003020 if (NumElems != 4)
3021 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003022
Nate Begeman0b10b912009-11-07 23:17:15 +00003023 return isUndefOrEqual(N->getMaskElt(0), 2) &&
3024 isUndefOrEqual(N->getMaskElt(1), 3) &&
3025 isUndefOrEqual(N->getMaskElt(2), 2) &&
3026 isUndefOrEqual(N->getMaskElt(3), 3);
3027}
3028
Evan Cheng5ced1d82006-04-06 23:23:56 +00003029/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3030/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003031bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3032 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003033
Evan Cheng5ced1d82006-04-06 23:23:56 +00003034 if (NumElems != 2 && NumElems != 4)
3035 return false;
3036
Evan Chengc5cdff22006-04-07 21:53:05 +00003037 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003038 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003039 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003040
Evan Chengc5cdff22006-04-07 21:53:05 +00003041 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003042 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003043 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003044
3045 return true;
3046}
3047
Nate Begeman0b10b912009-11-07 23:17:15 +00003048/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3049/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3050bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003051 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003052
Evan Cheng5ced1d82006-04-06 23:23:56 +00003053 if (NumElems != 2 && NumElems != 4)
3054 return false;
3055
Evan Chengc5cdff22006-04-07 21:53:05 +00003056 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003057 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003058 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003059
Nate Begeman9008ca62009-04-27 18:41:29 +00003060 for (unsigned i = 0; i < NumElems/2; ++i)
3061 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003062 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003063
3064 return true;
3065}
3066
Evan Cheng0038e592006-03-28 00:39:58 +00003067/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3068/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003069static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003070 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003071 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003072 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng0038e592006-03-28 00:39:58 +00003073 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003074
Nate Begeman9008ca62009-04-27 18:41:29 +00003075 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3076 int BitI = Mask[i];
3077 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00003078 if (!isUndefOrEqual(BitI, j))
3079 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003080 if (V2IsSplat) {
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003081 if (!isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003082 return false;
3083 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003084 if (!isUndefOrEqual(BitI1, j + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003085 return false;
3086 }
Evan Cheng0038e592006-03-28 00:39:58 +00003087 }
Evan Cheng0038e592006-03-28 00:39:58 +00003088 return true;
3089}
3090
Nate Begeman9008ca62009-04-27 18:41:29 +00003091bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3092 SmallVector<int, 8> M;
3093 N->getMask(M);
3094 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003095}
3096
Evan Cheng4fcb9222006-03-28 02:43:26 +00003097/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3098/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003099static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003100 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003101 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003102 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003103 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003104
Nate Begeman9008ca62009-04-27 18:41:29 +00003105 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3106 int BitI = Mask[i];
3107 int BitI1 = Mask[i+1];
Chris Lattner5a88b832007-02-25 07:10:00 +00003108 if (!isUndefOrEqual(BitI, j + NumElts/2))
Evan Chengc5cdff22006-04-07 21:53:05 +00003109 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003110 if (V2IsSplat) {
Chris Lattner5a88b832007-02-25 07:10:00 +00003111 if (isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003112 return false;
3113 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003114 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003115 return false;
3116 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003117 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003118 return true;
3119}
3120
Nate Begeman9008ca62009-04-27 18:41:29 +00003121bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3122 SmallVector<int, 8> M;
3123 N->getMask(M);
3124 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003125}
3126
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003127/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3128/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3129/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003130static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003131 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003132 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003133 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003134
Nate Begeman9008ca62009-04-27 18:41:29 +00003135 for (int i = 0, j = 0; i != NumElems; i += 2, ++j) {
3136 int BitI = Mask[i];
3137 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00003138 if (!isUndefOrEqual(BitI, j))
3139 return false;
3140 if (!isUndefOrEqual(BitI1, j))
3141 return false;
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003142 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003143 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003144}
3145
Nate Begeman9008ca62009-04-27 18:41:29 +00003146bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3147 SmallVector<int, 8> M;
3148 N->getMask(M);
3149 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3150}
3151
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003152/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3153/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3154/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003155static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003156 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003157 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3158 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003159
Nate Begeman9008ca62009-04-27 18:41:29 +00003160 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3161 int BitI = Mask[i];
3162 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003163 if (!isUndefOrEqual(BitI, j))
3164 return false;
3165 if (!isUndefOrEqual(BitI1, j))
3166 return false;
3167 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003168 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003169}
3170
Nate Begeman9008ca62009-04-27 18:41:29 +00003171bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3172 SmallVector<int, 8> M;
3173 N->getMask(M);
3174 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3175}
3176
Evan Cheng017dcc62006-04-21 01:05:10 +00003177/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3178/// specifies a shuffle of elements that is suitable for input to MOVSS,
3179/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003180static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003181 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003182 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003183
3184 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003185
Nate Begeman9008ca62009-04-27 18:41:29 +00003186 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003187 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003188
Nate Begeman9008ca62009-04-27 18:41:29 +00003189 for (int i = 1; i < NumElts; ++i)
3190 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003191 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003192
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003193 return true;
3194}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003195
Nate Begeman9008ca62009-04-27 18:41:29 +00003196bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3197 SmallVector<int, 8> M;
3198 N->getMask(M);
3199 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003200}
3201
Evan Cheng017dcc62006-04-21 01:05:10 +00003202/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3203/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003204/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003205static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003206 bool V2IsSplat = false, bool V2IsUndef = false) {
3207 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003208 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003209 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003210
Nate Begeman9008ca62009-04-27 18:41:29 +00003211 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003212 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003213
Nate Begeman9008ca62009-04-27 18:41:29 +00003214 for (int i = 1; i < NumOps; ++i)
3215 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3216 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3217 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003218 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003219
Evan Cheng39623da2006-04-20 08:58:49 +00003220 return true;
3221}
3222
Nate Begeman9008ca62009-04-27 18:41:29 +00003223static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003224 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003225 SmallVector<int, 8> M;
3226 N->getMask(M);
3227 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003228}
3229
Evan Chengd9539472006-04-14 21:59:03 +00003230/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3231/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003232bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N) {
3233 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003234 return false;
3235
3236 // Expect 1, 1, 3, 3
Rafael Espindola15684b22009-04-24 12:40:33 +00003237 for (unsigned i = 0; i < 2; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003238 int Elt = N->getMaskElt(i);
3239 if (Elt >= 0 && Elt != 1)
3240 return false;
Rafael Espindola15684b22009-04-24 12:40:33 +00003241 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003242
3243 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003244 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003245 int Elt = N->getMaskElt(i);
3246 if (Elt >= 0 && Elt != 3)
3247 return false;
3248 if (Elt == 3)
3249 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003250 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003251 // Don't use movshdup if it can be done with a shufps.
Nate Begeman9008ca62009-04-27 18:41:29 +00003252 // FIXME: verify that matching u, u, 3, 3 is what we want.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003253 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003254}
3255
3256/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3257/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003258bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N) {
3259 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003260 return false;
3261
3262 // Expect 0, 0, 2, 2
Nate Begeman9008ca62009-04-27 18:41:29 +00003263 for (unsigned i = 0; i < 2; ++i)
3264 if (N->getMaskElt(i) > 0)
3265 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003266
3267 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003268 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003269 int Elt = N->getMaskElt(i);
3270 if (Elt >= 0 && Elt != 2)
3271 return false;
3272 if (Elt == 2)
3273 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003274 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003275 // Don't use movsldup if it can be done with a shufps.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003276 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003277}
3278
Evan Cheng0b457f02008-09-25 20:50:48 +00003279/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3280/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003281bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3282 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopherfd179292009-08-27 18:07:15 +00003283
Nate Begeman9008ca62009-04-27 18:41:29 +00003284 for (int i = 0; i < e; ++i)
3285 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003286 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003287 for (int i = 0; i < e; ++i)
3288 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003289 return false;
3290 return true;
3291}
3292
Evan Cheng63d33002006-03-22 08:01:21 +00003293/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003294/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003295unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003296 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3297 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3298
Evan Chengb9df0ca2006-03-22 02:53:00 +00003299 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3300 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003301 for (int i = 0; i < NumOperands; ++i) {
3302 int Val = SVOp->getMaskElt(NumOperands-i-1);
3303 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003304 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003305 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003306 if (i != NumOperands - 1)
3307 Mask <<= Shift;
3308 }
Evan Cheng63d33002006-03-22 08:01:21 +00003309 return Mask;
3310}
3311
Evan Cheng506d3df2006-03-29 23:07:14 +00003312/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003313/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003314unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003315 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003316 unsigned Mask = 0;
3317 // 8 nodes, but we only care about the last 4.
3318 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003319 int Val = SVOp->getMaskElt(i);
3320 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003321 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003322 if (i != 4)
3323 Mask <<= 2;
3324 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003325 return Mask;
3326}
3327
3328/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003329/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003330unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003331 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003332 unsigned Mask = 0;
3333 // 8 nodes, but we only care about the first 4.
3334 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003335 int Val = SVOp->getMaskElt(i);
3336 if (Val >= 0)
3337 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00003338 if (i != 0)
3339 Mask <<= 2;
3340 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003341 return Mask;
3342}
3343
Nate Begemana09008b2009-10-19 02:17:23 +00003344/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3345/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3346unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3347 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3348 EVT VVT = N->getValueType(0);
3349 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3350 int Val = 0;
3351
3352 unsigned i, e;
3353 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3354 Val = SVOp->getMaskElt(i);
3355 if (Val >= 0)
3356 break;
3357 }
3358 return (Val - i) * EltSize;
3359}
3360
Evan Cheng37b73872009-07-30 08:33:02 +00003361/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3362/// constant +0.0.
3363bool X86::isZeroNode(SDValue Elt) {
3364 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00003365 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00003366 (isa<ConstantFPSDNode>(Elt) &&
3367 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3368}
3369
Nate Begeman9008ca62009-04-27 18:41:29 +00003370/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3371/// their permute mask.
3372static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3373 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003374 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003375 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00003376 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00003377
Nate Begeman5a5ca152009-04-29 05:20:52 +00003378 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003379 int idx = SVOp->getMaskElt(i);
3380 if (idx < 0)
3381 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003382 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003383 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003384 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003385 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003386 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003387 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3388 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003389}
3390
Evan Cheng779ccea2007-12-07 21:30:01 +00003391/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3392/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00003393static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00003394 unsigned NumElems = VT.getVectorNumElements();
3395 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003396 int idx = Mask[i];
3397 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003398 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003399 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003400 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003401 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003402 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003403 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003404}
3405
Evan Cheng533a0aa2006-04-19 20:35:22 +00003406/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3407/// match movhlps. The lower half elements should come from upper half of
3408/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003409/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00003410static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
3411 if (Op->getValueType(0).getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00003412 return false;
3413 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003414 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003415 return false;
3416 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003417 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003418 return false;
3419 return true;
3420}
3421
Evan Cheng5ced1d82006-04-06 23:23:56 +00003422/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00003423/// is promoted to a vector. It also returns the LoadSDNode by reference if
3424/// required.
3425static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00003426 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3427 return false;
3428 N = N->getOperand(0).getNode();
3429 if (!ISD::isNON_EXTLoad(N))
3430 return false;
3431 if (LD)
3432 *LD = cast<LoadSDNode>(N);
3433 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003434}
3435
Evan Cheng533a0aa2006-04-19 20:35:22 +00003436/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3437/// match movlp{s|d}. The lower half elements should come from lower half of
3438/// V1 (and in order), and the upper half elements should come from the upper
3439/// half of V2 (and in order). And since V1 will become the source of the
3440/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003441static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3442 ShuffleVectorSDNode *Op) {
Evan Cheng466685d2006-10-09 20:57:25 +00003443 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003444 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00003445 // Is V2 is a vector load, don't do this transformation. We will try to use
3446 // load folding shufps op.
3447 if (ISD::isNON_EXTLoad(V2))
3448 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003449
Nate Begeman5a5ca152009-04-29 05:20:52 +00003450 unsigned NumElems = Op->getValueType(0).getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003451
Evan Cheng533a0aa2006-04-19 20:35:22 +00003452 if (NumElems != 2 && NumElems != 4)
3453 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003454 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003455 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003456 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003457 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003458 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003459 return false;
3460 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003461}
3462
Evan Cheng39623da2006-04-20 08:58:49 +00003463/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
3464/// all the same.
3465static bool isSplatVector(SDNode *N) {
3466 if (N->getOpcode() != ISD::BUILD_VECTOR)
3467 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003468
Dan Gohman475871a2008-07-27 21:46:04 +00003469 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00003470 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
3471 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003472 return false;
3473 return true;
3474}
3475
Evan Cheng213d2cf2007-05-17 18:45:50 +00003476/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00003477/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00003478/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00003479static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00003480 SDValue V1 = N->getOperand(0);
3481 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003482 unsigned NumElems = N->getValueType(0).getVectorNumElements();
3483 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003484 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003485 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003486 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00003487 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
3488 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003489 if (Opc != ISD::BUILD_VECTOR ||
3490 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00003491 return false;
3492 } else if (Idx >= 0) {
3493 unsigned Opc = V1.getOpcode();
3494 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
3495 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003496 if (Opc != ISD::BUILD_VECTOR ||
3497 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00003498 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00003499 }
3500 }
3501 return true;
3502}
3503
3504/// getZeroVector - Returns a vector of specified type with all zero elements.
3505///
Owen Andersone50ed302009-08-10 22:56:29 +00003506static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003507 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003508 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003509
Dale Johannesen0488fb62010-09-30 23:57:10 +00003510 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003511 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00003512 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003513 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003514 if (HasSSE2) { // SSE2
3515 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3516 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
3517 } else { // SSE1
3518 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
3519 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
3520 }
3521 } else if (VT.getSizeInBits() == 256) { // AVX
3522 // 256-bit logic and arithmetic instructions in AVX are
3523 // all floating-point, no support for integer ops. Default
3524 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00003525 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003526 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
3527 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00003528 }
Dale Johannesenace16102009-02-03 19:33:06 +00003529 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00003530}
3531
Chris Lattner8a594482007-11-25 00:24:49 +00003532/// getOnesVector - Returns a vector of specified type with all bits set.
3533///
Owen Andersone50ed302009-08-10 22:56:29 +00003534static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003535 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003536
Chris Lattner8a594482007-11-25 00:24:49 +00003537 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
3538 // type. This ensures they get CSE'd.
Owen Anderson825b72b2009-08-11 20:47:22 +00003539 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +00003540 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003541 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Dale Johannesenace16102009-02-03 19:33:06 +00003542 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00003543}
3544
3545
Evan Cheng39623da2006-04-20 08:58:49 +00003546/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
3547/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00003548static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003549 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003550 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003551
Evan Cheng39623da2006-04-20 08:58:49 +00003552 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003553 SmallVector<int, 8> MaskVec;
3554 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00003555
Nate Begeman5a5ca152009-04-29 05:20:52 +00003556 for (unsigned i = 0; i != NumElems; ++i) {
3557 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003558 MaskVec[i] = NumElems;
3559 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00003560 }
Evan Cheng39623da2006-04-20 08:58:49 +00003561 }
Evan Cheng39623da2006-04-20 08:58:49 +00003562 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00003563 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
3564 SVOp->getOperand(1), &MaskVec[0]);
3565 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00003566}
3567
Evan Cheng017dcc62006-04-21 01:05:10 +00003568/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
3569/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00003570static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003571 SDValue V2) {
3572 unsigned NumElems = VT.getVectorNumElements();
3573 SmallVector<int, 8> Mask;
3574 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00003575 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003576 Mask.push_back(i);
3577 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00003578}
3579
Nate Begeman9008ca62009-04-27 18:41:29 +00003580/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003581static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003582 SDValue V2) {
3583 unsigned NumElems = VT.getVectorNumElements();
3584 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00003585 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003586 Mask.push_back(i);
3587 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00003588 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003589 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00003590}
3591
Nate Begeman9008ca62009-04-27 18:41:29 +00003592/// getUnpackhMask - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003593static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003594 SDValue V2) {
3595 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00003596 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00003597 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00003598 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003599 Mask.push_back(i + Half);
3600 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00003601 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003602 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00003603}
3604
Bruno Cardoso Lopesbb0a9482010-08-13 17:50:47 +00003605/// PromoteSplat - Promote a splat of v4i32, v8i16 or v16i8 to v4f32.
3606static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003607 EVT PVT = MVT::v4f32;
Owen Andersone50ed302009-08-10 22:56:29 +00003608 EVT VT = SV->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00003609 DebugLoc dl = SV->getDebugLoc();
3610 SDValue V1 = SV->getOperand(0);
3611 int NumElems = VT.getVectorNumElements();
3612 int EltNo = SV->getSplatIndex();
Rafael Espindola15684b22009-04-24 12:40:33 +00003613
Nate Begeman9008ca62009-04-27 18:41:29 +00003614 // unpack elements to the correct location
3615 while (NumElems > 4) {
3616 if (EltNo < NumElems/2) {
3617 V1 = getUnpackl(DAG, dl, VT, V1, V1);
3618 } else {
3619 V1 = getUnpackh(DAG, dl, VT, V1, V1);
3620 EltNo -= NumElems/2;
3621 }
3622 NumElems >>= 1;
3623 }
Eric Christopherfd179292009-08-27 18:07:15 +00003624
Nate Begeman9008ca62009-04-27 18:41:29 +00003625 // Perform the splat.
3626 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Dale Johannesenace16102009-02-03 19:33:06 +00003627 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, PVT, V1);
Nate Begeman9008ca62009-04-27 18:41:29 +00003628 V1 = DAG.getVectorShuffle(PVT, dl, V1, DAG.getUNDEF(PVT), &SplatMask[0]);
3629 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, V1);
Evan Chengc575ca22006-04-17 20:43:08 +00003630}
3631
Evan Chengba05f722006-04-21 23:03:30 +00003632/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00003633/// vector of zero or undef vector. This produces a shuffle where the low
3634/// element of V2 is swizzled into the zero/undef vector, landing at element
3635/// 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 +00003636static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00003637 bool isZero, bool HasSSE2,
3638 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003639 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003640 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00003641 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
3642 unsigned NumElems = VT.getVectorNumElements();
3643 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00003644 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003645 // If this is the insertion idx, put the low elt of V2 here.
3646 MaskVec.push_back(i == Idx ? NumElems : i);
3647 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00003648}
3649
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003650/// getShuffleScalarElt - Returns the scalar element that will make up the ith
3651/// element of the result of the vector shuffle.
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003652SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
3653 unsigned Depth) {
3654 if (Depth == 6)
3655 return SDValue(); // Limit search depth.
3656
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003657 SDValue V = SDValue(N, 0);
3658 EVT VT = V.getValueType();
3659 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003660
3661 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
3662 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
3663 Index = SV->getMaskElt(Index);
3664
3665 if (Index < 0)
3666 return DAG.getUNDEF(VT.getVectorElementType());
3667
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003668 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003669 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003670 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00003671 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003672
3673 // Recurse into target specific vector shuffles to find scalars.
3674 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003675 int NumElems = VT.getVectorNumElements();
3676 SmallVector<unsigned, 16> ShuffleMask;
3677 SDValue ImmN;
3678
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003679 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003680 case X86ISD::SHUFPS:
3681 case X86ISD::SHUFPD:
3682 ImmN = N->getOperand(N->getNumOperands()-1);
3683 DecodeSHUFPSMask(NumElems,
3684 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3685 ShuffleMask);
3686 break;
3687 case X86ISD::PUNPCKHBW:
3688 case X86ISD::PUNPCKHWD:
3689 case X86ISD::PUNPCKHDQ:
3690 case X86ISD::PUNPCKHQDQ:
3691 DecodePUNPCKHMask(NumElems, ShuffleMask);
3692 break;
3693 case X86ISD::UNPCKHPS:
3694 case X86ISD::UNPCKHPD:
3695 DecodeUNPCKHPMask(NumElems, ShuffleMask);
3696 break;
3697 case X86ISD::PUNPCKLBW:
3698 case X86ISD::PUNPCKLWD:
3699 case X86ISD::PUNPCKLDQ:
3700 case X86ISD::PUNPCKLQDQ:
3701 DecodePUNPCKLMask(NumElems, ShuffleMask);
3702 break;
3703 case X86ISD::UNPCKLPS:
3704 case X86ISD::UNPCKLPD:
3705 DecodeUNPCKLPMask(NumElems, ShuffleMask);
3706 break;
3707 case X86ISD::MOVHLPS:
3708 DecodeMOVHLPSMask(NumElems, ShuffleMask);
3709 break;
3710 case X86ISD::MOVLHPS:
3711 DecodeMOVLHPSMask(NumElems, ShuffleMask);
3712 break;
3713 case X86ISD::PSHUFD:
3714 ImmN = N->getOperand(N->getNumOperands()-1);
3715 DecodePSHUFMask(NumElems,
3716 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3717 ShuffleMask);
3718 break;
3719 case X86ISD::PSHUFHW:
3720 ImmN = N->getOperand(N->getNumOperands()-1);
3721 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3722 ShuffleMask);
3723 break;
3724 case X86ISD::PSHUFLW:
3725 ImmN = N->getOperand(N->getNumOperands()-1);
3726 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3727 ShuffleMask);
3728 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003729 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003730 case X86ISD::MOVSD: {
3731 // The index 0 always comes from the first element of the second source,
3732 // this is why MOVSS and MOVSD are used in the first place. The other
3733 // elements come from the other positions of the first source vector.
3734 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003735 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
3736 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003737 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003738 default:
3739 assert("not implemented for target shuffle node");
3740 return SDValue();
3741 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003742
3743 Index = ShuffleMask[Index];
3744 if (Index < 0)
3745 return DAG.getUNDEF(VT.getVectorElementType());
3746
3747 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
3748 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
3749 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003750 }
3751
3752 // Actual nodes that may contain scalar elements
3753 if (Opcode == ISD::BIT_CONVERT) {
3754 V = V.getOperand(0);
3755 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003756 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003757
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003758 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003759 return SDValue();
3760 }
3761
3762 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
3763 return (Index == 0) ? V.getOperand(0)
3764 : DAG.getUNDEF(VT.getVectorElementType());
3765
3766 if (V.getOpcode() == ISD::BUILD_VECTOR)
3767 return V.getOperand(Index);
3768
3769 return SDValue();
3770}
3771
3772/// getNumOfConsecutiveZeros - Return the number of elements of a vector
3773/// shuffle operation which come from a consecutively from a zero. The
3774/// search can start in two diferent directions, from left or right.
3775static
3776unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
3777 bool ZerosFromLeft, SelectionDAG &DAG) {
3778 int i = 0;
3779
3780 while (i < NumElems) {
3781 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003782 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003783 if (!(Elt.getNode() &&
3784 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
3785 break;
3786 ++i;
3787 }
3788
3789 return i;
3790}
3791
3792/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
3793/// MaskE correspond consecutively to elements from one of the vector operands,
3794/// starting from its index OpIdx. Also tell OpNum which source vector operand.
3795static
3796bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
3797 int OpIdx, int NumElems, unsigned &OpNum) {
3798 bool SeenV1 = false;
3799 bool SeenV2 = false;
3800
3801 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
3802 int Idx = SVOp->getMaskElt(i);
3803 // Ignore undef indicies
3804 if (Idx < 0)
3805 continue;
3806
3807 if (Idx < NumElems)
3808 SeenV1 = true;
3809 else
3810 SeenV2 = true;
3811
3812 // Only accept consecutive elements from the same vector
3813 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
3814 return false;
3815 }
3816
3817 OpNum = SeenV1 ? 0 : 1;
3818 return true;
3819}
3820
3821/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
3822/// logical left shift of a vector.
3823static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
3824 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
3825 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
3826 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
3827 false /* check zeros from right */, DAG);
3828 unsigned OpSrc;
3829
3830 if (!NumZeros)
3831 return false;
3832
3833 // Considering the elements in the mask that are not consecutive zeros,
3834 // check if they consecutively come from only one of the source vectors.
3835 //
3836 // V1 = {X, A, B, C} 0
3837 // \ \ \ /
3838 // vector_shuffle V1, V2 <1, 2, 3, X>
3839 //
3840 if (!isShuffleMaskConsecutive(SVOp,
3841 0, // Mask Start Index
3842 NumElems-NumZeros-1, // Mask End Index
3843 NumZeros, // Where to start looking in the src vector
3844 NumElems, // Number of elements in vector
3845 OpSrc)) // Which source operand ?
3846 return false;
3847
3848 isLeft = false;
3849 ShAmt = NumZeros;
3850 ShVal = SVOp->getOperand(OpSrc);
3851 return true;
3852}
3853
3854/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
3855/// logical left shift of a vector.
3856static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
3857 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
3858 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
3859 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
3860 true /* check zeros from left */, DAG);
3861 unsigned OpSrc;
3862
3863 if (!NumZeros)
3864 return false;
3865
3866 // Considering the elements in the mask that are not consecutive zeros,
3867 // check if they consecutively come from only one of the source vectors.
3868 //
3869 // 0 { A, B, X, X } = V2
3870 // / \ / /
3871 // vector_shuffle V1, V2 <X, X, 4, 5>
3872 //
3873 if (!isShuffleMaskConsecutive(SVOp,
3874 NumZeros, // Mask Start Index
3875 NumElems-1, // Mask End Index
3876 0, // Where to start looking in the src vector
3877 NumElems, // Number of elements in vector
3878 OpSrc)) // Which source operand ?
3879 return false;
3880
3881 isLeft = true;
3882 ShAmt = NumZeros;
3883 ShVal = SVOp->getOperand(OpSrc);
3884 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00003885}
3886
3887/// isVectorShift - Returns true if the shuffle can be implemented as a
3888/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003889static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00003890 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003891 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
3892 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
3893 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00003894
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003895 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00003896}
3897
Evan Chengc78d3b42006-04-24 18:01:45 +00003898/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
3899///
Dan Gohman475871a2008-07-27 21:46:04 +00003900static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00003901 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00003902 SelectionDAG &DAG,
3903 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003904 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00003905 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003906
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003907 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003908 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003909 bool First = true;
3910 for (unsigned i = 0; i < 16; ++i) {
3911 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
3912 if (ThisIsNonZero && First) {
3913 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003914 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003915 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003916 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003917 First = false;
3918 }
3919
3920 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00003921 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003922 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
3923 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003924 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003925 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00003926 }
3927 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003928 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
3929 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
3930 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00003931 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003932 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00003933 } else
3934 ThisElt = LastElt;
3935
Gabor Greifba36cb52008-08-28 21:40:38 +00003936 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00003937 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00003938 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00003939 }
3940 }
3941
Owen Anderson825b72b2009-08-11 20:47:22 +00003942 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00003943}
3944
Bill Wendlinga348c562007-03-22 18:42:45 +00003945/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00003946///
Dan Gohman475871a2008-07-27 21:46:04 +00003947static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00003948 unsigned NumNonZero, unsigned NumZero,
3949 SelectionDAG &DAG,
3950 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003951 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00003952 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003953
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003954 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003955 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003956 bool First = true;
3957 for (unsigned i = 0; i < 8; ++i) {
3958 bool isNonZero = (NonZeros & (1 << i)) != 0;
3959 if (isNonZero) {
3960 if (First) {
3961 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003962 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003963 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003964 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003965 First = false;
3966 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003967 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003968 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00003969 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00003970 }
3971 }
3972
3973 return V;
3974}
3975
Evan Chengf26ffe92008-05-29 08:22:04 +00003976/// getVShift - Return a vector logical shift node.
3977///
Owen Andersone50ed302009-08-10 22:56:29 +00003978static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00003979 unsigned NumBits, SelectionDAG &DAG,
3980 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003981 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00003982 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Dale Johannesenace16102009-02-03 19:33:06 +00003983 SrcOp = DAG.getNode(ISD::BIT_CONVERT, dl, ShVT, SrcOp);
3984 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3985 DAG.getNode(Opc, dl, ShVT, SrcOp,
Gabor Greif327ef032008-08-28 23:19:51 +00003986 DAG.getConstant(NumBits, TLI.getShiftAmountTy())));
Evan Chengf26ffe92008-05-29 08:22:04 +00003987}
3988
Dan Gohman475871a2008-07-27 21:46:04 +00003989SDValue
Evan Chengc3630942009-12-09 21:00:30 +00003990X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00003991 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00003992
Evan Chengc3630942009-12-09 21:00:30 +00003993 // Check if the scalar load can be widened into a vector load. And if
3994 // the address is "base + cst" see if the cst can be "absorbed" into
3995 // the shuffle mask.
3996 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
3997 SDValue Ptr = LD->getBasePtr();
3998 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
3999 return SDValue();
4000 EVT PVT = LD->getValueType(0);
4001 if (PVT != MVT::i32 && PVT != MVT::f32)
4002 return SDValue();
4003
4004 int FI = -1;
4005 int64_t Offset = 0;
4006 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4007 FI = FINode->getIndex();
4008 Offset = 0;
4009 } else if (Ptr.getOpcode() == ISD::ADD &&
4010 isa<ConstantSDNode>(Ptr.getOperand(1)) &&
4011 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4012 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4013 Offset = Ptr.getConstantOperandVal(1);
4014 Ptr = Ptr.getOperand(0);
4015 } else {
4016 return SDValue();
4017 }
4018
4019 SDValue Chain = LD->getChain();
4020 // Make sure the stack object alignment is at least 16.
4021 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
4022 if (DAG.InferPtrAlignment(Ptr) < 16) {
4023 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004024 // Can't change the alignment. FIXME: It's possible to compute
4025 // the exact stack offset and reference FI + adjust offset instead.
4026 // If someone *really* cares about this. That's the way to implement it.
4027 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004028 } else {
4029 MFI->setObjectAlignment(FI, 16);
4030 }
4031 }
4032
4033 // (Offset % 16) must be multiple of 4. Then address is then
4034 // Ptr + (Offset & ~15).
4035 if (Offset < 0)
4036 return SDValue();
4037 if ((Offset % 16) & 3)
4038 return SDValue();
4039 int64_t StartOffset = Offset & ~15;
4040 if (StartOffset)
4041 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4042 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4043
4044 int EltNo = (Offset - StartOffset) >> 2;
4045 int Mask[4] = { EltNo, EltNo, EltNo, EltNo };
4046 EVT VT = (PVT == MVT::i32) ? MVT::v4i32 : MVT::v4f32;
Chris Lattner51abfe42010-09-21 06:02:19 +00004047 SDValue V1 = DAG.getLoad(VT, dl, Chain, Ptr,
4048 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004049 false, false, 0);
Evan Chengc3630942009-12-09 21:00:30 +00004050 // Canonicalize it to a v4i32 shuffle.
4051 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32, V1);
4052 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4053 DAG.getVectorShuffle(MVT::v4i32, dl, V1,
Chris Lattner51abfe42010-09-21 06:02:19 +00004054 DAG.getUNDEF(MVT::v4i32),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004055 }
4056
4057 return SDValue();
4058}
4059
Michael J. Spencerec38de22010-10-10 22:04:20 +00004060/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4061/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004062/// load which has the same value as a build_vector whose operands are 'elts'.
4063///
4064/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004065///
Nate Begeman1449f292010-03-24 22:19:06 +00004066/// FIXME: we'd also like to handle the case where the last elements are zero
4067/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4068/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004069static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004070 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004071 EVT EltVT = VT.getVectorElementType();
4072 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004073
Nate Begemanfdea31a2010-03-24 20:49:50 +00004074 LoadSDNode *LDBase = NULL;
4075 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004076
Nate Begeman1449f292010-03-24 22:19:06 +00004077 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004078 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004079 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004080 for (unsigned i = 0; i < NumElems; ++i) {
4081 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004082
Nate Begemanfdea31a2010-03-24 20:49:50 +00004083 if (!Elt.getNode() ||
4084 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4085 return SDValue();
4086 if (!LDBase) {
4087 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4088 return SDValue();
4089 LDBase = cast<LoadSDNode>(Elt.getNode());
4090 LastLoadedElt = i;
4091 continue;
4092 }
4093 if (Elt.getOpcode() == ISD::UNDEF)
4094 continue;
4095
4096 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4097 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4098 return SDValue();
4099 LastLoadedElt = i;
4100 }
Nate Begeman1449f292010-03-24 22:19:06 +00004101
4102 // If we have found an entire vector of loads and undefs, then return a large
4103 // load of the entire vector width starting at the base pointer. If we found
4104 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004105 if (LastLoadedElt == NumElems - 1) {
4106 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004107 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004108 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004109 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004110 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004111 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004112 LDBase->isVolatile(), LDBase->isNonTemporal(),
4113 LDBase->getAlignment());
4114 } else if (NumElems == 4 && LastLoadedElt == 1) {
4115 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4116 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004117 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4118 Ops, 2, MVT::i32,
4119 LDBase->getMemOperand());
4120 return DAG.getNode(ISD::BIT_CONVERT, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004121 }
4122 return SDValue();
4123}
4124
Evan Chengc3630942009-12-09 21:00:30 +00004125SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004126X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004127 DebugLoc dl = Op.getDebugLoc();
Chris Lattner6e80e442010-08-28 17:15:43 +00004128 // All zero's are handled with pxor in SSE2 and above, xorps in SSE1.
4129 // All one's are handled with pcmpeqd. In AVX, zero's are handled with
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004130 // vpxor in 128-bit and xor{pd,ps} in 256-bit, but no 256 version of pcmpeqd
4131 // is present, so AllOnes is ignored.
4132 if (ISD::isBuildVectorAllZeros(Op.getNode()) ||
4133 (Op.getValueType().getSizeInBits() != 256 &&
4134 ISD::isBuildVectorAllOnes(Op.getNode()))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004135 // Canonicalize this to <4 x i32> (SSE) to
Chris Lattner8a594482007-11-25 00:24:49 +00004136 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
4137 // eliminated on x86-32 hosts.
Dale Johannesen0488fb62010-09-30 23:57:10 +00004138 if (Op.getValueType() == MVT::v4i32)
Chris Lattner8a594482007-11-25 00:24:49 +00004139 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004140
Gabor Greifba36cb52008-08-28 21:40:38 +00004141 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00004142 return getOnesVector(Op.getValueType(), DAG, dl);
4143 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00004144 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004145
Owen Andersone50ed302009-08-10 22:56:29 +00004146 EVT VT = Op.getValueType();
4147 EVT ExtVT = VT.getVectorElementType();
4148 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004149
4150 unsigned NumElems = Op.getNumOperands();
4151 unsigned NumZero = 0;
4152 unsigned NumNonZero = 0;
4153 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004154 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004155 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004156 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004157 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00004158 if (Elt.getOpcode() == ISD::UNDEF)
4159 continue;
4160 Values.insert(Elt);
4161 if (Elt.getOpcode() != ISD::Constant &&
4162 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004163 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00004164 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00004165 NumZero++;
4166 else {
4167 NonZeros |= (1 << i);
4168 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004169 }
4170 }
4171
Chris Lattner97a2a562010-08-26 05:24:29 +00004172 // All undef vector. Return an UNDEF. All zero vectors were handled above.
4173 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00004174 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004175
Chris Lattner67f453a2008-03-09 05:42:06 +00004176 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00004177 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004178 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00004179 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00004180
Chris Lattner62098042008-03-09 01:05:04 +00004181 // If this is an insertion of an i64 value on x86-32, and if the top bits of
4182 // the value are obviously zero, truncate the value to i32 and do the
4183 // insertion that way. Only do this if the value is non-constant or if the
4184 // value is a constant being inserted into element 0. It is cheaper to do
4185 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00004186 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00004187 (!IsAllConstants || Idx == 0)) {
4188 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004189 // Handle SSE only.
4190 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4191 EVT VecVT = MVT::v4i32;
4192 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004193
Chris Lattner62098042008-03-09 01:05:04 +00004194 // Truncate the value (which may itself be a constant) to i32, and
4195 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00004196 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00004197 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00004198 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4199 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004200
Chris Lattner62098042008-03-09 01:05:04 +00004201 // Now we have our 32-bit value zero extended in the low element of
4202 // a vector. If Idx != 0, swizzle it into place.
4203 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004204 SmallVector<int, 4> Mask;
4205 Mask.push_back(Idx);
4206 for (unsigned i = 1; i != VecElts; ++i)
4207 Mask.push_back(i);
4208 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00004209 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00004210 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004211 }
Dale Johannesenace16102009-02-03 19:33:06 +00004212 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00004213 }
4214 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004215
Chris Lattner19f79692008-03-08 22:59:52 +00004216 // If we have a constant or non-constant insertion into the low element of
4217 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4218 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00004219 // depending on what the source datatype is.
4220 if (Idx == 0) {
4221 if (NumZero == 0) {
4222 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00004223 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4224 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00004225 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4226 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4227 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4228 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00004229 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4230 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00004231 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4232 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00004233 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4234 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4235 Subtarget->hasSSE2(), DAG);
4236 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Item);
4237 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004238 }
Evan Chengf26ffe92008-05-29 08:22:04 +00004239
4240 // Is it a vector logical left shift?
4241 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00004242 X86::isZeroNode(Op.getOperand(0)) &&
4243 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004244 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004245 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004246 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004247 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00004248 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004249 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004250
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004251 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00004252 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004253
Chris Lattner19f79692008-03-08 22:59:52 +00004254 // Otherwise, if this is a vector with i32 or f32 elements, and the element
4255 // is a non-constant being inserted into an element other than the low one,
4256 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
4257 // movd/movss) to move this into the low element, then shuffle it into
4258 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004259 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00004260 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00004261
Evan Cheng0db9fe62006-04-25 20:13:52 +00004262 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00004263 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4264 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00004265 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004266 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00004267 MaskVec.push_back(i == Idx ? 0 : 1);
4268 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004269 }
4270 }
4271
Chris Lattner67f453a2008-03-09 05:42:06 +00004272 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00004273 if (Values.size() == 1) {
4274 if (EVTBits == 32) {
4275 // Instead of a shuffle like this:
4276 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4277 // Check if it's possible to issue this instead.
4278 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4279 unsigned Idx = CountTrailingZeros_32(NonZeros);
4280 SDValue Item = Op.getOperand(Idx);
4281 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4282 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4283 }
Dan Gohman475871a2008-07-27 21:46:04 +00004284 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004285 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004286
Dan Gohmana3941172007-07-24 22:55:08 +00004287 // A vector full of immediates; various special cases are already
4288 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004289 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00004290 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00004291
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004292 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004293 if (EVTBits == 64) {
4294 if (NumNonZero == 1) {
4295 // One half is zero or undef.
4296 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00004297 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004298 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00004299 return getShuffleVectorZeroOrUndef(V2, Idx, true,
4300 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00004301 }
Dan Gohman475871a2008-07-27 21:46:04 +00004302 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00004303 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004304
4305 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00004306 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004307 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00004308 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004309 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004310 }
4311
Bill Wendling826f36f2007-03-28 00:57:11 +00004312 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004313 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00004314 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004315 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004316 }
4317
4318 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004319 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00004320 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004321 if (NumElems == 4 && NumZero > 0) {
4322 for (unsigned i = 0; i < 4; ++i) {
4323 bool isZero = !(NonZeros & (1 << i));
4324 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00004325 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004326 else
Dale Johannesenace16102009-02-03 19:33:06 +00004327 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004328 }
4329
4330 for (unsigned i = 0; i < 2; ++i) {
4331 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
4332 default: break;
4333 case 0:
4334 V[i] = V[i*2]; // Must be a zero vector.
4335 break;
4336 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00004337 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004338 break;
4339 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00004340 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004341 break;
4342 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00004343 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004344 break;
4345 }
4346 }
4347
Nate Begeman9008ca62009-04-27 18:41:29 +00004348 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004349 bool Reverse = (NonZeros & 0x3) == 2;
4350 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004351 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004352 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
4353 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004354 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
4355 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004356 }
4357
Nate Begemanfdea31a2010-03-24 20:49:50 +00004358 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
4359 // Check for a build vector of consecutive loads.
4360 for (unsigned i = 0; i < NumElems; ++i)
4361 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004362
Nate Begemanfdea31a2010-03-24 20:49:50 +00004363 // Check for elements which are consecutive loads.
4364 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
4365 if (LD.getNode())
4366 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004367
4368 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004369 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00004370 SDValue Result;
4371 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
4372 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
4373 else
4374 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004375
Chris Lattner24faf612010-08-28 17:59:08 +00004376 for (unsigned i = 1; i < NumElems; ++i) {
4377 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
4378 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00004379 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00004380 }
4381 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00004382 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00004383
Chris Lattner6e80e442010-08-28 17:15:43 +00004384 // Otherwise, expand into a number of unpckl*, start by extending each of
4385 // our (non-undef) elements to the full vector width with the element in the
4386 // bottom slot of the vector (which generates no code for SSE).
4387 for (unsigned i = 0; i < NumElems; ++i) {
4388 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
4389 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
4390 else
4391 V[i] = DAG.getUNDEF(VT);
4392 }
4393
4394 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004395 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
4396 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
4397 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00004398 unsigned EltStride = NumElems >> 1;
4399 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00004400 for (unsigned i = 0; i < EltStride; ++i) {
4401 // If V[i+EltStride] is undef and this is the first round of mixing,
4402 // then it is safe to just drop this shuffle: V[i] is already in the
4403 // right place, the one element (since it's the first round) being
4404 // inserted as undef can be dropped. This isn't safe for successive
4405 // rounds because they will permute elements within both vectors.
4406 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
4407 EltStride == NumElems/2)
4408 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004409
Chris Lattner6e80e442010-08-28 17:15:43 +00004410 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00004411 }
Chris Lattner6e80e442010-08-28 17:15:43 +00004412 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004413 }
4414 return V[0];
4415 }
Dan Gohman475871a2008-07-27 21:46:04 +00004416 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004417}
4418
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004419SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004420X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004421 // We support concatenate two MMX registers and place them in a MMX
4422 // register. This is better than doing a stack convert.
4423 DebugLoc dl = Op.getDebugLoc();
4424 EVT ResVT = Op.getValueType();
4425 assert(Op.getNumOperands() == 2);
4426 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
4427 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
4428 int Mask[2];
4429 SDValue InVec = DAG.getNode(ISD::BIT_CONVERT,dl, MVT::v1i64, Op.getOperand(0));
4430 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4431 InVec = Op.getOperand(1);
4432 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
4433 unsigned NumElts = ResVT.getVectorNumElements();
4434 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, ResVT, VecOp);
4435 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
4436 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
4437 } else {
4438 InVec = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v1i64, InVec);
4439 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4440 Mask[0] = 0; Mask[1] = 2;
4441 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
4442 }
4443 return DAG.getNode(ISD::BIT_CONVERT, dl, ResVT, VecOp);
4444}
4445
Nate Begemanb9a47b82009-02-23 08:49:38 +00004446// v8i16 shuffles - Prefer shuffles in the following order:
4447// 1. [all] pshuflw, pshufhw, optional move
4448// 2. [ssse3] 1 x pshufb
4449// 3. [ssse3] 2 x pshufb + 1 x por
4450// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004451SDValue
4452X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
4453 SelectionDAG &DAG) const {
4454 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00004455 SDValue V1 = SVOp->getOperand(0);
4456 SDValue V2 = SVOp->getOperand(1);
4457 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004458 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00004459
Nate Begemanb9a47b82009-02-23 08:49:38 +00004460 // Determine if more than 1 of the words in each of the low and high quadwords
4461 // of the result come from the same quadword of one of the two inputs. Undef
4462 // mask values count as coming from any quadword, for better codegen.
4463 SmallVector<unsigned, 4> LoQuad(4);
4464 SmallVector<unsigned, 4> HiQuad(4);
4465 BitVector InputQuads(4);
4466 for (unsigned i = 0; i < 8; ++i) {
4467 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00004468 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004469 MaskVals.push_back(EltIdx);
4470 if (EltIdx < 0) {
4471 ++Quad[0];
4472 ++Quad[1];
4473 ++Quad[2];
4474 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00004475 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004476 }
4477 ++Quad[EltIdx / 4];
4478 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00004479 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004480
Nate Begemanb9a47b82009-02-23 08:49:38 +00004481 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004482 unsigned MaxQuad = 1;
4483 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004484 if (LoQuad[i] > MaxQuad) {
4485 BestLoQuad = i;
4486 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004487 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004488 }
4489
Nate Begemanb9a47b82009-02-23 08:49:38 +00004490 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004491 MaxQuad = 1;
4492 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004493 if (HiQuad[i] > MaxQuad) {
4494 BestHiQuad = i;
4495 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004496 }
4497 }
4498
Nate Begemanb9a47b82009-02-23 08:49:38 +00004499 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00004500 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00004501 // single pshufb instruction is necessary. If There are more than 2 input
4502 // quads, disable the next transformation since it does not help SSSE3.
4503 bool V1Used = InputQuads[0] || InputQuads[1];
4504 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004505 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004506 if (InputQuads.count() == 2 && V1Used && V2Used) {
4507 BestLoQuad = InputQuads.find_first();
4508 BestHiQuad = InputQuads.find_next(BestLoQuad);
4509 }
4510 if (InputQuads.count() > 2) {
4511 BestLoQuad = -1;
4512 BestHiQuad = -1;
4513 }
4514 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004515
Nate Begemanb9a47b82009-02-23 08:49:38 +00004516 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
4517 // the shuffle mask. If a quad is scored as -1, that means that it contains
4518 // words from all 4 input quadwords.
4519 SDValue NewV;
4520 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004521 SmallVector<int, 8> MaskV;
4522 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
4523 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00004524 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004525 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V1),
4526 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V2), &MaskV[0]);
4527 NewV = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004528
Nate Begemanb9a47b82009-02-23 08:49:38 +00004529 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
4530 // source words for the shuffle, to aid later transformations.
4531 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00004532 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00004533 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004534 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00004535 if (idx != (int)i)
4536 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004537 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00004538 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004539 AllWordsInNewV = false;
4540 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00004541 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004542
Nate Begemanb9a47b82009-02-23 08:49:38 +00004543 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
4544 if (AllWordsInNewV) {
4545 for (int i = 0; i != 8; ++i) {
4546 int idx = MaskVals[i];
4547 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004548 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004549 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004550 if ((idx != i) && idx < 4)
4551 pshufhw = false;
4552 if ((idx != i) && idx > 3)
4553 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00004554 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00004555 V1 = NewV;
4556 V2Used = false;
4557 BestLoQuad = 0;
4558 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004559 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004560
Nate Begemanb9a47b82009-02-23 08:49:38 +00004561 // If we've eliminated the use of V2, and the new mask is a pshuflw or
4562 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00004563 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004564 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
4565 unsigned TargetMask = 0;
4566 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00004567 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004568 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
4569 X86::getShufflePSHUFLWImmediate(NewV.getNode());
4570 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004571 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00004572 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004573 }
Eric Christopherfd179292009-08-27 18:07:15 +00004574
Nate Begemanb9a47b82009-02-23 08:49:38 +00004575 // If we have SSSE3, and all words of the result are from 1 input vector,
4576 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
4577 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004578 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004579 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004580
Nate Begemanb9a47b82009-02-23 08:49:38 +00004581 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00004582 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00004583 // mask, and elements that come from V1 in the V2 mask, so that the two
4584 // results can be OR'd together.
4585 bool TwoInputs = V1Used && V2Used;
4586 for (unsigned i = 0; i != 8; ++i) {
4587 int EltIdx = MaskVals[i] * 2;
4588 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004589 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4590 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004591 continue;
4592 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004593 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
4594 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004595 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004596 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004597 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004598 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004599 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004600 if (!TwoInputs)
Owen Anderson825b72b2009-08-11 20:47:22 +00004601 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004602
Nate Begemanb9a47b82009-02-23 08:49:38 +00004603 // Calculate the shuffle mask for the second input, shuffle it, and
4604 // OR it with the first shuffled input.
4605 pshufbMask.clear();
4606 for (unsigned i = 0; i != 8; ++i) {
4607 int EltIdx = MaskVals[i] * 2;
4608 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004609 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4610 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004611 continue;
4612 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004613 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
4614 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004615 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004616 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00004617 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004618 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004619 MVT::v16i8, &pshufbMask[0], 16));
4620 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
4621 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004622 }
4623
4624 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
4625 // and update MaskVals with new element order.
4626 BitVector InOrder(8);
4627 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004628 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004629 for (int i = 0; i != 4; ++i) {
4630 int idx = MaskVals[i];
4631 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004632 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004633 InOrder.set(i);
4634 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004635 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004636 InOrder.set(i);
4637 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004638 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004639 }
4640 }
4641 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004642 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00004643 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004644 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004645
4646 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4647 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
4648 NewV.getOperand(0),
4649 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
4650 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004651 }
Eric Christopherfd179292009-08-27 18:07:15 +00004652
Nate Begemanb9a47b82009-02-23 08:49:38 +00004653 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
4654 // and update MaskVals with the new element order.
4655 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004656 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004657 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004658 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004659 for (unsigned i = 4; i != 8; ++i) {
4660 int idx = MaskVals[i];
4661 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004662 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004663 InOrder.set(i);
4664 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004665 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004666 InOrder.set(i);
4667 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004668 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004669 }
4670 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004671 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004672 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004673
4674 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4675 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
4676 NewV.getOperand(0),
4677 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
4678 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004679 }
Eric Christopherfd179292009-08-27 18:07:15 +00004680
Nate Begemanb9a47b82009-02-23 08:49:38 +00004681 // In case BestHi & BestLo were both -1, which means each quadword has a word
4682 // from each of the four input quadwords, calculate the InOrder bitvector now
4683 // before falling through to the insert/extract cleanup.
4684 if (BestLoQuad == -1 && BestHiQuad == -1) {
4685 NewV = V1;
4686 for (int i = 0; i != 8; ++i)
4687 if (MaskVals[i] < 0 || MaskVals[i] == i)
4688 InOrder.set(i);
4689 }
Eric Christopherfd179292009-08-27 18:07:15 +00004690
Nate Begemanb9a47b82009-02-23 08:49:38 +00004691 // The other elements are put in the right place using pextrw and pinsrw.
4692 for (unsigned i = 0; i != 8; ++i) {
4693 if (InOrder[i])
4694 continue;
4695 int EltIdx = MaskVals[i];
4696 if (EltIdx < 0)
4697 continue;
4698 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00004699 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004700 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00004701 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004702 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00004703 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004704 DAG.getIntPtrConstant(i));
4705 }
4706 return NewV;
4707}
4708
4709// v16i8 shuffles - Prefer shuffles in the following order:
4710// 1. [ssse3] 1 x pshufb
4711// 2. [ssse3] 2 x pshufb + 1 x por
4712// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
4713static
Nate Begeman9008ca62009-04-27 18:41:29 +00004714SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00004715 SelectionDAG &DAG,
4716 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004717 SDValue V1 = SVOp->getOperand(0);
4718 SDValue V2 = SVOp->getOperand(1);
4719 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004720 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00004721 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00004722
Nate Begemanb9a47b82009-02-23 08:49:38 +00004723 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00004724 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00004725 // present, fall back to case 3.
4726 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
4727 bool V1Only = true;
4728 bool V2Only = true;
4729 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004730 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00004731 if (EltIdx < 0)
4732 continue;
4733 if (EltIdx < 16)
4734 V2Only = false;
4735 else
4736 V1Only = false;
4737 }
Eric Christopherfd179292009-08-27 18:07:15 +00004738
Nate Begemanb9a47b82009-02-23 08:49:38 +00004739 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
4740 if (TLI.getSubtarget()->hasSSSE3()) {
4741 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004742
Nate Begemanb9a47b82009-02-23 08:49:38 +00004743 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00004744 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00004745 //
4746 // Otherwise, we have elements from both input vectors, and must zero out
4747 // elements that come from V2 in the first mask, and V1 in the second mask
4748 // so that we can OR them together.
4749 bool TwoInputs = !(V1Only || V2Only);
4750 for (unsigned i = 0; i != 16; ++i) {
4751 int EltIdx = MaskVals[i];
4752 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004753 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004754 continue;
4755 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004756 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004757 }
4758 // If all the elements are from V2, assign it to V1 and return after
4759 // building the first pshufb.
4760 if (V2Only)
4761 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00004762 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004763 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004764 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004765 if (!TwoInputs)
4766 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00004767
Nate Begemanb9a47b82009-02-23 08:49:38 +00004768 // Calculate the shuffle mask for the second input, shuffle it, and
4769 // OR it with the first shuffled input.
4770 pshufbMask.clear();
4771 for (unsigned i = 0; i != 16; ++i) {
4772 int EltIdx = MaskVals[i];
4773 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004774 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004775 continue;
4776 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004777 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004778 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004779 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004780 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004781 MVT::v16i8, &pshufbMask[0], 16));
4782 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004783 }
Eric Christopherfd179292009-08-27 18:07:15 +00004784
Nate Begemanb9a47b82009-02-23 08:49:38 +00004785 // No SSSE3 - Calculate in place words and then fix all out of place words
4786 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
4787 // the 16 different words that comprise the two doublequadword input vectors.
Owen Anderson825b72b2009-08-11 20:47:22 +00004788 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
4789 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004790 SDValue NewV = V2Only ? V2 : V1;
4791 for (int i = 0; i != 8; ++i) {
4792 int Elt0 = MaskVals[i*2];
4793 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00004794
Nate Begemanb9a47b82009-02-23 08:49:38 +00004795 // This word of the result is all undef, skip it.
4796 if (Elt0 < 0 && Elt1 < 0)
4797 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004798
Nate Begemanb9a47b82009-02-23 08:49:38 +00004799 // This word of the result is already in the correct place, skip it.
4800 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
4801 continue;
4802 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
4803 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004804
Nate Begemanb9a47b82009-02-23 08:49:38 +00004805 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
4806 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
4807 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00004808
4809 // If Elt0 and Elt1 are defined, are consecutive, and can be load
4810 // using a single extract together, load it and store it.
4811 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004812 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00004813 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00004814 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00004815 DAG.getIntPtrConstant(i));
4816 continue;
4817 }
4818
Nate Begemanb9a47b82009-02-23 08:49:38 +00004819 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00004820 // source byte is not also odd, shift the extracted word left 8 bits
4821 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00004822 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004823 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004824 DAG.getIntPtrConstant(Elt1 / 2));
4825 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004826 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004827 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00004828 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004829 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
4830 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004831 }
4832 // If Elt0 is defined, extract it from the appropriate source. If the
4833 // source byte is not also even, shift the extracted word right 8 bits. If
4834 // Elt1 was also defined, OR the extracted values together before
4835 // inserting them in the result.
4836 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004837 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004838 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
4839 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004840 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004841 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00004842 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004843 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
4844 DAG.getConstant(0x00FF, MVT::i16));
4845 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00004846 : InsElt0;
4847 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004848 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004849 DAG.getIntPtrConstant(i));
4850 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004851 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004852}
4853
Evan Cheng7a831ce2007-12-15 03:00:47 +00004854/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004855/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00004856/// done when every pair / quad of shuffle mask elements point to elements in
4857/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004858/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00004859static
Nate Begeman9008ca62009-04-27 18:41:29 +00004860SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00004861 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00004862 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00004863 SDValue V1 = SVOp->getOperand(0);
4864 SDValue V2 = SVOp->getOperand(1);
4865 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00004866 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004867 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00004868 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004869 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00004870 case MVT::v4f32: NewVT = MVT::v2f64; break;
4871 case MVT::v4i32: NewVT = MVT::v2i64; break;
4872 case MVT::v8i16: NewVT = MVT::v4i32; break;
4873 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00004874 }
4875
Nate Begeman9008ca62009-04-27 18:41:29 +00004876 int Scale = NumElems / NewWidth;
4877 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00004878 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004879 int StartIdx = -1;
4880 for (int j = 0; j < Scale; ++j) {
4881 int EltIdx = SVOp->getMaskElt(i+j);
4882 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004883 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00004884 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00004885 StartIdx = EltIdx - (EltIdx % Scale);
4886 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00004887 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00004888 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004889 if (StartIdx == -1)
4890 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00004891 else
Nate Begeman9008ca62009-04-27 18:41:29 +00004892 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004893 }
4894
Dale Johannesenace16102009-02-03 19:33:06 +00004895 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V1);
4896 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00004897 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004898}
4899
Evan Chengd880b972008-05-09 21:53:03 +00004900/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004901///
Owen Andersone50ed302009-08-10 22:56:29 +00004902static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00004903 SDValue SrcOp, SelectionDAG &DAG,
4904 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004905 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004906 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00004907 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00004908 LD = dyn_cast<LoadSDNode>(SrcOp);
4909 if (!LD) {
4910 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
4911 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00004912 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
4913 if ((ExtVT.SimpleTy != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00004914 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
4915 SrcOp.getOperand(0).getOpcode() == ISD::BIT_CONVERT &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00004916 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004917 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00004918 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Dale Johannesenace16102009-02-03 19:33:06 +00004919 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4920 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
4921 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
4922 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00004923 SrcOp.getOperand(0)
4924 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00004925 }
4926 }
4927 }
4928
Dale Johannesenace16102009-02-03 19:33:06 +00004929 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4930 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004931 DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00004932 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00004933}
4934
Evan Chengace3c172008-07-22 21:13:36 +00004935/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
4936/// shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004937static SDValue
Nate Begeman9008ca62009-04-27 18:41:29 +00004938LowerVECTOR_SHUFFLE_4wide(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
4939 SDValue V1 = SVOp->getOperand(0);
4940 SDValue V2 = SVOp->getOperand(1);
4941 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00004942 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00004943
Evan Chengace3c172008-07-22 21:13:36 +00004944 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00004945 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00004946 SmallVector<int, 8> Mask1(4U, -1);
4947 SmallVector<int, 8> PermMask;
4948 SVOp->getMask(PermMask);
4949
Evan Chengace3c172008-07-22 21:13:36 +00004950 unsigned NumHi = 0;
4951 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00004952 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004953 int Idx = PermMask[i];
4954 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00004955 Locs[i] = std::make_pair(-1, -1);
4956 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004957 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
4958 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00004959 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00004960 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004961 NumLo++;
4962 } else {
4963 Locs[i] = std::make_pair(1, NumHi);
4964 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00004965 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004966 NumHi++;
4967 }
4968 }
4969 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004970
Evan Chengace3c172008-07-22 21:13:36 +00004971 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004972 // If no more than two elements come from either vector. This can be
4973 // implemented with two shuffles. First shuffle gather the elements.
4974 // The second shuffle, which takes the first shuffle as both of its
4975 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00004976 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004977
Nate Begeman9008ca62009-04-27 18:41:29 +00004978 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00004979
Evan Chengace3c172008-07-22 21:13:36 +00004980 for (unsigned i = 0; i != 4; ++i) {
4981 if (Locs[i].first == -1)
4982 continue;
4983 else {
4984 unsigned Idx = (i < 2) ? 0 : 4;
4985 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00004986 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004987 }
4988 }
4989
Nate Begeman9008ca62009-04-27 18:41:29 +00004990 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004991 } else if (NumLo == 3 || NumHi == 3) {
4992 // Otherwise, we must have three elements from one vector, call it X, and
4993 // one element from the other, call it Y. First, use a shufps to build an
4994 // intermediate vector with the one element from Y and the element from X
4995 // that will be in the same half in the final destination (the indexes don't
4996 // matter). Then, use a shufps to build the final vector, taking the half
4997 // containing the element from Y from the intermediate, and the other half
4998 // from X.
4999 if (NumHi == 3) {
5000 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00005001 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005002 std::swap(V1, V2);
5003 }
5004
5005 // Find the element from V2.
5006 unsigned HiIndex;
5007 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005008 int Val = PermMask[HiIndex];
5009 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005010 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005011 if (Val >= 4)
5012 break;
5013 }
5014
Nate Begeman9008ca62009-04-27 18:41:29 +00005015 Mask1[0] = PermMask[HiIndex];
5016 Mask1[1] = -1;
5017 Mask1[2] = PermMask[HiIndex^1];
5018 Mask1[3] = -1;
5019 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005020
5021 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005022 Mask1[0] = PermMask[0];
5023 Mask1[1] = PermMask[1];
5024 Mask1[2] = HiIndex & 1 ? 6 : 4;
5025 Mask1[3] = HiIndex & 1 ? 4 : 6;
5026 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005027 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005028 Mask1[0] = HiIndex & 1 ? 2 : 0;
5029 Mask1[1] = HiIndex & 1 ? 0 : 2;
5030 Mask1[2] = PermMask[2];
5031 Mask1[3] = PermMask[3];
5032 if (Mask1[2] >= 0)
5033 Mask1[2] += 4;
5034 if (Mask1[3] >= 0)
5035 Mask1[3] += 4;
5036 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005037 }
Evan Chengace3c172008-07-22 21:13:36 +00005038 }
5039
5040 // Break it into (shuffle shuffle_hi, shuffle_lo).
5041 Locs.clear();
Nate Begeman9008ca62009-04-27 18:41:29 +00005042 SmallVector<int,8> LoMask(4U, -1);
5043 SmallVector<int,8> HiMask(4U, -1);
5044
5045 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00005046 unsigned MaskIdx = 0;
5047 unsigned LoIdx = 0;
5048 unsigned HiIdx = 2;
5049 for (unsigned i = 0; i != 4; ++i) {
5050 if (i == 2) {
5051 MaskPtr = &HiMask;
5052 MaskIdx = 1;
5053 LoIdx = 0;
5054 HiIdx = 2;
5055 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005056 int Idx = PermMask[i];
5057 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005058 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005059 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005060 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005061 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005062 LoIdx++;
5063 } else {
5064 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005065 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005066 HiIdx++;
5067 }
5068 }
5069
Nate Begeman9008ca62009-04-27 18:41:29 +00005070 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5071 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5072 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00005073 for (unsigned i = 0; i != 4; ++i) {
5074 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005075 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00005076 } else {
5077 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005078 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00005079 }
5080 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005081 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00005082}
5083
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005084static bool MayFoldVectorLoad(SDValue V) {
5085 if (V.hasOneUse() && V.getOpcode() == ISD::BIT_CONVERT)
5086 V = V.getOperand(0);
5087 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5088 V = V.getOperand(0);
5089 if (MayFoldLoad(V))
5090 return true;
5091 return false;
5092}
5093
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005094// FIXME: the version above should always be used. Since there's
5095// a bug where several vector shuffles can't be folded because the
5096// DAG is not updated during lowering and a node claims to have two
5097// uses while it only has one, use this version, and let isel match
5098// another instruction if the load really happens to have more than
5099// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00005100// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005101static bool RelaxedMayFoldVectorLoad(SDValue V) {
5102 if (V.hasOneUse() && V.getOpcode() == ISD::BIT_CONVERT)
5103 V = V.getOperand(0);
5104 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5105 V = V.getOperand(0);
5106 if (ISD::isNormalLoad(V.getNode()))
5107 return true;
5108 return false;
5109}
5110
5111/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5112/// a vector extract, and if both can be later optimized into a single load.
5113/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5114/// here because otherwise a target specific shuffle node is going to be
5115/// emitted for this shuffle, and the optimization not done.
5116/// FIXME: This is probably not the best approach, but fix the problem
5117/// until the right path is decided.
5118static
5119bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5120 const TargetLowering &TLI) {
5121 EVT VT = V.getValueType();
5122 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5123
5124 // Be sure that the vector shuffle is present in a pattern like this:
5125 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5126 if (!V.hasOneUse())
5127 return false;
5128
5129 SDNode *N = *V.getNode()->use_begin();
5130 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5131 return false;
5132
5133 SDValue EltNo = N->getOperand(1);
5134 if (!isa<ConstantSDNode>(EltNo))
5135 return false;
5136
5137 // If the bit convert changed the number of elements, it is unsafe
5138 // to examine the mask.
5139 bool HasShuffleIntoBitcast = false;
5140 if (V.getOpcode() == ISD::BIT_CONVERT) {
5141 EVT SrcVT = V.getOperand(0).getValueType();
5142 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5143 return false;
5144 V = V.getOperand(0);
5145 HasShuffleIntoBitcast = true;
5146 }
5147
5148 // Select the input vector, guarding against out of range extract vector.
5149 unsigned NumElems = VT.getVectorNumElements();
5150 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5151 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5152 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5153
5154 // Skip one more bit_convert if necessary
5155 if (V.getOpcode() == ISD::BIT_CONVERT)
5156 V = V.getOperand(0);
5157
5158 if (ISD::isNormalLoad(V.getNode())) {
5159 // Is the original load suitable?
5160 LoadSDNode *LN0 = cast<LoadSDNode>(V);
5161
5162 // FIXME: avoid the multi-use bug that is preventing lots of
5163 // of foldings to be detected, this is still wrong of course, but
5164 // give the temporary desired behavior, and if it happens that
5165 // the load has real more uses, during isel it will not fold, and
5166 // will generate poor code.
5167 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
5168 return false;
5169
5170 if (!HasShuffleIntoBitcast)
5171 return true;
5172
5173 // If there's a bitcast before the shuffle, check if the load type and
5174 // alignment is valid.
5175 unsigned Align = LN0->getAlignment();
5176 unsigned NewAlign =
5177 TLI.getTargetData()->getABITypeAlignment(
5178 VT.getTypeForEVT(*DAG.getContext()));
5179
5180 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
5181 return false;
5182 }
5183
5184 return true;
5185}
5186
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005187static
Evan Cheng835580f2010-10-07 20:50:20 +00005188SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
5189 EVT VT = Op.getValueType();
5190
5191 // Canonizalize to v2f64.
5192 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, V1);
5193 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
5194 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
5195 V1, DAG));
5196}
5197
5198static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005199SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
5200 bool HasSSE2) {
5201 SDValue V1 = Op.getOperand(0);
5202 SDValue V2 = Op.getOperand(1);
5203 EVT VT = Op.getValueType();
5204
5205 assert(VT != MVT::v2i64 && "unsupported shuffle type");
5206
5207 if (HasSSE2 && VT == MVT::v2f64)
5208 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
5209
5210 // v4f32 or v4i32
5211 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
5212}
5213
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005214static
5215SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
5216 SDValue V1 = Op.getOperand(0);
5217 SDValue V2 = Op.getOperand(1);
5218 EVT VT = Op.getValueType();
5219
5220 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
5221 "unsupported shuffle type");
5222
5223 if (V2.getOpcode() == ISD::UNDEF)
5224 V2 = V1;
5225
5226 // v4i32 or v4f32
5227 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
5228}
5229
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005230static
5231SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
5232 SDValue V1 = Op.getOperand(0);
5233 SDValue V2 = Op.getOperand(1);
5234 EVT VT = Op.getValueType();
5235 unsigned NumElems = VT.getVectorNumElements();
5236
5237 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
5238 // operand of these instructions is only memory, so check if there's a
5239 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
5240 // same masks.
5241 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005242
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00005243 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005244 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005245 CanFoldLoad = true;
5246
5247 // When V1 is a load, it can be folded later into a store in isel, example:
5248 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
5249 // turns into:
5250 // (MOVLPSmr addr:$src1, VR128:$src2)
5251 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005252 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005253 CanFoldLoad = true;
5254
5255 if (CanFoldLoad) {
5256 if (HasSSE2 && NumElems == 2)
5257 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
5258
5259 if (NumElems == 4)
5260 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
5261 }
5262
5263 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5264 // movl and movlp will both match v2i64, but v2i64 is never matched by
5265 // movl earlier because we make it strict to avoid messing with the movlp load
5266 // folding logic (see the code above getMOVLP call). Match it here then,
5267 // this is horrible, but will stay like this until we move all shuffle
5268 // matching to x86 specific nodes. Note that for the 1st condition all
5269 // types are matched with movsd.
5270 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
5271 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5272 else if (HasSSE2)
5273 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5274
5275
5276 assert(VT != MVT::v4i32 && "unsupported shuffle type");
5277
5278 // Invert the operand order and use SHUFPS to match it.
5279 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
5280 X86::getShuffleSHUFImmediate(SVOp), DAG);
5281}
5282
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005283static inline unsigned getUNPCKLOpcode(EVT VT) {
5284 switch(VT.getSimpleVT().SimpleTy) {
5285 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
5286 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
5287 case MVT::v4f32: return X86ISD::UNPCKLPS;
5288 case MVT::v2f64: return X86ISD::UNPCKLPD;
5289 case MVT::v16i8: return X86ISD::PUNPCKLBW;
5290 case MVT::v8i16: return X86ISD::PUNPCKLWD;
5291 default:
5292 llvm_unreachable("Unknow type for unpckl");
5293 }
5294 return 0;
5295}
5296
5297static inline unsigned getUNPCKHOpcode(EVT VT) {
5298 switch(VT.getSimpleVT().SimpleTy) {
5299 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
5300 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
5301 case MVT::v4f32: return X86ISD::UNPCKHPS;
5302 case MVT::v2f64: return X86ISD::UNPCKHPD;
5303 case MVT::v16i8: return X86ISD::PUNPCKHBW;
5304 case MVT::v8i16: return X86ISD::PUNPCKHWD;
5305 default:
5306 llvm_unreachable("Unknow type for unpckh");
5307 }
5308 return 0;
5309}
5310
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005311static
5312SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005313 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005314 const X86Subtarget *Subtarget) {
5315 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5316 EVT VT = Op.getValueType();
5317 DebugLoc dl = Op.getDebugLoc();
5318 SDValue V1 = Op.getOperand(0);
5319 SDValue V2 = Op.getOperand(1);
5320
5321 if (isZeroShuffle(SVOp))
5322 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
5323
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005324 // Handle splat operations
5325 if (SVOp->isSplat()) {
5326 // Special case, this is the only place now where it's
5327 // allowed to return a vector_shuffle operation without
5328 // using a target specific node, because *hopefully* it
5329 // will be optimized away by the dag combiner.
5330 if (VT.getVectorNumElements() <= 4 &&
5331 CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
5332 return Op;
5333
5334 // Handle splats by matching through known masks
5335 if (VT.getVectorNumElements() <= 4)
5336 return SDValue();
5337
Evan Cheng835580f2010-10-07 20:50:20 +00005338 // Canonicalize all of the remaining to v4f32.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005339 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005340 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005341
5342 // If the shuffle can be profitably rewritten as a narrower shuffle, then
5343 // do it!
5344 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
5345 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5346 if (NewOp.getNode())
5347 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, NewOp);
5348 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
5349 // FIXME: Figure out a cleaner way to do this.
5350 // Try to make use of movq to zero out the top part.
5351 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
5352 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5353 if (NewOp.getNode()) {
5354 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
5355 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
5356 DAG, Subtarget, dl);
5357 }
5358 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
5359 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5360 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
5361 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
5362 DAG, Subtarget, dl);
5363 }
5364 }
5365 return SDValue();
5366}
5367
Dan Gohman475871a2008-07-27 21:46:04 +00005368SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005369X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00005370 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005371 SDValue V1 = Op.getOperand(0);
5372 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005373 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005374 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00005375 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005376 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005377 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
5378 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00005379 bool V1IsSplat = false;
5380 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005381 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005382 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005383 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005384 MachineFunction &MF = DAG.getMachineFunction();
5385 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005386
Dale Johannesen0488fb62010-09-30 23:57:10 +00005387 // Shuffle operations on MMX not supported.
5388 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00005389 return Op;
5390
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005391 // Vector shuffle lowering takes 3 steps:
5392 //
5393 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
5394 // narrowing and commutation of operands should be handled.
5395 // 2) Matching of shuffles with known shuffle masks to x86 target specific
5396 // shuffle nodes.
5397 // 3) Rewriting of unmatched masks into new generic shuffle operations,
5398 // so the shuffle can be broken into other shuffles and the legalizer can
5399 // try the lowering again.
5400 //
5401 // The general ideia is that no vector_shuffle operation should be left to
5402 // be matched during isel, all of them must be converted to a target specific
5403 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00005404
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005405 // Normalize the input vectors. Here splats, zeroed vectors, profitable
5406 // narrowing and commutation of operands should be handled. The actual code
5407 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005408 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005409 if (NewOp.getNode())
5410 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00005411
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005412 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
5413 // unpckh_undef). Only use pshufd if speed is more important than size.
5414 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
5415 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5416 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
5417 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
5418 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5419 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00005420
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005421 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00005422 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00005423 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005424
Dale Johannesen0488fb62010-09-30 23:57:10 +00005425 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005426 return getMOVHighToLow(Op, dl, DAG);
5427
5428 // Use to match splats
5429 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
5430 (VT == MVT::v2f64 || VT == MVT::v2i64))
5431 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5432
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005433 if (X86::isPSHUFDMask(SVOp)) {
5434 // The actual implementation will match the mask in the if above and then
5435 // during isel it can match several different instructions, not only pshufd
5436 // as its name says, sad but true, emulate the behavior for now...
5437 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
5438 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
5439
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005440 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5441
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005442 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005443 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
5444
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005445 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005446 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
5447 TargetMask, DAG);
5448
5449 if (VT == MVT::v4f32)
5450 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
5451 TargetMask, DAG);
5452 }
Eric Christopherfd179292009-08-27 18:07:15 +00005453
Evan Chengf26ffe92008-05-29 08:22:04 +00005454 // Check if this can be converted into a logical shift.
5455 bool isLeft = false;
5456 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00005457 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00005458 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00005459 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00005460 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005461 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00005462 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005463 EVT EltVT = VT.getVectorElementType();
5464 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005465 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005466 }
Eric Christopherfd179292009-08-27 18:07:15 +00005467
Nate Begeman9008ca62009-04-27 18:41:29 +00005468 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005469 if (V1IsUndef)
5470 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00005471 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00005472 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00005473 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005474 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005475 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5476
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005477 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005478 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5479 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00005480 }
Eric Christopherfd179292009-08-27 18:07:15 +00005481
Nate Begeman9008ca62009-04-27 18:41:29 +00005482 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00005483 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
5484 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005485
Dale Johannesen0488fb62010-09-30 23:57:10 +00005486 if (X86::isMOVHLPSMask(SVOp))
5487 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005488
Dale Johannesen0488fb62010-09-30 23:57:10 +00005489 if (X86::isMOVSHDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5490 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005491
Dale Johannesen0488fb62010-09-30 23:57:10 +00005492 if (X86::isMOVSLDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5493 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00005494
Dale Johannesen0488fb62010-09-30 23:57:10 +00005495 if (X86::isMOVLPMask(SVOp))
5496 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005497
Nate Begeman9008ca62009-04-27 18:41:29 +00005498 if (ShouldXformToMOVHLPS(SVOp) ||
5499 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
5500 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005501
Evan Chengf26ffe92008-05-29 08:22:04 +00005502 if (isShift) {
5503 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005504 EVT EltVT = VT.getVectorElementType();
5505 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005506 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005507 }
Eric Christopherfd179292009-08-27 18:07:15 +00005508
Evan Cheng9eca5e82006-10-25 21:49:50 +00005509 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00005510 // FIXME: This should also accept a bitcast of a splat? Be careful, not
5511 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00005512 V1IsSplat = isSplatVector(V1.getNode());
5513 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005514
Chris Lattner8a594482007-11-25 00:24:49 +00005515 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00005516 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005517 Op = CommuteVectorShuffle(SVOp, DAG);
5518 SVOp = cast<ShuffleVectorSDNode>(Op);
5519 V1 = SVOp->getOperand(0);
5520 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00005521 std::swap(V1IsSplat, V2IsSplat);
5522 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005523 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00005524 }
5525
Nate Begeman9008ca62009-04-27 18:41:29 +00005526 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
5527 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00005528 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00005529 return V1;
5530 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
5531 // the instruction selector will not match, so get a canonical MOVL with
5532 // swapped operands to undo the commute.
5533 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00005534 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005535
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005536 if (X86::isUNPCKLMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005537 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005538
5539 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005540 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00005541
Evan Cheng9bbbb982006-10-25 20:48:19 +00005542 if (V2IsSplat) {
5543 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00005544 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00005545 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00005546 SDValue NewMask = NormalizeMask(SVOp, DAG);
5547 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
5548 if (NSVOp != SVOp) {
5549 if (X86::isUNPCKLMask(NSVOp, true)) {
5550 return NewMask;
5551 } else if (X86::isUNPCKHMask(NSVOp, true)) {
5552 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005553 }
5554 }
5555 }
5556
Evan Cheng9eca5e82006-10-25 21:49:50 +00005557 if (Commuted) {
5558 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00005559 // FIXME: this seems wrong.
5560 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
5561 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005562
5563 if (X86::isUNPCKLMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005564 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005565
5566 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005567 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005568 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005569
Nate Begeman9008ca62009-04-27 18:41:29 +00005570 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00005571 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00005572 return CommuteVectorShuffle(SVOp, DAG);
5573
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00005574 // The checks below are all present in isShuffleMaskLegal, but they are
5575 // inlined here right now to enable us to directly emit target specific
5576 // nodes, and remove one by one until they don't return Op anymore.
5577 SmallVector<int, 16> M;
5578 SVOp->getMask(M);
5579
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005580 if (isPALIGNRMask(M, VT, HasSSSE3))
5581 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
5582 X86::getShufflePALIGNRImmediate(SVOp),
5583 DAG);
5584
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00005585 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
5586 SVOp->getSplatIndex() == 0 && V2IsUndef) {
5587 if (VT == MVT::v2f64)
5588 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
5589 if (VT == MVT::v2i64)
5590 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
5591 }
5592
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00005593 if (isPSHUFHWMask(M, VT))
5594 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
5595 X86::getShufflePSHUFHWImmediate(SVOp),
5596 DAG);
5597
5598 if (isPSHUFLWMask(M, VT))
5599 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
5600 X86::getShufflePSHUFLWImmediate(SVOp),
5601 DAG);
5602
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00005603 if (isSHUFPMask(M, VT)) {
5604 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5605 if (VT == MVT::v4f32 || VT == MVT::v4i32)
5606 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
5607 TargetMask, DAG);
5608 if (VT == MVT::v2f64 || VT == MVT::v2i64)
5609 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
5610 TargetMask, DAG);
5611 }
5612
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005613 if (X86::isUNPCKL_v_undef_Mask(SVOp))
5614 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5615 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
5616 if (X86::isUNPCKH_v_undef_Mask(SVOp))
5617 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5618 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5619
Evan Cheng14b32e12007-12-11 01:46:18 +00005620 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
Owen Anderson825b72b2009-08-11 20:47:22 +00005621 if (VT == MVT::v8i16) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005622 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005623 if (NewOp.getNode())
Evan Cheng14b32e12007-12-11 01:46:18 +00005624 return NewOp;
5625 }
5626
Owen Anderson825b72b2009-08-11 20:47:22 +00005627 if (VT == MVT::v16i8) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005628 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005629 if (NewOp.getNode())
5630 return NewOp;
5631 }
Eric Christopherfd179292009-08-27 18:07:15 +00005632
Dale Johannesen0488fb62010-09-30 23:57:10 +00005633 // Handle all 4 wide cases with a number of shuffles.
5634 if (NumElems == 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005635 return LowerVECTOR_SHUFFLE_4wide(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005636
Dan Gohman475871a2008-07-27 21:46:04 +00005637 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005638}
5639
Dan Gohman475871a2008-07-27 21:46:04 +00005640SDValue
5641X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00005642 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005643 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005644 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005645 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005646 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005647 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005648 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005649 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005650 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005651 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00005652 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
5653 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
5654 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005655 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
5656 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Dale Johannesenace16102009-02-03 19:33:06 +00005657 DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005658 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00005659 Op.getOperand(0)),
5660 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00005661 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005662 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005663 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005664 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005665 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00005666 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00005667 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
5668 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005669 // result has a single use which is a store or a bitcast to i32. And in
5670 // the case of a store, it's not worth it if the index is a constant 0,
5671 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00005672 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00005673 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00005674 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005675 if ((User->getOpcode() != ISD::STORE ||
5676 (isa<ConstantSDNode>(Op.getOperand(1)) &&
5677 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Dan Gohman171c11e2008-04-16 02:32:24 +00005678 (User->getOpcode() != ISD::BIT_CONVERT ||
Owen Anderson825b72b2009-08-11 20:47:22 +00005679 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00005680 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00005681 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
5682 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00005683 Op.getOperand(0)),
5684 Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005685 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, Extract);
5686 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00005687 // ExtractPS works with constant index.
5688 if (isa<ConstantSDNode>(Op.getOperand(1)))
5689 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00005690 }
Dan Gohman475871a2008-07-27 21:46:04 +00005691 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005692}
5693
5694
Dan Gohman475871a2008-07-27 21:46:04 +00005695SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005696X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
5697 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005698 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00005699 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005700
Evan Cheng62a3f152008-03-24 21:52:23 +00005701 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005702 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005703 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00005704 return Res;
5705 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00005706
Owen Andersone50ed302009-08-10 22:56:29 +00005707 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005708 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005709 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005710 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005711 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005712 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005713 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005714 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
5715 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Scott Michelfdc40a02009-02-17 22:15:04 +00005716 DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005717 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00005718 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005719 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00005720 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00005721 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00005722 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00005723 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00005724 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005725 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005726 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005727 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005728 if (Idx == 0)
5729 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00005730
Evan Cheng0db9fe62006-04-25 20:13:52 +00005731 // SHUFPS the element to the lowest double word, then movss.
Nate Begeman9008ca62009-04-27 18:41:29 +00005732 int Mask[4] = { Idx, -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00005733 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00005734 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00005735 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00005736 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00005737 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00005738 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00005739 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
5740 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
5741 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005742 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005743 if (Idx == 0)
5744 return Op;
5745
5746 // UNPCKHPD the element to the lowest double word, then movsd.
5747 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
5748 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00005749 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00005750 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00005751 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00005752 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00005753 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00005754 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005755 }
5756
Dan Gohman475871a2008-07-27 21:46:04 +00005757 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005758}
5759
Dan Gohman475871a2008-07-27 21:46:04 +00005760SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005761X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
5762 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005763 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00005764 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005765 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005766
Dan Gohman475871a2008-07-27 21:46:04 +00005767 SDValue N0 = Op.getOperand(0);
5768 SDValue N1 = Op.getOperand(1);
5769 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00005770
Dan Gohman8a55ce42009-09-23 21:02:20 +00005771 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00005772 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00005773 unsigned Opc;
5774 if (VT == MVT::v8i16)
5775 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00005776 else if (VT == MVT::v16i8)
5777 Opc = X86ISD::PINSRB;
5778 else
5779 Opc = X86ISD::PINSRB;
5780
Nate Begeman14d12ca2008-02-11 04:19:36 +00005781 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
5782 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00005783 if (N1.getValueType() != MVT::i32)
5784 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
5785 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005786 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00005787 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00005788 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00005789 // Bits [7:6] of the constant are the source select. This will always be
5790 // zero here. The DAG Combiner may combine an extract_elt index into these
5791 // bits. For example (insert (extract, 3), 2) could be matched by putting
5792 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00005793 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00005794 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00005795 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00005796 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005797 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00005798 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00005799 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00005800 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00005801 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00005802 // PINSR* works with constant index.
5803 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00005804 }
Dan Gohman475871a2008-07-27 21:46:04 +00005805 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005806}
5807
Dan Gohman475871a2008-07-27 21:46:04 +00005808SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005809X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005810 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00005811 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005812
5813 if (Subtarget->hasSSE41())
5814 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
5815
Dan Gohman8a55ce42009-09-23 21:02:20 +00005816 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00005817 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00005818
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005819 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00005820 SDValue N0 = Op.getOperand(0);
5821 SDValue N1 = Op.getOperand(1);
5822 SDValue N2 = Op.getOperand(2);
Evan Cheng794405e2007-12-12 07:55:34 +00005823
Dan Gohman8a55ce42009-09-23 21:02:20 +00005824 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00005825 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
5826 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00005827 if (N1.getValueType() != MVT::i32)
5828 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
5829 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005830 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00005831 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005832 }
Dan Gohman475871a2008-07-27 21:46:04 +00005833 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005834}
5835
Dan Gohman475871a2008-07-27 21:46:04 +00005836SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005837X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005838 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00005839
Chris Lattnerf172ecd2010-07-04 23:07:25 +00005840 if (Op.getValueType() == MVT::v1i64 &&
5841 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00005842 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00005843
Owen Anderson825b72b2009-08-11 20:47:22 +00005844 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00005845 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
5846 "Expected an SSE type!");
Dale Johannesenace16102009-02-03 19:33:06 +00005847 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00005848 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005849}
5850
Bill Wendling056292f2008-09-16 21:48:12 +00005851// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
5852// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
5853// one of the above mentioned nodes. It has to be wrapped because otherwise
5854// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
5855// be used to form addressing mode. These wrapped nodes will be selected
5856// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00005857SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005858X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005859 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00005860
Chris Lattner41621a22009-06-26 19:22:52 +00005861 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5862 // global base reg.
5863 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00005864 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005865 CodeModel::Model M = getTargetMachine().getCodeModel();
5866
Chris Lattner4f066492009-07-11 20:29:19 +00005867 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005868 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005869 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005870 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005871 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005872 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005873 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005874
Evan Cheng1606e8e2009-03-13 07:51:59 +00005875 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00005876 CP->getAlignment(),
5877 CP->getOffset(), OpFlag);
5878 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00005879 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005880 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00005881 if (OpFlag) {
5882 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005883 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005884 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005885 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005886 }
5887
5888 return Result;
5889}
5890
Dan Gohmand858e902010-04-17 15:26:15 +00005891SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00005892 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00005893
Chris Lattner18c59872009-06-27 04:16:01 +00005894 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5895 // global base reg.
5896 unsigned char OpFlag = 0;
5897 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005898 CodeModel::Model M = getTargetMachine().getCodeModel();
5899
Chris Lattner4f066492009-07-11 20:29:19 +00005900 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005901 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005902 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005903 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005904 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005905 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005906 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005907
Chris Lattner18c59872009-06-27 04:16:01 +00005908 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
5909 OpFlag);
5910 DebugLoc DL = JT->getDebugLoc();
5911 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005912
Chris Lattner18c59872009-06-27 04:16:01 +00005913 // With PIC, the address is actually $g + Offset.
5914 if (OpFlag) {
5915 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
5916 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005917 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00005918 Result);
5919 }
Eric Christopherfd179292009-08-27 18:07:15 +00005920
Chris Lattner18c59872009-06-27 04:16:01 +00005921 return Result;
5922}
5923
5924SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005925X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00005926 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00005927
Chris Lattner18c59872009-06-27 04:16:01 +00005928 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5929 // global base reg.
5930 unsigned char OpFlag = 0;
5931 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005932 CodeModel::Model M = getTargetMachine().getCodeModel();
5933
Chris Lattner4f066492009-07-11 20:29:19 +00005934 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005935 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005936 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005937 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005938 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005939 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005940 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005941
Chris Lattner18c59872009-06-27 04:16:01 +00005942 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00005943
Chris Lattner18c59872009-06-27 04:16:01 +00005944 DebugLoc DL = Op.getDebugLoc();
5945 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005946
5947
Chris Lattner18c59872009-06-27 04:16:01 +00005948 // With PIC, the address is actually $g + Offset.
5949 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00005950 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00005951 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
5952 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005953 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00005954 Result);
5955 }
Eric Christopherfd179292009-08-27 18:07:15 +00005956
Chris Lattner18c59872009-06-27 04:16:01 +00005957 return Result;
5958}
5959
Dan Gohman475871a2008-07-27 21:46:04 +00005960SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005961X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00005962 // Create the TargetBlockAddressAddress node.
5963 unsigned char OpFlags =
5964 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00005965 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00005966 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00005967 DebugLoc dl = Op.getDebugLoc();
5968 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
5969 /*isTarget=*/true, OpFlags);
5970
Dan Gohmanf705adb2009-10-30 01:28:02 +00005971 if (Subtarget->isPICStyleRIPRel() &&
5972 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00005973 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
5974 else
5975 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00005976
Dan Gohman29cbade2009-11-20 23:18:13 +00005977 // With PIC, the address is actually $g + Offset.
5978 if (isGlobalRelativeToPICBase(OpFlags)) {
5979 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
5980 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
5981 Result);
5982 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00005983
5984 return Result;
5985}
5986
5987SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00005988X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00005989 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00005990 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00005991 // Create the TargetGlobalAddress node, folding in the constant
5992 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00005993 unsigned char OpFlags =
5994 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005995 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00005996 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005997 if (OpFlags == X86II::MO_NO_FLAG &&
5998 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00005999 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00006000 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00006001 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006002 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00006003 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006004 }
Eric Christopherfd179292009-08-27 18:07:15 +00006005
Chris Lattner4f066492009-07-11 20:29:19 +00006006 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006007 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00006008 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6009 else
6010 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00006011
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006012 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00006013 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006014 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6015 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006016 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006017 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006018
Chris Lattner36c25012009-07-10 07:34:39 +00006019 // For globals that require a load from a stub to get the address, emit the
6020 // load.
6021 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00006022 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006023 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006024
Dan Gohman6520e202008-10-18 02:06:02 +00006025 // If there was a non-zero offset that we didn't fold, create an explicit
6026 // addition for it.
6027 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006028 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00006029 DAG.getConstant(Offset, getPointerTy()));
6030
Evan Cheng0db9fe62006-04-25 20:13:52 +00006031 return Result;
6032}
6033
Evan Chengda43bcf2008-09-24 00:05:32 +00006034SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006035X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00006036 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00006037 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006038 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00006039}
6040
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006041static SDValue
6042GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00006043 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00006044 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006045 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Owen Anderson825b72b2009-08-11 20:47:22 +00006046 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006047 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006048 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006049 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006050 GA->getOffset(),
6051 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006052 if (InFlag) {
6053 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006054 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006055 } else {
6056 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006057 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006058 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006059
6060 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00006061 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006062
Rafael Espindola15f1b662009-04-24 12:59:40 +00006063 SDValue Flag = Chain.getValue(1);
6064 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006065}
6066
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006067// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006068static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006069LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006070 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00006071 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00006072 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
6073 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006074 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006075 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006076 InFlag = Chain.getValue(1);
6077
Chris Lattnerb903bed2009-06-26 21:20:29 +00006078 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006079}
6080
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006081// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006082static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006083LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006084 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006085 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
6086 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006087}
6088
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006089// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
6090// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00006091static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006092 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00006093 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006094 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00006095
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006096 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
6097 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
6098 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00006099
Michael J. Spencerec38de22010-10-10 22:04:20 +00006100 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006101 DAG.getIntPtrConstant(0),
6102 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00006103
Chris Lattnerb903bed2009-06-26 21:20:29 +00006104 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006105 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
6106 // initialexec.
6107 unsigned WrapperKind = X86ISD::Wrapper;
6108 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006109 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00006110 } else if (is64Bit) {
6111 assert(model == TLSModel::InitialExec);
6112 OperandFlags = X86II::MO_GOTTPOFF;
6113 WrapperKind = X86ISD::WrapperRIP;
6114 } else {
6115 assert(model == TLSModel::InitialExec);
6116 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00006117 }
Eric Christopherfd179292009-08-27 18:07:15 +00006118
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006119 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
6120 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00006121 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00006122 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006123 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006124 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006125
Rafael Espindola9a580232009-02-27 13:37:18 +00006126 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006127 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006128 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006129
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006130 // The address of the thread local variable is the add of the thread
6131 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00006132 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006133}
6134
Dan Gohman475871a2008-07-27 21:46:04 +00006135SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006136X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00006137
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006138 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00006139 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00006140
Eric Christopher30ef0e52010-06-03 04:07:48 +00006141 if (Subtarget->isTargetELF()) {
6142 // TODO: implement the "local dynamic" model
6143 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00006144
Eric Christopher30ef0e52010-06-03 04:07:48 +00006145 // If GV is an alias then use the aliasee for determining
6146 // thread-localness.
6147 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
6148 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006149
6150 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00006151 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006152
Eric Christopher30ef0e52010-06-03 04:07:48 +00006153 switch (model) {
6154 case TLSModel::GeneralDynamic:
6155 case TLSModel::LocalDynamic: // not implemented
6156 if (Subtarget->is64Bit())
6157 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
6158 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006159
Eric Christopher30ef0e52010-06-03 04:07:48 +00006160 case TLSModel::InitialExec:
6161 case TLSModel::LocalExec:
6162 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
6163 Subtarget->is64Bit());
6164 }
6165 } else if (Subtarget->isTargetDarwin()) {
6166 // Darwin only has one model of TLS. Lower to that.
6167 unsigned char OpFlag = 0;
6168 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
6169 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006170
Eric Christopher30ef0e52010-06-03 04:07:48 +00006171 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6172 // global base reg.
6173 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
6174 !Subtarget->is64Bit();
6175 if (PIC32)
6176 OpFlag = X86II::MO_TLVP_PIC_BASE;
6177 else
6178 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006179 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006180 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopher30ef0e52010-06-03 04:07:48 +00006181 getPointerTy(),
6182 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00006183 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006184
Eric Christopher30ef0e52010-06-03 04:07:48 +00006185 // With PIC32, the address is actually $g + Offset.
6186 if (PIC32)
6187 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6188 DAG.getNode(X86ISD::GlobalBaseReg,
6189 DebugLoc(), getPointerTy()),
6190 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006191
Eric Christopher30ef0e52010-06-03 04:07:48 +00006192 // Lowering the machine isd will make sure everything is in the right
6193 // location.
6194 SDValue Args[] = { Offset };
6195 SDValue Chain = DAG.getNode(X86ISD::TLSCALL, DL, MVT::Other, Args, 1);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006196
Eric Christopher30ef0e52010-06-03 04:07:48 +00006197 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
6198 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6199 MFI->setAdjustsStack(true);
Eric Christopherfd179292009-08-27 18:07:15 +00006200
Eric Christopher30ef0e52010-06-03 04:07:48 +00006201 // And our return value (tls address) is in the standard call return value
6202 // location.
6203 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
6204 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006205 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006206
Eric Christopher30ef0e52010-06-03 04:07:48 +00006207 assert(false &&
6208 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00006209
Torok Edwinc23197a2009-07-14 16:55:14 +00006210 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00006211 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006212}
6213
Evan Cheng0db9fe62006-04-25 20:13:52 +00006214
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006215/// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00006216/// take a 2 x i32 value to shift plus a shift amount.
Dan Gohmand858e902010-04-17 15:26:15 +00006217SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00006218 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00006219 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006220 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006221 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006222 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00006223 SDValue ShOpLo = Op.getOperand(0);
6224 SDValue ShOpHi = Op.getOperand(1);
6225 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00006226 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00006227 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00006228 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00006229
Dan Gohman475871a2008-07-27 21:46:04 +00006230 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006231 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006232 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
6233 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006234 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006235 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
6236 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006237 }
Evan Chenge3413162006-01-09 18:33:28 +00006238
Owen Anderson825b72b2009-08-11 20:47:22 +00006239 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
6240 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00006241 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00006242 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00006243
Dan Gohman475871a2008-07-27 21:46:04 +00006244 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00006245 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00006246 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
6247 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00006248
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006249 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006250 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6251 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006252 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006253 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6254 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006255 }
6256
Dan Gohman475871a2008-07-27 21:46:04 +00006257 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00006258 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006259}
Evan Chenga3195e82006-01-12 22:54:21 +00006260
Dan Gohmand858e902010-04-17 15:26:15 +00006261SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
6262 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006263 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00006264
Dale Johannesen0488fb62010-09-30 23:57:10 +00006265 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006266 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006267
Owen Anderson825b72b2009-08-11 20:47:22 +00006268 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00006269 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00006270
Eli Friedman36df4992009-05-27 00:47:34 +00006271 // These are really Legal; return the operand so the caller accepts it as
6272 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006273 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00006274 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00006275 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00006276 Subtarget->is64Bit()) {
6277 return Op;
6278 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006279
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006280 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006281 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006282 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00006283 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006284 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00006285 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00006286 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006287 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006288 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006289 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
6290}
Evan Cheng0db9fe62006-04-25 20:13:52 +00006291
Owen Andersone50ed302009-08-10 22:56:29 +00006292SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00006293 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00006294 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006295 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00006296 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00006297 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00006298 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006299 if (useSSE)
Owen Anderson825b72b2009-08-11 20:47:22 +00006300 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
Chris Lattner5a88b832007-02-25 07:10:00 +00006301 else
Owen Anderson825b72b2009-08-11 20:47:22 +00006302 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006303
Chris Lattner492a43e2010-09-22 01:28:21 +00006304 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006305
Chris Lattner492a43e2010-09-22 01:28:21 +00006306 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6307 MachineMemOperand *MMO =
6308 DAG.getMachineFunction()
6309 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6310 MachineMemOperand::MOLoad, ByteSize, ByteSize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006311
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006312 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006313 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
6314 X86ISD::FILD, DL,
6315 Tys, Ops, array_lengthof(Ops),
6316 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006317
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006318 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006319 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00006320 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006321
6322 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
6323 // shouldn't be necessary except that RFP cannot be live across
6324 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006325 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006326 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
6327 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006328 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00006329 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006330 SDValue Ops[] = {
6331 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
6332 };
Chris Lattner492a43e2010-09-22 01:28:21 +00006333 MachineMemOperand *MMO =
6334 DAG.getMachineFunction()
6335 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006336 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006337
Chris Lattner492a43e2010-09-22 01:28:21 +00006338 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
6339 Ops, array_lengthof(Ops),
6340 Op.getValueType(), MMO);
6341 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006342 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006343 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006344 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006345
Evan Cheng0db9fe62006-04-25 20:13:52 +00006346 return Result;
6347}
6348
Bill Wendling8b8a6362009-01-17 03:56:04 +00006349// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006350SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
6351 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00006352 // This algorithm is not obvious. Here it is in C code, more or less:
6353 /*
6354 double uint64_to_double( uint32_t hi, uint32_t lo ) {
6355 static const __m128i exp = { 0x4330000045300000ULL, 0 };
6356 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00006357
Bill Wendling8b8a6362009-01-17 03:56:04 +00006358 // Copy ints to xmm registers.
6359 __m128i xh = _mm_cvtsi32_si128( hi );
6360 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00006361
Bill Wendling8b8a6362009-01-17 03:56:04 +00006362 // Combine into low half of a single xmm register.
6363 __m128i x = _mm_unpacklo_epi32( xh, xl );
6364 __m128d d;
6365 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00006366
Bill Wendling8b8a6362009-01-17 03:56:04 +00006367 // Merge in appropriate exponents to give the integer bits the right
6368 // magnitude.
6369 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00006370
Bill Wendling8b8a6362009-01-17 03:56:04 +00006371 // Subtract away the biases to deal with the IEEE-754 double precision
6372 // implicit 1.
6373 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00006374
Bill Wendling8b8a6362009-01-17 03:56:04 +00006375 // All conversions up to here are exact. The correctly rounded result is
6376 // calculated using the current rounding mode using the following
6377 // horizontal add.
6378 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
6379 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
6380 // store doesn't really need to be here (except
6381 // maybe to zero the other double)
6382 return sd;
6383 }
6384 */
Dale Johannesen040225f2008-10-21 23:07:49 +00006385
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006386 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00006387 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00006388
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006389 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00006390 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00006391 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
6392 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
6393 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
6394 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006395 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006396 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006397
Bill Wendling8b8a6362009-01-17 03:56:04 +00006398 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00006399 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006400 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00006401 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006402 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006403 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006404 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006405
Owen Anderson825b72b2009-08-11 20:47:22 +00006406 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6407 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006408 Op.getOperand(0),
6409 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006410 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6411 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006412 Op.getOperand(0),
6413 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006414 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
6415 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00006416 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006417 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006418 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
6419 SDValue XR2F = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Unpck2);
6420 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00006421 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006422 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006423 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006424
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006425 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00006426 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00006427 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
6428 DAG.getUNDEF(MVT::v2f64), ShufMask);
6429 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
6430 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006431 DAG.getIntPtrConstant(0));
6432}
6433
Bill Wendling8b8a6362009-01-17 03:56:04 +00006434// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006435SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
6436 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006437 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006438 // FP constant to bias correct the final result.
6439 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00006440 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006441
6442 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00006443 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6444 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling8b8a6362009-01-17 03:56:04 +00006445 Op.getOperand(0),
6446 DAG.getIntPtrConstant(0)));
6447
Owen Anderson825b72b2009-08-11 20:47:22 +00006448 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
6449 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006450 DAG.getIntPtrConstant(0));
6451
6452 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006453 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
6454 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006455 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006456 MVT::v2f64, Load)),
6457 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006458 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006459 MVT::v2f64, Bias)));
6460 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
6461 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006462 DAG.getIntPtrConstant(0));
6463
6464 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006465 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006466
6467 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00006468 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00006469
Owen Anderson825b72b2009-08-11 20:47:22 +00006470 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006471 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00006472 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00006473 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006474 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00006475 }
6476
6477 // Handle final rounding.
6478 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00006479}
6480
Dan Gohmand858e902010-04-17 15:26:15 +00006481SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
6482 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00006483 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006484 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006485
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006486 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00006487 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
6488 // the optimization here.
6489 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00006490 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00006491
Owen Andersone50ed302009-08-10 22:56:29 +00006492 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006493 EVT DstVT = Op.getValueType();
6494 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006495 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006496 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006497 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00006498
6499 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00006500 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006501 if (SrcVT == MVT::i32) {
6502 SDValue WordOff = DAG.getConstant(4, getPointerTy());
6503 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
6504 getPointerTy(), StackSlot, WordOff);
6505 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006506 StackSlot, MachinePointerInfo(),
6507 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006508 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006509 OffsetSlot, MachinePointerInfo(),
6510 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006511 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
6512 return Fild;
6513 }
6514
6515 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
6516 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006517 StackSlot, MachinePointerInfo(),
6518 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006519 // For i64 source, we need to add the appropriate power of 2 if the input
6520 // was negative. This is the same as the optimization in
6521 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
6522 // we must be careful to do the computation in x87 extended precision, not
6523 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00006524 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6525 MachineMemOperand *MMO =
6526 DAG.getMachineFunction()
6527 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6528 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006529
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006530 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
6531 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006532 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
6533 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006534
6535 APInt FF(32, 0x5F800000ULL);
6536
6537 // Check whether the sign bit is set.
6538 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
6539 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
6540 ISD::SETLT);
6541
6542 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
6543 SDValue FudgePtr = DAG.getConstantPool(
6544 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
6545 getPointerTy());
6546
6547 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
6548 SDValue Zero = DAG.getIntPtrConstant(0);
6549 SDValue Four = DAG.getIntPtrConstant(4);
6550 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
6551 Zero, Four);
6552 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
6553
6554 // Load the value out, extending it from f32 to f80.
6555 // FIXME: Avoid the extend by constructing the right constant pool?
Evan Chengbcc80172010-07-07 22:15:37 +00006556 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, MVT::f80, dl, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00006557 FudgePtr, MachinePointerInfo::getConstantPool(),
6558 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006559 // Extend everything to 80 bits to force it to be done on x87.
6560 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
6561 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00006562}
6563
Dan Gohman475871a2008-07-27 21:46:04 +00006564std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00006565FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00006566 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00006567
Owen Andersone50ed302009-08-10 22:56:29 +00006568 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00006569
6570 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006571 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
6572 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00006573 }
6574
Owen Anderson825b72b2009-08-11 20:47:22 +00006575 assert(DstTy.getSimpleVT() <= MVT::i64 &&
6576 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00006577 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00006578
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006579 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006580 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00006581 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00006582 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00006583 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00006584 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00006585 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00006586 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006587
Evan Cheng87c89352007-10-15 20:11:21 +00006588 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
6589 // stack slot.
6590 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00006591 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00006592 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006593 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00006594
Michael J. Spencerec38de22010-10-10 22:04:20 +00006595
6596
Evan Cheng0db9fe62006-04-25 20:13:52 +00006597 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00006598 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00006599 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00006600 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
6601 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
6602 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006603 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006604
Dan Gohman475871a2008-07-27 21:46:04 +00006605 SDValue Chain = DAG.getEntryNode();
6606 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00006607 EVT TheVT = Op.getOperand(0).getValueType();
6608 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006609 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00006610 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006611 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006612 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00006613 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00006614 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00006615 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00006616 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00006617
Chris Lattner492a43e2010-09-22 01:28:21 +00006618 MachineMemOperand *MMO =
6619 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6620 MachineMemOperand::MOLoad, MemSize, MemSize);
6621 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
6622 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006623 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00006624 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006625 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
6626 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006627
Chris Lattner07290932010-09-22 01:05:16 +00006628 MachineMemOperand *MMO =
6629 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6630 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006631
Evan Cheng0db9fe62006-04-25 20:13:52 +00006632 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00006633 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00006634 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
6635 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00006636
Chris Lattner27a6c732007-11-24 07:07:01 +00006637 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006638}
6639
Dan Gohmand858e902010-04-17 15:26:15 +00006640SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
6641 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00006642 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006643 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006644
Eli Friedman948e95a2009-05-23 09:59:16 +00006645 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00006646 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00006647 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
6648 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00006649
Chris Lattner27a6c732007-11-24 07:07:01 +00006650 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006651 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00006652 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00006653}
6654
Dan Gohmand858e902010-04-17 15:26:15 +00006655SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
6656 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00006657 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
6658 SDValue FIST = Vals.first, StackSlot = Vals.second;
6659 assert(FIST.getNode() && "Unexpected failure");
6660
6661 // Load the result.
6662 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00006663 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006664}
6665
Dan Gohmand858e902010-04-17 15:26:15 +00006666SDValue X86TargetLowering::LowerFABS(SDValue Op,
6667 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006668 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006669 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006670 EVT VT = Op.getValueType();
6671 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006672 if (VT.isVector())
6673 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006674 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006675 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006676 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00006677 CV.push_back(C);
6678 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006679 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006680 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00006681 CV.push_back(C);
6682 CV.push_back(C);
6683 CV.push_back(C);
6684 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006685 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006686 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006687 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006688 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006689 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006690 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006691 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006692}
6693
Dan Gohmand858e902010-04-17 15:26:15 +00006694SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006695 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006696 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006697 EVT VT = Op.getValueType();
6698 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00006699 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00006700 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006701 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006702 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006703 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00006704 CV.push_back(C);
6705 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006706 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006707 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00006708 CV.push_back(C);
6709 CV.push_back(C);
6710 CV.push_back(C);
6711 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006712 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006713 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006714 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006715 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006716 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006717 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006718 if (VT.isVector()) {
Dale Johannesenace16102009-02-03 19:33:06 +00006719 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00006720 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
6721 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006722 Op.getOperand(0)),
Owen Anderson825b72b2009-08-11 20:47:22 +00006723 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00006724 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006725 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00006726 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006727}
6728
Dan Gohmand858e902010-04-17 15:26:15 +00006729SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006730 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00006731 SDValue Op0 = Op.getOperand(0);
6732 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006733 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006734 EVT VT = Op.getValueType();
6735 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00006736
6737 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006738 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006739 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00006740 SrcVT = VT;
6741 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006742 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006743 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006744 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006745 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006746 }
6747
6748 // At this point the operands and the result should have the same
6749 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00006750
Evan Cheng68c47cb2007-01-05 07:55:56 +00006751 // First get the sign bit of second operand.
6752 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006753 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006754 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
6755 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006756 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006757 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
6758 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6759 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6760 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006761 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006762 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006763 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006764 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006765 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006766 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006767 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006768
6769 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006770 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006771 // Op0 is MVT::f32, Op1 is MVT::f64.
6772 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
6773 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
6774 DAG.getConstant(32, MVT::i32));
6775 SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32, SignBit);
6776 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00006777 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006778 }
6779
Evan Cheng73d6cf12007-01-05 21:37:56 +00006780 // Clear first operand sign bit.
6781 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00006782 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006783 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
6784 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00006785 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006786 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
6787 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6788 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6789 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00006790 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006791 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006792 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006793 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006794 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006795 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006796 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00006797
6798 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00006799 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006800}
6801
Dan Gohman076aee32009-03-04 19:44:21 +00006802/// Emit nodes that will be selected as "test Op0,Op0", or something
6803/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00006804SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00006805 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00006806 DebugLoc dl = Op.getDebugLoc();
6807
Dan Gohman31125812009-03-07 01:58:32 +00006808 // CF and OF aren't always set the way we want. Determine which
6809 // of these we need.
6810 bool NeedCF = false;
6811 bool NeedOF = false;
6812 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006813 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00006814 case X86::COND_A: case X86::COND_AE:
6815 case X86::COND_B: case X86::COND_BE:
6816 NeedCF = true;
6817 break;
6818 case X86::COND_G: case X86::COND_GE:
6819 case X86::COND_L: case X86::COND_LE:
6820 case X86::COND_O: case X86::COND_NO:
6821 NeedOF = true;
6822 break;
Dan Gohman31125812009-03-07 01:58:32 +00006823 }
6824
Dan Gohman076aee32009-03-04 19:44:21 +00006825 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00006826 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
6827 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006828 if (Op.getResNo() != 0 || NeedOF || NeedCF)
6829 // Emit a CMP with 0, which is the TEST pattern.
6830 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
6831 DAG.getConstant(0, Op.getValueType()));
6832
6833 unsigned Opcode = 0;
6834 unsigned NumOperands = 0;
6835 switch (Op.getNode()->getOpcode()) {
6836 case ISD::ADD:
6837 // Due to an isel shortcoming, be conservative if this add is likely to be
6838 // selected as part of a load-modify-store instruction. When the root node
6839 // in a match is a store, isel doesn't know how to remap non-chain non-flag
6840 // uses of other nodes in the match, such as the ADD in this case. This
6841 // leads to the ADD being left around and reselected, with the result being
6842 // two adds in the output. Alas, even if none our users are stores, that
6843 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
6844 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
6845 // climbing the DAG back to the root, and it doesn't seem to be worth the
6846 // effort.
6847 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00006848 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006849 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
6850 goto default_case;
6851
6852 if (ConstantSDNode *C =
6853 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
6854 // An add of one will be selected as an INC.
6855 if (C->getAPIntValue() == 1) {
6856 Opcode = X86ISD::INC;
6857 NumOperands = 1;
6858 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00006859 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006860
6861 // An add of negative one (subtract of one) will be selected as a DEC.
6862 if (C->getAPIntValue().isAllOnesValue()) {
6863 Opcode = X86ISD::DEC;
6864 NumOperands = 1;
6865 break;
6866 }
Dan Gohman076aee32009-03-04 19:44:21 +00006867 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006868
6869 // Otherwise use a regular EFLAGS-setting add.
6870 Opcode = X86ISD::ADD;
6871 NumOperands = 2;
6872 break;
6873 case ISD::AND: {
6874 // If the primary and result isn't used, don't bother using X86ISD::AND,
6875 // because a TEST instruction will be better.
6876 bool NonFlagUse = false;
6877 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
6878 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
6879 SDNode *User = *UI;
6880 unsigned UOpNo = UI.getOperandNo();
6881 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
6882 // Look pass truncate.
6883 UOpNo = User->use_begin().getOperandNo();
6884 User = *User->use_begin();
6885 }
6886
6887 if (User->getOpcode() != ISD::BRCOND &&
6888 User->getOpcode() != ISD::SETCC &&
6889 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
6890 NonFlagUse = true;
6891 break;
6892 }
Dan Gohman076aee32009-03-04 19:44:21 +00006893 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006894
6895 if (!NonFlagUse)
6896 break;
6897 }
6898 // FALL THROUGH
6899 case ISD::SUB:
6900 case ISD::OR:
6901 case ISD::XOR:
6902 // Due to the ISEL shortcoming noted above, be conservative if this op is
6903 // likely to be selected as part of a load-modify-store instruction.
6904 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
6905 UE = Op.getNode()->use_end(); UI != UE; ++UI)
6906 if (UI->getOpcode() == ISD::STORE)
6907 goto default_case;
6908
6909 // Otherwise use a regular EFLAGS-setting instruction.
6910 switch (Op.getNode()->getOpcode()) {
6911 default: llvm_unreachable("unexpected operator!");
6912 case ISD::SUB: Opcode = X86ISD::SUB; break;
6913 case ISD::OR: Opcode = X86ISD::OR; break;
6914 case ISD::XOR: Opcode = X86ISD::XOR; break;
6915 case ISD::AND: Opcode = X86ISD::AND; break;
6916 }
6917
6918 NumOperands = 2;
6919 break;
6920 case X86ISD::ADD:
6921 case X86ISD::SUB:
6922 case X86ISD::INC:
6923 case X86ISD::DEC:
6924 case X86ISD::OR:
6925 case X86ISD::XOR:
6926 case X86ISD::AND:
6927 return SDValue(Op.getNode(), 1);
6928 default:
6929 default_case:
6930 break;
Dan Gohman076aee32009-03-04 19:44:21 +00006931 }
6932
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006933 if (Opcode == 0)
6934 // Emit a CMP with 0, which is the TEST pattern.
6935 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
6936 DAG.getConstant(0, Op.getValueType()));
6937
6938 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
6939 SmallVector<SDValue, 4> Ops;
6940 for (unsigned i = 0; i != NumOperands; ++i)
6941 Ops.push_back(Op.getOperand(i));
6942
6943 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
6944 DAG.ReplaceAllUsesWith(Op, New);
6945 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00006946}
6947
6948/// Emit nodes that will be selected as "cmp Op0,Op1", or something
6949/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00006950SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00006951 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00006952 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
6953 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00006954 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00006955
6956 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00006957 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00006958}
6959
Evan Chengd40d03e2010-01-06 19:38:29 +00006960/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
6961/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00006962SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
6963 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006964 SDValue Op0 = And.getOperand(0);
6965 SDValue Op1 = And.getOperand(1);
6966 if (Op0.getOpcode() == ISD::TRUNCATE)
6967 Op0 = Op0.getOperand(0);
6968 if (Op1.getOpcode() == ISD::TRUNCATE)
6969 Op1 = Op1.getOperand(0);
6970
Evan Chengd40d03e2010-01-06 19:38:29 +00006971 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00006972 if (Op1.getOpcode() == ISD::SHL)
6973 std::swap(Op0, Op1);
6974 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006975 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
6976 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00006977 // If we looked past a truncate, check that it's only truncating away
6978 // known zeros.
6979 unsigned BitWidth = Op0.getValueSizeInBits();
6980 unsigned AndBitWidth = And.getValueSizeInBits();
6981 if (BitWidth > AndBitWidth) {
6982 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
6983 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
6984 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
6985 return SDValue();
6986 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00006987 LHS = Op1;
6988 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00006989 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00006990 } else if (Op1.getOpcode() == ISD::Constant) {
6991 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
6992 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00006993 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
6994 LHS = AndLHS.getOperand(0);
6995 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00006996 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006997 }
Evan Cheng0488db92007-09-25 01:57:46 +00006998
Evan Chengd40d03e2010-01-06 19:38:29 +00006999 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00007000 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00007001 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00007002 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00007003 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00007004 // Also promote i16 to i32 for performance / code size reason.
7005 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00007006 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00007007 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00007008
Evan Chengd40d03e2010-01-06 19:38:29 +00007009 // If the operand types disagree, extend the shift amount to match. Since
7010 // BT ignores high bits (like shifts) we can use anyextend.
7011 if (LHS.getValueType() != RHS.getValueType())
7012 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007013
Evan Chengd40d03e2010-01-06 19:38:29 +00007014 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
7015 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
7016 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7017 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00007018 }
7019
Evan Cheng54de3ea2010-01-05 06:52:31 +00007020 return SDValue();
7021}
7022
Dan Gohmand858e902010-04-17 15:26:15 +00007023SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00007024 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
7025 SDValue Op0 = Op.getOperand(0);
7026 SDValue Op1 = Op.getOperand(1);
7027 DebugLoc dl = Op.getDebugLoc();
7028 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7029
7030 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00007031 // Lower (X & (1 << N)) == 0 to BT(X, N).
7032 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
7033 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
7034 if (Op0.getOpcode() == ISD::AND &&
7035 Op0.hasOneUse() &&
7036 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00007037 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007038 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7039 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
7040 if (NewSetCC.getNode())
7041 return NewSetCC;
7042 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00007043
Evan Cheng2c755ba2010-02-27 07:36:59 +00007044 // Look for "(setcc) == / != 1" to avoid unncessary setcc.
7045 if (Op0.getOpcode() == X86ISD::SETCC &&
7046 Op1.getOpcode() == ISD::Constant &&
7047 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
7048 cast<ConstantSDNode>(Op1)->isNullValue()) &&
7049 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7050 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
7051 bool Invert = (CC == ISD::SETNE) ^
7052 cast<ConstantSDNode>(Op1)->isNullValue();
7053 if (Invert)
7054 CCode = X86::GetOppositeBranchCondition(CCode);
7055 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7056 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
7057 }
7058
Evan Chenge5b51ac2010-04-17 06:13:15 +00007059 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00007060 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007061 if (X86CC == X86::COND_INVALID)
7062 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007063
Evan Cheng552f09a2010-04-26 19:06:11 +00007064 SDValue Cond = EmitCmp(Op0, Op1, X86CC, DAG);
Evan Chengad9c0a32009-12-15 00:53:42 +00007065
7066 // Use sbb x, x to materialize carry bit into a GPR.
Evan Cheng2e489c42009-12-16 00:53:11 +00007067 if (X86CC == X86::COND_B)
Evan Chengad9c0a32009-12-15 00:53:42 +00007068 return DAG.getNode(ISD::AND, dl, MVT::i8,
7069 DAG.getNode(X86ISD::SETCC_CARRY, dl, MVT::i8,
7070 DAG.getConstant(X86CC, MVT::i8), Cond),
7071 DAG.getConstant(1, MVT::i8));
Evan Chengad9c0a32009-12-15 00:53:42 +00007072
Owen Anderson825b72b2009-08-11 20:47:22 +00007073 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7074 DAG.getConstant(X86CC, MVT::i8), Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00007075}
7076
Dan Gohmand858e902010-04-17 15:26:15 +00007077SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007078 SDValue Cond;
7079 SDValue Op0 = Op.getOperand(0);
7080 SDValue Op1 = Op.getOperand(1);
7081 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00007082 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00007083 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
7084 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007085 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00007086
7087 if (isFP) {
7088 unsigned SSECC = 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007089 EVT VT0 = Op0.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00007090 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
7091 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00007092 bool Swap = false;
7093
7094 switch (SetCCOpcode) {
7095 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007096 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00007097 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007098 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00007099 case ISD::SETGT: Swap = true; // Fallthrough
7100 case ISD::SETLT:
7101 case ISD::SETOLT: SSECC = 1; break;
7102 case ISD::SETOGE:
7103 case ISD::SETGE: Swap = true; // Fallthrough
7104 case ISD::SETLE:
7105 case ISD::SETOLE: SSECC = 2; break;
7106 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007107 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00007108 case ISD::SETNE: SSECC = 4; break;
7109 case ISD::SETULE: Swap = true;
7110 case ISD::SETUGE: SSECC = 5; break;
7111 case ISD::SETULT: Swap = true;
7112 case ISD::SETUGT: SSECC = 6; break;
7113 case ISD::SETO: SSECC = 7; break;
7114 }
7115 if (Swap)
7116 std::swap(Op0, Op1);
7117
Nate Begemanfb8ead02008-07-25 19:05:58 +00007118 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00007119 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00007120 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00007121 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007122 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
7123 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007124 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007125 }
7126 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00007127 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007128 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
7129 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007130 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007131 }
Torok Edwinc23197a2009-07-14 16:55:14 +00007132 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00007133 }
7134 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00007135 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00007136 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007137
Nate Begeman30a0de92008-07-17 16:51:19 +00007138 // We are handling one of the integer comparisons here. Since SSE only has
7139 // GT and EQ comparisons for integer, swapping operands and multiple
7140 // operations may be required for some comparisons.
7141 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
7142 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007143
Owen Anderson825b72b2009-08-11 20:47:22 +00007144 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00007145 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007146 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007147 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007148 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
7149 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00007150 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007151
Nate Begeman30a0de92008-07-17 16:51:19 +00007152 switch (SetCCOpcode) {
7153 default: break;
7154 case ISD::SETNE: Invert = true;
7155 case ISD::SETEQ: Opc = EQOpc; break;
7156 case ISD::SETLT: Swap = true;
7157 case ISD::SETGT: Opc = GTOpc; break;
7158 case ISD::SETGE: Swap = true;
7159 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
7160 case ISD::SETULT: Swap = true;
7161 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
7162 case ISD::SETUGE: Swap = true;
7163 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
7164 }
7165 if (Swap)
7166 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007167
Nate Begeman30a0de92008-07-17 16:51:19 +00007168 // Since SSE has no unsigned integer comparisons, we need to flip the sign
7169 // bits of the inputs before performing those operations.
7170 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00007171 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00007172 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
7173 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00007174 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00007175 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
7176 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00007177 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
7178 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00007179 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007180
Dale Johannesenace16102009-02-03 19:33:06 +00007181 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00007182
7183 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00007184 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00007185 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00007186
Nate Begeman30a0de92008-07-17 16:51:19 +00007187 return Result;
7188}
Evan Cheng0488db92007-09-25 01:57:46 +00007189
Evan Cheng370e5342008-12-03 08:38:43 +00007190// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00007191static bool isX86LogicalCmp(SDValue Op) {
7192 unsigned Opc = Op.getNode()->getOpcode();
7193 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
7194 return true;
7195 if (Op.getResNo() == 1 &&
7196 (Opc == X86ISD::ADD ||
7197 Opc == X86ISD::SUB ||
7198 Opc == X86ISD::SMUL ||
7199 Opc == X86ISD::UMUL ||
7200 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00007201 Opc == X86ISD::DEC ||
7202 Opc == X86ISD::OR ||
7203 Opc == X86ISD::XOR ||
7204 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00007205 return true;
7206
7207 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00007208}
7209
Dan Gohmand858e902010-04-17 15:26:15 +00007210SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007211 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007212 SDValue Cond = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007213 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007214 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00007215
Dan Gohman1a492952009-10-20 16:22:37 +00007216 if (Cond.getOpcode() == ISD::SETCC) {
7217 SDValue NewCond = LowerSETCC(Cond, DAG);
7218 if (NewCond.getNode())
7219 Cond = NewCond;
7220 }
Evan Cheng734503b2006-09-11 02:19:56 +00007221
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007222 // (select (x == 0), -1, 0) -> (sign_bit (x - 1))
7223 SDValue Op1 = Op.getOperand(1);
7224 SDValue Op2 = Op.getOperand(2);
7225 if (Cond.getOpcode() == X86ISD::SETCC &&
7226 cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue() == X86::COND_E) {
7227 SDValue Cmp = Cond.getOperand(1);
7228 if (Cmp.getOpcode() == X86ISD::CMP) {
7229 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op1);
7230 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
7231 ConstantSDNode *RHSC =
7232 dyn_cast<ConstantSDNode>(Cmp.getOperand(1).getNode());
7233 if (N1C && N1C->isAllOnesValue() &&
7234 N2C && N2C->isNullValue() &&
7235 RHSC && RHSC->isNullValue()) {
7236 SDValue CmpOp0 = Cmp.getOperand(0);
Chris Lattnerda0688e2010-03-14 18:44:35 +00007237 Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007238 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
7239 return DAG.getNode(X86ISD::SETCC_CARRY, dl, Op.getValueType(),
7240 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
7241 }
7242 }
7243 }
7244
Evan Chengad9c0a32009-12-15 00:53:42 +00007245 // Look pass (and (setcc_carry (cmp ...)), 1).
7246 if (Cond.getOpcode() == ISD::AND &&
7247 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7248 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007249 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007250 Cond = Cond.getOperand(0);
7251 }
7252
Evan Cheng3f41d662007-10-08 22:16:29 +00007253 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7254 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007255 if (Cond.getOpcode() == X86ISD::SETCC ||
7256 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007257 CC = Cond.getOperand(0);
7258
Dan Gohman475871a2008-07-27 21:46:04 +00007259 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007260 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00007261 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00007262
Evan Cheng3f41d662007-10-08 22:16:29 +00007263 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007264 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00007265 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00007266 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00007267
Chris Lattnerd1980a52009-03-12 06:52:53 +00007268 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
7269 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00007270 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007271 addTest = false;
7272 }
7273 }
7274
7275 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007276 // Look pass the truncate.
7277 if (Cond.getOpcode() == ISD::TRUNCATE)
7278 Cond = Cond.getOperand(0);
7279
7280 // We know the result of AND is compared against zero. Try to match
7281 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007282 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007283 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
7284 if (NewSetCC.getNode()) {
7285 CC = NewSetCC.getOperand(0);
7286 Cond = NewSetCC.getOperand(1);
7287 addTest = false;
7288 }
7289 }
7290 }
7291
7292 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007293 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007294 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007295 }
7296
Evan Cheng0488db92007-09-25 01:57:46 +00007297 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
7298 // condition is true.
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007299 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Flag);
7300 SDValue Ops[] = { Op2, Op1, CC, Cond };
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007301 return DAG.getNode(X86ISD::CMOV, dl, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00007302}
7303
Evan Cheng370e5342008-12-03 08:38:43 +00007304// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
7305// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
7306// from the AND / OR.
7307static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
7308 Opc = Op.getOpcode();
7309 if (Opc != ISD::OR && Opc != ISD::AND)
7310 return false;
7311 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7312 Op.getOperand(0).hasOneUse() &&
7313 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
7314 Op.getOperand(1).hasOneUse());
7315}
7316
Evan Cheng961d6d42009-02-02 08:19:07 +00007317// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
7318// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00007319static bool isXor1OfSetCC(SDValue Op) {
7320 if (Op.getOpcode() != ISD::XOR)
7321 return false;
7322 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7323 if (N1C && N1C->getAPIntValue() == 1) {
7324 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7325 Op.getOperand(0).hasOneUse();
7326 }
7327 return false;
7328}
7329
Dan Gohmand858e902010-04-17 15:26:15 +00007330SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007331 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007332 SDValue Chain = Op.getOperand(0);
7333 SDValue Cond = Op.getOperand(1);
7334 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007335 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007336 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00007337
Dan Gohman1a492952009-10-20 16:22:37 +00007338 if (Cond.getOpcode() == ISD::SETCC) {
7339 SDValue NewCond = LowerSETCC(Cond, DAG);
7340 if (NewCond.getNode())
7341 Cond = NewCond;
7342 }
Chris Lattnere55484e2008-12-25 05:34:37 +00007343#if 0
7344 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00007345 else if (Cond.getOpcode() == X86ISD::ADD ||
7346 Cond.getOpcode() == X86ISD::SUB ||
7347 Cond.getOpcode() == X86ISD::SMUL ||
7348 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00007349 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00007350#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00007351
Evan Chengad9c0a32009-12-15 00:53:42 +00007352 // Look pass (and (setcc_carry (cmp ...)), 1).
7353 if (Cond.getOpcode() == ISD::AND &&
7354 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7355 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007356 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007357 Cond = Cond.getOperand(0);
7358 }
7359
Evan Cheng3f41d662007-10-08 22:16:29 +00007360 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7361 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007362 if (Cond.getOpcode() == X86ISD::SETCC ||
7363 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007364 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007365
Dan Gohman475871a2008-07-27 21:46:04 +00007366 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007367 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00007368 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00007369 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00007370 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007371 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00007372 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00007373 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007374 default: break;
7375 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00007376 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00007377 // These can only come from an arithmetic instruction with overflow,
7378 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007379 Cond = Cond.getNode()->getOperand(1);
7380 addTest = false;
7381 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00007382 }
Evan Cheng0488db92007-09-25 01:57:46 +00007383 }
Evan Cheng370e5342008-12-03 08:38:43 +00007384 } else {
7385 unsigned CondOpc;
7386 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
7387 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00007388 if (CondOpc == ISD::OR) {
7389 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
7390 // two branches instead of an explicit OR instruction with a
7391 // separate test.
7392 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007393 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00007394 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007395 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007396 Chain, Dest, CC, Cmp);
7397 CC = Cond.getOperand(1).getOperand(0);
7398 Cond = Cmp;
7399 addTest = false;
7400 }
7401 } else { // ISD::AND
7402 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
7403 // two branches instead of an explicit AND instruction with a
7404 // separate test. However, we only do this if this block doesn't
7405 // have a fall-through edge, because this requires an explicit
7406 // jmp when the condition is false.
7407 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007408 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00007409 Op.getNode()->hasOneUse()) {
7410 X86::CondCode CCode =
7411 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7412 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007413 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00007414 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00007415 // Look for an unconditional branch following this conditional branch.
7416 // We need this because we need to reverse the successors in order
7417 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00007418 if (User->getOpcode() == ISD::BR) {
7419 SDValue FalseBB = User->getOperand(1);
7420 SDNode *NewBR =
7421 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00007422 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00007423 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00007424 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00007425
Dale Johannesene4d209d2009-02-03 20:21:25 +00007426 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007427 Chain, Dest, CC, Cmp);
7428 X86::CondCode CCode =
7429 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
7430 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007431 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00007432 Cond = Cmp;
7433 addTest = false;
7434 }
7435 }
Dan Gohman279c22e2008-10-21 03:29:32 +00007436 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00007437 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
7438 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
7439 // It should be transformed during dag combiner except when the condition
7440 // is set by a arithmetics with overflow node.
7441 X86::CondCode CCode =
7442 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7443 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007444 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00007445 Cond = Cond.getOperand(0).getOperand(1);
7446 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00007447 }
Evan Cheng0488db92007-09-25 01:57:46 +00007448 }
7449
7450 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007451 // Look pass the truncate.
7452 if (Cond.getOpcode() == ISD::TRUNCATE)
7453 Cond = Cond.getOperand(0);
7454
7455 // We know the result of AND is compared against zero. Try to match
7456 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007457 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007458 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
7459 if (NewSetCC.getNode()) {
7460 CC = NewSetCC.getOperand(0);
7461 Cond = NewSetCC.getOperand(1);
7462 addTest = false;
7463 }
7464 }
7465 }
7466
7467 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007468 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007469 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007470 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00007471 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00007472 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00007473}
7474
Anton Korobeynikove060b532007-04-17 19:34:00 +00007475
7476// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
7477// Calls to _alloca is needed to probe the stack when allocating more than 4k
7478// bytes in one go. Touching the stack at 4K increments is necessary to ensure
7479// that the guard pages used by the OS virtual memory manager are allocated in
7480// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00007481SDValue
7482X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007483 SelectionDAG &DAG) const {
Anton Korobeynikove060b532007-04-17 19:34:00 +00007484 assert(Subtarget->isTargetCygMing() &&
7485 "This should be used only on Cygwin/Mingw targets");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007486 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007487
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007488 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00007489 SDValue Chain = Op.getOperand(0);
7490 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007491 // FIXME: Ensure alignment here
7492
Dan Gohman475871a2008-07-27 21:46:04 +00007493 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007494
Owen Anderson825b72b2009-08-11 20:47:22 +00007495 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007496
Dale Johannesendd64c412009-02-04 00:33:20 +00007497 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007498 Flag = Chain.getValue(1);
7499
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00007500 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007501
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00007502 Chain = DAG.getNode(X86ISD::MINGW_ALLOCA, dl, NodeTys, Chain, Flag);
7503 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007504
Dale Johannesendd64c412009-02-04 00:33:20 +00007505 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007506
Dan Gohman475871a2008-07-27 21:46:04 +00007507 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00007508 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007509}
7510
Dan Gohmand858e902010-04-17 15:26:15 +00007511SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00007512 MachineFunction &MF = DAG.getMachineFunction();
7513 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
7514
Dan Gohman69de1932008-02-06 22:27:42 +00007515 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00007516 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00007517
Anton Korobeynikove7beda12010-10-03 22:52:07 +00007518 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00007519 // vastart just stores the address of the VarArgsFrameIndex slot into the
7520 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00007521 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
7522 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007523 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
7524 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007525 }
7526
7527 // __va_list_tag:
7528 // gp_offset (0 - 6 * 8)
7529 // fp_offset (48 - 48 + 8 * 16)
7530 // overflow_arg_area (point to parameters coming in memory).
7531 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00007532 SmallVector<SDValue, 8> MemOps;
7533 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00007534 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00007535 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00007536 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
7537 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007538 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007539 MemOps.push_back(Store);
7540
7541 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00007542 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007543 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00007544 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00007545 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
7546 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007547 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007548 MemOps.push_back(Store);
7549
7550 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00007551 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007552 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00007553 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
7554 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007555 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
7556 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00007557 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007558 MemOps.push_back(Store);
7559
7560 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00007561 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007562 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00007563 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
7564 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007565 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
7566 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007567 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00007568 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00007569 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00007570}
7571
Dan Gohmand858e902010-04-17 15:26:15 +00007572SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman9018e832008-05-10 01:26:14 +00007573 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
7574 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_arg!");
Dan Gohman9018e832008-05-10 01:26:14 +00007575
Chris Lattner75361b62010-04-07 22:58:41 +00007576 report_fatal_error("VAArgInst is not yet implemented for x86-64!");
Dan Gohman475871a2008-07-27 21:46:04 +00007577 return SDValue();
Dan Gohman9018e832008-05-10 01:26:14 +00007578}
7579
Dan Gohmand858e902010-04-17 15:26:15 +00007580SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00007581 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00007582 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00007583 SDValue Chain = Op.getOperand(0);
7584 SDValue DstPtr = Op.getOperand(1);
7585 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00007586 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
7587 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00007588 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00007589
Chris Lattnere72f2022010-09-21 05:40:29 +00007590 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00007591 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00007592 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00007593 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00007594}
7595
Dan Gohman475871a2008-07-27 21:46:04 +00007596SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007597X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007598 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007599 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007600 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00007601 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00007602 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00007603 case Intrinsic::x86_sse_comieq_ss:
7604 case Intrinsic::x86_sse_comilt_ss:
7605 case Intrinsic::x86_sse_comile_ss:
7606 case Intrinsic::x86_sse_comigt_ss:
7607 case Intrinsic::x86_sse_comige_ss:
7608 case Intrinsic::x86_sse_comineq_ss:
7609 case Intrinsic::x86_sse_ucomieq_ss:
7610 case Intrinsic::x86_sse_ucomilt_ss:
7611 case Intrinsic::x86_sse_ucomile_ss:
7612 case Intrinsic::x86_sse_ucomigt_ss:
7613 case Intrinsic::x86_sse_ucomige_ss:
7614 case Intrinsic::x86_sse_ucomineq_ss:
7615 case Intrinsic::x86_sse2_comieq_sd:
7616 case Intrinsic::x86_sse2_comilt_sd:
7617 case Intrinsic::x86_sse2_comile_sd:
7618 case Intrinsic::x86_sse2_comigt_sd:
7619 case Intrinsic::x86_sse2_comige_sd:
7620 case Intrinsic::x86_sse2_comineq_sd:
7621 case Intrinsic::x86_sse2_ucomieq_sd:
7622 case Intrinsic::x86_sse2_ucomilt_sd:
7623 case Intrinsic::x86_sse2_ucomile_sd:
7624 case Intrinsic::x86_sse2_ucomigt_sd:
7625 case Intrinsic::x86_sse2_ucomige_sd:
7626 case Intrinsic::x86_sse2_ucomineq_sd: {
7627 unsigned Opc = 0;
7628 ISD::CondCode CC = ISD::SETCC_INVALID;
7629 switch (IntNo) {
7630 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007631 case Intrinsic::x86_sse_comieq_ss:
7632 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007633 Opc = X86ISD::COMI;
7634 CC = ISD::SETEQ;
7635 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00007636 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007637 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007638 Opc = X86ISD::COMI;
7639 CC = ISD::SETLT;
7640 break;
7641 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007642 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007643 Opc = X86ISD::COMI;
7644 CC = ISD::SETLE;
7645 break;
7646 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007647 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007648 Opc = X86ISD::COMI;
7649 CC = ISD::SETGT;
7650 break;
7651 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007652 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007653 Opc = X86ISD::COMI;
7654 CC = ISD::SETGE;
7655 break;
7656 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007657 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007658 Opc = X86ISD::COMI;
7659 CC = ISD::SETNE;
7660 break;
7661 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007662 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007663 Opc = X86ISD::UCOMI;
7664 CC = ISD::SETEQ;
7665 break;
7666 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007667 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007668 Opc = X86ISD::UCOMI;
7669 CC = ISD::SETLT;
7670 break;
7671 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007672 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007673 Opc = X86ISD::UCOMI;
7674 CC = ISD::SETLE;
7675 break;
7676 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007677 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007678 Opc = X86ISD::UCOMI;
7679 CC = ISD::SETGT;
7680 break;
7681 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007682 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007683 Opc = X86ISD::UCOMI;
7684 CC = ISD::SETGE;
7685 break;
7686 case Intrinsic::x86_sse_ucomineq_ss:
7687 case Intrinsic::x86_sse2_ucomineq_sd:
7688 Opc = X86ISD::UCOMI;
7689 CC = ISD::SETNE;
7690 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00007691 }
Evan Cheng734503b2006-09-11 02:19:56 +00007692
Dan Gohman475871a2008-07-27 21:46:04 +00007693 SDValue LHS = Op.getOperand(1);
7694 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00007695 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007696 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007697 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
7698 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7699 DAG.getConstant(X86CC, MVT::i8), Cond);
7700 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00007701 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007702 // ptest and testp intrinsics. The intrinsic these come from are designed to
7703 // return an integer value, not just an instruction so lower it to the ptest
7704 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00007705 case Intrinsic::x86_sse41_ptestz:
7706 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007707 case Intrinsic::x86_sse41_ptestnzc:
7708 case Intrinsic::x86_avx_ptestz_256:
7709 case Intrinsic::x86_avx_ptestc_256:
7710 case Intrinsic::x86_avx_ptestnzc_256:
7711 case Intrinsic::x86_avx_vtestz_ps:
7712 case Intrinsic::x86_avx_vtestc_ps:
7713 case Intrinsic::x86_avx_vtestnzc_ps:
7714 case Intrinsic::x86_avx_vtestz_pd:
7715 case Intrinsic::x86_avx_vtestc_pd:
7716 case Intrinsic::x86_avx_vtestnzc_pd:
7717 case Intrinsic::x86_avx_vtestz_ps_256:
7718 case Intrinsic::x86_avx_vtestc_ps_256:
7719 case Intrinsic::x86_avx_vtestnzc_ps_256:
7720 case Intrinsic::x86_avx_vtestz_pd_256:
7721 case Intrinsic::x86_avx_vtestc_pd_256:
7722 case Intrinsic::x86_avx_vtestnzc_pd_256: {
7723 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00007724 unsigned X86CC = 0;
7725 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00007726 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007727 case Intrinsic::x86_avx_vtestz_ps:
7728 case Intrinsic::x86_avx_vtestz_pd:
7729 case Intrinsic::x86_avx_vtestz_ps_256:
7730 case Intrinsic::x86_avx_vtestz_pd_256:
7731 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00007732 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007733 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007734 // ZF = 1
7735 X86CC = X86::COND_E;
7736 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007737 case Intrinsic::x86_avx_vtestc_ps:
7738 case Intrinsic::x86_avx_vtestc_pd:
7739 case Intrinsic::x86_avx_vtestc_ps_256:
7740 case Intrinsic::x86_avx_vtestc_pd_256:
7741 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00007742 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007743 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007744 // CF = 1
7745 X86CC = X86::COND_B;
7746 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007747 case Intrinsic::x86_avx_vtestnzc_ps:
7748 case Intrinsic::x86_avx_vtestnzc_pd:
7749 case Intrinsic::x86_avx_vtestnzc_ps_256:
7750 case Intrinsic::x86_avx_vtestnzc_pd_256:
7751 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00007752 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007753 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007754 // ZF and CF = 0
7755 X86CC = X86::COND_A;
7756 break;
7757 }
Eric Christopherfd179292009-08-27 18:07:15 +00007758
Eric Christopher71c67532009-07-29 00:28:05 +00007759 SDValue LHS = Op.getOperand(1);
7760 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007761 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
7762 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00007763 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
7764 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
7765 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00007766 }
Evan Cheng5759f972008-05-04 09:15:50 +00007767
7768 // Fix vector shift instructions where the last operand is a non-immediate
7769 // i32 value.
7770 case Intrinsic::x86_sse2_pslli_w:
7771 case Intrinsic::x86_sse2_pslli_d:
7772 case Intrinsic::x86_sse2_pslli_q:
7773 case Intrinsic::x86_sse2_psrli_w:
7774 case Intrinsic::x86_sse2_psrli_d:
7775 case Intrinsic::x86_sse2_psrli_q:
7776 case Intrinsic::x86_sse2_psrai_w:
7777 case Intrinsic::x86_sse2_psrai_d:
7778 case Intrinsic::x86_mmx_pslli_w:
7779 case Intrinsic::x86_mmx_pslli_d:
7780 case Intrinsic::x86_mmx_pslli_q:
7781 case Intrinsic::x86_mmx_psrli_w:
7782 case Intrinsic::x86_mmx_psrli_d:
7783 case Intrinsic::x86_mmx_psrli_q:
7784 case Intrinsic::x86_mmx_psrai_w:
7785 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00007786 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00007787 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00007788 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00007789
7790 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00007791 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00007792 switch (IntNo) {
7793 case Intrinsic::x86_sse2_pslli_w:
7794 NewIntNo = Intrinsic::x86_sse2_psll_w;
7795 break;
7796 case Intrinsic::x86_sse2_pslli_d:
7797 NewIntNo = Intrinsic::x86_sse2_psll_d;
7798 break;
7799 case Intrinsic::x86_sse2_pslli_q:
7800 NewIntNo = Intrinsic::x86_sse2_psll_q;
7801 break;
7802 case Intrinsic::x86_sse2_psrli_w:
7803 NewIntNo = Intrinsic::x86_sse2_psrl_w;
7804 break;
7805 case Intrinsic::x86_sse2_psrli_d:
7806 NewIntNo = Intrinsic::x86_sse2_psrl_d;
7807 break;
7808 case Intrinsic::x86_sse2_psrli_q:
7809 NewIntNo = Intrinsic::x86_sse2_psrl_q;
7810 break;
7811 case Intrinsic::x86_sse2_psrai_w:
7812 NewIntNo = Intrinsic::x86_sse2_psra_w;
7813 break;
7814 case Intrinsic::x86_sse2_psrai_d:
7815 NewIntNo = Intrinsic::x86_sse2_psra_d;
7816 break;
7817 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00007818 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00007819 switch (IntNo) {
7820 case Intrinsic::x86_mmx_pslli_w:
7821 NewIntNo = Intrinsic::x86_mmx_psll_w;
7822 break;
7823 case Intrinsic::x86_mmx_pslli_d:
7824 NewIntNo = Intrinsic::x86_mmx_psll_d;
7825 break;
7826 case Intrinsic::x86_mmx_pslli_q:
7827 NewIntNo = Intrinsic::x86_mmx_psll_q;
7828 break;
7829 case Intrinsic::x86_mmx_psrli_w:
7830 NewIntNo = Intrinsic::x86_mmx_psrl_w;
7831 break;
7832 case Intrinsic::x86_mmx_psrli_d:
7833 NewIntNo = Intrinsic::x86_mmx_psrl_d;
7834 break;
7835 case Intrinsic::x86_mmx_psrli_q:
7836 NewIntNo = Intrinsic::x86_mmx_psrl_q;
7837 break;
7838 case Intrinsic::x86_mmx_psrai_w:
7839 NewIntNo = Intrinsic::x86_mmx_psra_w;
7840 break;
7841 case Intrinsic::x86_mmx_psrai_d:
7842 NewIntNo = Intrinsic::x86_mmx_psra_d;
7843 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00007844 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00007845 }
7846 break;
7847 }
7848 }
Mon P Wangefa42202009-09-03 19:56:25 +00007849
7850 // The vector shift intrinsics with scalars uses 32b shift amounts but
7851 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
7852 // to be zero.
7853 SDValue ShOps[4];
7854 ShOps[0] = ShAmt;
7855 ShOps[1] = DAG.getConstant(0, MVT::i32);
7856 if (ShAmtVT == MVT::v4i32) {
7857 ShOps[2] = DAG.getUNDEF(MVT::i32);
7858 ShOps[3] = DAG.getUNDEF(MVT::i32);
7859 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
7860 } else {
7861 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00007862// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00007863 }
7864
Owen Andersone50ed302009-08-10 22:56:29 +00007865 EVT VT = Op.getValueType();
Mon P Wangefa42202009-09-03 19:56:25 +00007866 ShAmt = DAG.getNode(ISD::BIT_CONVERT, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007867 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007868 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00007869 Op.getOperand(1), ShAmt);
7870 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00007871 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007872}
Evan Cheng72261582005-12-20 06:22:03 +00007873
Dan Gohmand858e902010-04-17 15:26:15 +00007874SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
7875 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00007876 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7877 MFI->setReturnAddressIsTaken(true);
7878
Bill Wendling64e87322009-01-16 19:25:27 +00007879 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007880 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00007881
7882 if (Depth > 0) {
7883 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
7884 SDValue Offset =
7885 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007886 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007887 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007888 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007889 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00007890 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00007891 }
7892
7893 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00007894 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00007895 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007896 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00007897}
7898
Dan Gohmand858e902010-04-17 15:26:15 +00007899SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00007900 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7901 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00007902
Owen Andersone50ed302009-08-10 22:56:29 +00007903 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007904 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00007905 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
7906 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00007907 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00007908 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00007909 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
7910 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00007911 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00007912 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00007913}
7914
Dan Gohman475871a2008-07-27 21:46:04 +00007915SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007916 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00007917 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007918}
7919
Dan Gohmand858e902010-04-17 15:26:15 +00007920SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007921 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00007922 SDValue Chain = Op.getOperand(0);
7923 SDValue Offset = Op.getOperand(1);
7924 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007925 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007926
Dan Gohmand8816272010-08-11 18:14:00 +00007927 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
7928 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
7929 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00007930 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007931
Dan Gohmand8816272010-08-11 18:14:00 +00007932 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
7933 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00007934 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00007935 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
7936 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00007937 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00007938 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007939
Dale Johannesene4d209d2009-02-03 20:21:25 +00007940 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007941 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00007942 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007943}
7944
Dan Gohman475871a2008-07-27 21:46:04 +00007945SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007946 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007947 SDValue Root = Op.getOperand(0);
7948 SDValue Trmp = Op.getOperand(1); // trampoline
7949 SDValue FPtr = Op.getOperand(2); // nested function
7950 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007951 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00007952
Dan Gohman69de1932008-02-06 22:27:42 +00007953 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00007954
7955 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00007956 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00007957
7958 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00007959 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
7960 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00007961
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00007962 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
7963 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00007964
7965 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
7966
7967 // Load the pointer to the nested function into R11.
7968 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00007969 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00007970 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007971 Addr, MachinePointerInfo(TrmpAddr),
7972 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00007973
Owen Anderson825b72b2009-08-11 20:47:22 +00007974 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
7975 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00007976 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
7977 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00007978 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00007979
7980 // Load the 'nest' parameter value into R10.
7981 // R10 is specified in X86CallingConv.td
7982 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00007983 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
7984 DAG.getConstant(10, MVT::i64));
7985 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007986 Addr, MachinePointerInfo(TrmpAddr, 10),
7987 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00007988
Owen Anderson825b72b2009-08-11 20:47:22 +00007989 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
7990 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00007991 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
7992 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00007993 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00007994
7995 // Jump to the nested function.
7996 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00007997 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
7998 DAG.getConstant(20, MVT::i64));
7999 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008000 Addr, MachinePointerInfo(TrmpAddr, 20),
8001 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008002
8003 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00008004 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8005 DAG.getConstant(22, MVT::i64));
8006 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008007 MachinePointerInfo(TrmpAddr, 22),
8008 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008009
Dan Gohman475871a2008-07-27 21:46:04 +00008010 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008011 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008012 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008013 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00008014 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00008015 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00008016 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00008017 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008018
8019 switch (CC) {
8020 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00008021 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008022 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008023 case CallingConv::X86_StdCall: {
8024 // Pass 'nest' parameter in ECX.
8025 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008026 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008027
8028 // Check that ECX wasn't needed by an 'inreg' parameter.
8029 const FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00008030 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008031
Chris Lattner58d74912008-03-12 17:45:29 +00008032 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00008033 unsigned InRegCount = 0;
8034 unsigned Idx = 1;
8035
8036 for (FunctionType::param_iterator I = FTy->param_begin(),
8037 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00008038 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00008039 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008040 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008041
8042 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00008043 report_fatal_error("Nest register in use - reduce number of inreg"
8044 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008045 }
8046 }
8047 break;
8048 }
8049 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00008050 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00008051 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008052 // Pass 'nest' parameter in EAX.
8053 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008054 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008055 break;
8056 }
8057
Dan Gohman475871a2008-07-27 21:46:04 +00008058 SDValue OutChains[4];
8059 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008060
Owen Anderson825b72b2009-08-11 20:47:22 +00008061 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8062 DAG.getConstant(10, MVT::i32));
8063 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008064
Chris Lattnera62fe662010-02-05 19:20:30 +00008065 // This is storing the opcode for MOV32ri.
8066 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008067 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00008068 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008069 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008070 Trmp, MachinePointerInfo(TrmpAddr),
8071 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008072
Owen Anderson825b72b2009-08-11 20:47:22 +00008073 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8074 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008075 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
8076 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00008077 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008078
Chris Lattnera62fe662010-02-05 19:20:30 +00008079 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00008080 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8081 DAG.getConstant(5, MVT::i32));
8082 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008083 MachinePointerInfo(TrmpAddr, 5),
8084 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008085
Owen Anderson825b72b2009-08-11 20:47:22 +00008086 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8087 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008088 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
8089 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00008090 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008091
Dan Gohman475871a2008-07-27 21:46:04 +00008092 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008093 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008094 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008095 }
8096}
8097
Dan Gohmand858e902010-04-17 15:26:15 +00008098SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
8099 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008100 /*
8101 The rounding mode is in bits 11:10 of FPSR, and has the following
8102 settings:
8103 00 Round to nearest
8104 01 Round to -inf
8105 10 Round to +inf
8106 11 Round to 0
8107
8108 FLT_ROUNDS, on the other hand, expects the following:
8109 -1 Undefined
8110 0 Round to 0
8111 1 Round to nearest
8112 2 Round to +inf
8113 3 Round to -inf
8114
8115 To perform the conversion, we do:
8116 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
8117 */
8118
8119 MachineFunction &MF = DAG.getMachineFunction();
8120 const TargetMachine &TM = MF.getTarget();
8121 const TargetFrameInfo &TFI = *TM.getFrameInfo();
8122 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00008123 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00008124 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008125
8126 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00008127 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008128 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008129
Michael J. Spencerec38de22010-10-10 22:04:20 +00008130
Chris Lattner2156b792010-09-22 01:11:26 +00008131 MachineMemOperand *MMO =
8132 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8133 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008134
Chris Lattner2156b792010-09-22 01:11:26 +00008135 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
8136 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
8137 DAG.getVTList(MVT::Other),
8138 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008139
8140 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00008141 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00008142 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008143
8144 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00008145 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00008146 DAG.getNode(ISD::SRL, DL, MVT::i16,
8147 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008148 CWD, DAG.getConstant(0x800, MVT::i16)),
8149 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00008150 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00008151 DAG.getNode(ISD::SRL, DL, MVT::i16,
8152 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008153 CWD, DAG.getConstant(0x400, MVT::i16)),
8154 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008155
Dan Gohman475871a2008-07-27 21:46:04 +00008156 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00008157 DAG.getNode(ISD::AND, DL, MVT::i16,
8158 DAG.getNode(ISD::ADD, DL, MVT::i16,
8159 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00008160 DAG.getConstant(1, MVT::i16)),
8161 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008162
8163
Duncan Sands83ec4b62008-06-06 12:08:01 +00008164 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00008165 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008166}
8167
Dan Gohmand858e902010-04-17 15:26:15 +00008168SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008169 EVT VT = Op.getValueType();
8170 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008171 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008172 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008173
8174 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008175 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00008176 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00008177 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008178 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008179 }
Evan Cheng18efe262007-12-14 02:13:44 +00008180
Evan Cheng152804e2007-12-14 08:30:15 +00008181 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008182 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008183 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008184
8185 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008186 SDValue Ops[] = {
8187 Op,
8188 DAG.getConstant(NumBits+NumBits-1, OpVT),
8189 DAG.getConstant(X86::COND_E, MVT::i8),
8190 Op.getValue(1)
8191 };
8192 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008193
8194 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00008195 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00008196
Owen Anderson825b72b2009-08-11 20:47:22 +00008197 if (VT == MVT::i8)
8198 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008199 return Op;
8200}
8201
Dan Gohmand858e902010-04-17 15:26:15 +00008202SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008203 EVT VT = Op.getValueType();
8204 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008205 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008206 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008207
8208 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008209 if (VT == MVT::i8) {
8210 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008211 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008212 }
Evan Cheng152804e2007-12-14 08:30:15 +00008213
8214 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008215 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008216 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008217
8218 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008219 SDValue Ops[] = {
8220 Op,
8221 DAG.getConstant(NumBits, OpVT),
8222 DAG.getConstant(X86::COND_E, MVT::i8),
8223 Op.getValue(1)
8224 };
8225 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008226
Owen Anderson825b72b2009-08-11 20:47:22 +00008227 if (VT == MVT::i8)
8228 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008229 return Op;
8230}
8231
Dan Gohmand858e902010-04-17 15:26:15 +00008232SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008233 EVT VT = Op.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00008234 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008235 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00008236
Mon P Wangaf9b9522008-12-18 21:42:19 +00008237 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
8238 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
8239 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
8240 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
8241 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
8242 //
8243 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
8244 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
8245 // return AloBlo + AloBhi + AhiBlo;
8246
8247 SDValue A = Op.getOperand(0);
8248 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008249
Dale Johannesene4d209d2009-02-03 20:21:25 +00008250 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008251 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8252 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008253 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008254 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8255 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008256 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008257 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008258 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008259 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008260 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008261 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008262 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008263 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008264 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008265 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008266 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8267 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008268 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008269 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8270 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008271 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
8272 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008273 return Res;
8274}
8275
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008276SDValue X86TargetLowering::LowerSHL(SDValue Op, SelectionDAG &DAG) const {
8277 EVT VT = Op.getValueType();
8278 DebugLoc dl = Op.getDebugLoc();
8279 SDValue R = Op.getOperand(0);
8280
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008281 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008282
Nate Begeman51409212010-07-28 00:21:48 +00008283 assert(Subtarget->hasSSE41() && "Cannot lower SHL without SSE4.1 or later");
8284
8285 if (VT == MVT::v4i32) {
8286 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8287 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8288 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
8289
8290 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008291
Nate Begeman51409212010-07-28 00:21:48 +00008292 std::vector<Constant*> CV(4, CI);
8293 Constant *C = ConstantVector::get(CV);
8294 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8295 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008296 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008297 false, false, 16);
8298
8299 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
8300 Op = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32, Op);
8301 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
8302 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
8303 }
8304 if (VT == MVT::v16i8) {
8305 // a = a << 5;
8306 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8307 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
8308 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
8309
8310 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
8311 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
8312
8313 std::vector<Constant*> CVM1(16, CM1);
8314 std::vector<Constant*> CVM2(16, CM2);
8315 Constant *C = ConstantVector::get(CVM1);
8316 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8317 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008318 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008319 false, false, 16);
8320
8321 // r = pblendv(r, psllw(r & (char16)15, 4), a);
8322 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8323 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8324 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8325 DAG.getConstant(4, MVT::i32));
8326 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8327 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8328 R, M, Op);
8329 // a += a
8330 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008331
Nate Begeman51409212010-07-28 00:21:48 +00008332 C = ConstantVector::get(CVM2);
8333 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8334 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008335 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00008336 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008337
Nate Begeman51409212010-07-28 00:21:48 +00008338 // r = pblendv(r, psllw(r & (char16)63, 2), a);
8339 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8340 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8341 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8342 DAG.getConstant(2, MVT::i32));
8343 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8344 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8345 R, M, Op);
8346 // a += a
8347 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008348
Nate Begeman51409212010-07-28 00:21:48 +00008349 // return pblendv(r, r+r, a);
8350 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8351 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8352 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
8353 return R;
8354 }
8355 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008356}
Mon P Wangaf9b9522008-12-18 21:42:19 +00008357
Dan Gohmand858e902010-04-17 15:26:15 +00008358SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00008359 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
8360 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00008361 // looks for this combo and may remove the "setcc" instruction if the "setcc"
8362 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00008363 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00008364 SDValue LHS = N->getOperand(0);
8365 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00008366 unsigned BaseOp = 0;
8367 unsigned Cond = 0;
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008368 DebugLoc dl = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00008369
8370 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008371 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00008372 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00008373 // A subtract of one will be selected as a INC. Note that INC doesn't
8374 // set CF, so we can't do this for UADDO.
8375 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
8376 if (C->getAPIntValue() == 1) {
8377 BaseOp = X86ISD::INC;
8378 Cond = X86::COND_O;
8379 break;
8380 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008381 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00008382 Cond = X86::COND_O;
8383 break;
8384 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008385 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00008386 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008387 break;
8388 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00008389 // A subtract of one will be selected as a DEC. Note that DEC doesn't
8390 // set CF, so we can't do this for USUBO.
8391 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
8392 if (C->getAPIntValue() == 1) {
8393 BaseOp = X86ISD::DEC;
8394 Cond = X86::COND_O;
8395 break;
8396 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008397 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00008398 Cond = X86::COND_O;
8399 break;
8400 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008401 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00008402 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008403 break;
8404 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00008405 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00008406 Cond = X86::COND_O;
8407 break;
8408 case ISD::UMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00008409 BaseOp = X86ISD::UMUL;
Dan Gohman653456c2009-01-07 00:15:08 +00008410 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008411 break;
8412 }
Bill Wendling3fafd932008-11-26 22:37:40 +00008413
Bill Wendling61edeb52008-12-02 01:06:39 +00008414 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008415 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008416 SDValue Sum = DAG.getNode(BaseOp, dl, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00008417
Bill Wendling61edeb52008-12-02 01:06:39 +00008418 SDValue SetCC =
Dale Johannesene4d209d2009-02-03 20:21:25 +00008419 DAG.getNode(X86ISD::SETCC, dl, N->getValueType(1),
Owen Anderson825b72b2009-08-11 20:47:22 +00008420 DAG.getConstant(Cond, MVT::i32), SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00008421
Bill Wendling61edeb52008-12-02 01:06:39 +00008422 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
8423 return Sum;
Bill Wendling41ea7e72008-11-24 19:21:46 +00008424}
8425
Eric Christopher9a9d2752010-07-22 02:48:34 +00008426SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
8427 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008428
Eric Christopherb6729dc2010-08-04 23:03:04 +00008429 if (!Subtarget->hasSSE2()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +00008430 SDValue Chain = Op.getOperand(0);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008431 SDValue Zero = DAG.getConstant(0,
Eric Christopherb6729dc2010-08-04 23:03:04 +00008432 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +00008433 SDValue Ops[] = {
8434 DAG.getRegister(X86::ESP, MVT::i32), // Base
8435 DAG.getTargetConstant(1, MVT::i8), // Scale
8436 DAG.getRegister(0, MVT::i32), // Index
8437 DAG.getTargetConstant(0, MVT::i32), // Disp
8438 DAG.getRegister(0, MVT::i32), // Segment.
8439 Zero,
8440 Chain
8441 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00008442 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +00008443 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
8444 array_lengthof(Ops));
8445 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +00008446 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008447
Eric Christopher9a9d2752010-07-22 02:48:34 +00008448 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +00008449 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +00008450 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008451
Chris Lattner132929a2010-08-14 17:26:09 +00008452 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
8453 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
8454 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
8455 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008456
Chris Lattner132929a2010-08-14 17:26:09 +00008457 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
8458 if (!Op1 && !Op2 && !Op3 && Op4)
8459 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008460
Chris Lattner132929a2010-08-14 17:26:09 +00008461 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
8462 if (Op1 && !Op2 && !Op3 && !Op4)
8463 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008464
8465 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +00008466 // (MFENCE)>;
8467 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +00008468}
8469
Dan Gohmand858e902010-04-17 15:26:15 +00008470SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008471 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008472 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00008473 unsigned Reg = 0;
8474 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00008475 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00008476 default:
8477 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008478 case MVT::i8: Reg = X86::AL; size = 1; break;
8479 case MVT::i16: Reg = X86::AX; size = 2; break;
8480 case MVT::i32: Reg = X86::EAX; size = 4; break;
8481 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00008482 assert(Subtarget->is64Bit() && "Node not type legal!");
8483 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00008484 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008485 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008486 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00008487 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00008488 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00008489 Op.getOperand(1),
8490 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +00008491 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +00008492 cpIn.getValue(1) };
Owen Anderson825b72b2009-08-11 20:47:22 +00008493 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008494 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
8495 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
8496 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +00008497 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008498 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00008499 return cpOut;
8500}
8501
Duncan Sands1607f052008-12-01 11:39:25 +00008502SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008503 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +00008504 assert(Subtarget->is64Bit() && "Result not type legalized?");
Owen Anderson825b72b2009-08-11 20:47:22 +00008505 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00008506 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008507 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008508 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008509 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
8510 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00008511 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +00008512 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
8513 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +00008514 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +00008515 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00008516 rdx.getValue(1)
8517 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008518 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00008519}
8520
Dale Johannesen7d07b482010-05-21 00:52:33 +00008521SDValue X86TargetLowering::LowerBIT_CONVERT(SDValue Op,
8522 SelectionDAG &DAG) const {
8523 EVT SrcVT = Op.getOperand(0).getValueType();
8524 EVT DstVT = Op.getValueType();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008525 assert((Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
Dale Johannesen7d07b482010-05-21 00:52:33 +00008526 Subtarget->hasMMX() && !DisableMMX) &&
8527 "Unexpected custom BIT_CONVERT");
Michael J. Spencerec38de22010-10-10 22:04:20 +00008528 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +00008529 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
8530 "Unexpected custom BIT_CONVERT");
8531 // i64 <=> MMX conversions are Legal.
8532 if (SrcVT==MVT::i64 && DstVT.isVector())
8533 return Op;
8534 if (DstVT==MVT::i64 && SrcVT.isVector())
8535 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +00008536 // MMX <=> MMX conversions are Legal.
8537 if (SrcVT.isVector() && DstVT.isVector())
8538 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +00008539 // All other conversions need to be expanded.
8540 return SDValue();
8541}
Dan Gohmand858e902010-04-17 15:26:15 +00008542SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +00008543 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008544 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00008545 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008546 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00008547 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008548 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008549 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00008550 Node->getOperand(0),
8551 Node->getOperand(1), negOp,
8552 cast<AtomicSDNode>(Node)->getSrcValue(),
8553 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang63307c32008-05-05 19:05:59 +00008554}
8555
Evan Cheng0db9fe62006-04-25 20:13:52 +00008556/// LowerOperation - Provide custom lowering hooks for some operations.
8557///
Dan Gohmand858e902010-04-17 15:26:15 +00008558SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008559 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008560 default: llvm_unreachable("Should not custom lower this!");
Eric Christopher9a9d2752010-07-22 02:48:34 +00008561 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008562 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
8563 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008564 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00008565 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008566 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
8567 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
8568 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
8569 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
8570 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
8571 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008572 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00008573 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +00008574 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008575 case ISD::SHL_PARTS:
8576 case ISD::SRA_PARTS:
8577 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
8578 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008579 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008580 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00008581 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008582 case ISD::FABS: return LowerFABS(Op, DAG);
8583 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00008584 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00008585 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00008586 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00008587 case ISD::SELECT: return LowerSELECT(Op, DAG);
8588 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008589 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008590 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00008591 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00008592 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008593 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00008594 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
8595 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008596 case ISD::FRAME_TO_ARGS_OFFSET:
8597 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008598 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008599 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008600 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00008601 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00008602 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
8603 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008604 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008605 case ISD::SHL: return LowerSHL(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00008606 case ISD::SADDO:
8607 case ISD::UADDO:
8608 case ISD::SSUBO:
8609 case ISD::USUBO:
8610 case ISD::SMULO:
8611 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00008612 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Dale Johannesen7d07b482010-05-21 00:52:33 +00008613 case ISD::BIT_CONVERT: return LowerBIT_CONVERT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008614 }
Chris Lattner27a6c732007-11-24 07:07:01 +00008615}
8616
Duncan Sands1607f052008-12-01 11:39:25 +00008617void X86TargetLowering::
8618ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00008619 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008620 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008621 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00008622 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +00008623
8624 SDValue Chain = Node->getOperand(0);
8625 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008626 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008627 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00008628 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008629 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +00008630 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +00008631 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +00008632 SDValue Result =
8633 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
8634 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +00008635 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +00008636 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008637 Results.push_back(Result.getValue(2));
8638}
8639
Duncan Sands126d9072008-07-04 11:47:58 +00008640/// ReplaceNodeResults - Replace a node with an illegal result type
8641/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00008642void X86TargetLowering::ReplaceNodeResults(SDNode *N,
8643 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00008644 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +00008645 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +00008646 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00008647 default:
Duncan Sands1607f052008-12-01 11:39:25 +00008648 assert(false && "Do not know how to custom type legalize this operation!");
8649 return;
8650 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +00008651 std::pair<SDValue,SDValue> Vals =
8652 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +00008653 SDValue FIST = Vals.first, StackSlot = Vals.second;
8654 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +00008655 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +00008656 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +00008657 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
8658 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +00008659 }
8660 return;
8661 }
8662 case ISD::READCYCLECOUNTER: {
Owen Anderson825b72b2009-08-11 20:47:22 +00008663 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00008664 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008665 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008666 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +00008667 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00008668 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008669 eax.getValue(2));
8670 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
8671 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +00008672 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008673 Results.push_back(edx.getValue(1));
8674 return;
8675 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008676 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +00008677 EVT T = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008678 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands1607f052008-12-01 11:39:25 +00008679 SDValue cpInL, cpInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00008680 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
8681 DAG.getConstant(0, MVT::i32));
8682 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
8683 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00008684 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
8685 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +00008686 cpInL.getValue(1));
8687 SDValue swapInL, swapInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00008688 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
8689 DAG.getConstant(0, MVT::i32));
8690 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
8691 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00008692 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +00008693 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00008694 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +00008695 swapInL.getValue(1));
8696 SDValue Ops[] = { swapInH.getValue(0),
8697 N->getOperand(1),
8698 swapInH.getValue(1) };
Owen Anderson825b72b2009-08-11 20:47:22 +00008699 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008700 SDValue Result = DAG.getNode(X86ISD::LCMPXCHG8_DAG, dl, Tys, Ops, 3);
Dale Johannesendd64c412009-02-04 00:33:20 +00008701 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson825b72b2009-08-11 20:47:22 +00008702 MVT::i32, Result.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00008703 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson825b72b2009-08-11 20:47:22 +00008704 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +00008705 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson825b72b2009-08-11 20:47:22 +00008706 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008707 Results.push_back(cpOutH.getValue(1));
8708 return;
8709 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008710 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00008711 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
8712 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008713 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00008714 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
8715 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008716 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00008717 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
8718 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008719 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00008720 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
8721 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008722 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00008723 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
8724 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008725 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00008726 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
8727 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008728 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00008729 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
8730 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00008731 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00008732}
8733
Evan Cheng72261582005-12-20 06:22:03 +00008734const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
8735 switch (Opcode) {
8736 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00008737 case X86ISD::BSF: return "X86ISD::BSF";
8738 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00008739 case X86ISD::SHLD: return "X86ISD::SHLD";
8740 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00008741 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00008742 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00008743 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00008744 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00008745 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00008746 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00008747 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
8748 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
8749 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00008750 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00008751 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00008752 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +00008753 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00008754 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00008755 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00008756 case X86ISD::COMI: return "X86ISD::COMI";
8757 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00008758 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +00008759 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Evan Cheng72261582005-12-20 06:22:03 +00008760 case X86ISD::CMOV: return "X86ISD::CMOV";
8761 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00008762 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00008763 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
8764 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00008765 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00008766 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +00008767 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +00008768 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00008769 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00008770 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
8771 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00008772 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +00008773 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Evan Cheng8ca29322006-11-10 21:43:37 +00008774 case X86ISD::FMAX: return "X86ISD::FMAX";
8775 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00008776 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
8777 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008778 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +00008779 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008780 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00008781 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008782 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00008783 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
8784 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00008785 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
8786 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
8787 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
8788 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
8789 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
8790 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00008791 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
8792 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00008793 case X86ISD::VSHL: return "X86ISD::VSHL";
8794 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00008795 case X86ISD::CMPPD: return "X86ISD::CMPPD";
8796 case X86ISD::CMPPS: return "X86ISD::CMPPS";
8797 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
8798 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
8799 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
8800 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
8801 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
8802 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
8803 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
8804 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008805 case X86ISD::ADD: return "X86ISD::ADD";
8806 case X86ISD::SUB: return "X86ISD::SUB";
Bill Wendlingd350e022008-12-12 21:15:41 +00008807 case X86ISD::SMUL: return "X86ISD::SMUL";
8808 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +00008809 case X86ISD::INC: return "X86ISD::INC";
8810 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +00008811 case X86ISD::OR: return "X86ISD::OR";
8812 case X86ISD::XOR: return "X86ISD::XOR";
8813 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +00008814 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +00008815 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008816 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008817 case X86ISD::PALIGN: return "X86ISD::PALIGN";
8818 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
8819 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
8820 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
8821 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
8822 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
8823 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
8824 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
8825 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008826 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00008827 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008828 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00008829 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
8830 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008831 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
8832 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
8833 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
8834 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
8835 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
8836 case X86ISD::MOVSD: return "X86ISD::MOVSD";
8837 case X86ISD::MOVSS: return "X86ISD::MOVSS";
8838 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
8839 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
8840 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
8841 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
8842 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
8843 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
8844 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
8845 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
8846 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
8847 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
8848 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
8849 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Dan Gohmand6708ea2009-08-15 01:38:56 +00008850 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00008851 case X86ISD::MINGW_ALLOCA: return "X86ISD::MINGW_ALLOCA";
Evan Cheng72261582005-12-20 06:22:03 +00008852 }
8853}
Evan Cheng3a03ebb2005-12-21 23:05:39 +00008854
Chris Lattnerc9addb72007-03-30 23:15:24 +00008855// isLegalAddressingMode - Return true if the addressing mode represented
8856// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00008857bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerc9addb72007-03-30 23:15:24 +00008858 const Type *Ty) const {
8859 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008860 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +00008861 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +00008862
Chris Lattnerc9addb72007-03-30 23:15:24 +00008863 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008864 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +00008865 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00008866
Chris Lattnerc9addb72007-03-30 23:15:24 +00008867 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +00008868 unsigned GVFlags =
8869 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008870
Chris Lattnerdfed4132009-07-10 07:38:24 +00008871 // If a reference to this global requires an extra load, we can't fold it.
8872 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +00008873 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008874
Chris Lattnerdfed4132009-07-10 07:38:24 +00008875 // If BaseGV requires a register for the PIC base, we cannot also have a
8876 // BaseReg specified.
8877 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +00008878 return false;
Evan Cheng52787842007-08-01 23:46:47 +00008879
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008880 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +00008881 if ((M != CodeModel::Small || R != Reloc::Static) &&
8882 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008883 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +00008884 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008885
Chris Lattnerc9addb72007-03-30 23:15:24 +00008886 switch (AM.Scale) {
8887 case 0:
8888 case 1:
8889 case 2:
8890 case 4:
8891 case 8:
8892 // These scales always work.
8893 break;
8894 case 3:
8895 case 5:
8896 case 9:
8897 // These scales are formed with basereg+scalereg. Only accept if there is
8898 // no basereg yet.
8899 if (AM.HasBaseReg)
8900 return false;
8901 break;
8902 default: // Other stuff never works.
8903 return false;
8904 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008905
Chris Lattnerc9addb72007-03-30 23:15:24 +00008906 return true;
8907}
8908
8909
Evan Cheng2bd122c2007-10-26 01:56:11 +00008910bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00008911 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +00008912 return false;
Evan Chenge127a732007-10-29 07:57:50 +00008913 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
8914 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00008915 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +00008916 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00008917 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +00008918}
8919
Owen Andersone50ed302009-08-10 22:56:29 +00008920bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00008921 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +00008922 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008923 unsigned NumBits1 = VT1.getSizeInBits();
8924 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00008925 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +00008926 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00008927 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00008928}
Evan Cheng2bd122c2007-10-26 01:56:11 +00008929
Dan Gohman97121ba2009-04-08 00:15:30 +00008930bool X86TargetLowering::isZExtFree(const Type *Ty1, const Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00008931 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00008932 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00008933}
8934
Owen Andersone50ed302009-08-10 22:56:29 +00008935bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00008936 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +00008937 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00008938}
8939
Owen Andersone50ed302009-08-10 22:56:29 +00008940bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +00008941 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +00008942 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +00008943}
8944
Evan Cheng60c07e12006-07-05 22:17:51 +00008945/// isShuffleMaskLegal - Targets can use this to indicate that they only
8946/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
8947/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
8948/// are assumed to be legal.
8949bool
Eric Christopherfd179292009-08-27 18:07:15 +00008950X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +00008951 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +00008952 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +00008953 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +00008954 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +00008955
Nate Begemana09008b2009-10-19 02:17:23 +00008956 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +00008957 return (VT.getVectorNumElements() == 2 ||
8958 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
8959 isMOVLMask(M, VT) ||
8960 isSHUFPMask(M, VT) ||
8961 isPSHUFDMask(M, VT) ||
8962 isPSHUFHWMask(M, VT) ||
8963 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +00008964 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +00008965 isUNPCKLMask(M, VT) ||
8966 isUNPCKHMask(M, VT) ||
8967 isUNPCKL_v_undef_Mask(M, VT) ||
8968 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00008969}
8970
Dan Gohman7d8143f2008-04-09 20:09:42 +00008971bool
Nate Begeman5a5ca152009-04-29 05:20:52 +00008972X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +00008973 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00008974 unsigned NumElts = VT.getVectorNumElements();
8975 // FIXME: This collection of masks seems suspect.
8976 if (NumElts == 2)
8977 return true;
8978 if (NumElts == 4 && VT.getSizeInBits() == 128) {
8979 return (isMOVLMask(Mask, VT) ||
8980 isCommutedMOVLMask(Mask, VT, true) ||
8981 isSHUFPMask(Mask, VT) ||
8982 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00008983 }
8984 return false;
8985}
8986
8987//===----------------------------------------------------------------------===//
8988// X86 Scheduler Hooks
8989//===----------------------------------------------------------------------===//
8990
Mon P Wang63307c32008-05-05 19:05:59 +00008991// private utility function
8992MachineBasicBlock *
8993X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
8994 MachineBasicBlock *MBB,
8995 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +00008996 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00008997 unsigned LoadOpc,
8998 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00008999 unsigned notOpc,
9000 unsigned EAXreg,
9001 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009002 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009003 // For the atomic bitwise operator, we generate
9004 // thisMBB:
9005 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009006 // ld t1 = [bitinstr.addr]
9007 // op t2 = t1, [bitinstr.val]
9008 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009009 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9010 // bz newMBB
9011 // fallthrough -->nextMBB
9012 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9013 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009014 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009015 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009016
Mon P Wang63307c32008-05-05 19:05:59 +00009017 /// First build the CFG
9018 MachineFunction *F = MBB->getParent();
9019 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009020 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9021 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9022 F->insert(MBBIter, newMBB);
9023 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009024
Dan Gohman14152b42010-07-06 20:24:04 +00009025 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9026 nextMBB->splice(nextMBB->begin(), thisMBB,
9027 llvm::next(MachineBasicBlock::iterator(bInstr)),
9028 thisMBB->end());
9029 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009030
Mon P Wang63307c32008-05-05 19:05:59 +00009031 // Update thisMBB to fall through to newMBB
9032 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009033
Mon P Wang63307c32008-05-05 19:05:59 +00009034 // newMBB jumps to itself and fall through to nextMBB
9035 newMBB->addSuccessor(nextMBB);
9036 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009037
Mon P Wang63307c32008-05-05 19:05:59 +00009038 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009039 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009040 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +00009041 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009042 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009043 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009044 int numArgs = bInstr->getNumOperands() - 1;
9045 for (int i=0; i < numArgs; ++i)
9046 argOpers[i] = &bInstr->getOperand(i+1);
9047
9048 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009049 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009050 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009051
Dale Johannesen140be2d2008-08-19 18:47:28 +00009052 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009053 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009054 for (int i=0; i <= lastAddrIndx; ++i)
9055 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009056
Dale Johannesen140be2d2008-08-19 18:47:28 +00009057 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009058 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009059 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009060 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009061 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009062 tt = t1;
9063
Dale Johannesen140be2d2008-08-19 18:47:28 +00009064 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +00009065 assert((argOpers[valArgIndx]->isReg() ||
9066 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009067 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +00009068 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009069 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009070 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009071 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009072 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +00009073 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009074
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009075 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +00009076 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009077
Dale Johannesene4d209d2009-02-03 20:21:25 +00009078 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +00009079 for (int i=0; i <= lastAddrIndx; ++i)
9080 (*MIB).addOperand(*argOpers[i]);
9081 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +00009082 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009083 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9084 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +00009085
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009086 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +00009087 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009088
Mon P Wang63307c32008-05-05 19:05:59 +00009089 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009090 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009091
Dan Gohman14152b42010-07-06 20:24:04 +00009092 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009093 return nextMBB;
9094}
9095
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00009096// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +00009097MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009098X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
9099 MachineBasicBlock *MBB,
9100 unsigned regOpcL,
9101 unsigned regOpcH,
9102 unsigned immOpcL,
9103 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009104 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009105 // For the atomic bitwise operator, we generate
9106 // thisMBB (instructions are in pairs, except cmpxchg8b)
9107 // ld t1,t2 = [bitinstr.addr]
9108 // newMBB:
9109 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
9110 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +00009111 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009112 // mov ECX, EBX <- t5, t6
9113 // mov EAX, EDX <- t1, t2
9114 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
9115 // mov t3, t4 <- EAX, EDX
9116 // bz newMBB
9117 // result in out1, out2
9118 // fallthrough -->nextMBB
9119
9120 const TargetRegisterClass *RC = X86::GR32RegisterClass;
9121 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009122 const unsigned NotOpc = X86::NOT32r;
9123 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9124 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9125 MachineFunction::iterator MBBIter = MBB;
9126 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009127
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009128 /// First build the CFG
9129 MachineFunction *F = MBB->getParent();
9130 MachineBasicBlock *thisMBB = MBB;
9131 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9132 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9133 F->insert(MBBIter, newMBB);
9134 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009135
Dan Gohman14152b42010-07-06 20:24:04 +00009136 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9137 nextMBB->splice(nextMBB->begin(), thisMBB,
9138 llvm::next(MachineBasicBlock::iterator(bInstr)),
9139 thisMBB->end());
9140 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009141
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009142 // Update thisMBB to fall through to newMBB
9143 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009144
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009145 // newMBB jumps to itself and fall through to nextMBB
9146 newMBB->addSuccessor(nextMBB);
9147 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009148
Dale Johannesene4d209d2009-02-03 20:21:25 +00009149 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009150 // Insert instructions into newMBB based on incoming instruction
9151 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009152 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009153 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009154 MachineOperand& dest1Oper = bInstr->getOperand(0);
9155 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009156 MachineOperand* argOpers[2 + X86::AddrNumOperands];
9157 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009158 argOpers[i] = &bInstr->getOperand(i+2);
9159
Dan Gohman71ea4e52010-05-14 21:01:44 +00009160 // We use some of the operands multiple times, so conservatively just
9161 // clear any kill flags that might be present.
9162 if (argOpers[i]->isReg() && argOpers[i]->isUse())
9163 argOpers[i]->setIsKill(false);
9164 }
9165
Evan Chengad5b52f2010-01-08 19:14:57 +00009166 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009167 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +00009168
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009169 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009170 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009171 for (int i=0; i <= lastAddrIndx; ++i)
9172 (*MIB).addOperand(*argOpers[i]);
9173 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009174 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +00009175 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +00009176 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009177 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +00009178 MachineOperand newOp3 = *(argOpers[3]);
9179 if (newOp3.isImm())
9180 newOp3.setImm(newOp3.getImm()+4);
9181 else
9182 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009183 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +00009184 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009185
9186 // t3/4 are defined later, at the bottom of the loop
9187 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
9188 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009189 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009190 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009191 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009192 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
9193
Evan Cheng306b4ca2010-01-08 23:41:50 +00009194 // The subsequent operations should be using the destination registers of
9195 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +00009196 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009197 t1 = F->getRegInfo().createVirtualRegister(RC);
9198 t2 = F->getRegInfo().createVirtualRegister(RC);
9199 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
9200 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009201 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009202 t1 = dest1Oper.getReg();
9203 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009204 }
9205
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009206 int valArgIndx = lastAddrIndx + 1;
9207 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +00009208 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009209 "invalid operand");
9210 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
9211 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009212 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009213 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009214 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009215 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +00009216 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009217 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009218 (*MIB).addOperand(*argOpers[valArgIndx]);
9219 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009220 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009221 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009222 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009223 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009224 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009225 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009226 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +00009227 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009228 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009229 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009230
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009231 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009232 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009233 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009234 MIB.addReg(t2);
9235
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009236 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009237 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009238 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009239 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +00009240
Dale Johannesene4d209d2009-02-03 20:21:25 +00009241 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009242 for (int i=0; i <= lastAddrIndx; ++i)
9243 (*MIB).addOperand(*argOpers[i]);
9244
9245 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009246 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9247 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009248
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009249 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009250 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009251 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009252 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009253
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009254 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009255 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009256
Dan Gohman14152b42010-07-06 20:24:04 +00009257 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009258 return nextMBB;
9259}
9260
9261// private utility function
9262MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +00009263X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
9264 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009265 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009266 // For the atomic min/max operator, we generate
9267 // thisMBB:
9268 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009269 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +00009270 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +00009271 // cmp t1, t2
9272 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +00009273 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009274 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9275 // bz newMBB
9276 // fallthrough -->nextMBB
9277 //
9278 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9279 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009280 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009281 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009282
Mon P Wang63307c32008-05-05 19:05:59 +00009283 /// First build the CFG
9284 MachineFunction *F = MBB->getParent();
9285 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009286 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9287 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9288 F->insert(MBBIter, newMBB);
9289 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009290
Dan Gohman14152b42010-07-06 20:24:04 +00009291 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9292 nextMBB->splice(nextMBB->begin(), thisMBB,
9293 llvm::next(MachineBasicBlock::iterator(mInstr)),
9294 thisMBB->end());
9295 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009296
Mon P Wang63307c32008-05-05 19:05:59 +00009297 // Update thisMBB to fall through to newMBB
9298 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009299
Mon P Wang63307c32008-05-05 19:05:59 +00009300 // newMBB jumps to newMBB and fall through to nextMBB
9301 newMBB->addSuccessor(nextMBB);
9302 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009303
Dale Johannesene4d209d2009-02-03 20:21:25 +00009304 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009305 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009306 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009307 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +00009308 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009309 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009310 int numArgs = mInstr->getNumOperands() - 1;
9311 for (int i=0; i < numArgs; ++i)
9312 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009313
Mon P Wang63307c32008-05-05 19:05:59 +00009314 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009315 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009316 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009317
Mon P Wangab3e7472008-05-05 22:56:23 +00009318 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009319 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009320 for (int i=0; i <= lastAddrIndx; ++i)
9321 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +00009322
Mon P Wang63307c32008-05-05 19:05:59 +00009323 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +00009324 assert((argOpers[valArgIndx]->isReg() ||
9325 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009326 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +00009327
9328 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +00009329 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009330 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +00009331 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009332 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009333 (*MIB).addOperand(*argOpers[valArgIndx]);
9334
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009335 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +00009336 MIB.addReg(t1);
9337
Dale Johannesene4d209d2009-02-03 20:21:25 +00009338 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +00009339 MIB.addReg(t1);
9340 MIB.addReg(t2);
9341
9342 // Generate movc
9343 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009344 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +00009345 MIB.addReg(t2);
9346 MIB.addReg(t1);
9347
9348 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +00009349 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +00009350 for (int i=0; i <= lastAddrIndx; ++i)
9351 (*MIB).addOperand(*argOpers[i]);
9352 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +00009353 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009354 (*MIB).setMemRefs(mInstr->memoperands_begin(),
9355 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +00009356
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009357 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +00009358 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009359
Mon P Wang63307c32008-05-05 19:05:59 +00009360 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009361 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009362
Dan Gohman14152b42010-07-06 20:24:04 +00009363 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009364 return nextMBB;
9365}
9366
Eric Christopherf83a5de2009-08-27 18:08:16 +00009367// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009368// or XMM0_V32I8 in AVX all of this code can be replaced with that
9369// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +00009370MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +00009371X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +00009372 unsigned numArgs, bool memArg) const {
Eric Christopherb120ab42009-08-18 22:50:32 +00009373
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009374 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
9375 "Target must have SSE4.2 or AVX features enabled");
9376
Eric Christopherb120ab42009-08-18 22:50:32 +00009377 DebugLoc dl = MI->getDebugLoc();
9378 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9379
9380 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009381
9382 if (!Subtarget->hasAVX()) {
9383 if (memArg)
9384 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
9385 else
9386 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
9387 } else {
9388 if (memArg)
9389 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
9390 else
9391 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
9392 }
Eric Christopherb120ab42009-08-18 22:50:32 +00009393
9394 MachineInstrBuilder MIB = BuildMI(BB, dl, TII->get(Opc));
9395
9396 for (unsigned i = 0; i < numArgs; ++i) {
9397 MachineOperand &Op = MI->getOperand(i+1);
9398
9399 if (!(Op.isReg() && Op.isImplicit()))
9400 MIB.addOperand(Op);
9401 }
9402
9403 BuildMI(BB, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
9404 .addReg(X86::XMM0);
9405
Dan Gohman14152b42010-07-06 20:24:04 +00009406 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +00009407
9408 return BB;
9409}
9410
9411MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +00009412X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
9413 MachineInstr *MI,
9414 MachineBasicBlock *MBB) const {
9415 // Emit code to save XMM registers to the stack. The ABI says that the
9416 // number of registers to save is given in %al, so it's theoretically
9417 // possible to do an indirect jump trick to avoid saving all of them,
9418 // however this code takes a simpler approach and just executes all
9419 // of the stores if %al is non-zero. It's less code, and it's probably
9420 // easier on the hardware branch predictor, and stores aren't all that
9421 // expensive anyway.
9422
9423 // Create the new basic blocks. One block contains all the XMM stores,
9424 // and one block is the final destination regardless of whether any
9425 // stores were performed.
9426 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9427 MachineFunction *F = MBB->getParent();
9428 MachineFunction::iterator MBBIter = MBB;
9429 ++MBBIter;
9430 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
9431 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
9432 F->insert(MBBIter, XMMSaveMBB);
9433 F->insert(MBBIter, EndMBB);
9434
Dan Gohman14152b42010-07-06 20:24:04 +00009435 // Transfer the remainder of MBB and its successor edges to EndMBB.
9436 EndMBB->splice(EndMBB->begin(), MBB,
9437 llvm::next(MachineBasicBlock::iterator(MI)),
9438 MBB->end());
9439 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
9440
Dan Gohmand6708ea2009-08-15 01:38:56 +00009441 // The original block will now fall through to the XMM save block.
9442 MBB->addSuccessor(XMMSaveMBB);
9443 // The XMMSaveMBB will fall through to the end block.
9444 XMMSaveMBB->addSuccessor(EndMBB);
9445
9446 // Now add the instructions.
9447 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9448 DebugLoc DL = MI->getDebugLoc();
9449
9450 unsigned CountReg = MI->getOperand(0).getReg();
9451 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
9452 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
9453
9454 if (!Subtarget->isTargetWin64()) {
9455 // If %al is 0, branch around the XMM save block.
9456 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009457 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009458 MBB->addSuccessor(EndMBB);
9459 }
9460
9461 // In the XMM save block, save all the XMM argument registers.
9462 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
9463 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +00009464 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +00009465 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +00009466 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +00009467 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +00009468 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009469 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
9470 .addFrameIndex(RegSaveFrameIndex)
9471 .addImm(/*Scale=*/1)
9472 .addReg(/*IndexReg=*/0)
9473 .addImm(/*Disp=*/Offset)
9474 .addReg(/*Segment=*/0)
9475 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +00009476 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009477 }
9478
Dan Gohman14152b42010-07-06 20:24:04 +00009479 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +00009480
9481 return EndMBB;
9482}
Mon P Wang63307c32008-05-05 19:05:59 +00009483
Evan Cheng60c07e12006-07-05 22:17:51 +00009484MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +00009485X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009486 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +00009487 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9488 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00009489
Chris Lattner52600972009-09-02 05:57:00 +00009490 // To "insert" a SELECT_CC instruction, we actually have to insert the
9491 // diamond control-flow pattern. The incoming instruction knows the
9492 // destination vreg to set, the condition code register to branch on, the
9493 // true/false values to select between, and a branch opcode to use.
9494 const BasicBlock *LLVM_BB = BB->getBasicBlock();
9495 MachineFunction::iterator It = BB;
9496 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +00009497
Chris Lattner52600972009-09-02 05:57:00 +00009498 // thisMBB:
9499 // ...
9500 // TrueVal = ...
9501 // cmpTY ccX, r1, r2
9502 // bCC copy1MBB
9503 // fallthrough --> copy0MBB
9504 MachineBasicBlock *thisMBB = BB;
9505 MachineFunction *F = BB->getParent();
9506 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
9507 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +00009508 F->insert(It, copy0MBB);
9509 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +00009510
Bill Wendling730c07e2010-06-25 20:48:10 +00009511 // If the EFLAGS register isn't dead in the terminator, then claim that it's
9512 // live into the sink and copy blocks.
9513 const MachineFunction *MF = BB->getParent();
9514 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
9515 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +00009516
Dan Gohman14152b42010-07-06 20:24:04 +00009517 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
9518 const MachineOperand &MO = MI->getOperand(I);
9519 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +00009520 unsigned Reg = MO.getReg();
9521 if (Reg != X86::EFLAGS) continue;
9522 copy0MBB->addLiveIn(Reg);
9523 sinkMBB->addLiveIn(Reg);
9524 }
9525
Dan Gohman14152b42010-07-06 20:24:04 +00009526 // Transfer the remainder of BB and its successor edges to sinkMBB.
9527 sinkMBB->splice(sinkMBB->begin(), BB,
9528 llvm::next(MachineBasicBlock::iterator(MI)),
9529 BB->end());
9530 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
9531
9532 // Add the true and fallthrough blocks as its successors.
9533 BB->addSuccessor(copy0MBB);
9534 BB->addSuccessor(sinkMBB);
9535
9536 // Create the conditional branch instruction.
9537 unsigned Opc =
9538 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
9539 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
9540
Chris Lattner52600972009-09-02 05:57:00 +00009541 // copy0MBB:
9542 // %FalseValue = ...
9543 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +00009544 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00009545
Chris Lattner52600972009-09-02 05:57:00 +00009546 // sinkMBB:
9547 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
9548 // ...
Dan Gohman14152b42010-07-06 20:24:04 +00009549 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
9550 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +00009551 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
9552 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
9553
Dan Gohman14152b42010-07-06 20:24:04 +00009554 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +00009555 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +00009556}
9557
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009558MachineBasicBlock *
9559X86TargetLowering::EmitLoweredMingwAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009560 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009561 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9562 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009563
9564 // The lowering is pretty easy: we're just emitting the call to _alloca. The
9565 // non-trivial part is impdef of ESP.
9566 // FIXME: The code should be tweaked as soon as we'll try to do codegen for
9567 // mingw-w64.
9568
Dan Gohman14152b42010-07-06 20:24:04 +00009569 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009570 .addExternalSymbol("_alloca")
9571 .addReg(X86::EAX, RegState::Implicit)
9572 .addReg(X86::ESP, RegState::Implicit)
9573 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
Anton Korobeynikov9f7f83b2010-08-25 07:50:11 +00009574 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
9575 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009576
Dan Gohman14152b42010-07-06 20:24:04 +00009577 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009578 return BB;
9579}
Chris Lattner52600972009-09-02 05:57:00 +00009580
9581MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +00009582X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
9583 MachineBasicBlock *BB) const {
9584 // This is pretty easy. We're taking the value that we received from
9585 // our load from the relocation, sticking it in either RDI (x86-64)
9586 // or EAX and doing an indirect call. The return value will then
9587 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +00009588 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +00009589 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +00009590 DebugLoc DL = MI->getDebugLoc();
9591 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +00009592
9593 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +00009594 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +00009595
Eric Christopher30ef0e52010-06-03 04:07:48 +00009596 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +00009597 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9598 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +00009599 .addReg(X86::RIP)
9600 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009601 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +00009602 MI->getOperand(3).getTargetFlags())
9603 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +00009604 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +00009605 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +00009606 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +00009607 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9608 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +00009609 .addReg(0)
9610 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009611 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +00009612 MI->getOperand(3).getTargetFlags())
9613 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +00009614 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +00009615 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +00009616 } else {
Dan Gohman14152b42010-07-06 20:24:04 +00009617 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9618 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +00009619 .addReg(TII->getGlobalBaseReg(F))
9620 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009621 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +00009622 MI->getOperand(3).getTargetFlags())
9623 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +00009624 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +00009625 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +00009626 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00009627
Dan Gohman14152b42010-07-06 20:24:04 +00009628 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +00009629 return BB;
9630}
9631
9632MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +00009633X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009634 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +00009635 switch (MI->getOpcode()) {
9636 default: assert(false && "Unexpected instr type to insert");
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009637 case X86::MINGW_ALLOCA:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009638 return EmitLoweredMingwAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +00009639 case X86::TLSCall_32:
9640 case X86::TLSCall_64:
9641 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +00009642 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +00009643 case X86::CMOV_FR32:
9644 case X86::CMOV_FR64:
9645 case X86::CMOV_V4F32:
9646 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +00009647 case X86::CMOV_V2I64:
Chris Lattner314a1132010-03-14 18:31:44 +00009648 case X86::CMOV_GR16:
9649 case X86::CMOV_GR32:
9650 case X86::CMOV_RFP32:
9651 case X86::CMOV_RFP64:
9652 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009653 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +00009654
Dale Johannesen849f2142007-07-03 00:53:03 +00009655 case X86::FP32_TO_INT16_IN_MEM:
9656 case X86::FP32_TO_INT32_IN_MEM:
9657 case X86::FP32_TO_INT64_IN_MEM:
9658 case X86::FP64_TO_INT16_IN_MEM:
9659 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +00009660 case X86::FP64_TO_INT64_IN_MEM:
9661 case X86::FP80_TO_INT16_IN_MEM:
9662 case X86::FP80_TO_INT32_IN_MEM:
9663 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +00009664 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9665 DebugLoc DL = MI->getDebugLoc();
9666
Evan Cheng60c07e12006-07-05 22:17:51 +00009667 // Change the floating point control register to use "round towards zero"
9668 // mode when truncating to an integer value.
9669 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +00009670 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +00009671 addFrameReference(BuildMI(*BB, MI, DL,
9672 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00009673
9674 // Load the old value of the high byte of the control word...
9675 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +00009676 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +00009677 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +00009678 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00009679
9680 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +00009681 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +00009682 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +00009683
9684 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +00009685 addFrameReference(BuildMI(*BB, MI, DL,
9686 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00009687
9688 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +00009689 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +00009690 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +00009691
9692 // Get the X86 opcode to use.
9693 unsigned Opc;
9694 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009695 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +00009696 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
9697 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
9698 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
9699 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
9700 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
9701 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +00009702 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
9703 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
9704 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +00009705 }
9706
9707 X86AddressMode AM;
9708 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +00009709 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +00009710 AM.BaseType = X86AddressMode::RegBase;
9711 AM.Base.Reg = Op.getReg();
9712 } else {
9713 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +00009714 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +00009715 }
9716 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +00009717 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +00009718 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +00009719 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +00009720 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +00009721 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +00009722 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +00009723 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +00009724 AM.GV = Op.getGlobal();
9725 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +00009726 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +00009727 }
Dan Gohman14152b42010-07-06 20:24:04 +00009728 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009729 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +00009730
9731 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +00009732 addFrameReference(BuildMI(*BB, MI, DL,
9733 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00009734
Dan Gohman14152b42010-07-06 20:24:04 +00009735 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +00009736 return BB;
9737 }
Eric Christopherb120ab42009-08-18 22:50:32 +00009738 // String/text processing lowering.
9739 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009740 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +00009741 return EmitPCMP(MI, BB, 3, false /* in-mem */);
9742 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009743 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +00009744 return EmitPCMP(MI, BB, 3, true /* in-mem */);
9745 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009746 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +00009747 return EmitPCMP(MI, BB, 5, false /* in mem */);
9748 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009749 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +00009750 return EmitPCMP(MI, BB, 5, true /* in mem */);
9751
9752 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +00009753 case X86::ATOMAND32:
9754 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +00009755 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009756 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009757 X86::NOT32r, X86::EAX,
9758 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +00009759 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +00009760 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
9761 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009762 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009763 X86::NOT32r, X86::EAX,
9764 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +00009765 case X86::ATOMXOR32:
9766 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +00009767 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009768 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009769 X86::NOT32r, X86::EAX,
9770 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009771 case X86::ATOMNAND32:
9772 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009773 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009774 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009775 X86::NOT32r, X86::EAX,
9776 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +00009777 case X86::ATOMMIN32:
9778 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
9779 case X86::ATOMMAX32:
9780 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
9781 case X86::ATOMUMIN32:
9782 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
9783 case X86::ATOMUMAX32:
9784 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +00009785
9786 case X86::ATOMAND16:
9787 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
9788 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009789 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009790 X86::NOT16r, X86::AX,
9791 X86::GR16RegisterClass);
9792 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +00009793 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009794 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009795 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009796 X86::NOT16r, X86::AX,
9797 X86::GR16RegisterClass);
9798 case X86::ATOMXOR16:
9799 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
9800 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009801 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009802 X86::NOT16r, X86::AX,
9803 X86::GR16RegisterClass);
9804 case X86::ATOMNAND16:
9805 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
9806 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009807 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009808 X86::NOT16r, X86::AX,
9809 X86::GR16RegisterClass, true);
9810 case X86::ATOMMIN16:
9811 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
9812 case X86::ATOMMAX16:
9813 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
9814 case X86::ATOMUMIN16:
9815 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
9816 case X86::ATOMUMAX16:
9817 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
9818
9819 case X86::ATOMAND8:
9820 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
9821 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009822 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009823 X86::NOT8r, X86::AL,
9824 X86::GR8RegisterClass);
9825 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +00009826 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009827 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009828 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009829 X86::NOT8r, X86::AL,
9830 X86::GR8RegisterClass);
9831 case X86::ATOMXOR8:
9832 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
9833 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009834 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009835 X86::NOT8r, X86::AL,
9836 X86::GR8RegisterClass);
9837 case X86::ATOMNAND8:
9838 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
9839 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009840 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009841 X86::NOT8r, X86::AL,
9842 X86::GR8RegisterClass, true);
9843 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009844 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +00009845 case X86::ATOMAND64:
9846 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +00009847 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009848 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +00009849 X86::NOT64r, X86::RAX,
9850 X86::GR64RegisterClass);
9851 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +00009852 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
9853 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009854 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +00009855 X86::NOT64r, X86::RAX,
9856 X86::GR64RegisterClass);
9857 case X86::ATOMXOR64:
9858 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +00009859 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009860 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +00009861 X86::NOT64r, X86::RAX,
9862 X86::GR64RegisterClass);
9863 case X86::ATOMNAND64:
9864 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
9865 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009866 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +00009867 X86::NOT64r, X86::RAX,
9868 X86::GR64RegisterClass, true);
9869 case X86::ATOMMIN64:
9870 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
9871 case X86::ATOMMAX64:
9872 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
9873 case X86::ATOMUMIN64:
9874 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
9875 case X86::ATOMUMAX64:
9876 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009877
9878 // This group does 64-bit operations on a 32-bit host.
9879 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00009880 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009881 X86::AND32rr, X86::AND32rr,
9882 X86::AND32ri, X86::AND32ri,
9883 false);
9884 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00009885 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009886 X86::OR32rr, X86::OR32rr,
9887 X86::OR32ri, X86::OR32ri,
9888 false);
9889 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00009890 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009891 X86::XOR32rr, X86::XOR32rr,
9892 X86::XOR32ri, X86::XOR32ri,
9893 false);
9894 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00009895 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009896 X86::AND32rr, X86::AND32rr,
9897 X86::AND32ri, X86::AND32ri,
9898 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009899 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00009900 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009901 X86::ADD32rr, X86::ADC32rr,
9902 X86::ADD32ri, X86::ADC32ri,
9903 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009904 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00009905 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009906 X86::SUB32rr, X86::SBB32rr,
9907 X86::SUB32ri, X86::SBB32ri,
9908 false);
Dale Johannesen880ae362008-10-03 22:25:52 +00009909 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +00009910 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +00009911 X86::MOV32rr, X86::MOV32rr,
9912 X86::MOV32ri, X86::MOV32ri,
9913 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009914 case X86::VASTART_SAVE_XMM_REGS:
9915 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +00009916 }
9917}
9918
9919//===----------------------------------------------------------------------===//
9920// X86 Optimization Hooks
9921//===----------------------------------------------------------------------===//
9922
Dan Gohman475871a2008-07-27 21:46:04 +00009923void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +00009924 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00009925 APInt &KnownZero,
9926 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00009927 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +00009928 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +00009929 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +00009930 assert((Opc >= ISD::BUILTIN_OP_END ||
9931 Opc == ISD::INTRINSIC_WO_CHAIN ||
9932 Opc == ISD::INTRINSIC_W_CHAIN ||
9933 Opc == ISD::INTRINSIC_VOID) &&
9934 "Should use MaskedValueIsZero if you don't know whether Op"
9935 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +00009936
Dan Gohmanf4f92f52008-02-13 23:07:24 +00009937 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +00009938 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +00009939 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +00009940 case X86ISD::ADD:
9941 case X86ISD::SUB:
9942 case X86ISD::SMUL:
9943 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +00009944 case X86ISD::INC:
9945 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +00009946 case X86ISD::OR:
9947 case X86ISD::XOR:
9948 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +00009949 // These nodes' second result is a boolean.
9950 if (Op.getResNo() == 0)
9951 break;
9952 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00009953 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00009954 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
9955 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +00009956 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +00009957 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +00009958}
Chris Lattner259e97c2006-01-31 19:43:35 +00009959
Owen Andersonbc146b02010-09-21 20:42:50 +00009960unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
9961 unsigned Depth) const {
9962 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
9963 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
9964 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009965
Owen Andersonbc146b02010-09-21 20:42:50 +00009966 // Fallback case.
9967 return 1;
9968}
9969
Evan Cheng206ee9d2006-07-07 08:33:52 +00009970/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +00009971/// node is a GlobalAddress + offset.
9972bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +00009973 const GlobalValue* &GA,
9974 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +00009975 if (N->getOpcode() == X86ISD::Wrapper) {
9976 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +00009977 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00009978 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +00009979 return true;
9980 }
Evan Cheng206ee9d2006-07-07 08:33:52 +00009981 }
Evan Chengad4196b2008-05-12 19:56:52 +00009982 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +00009983}
9984
Evan Cheng206ee9d2006-07-07 08:33:52 +00009985/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
9986/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
9987/// if the load addresses are consecutive, non-overlapping, and in the right
Nate Begemanfdea31a2010-03-24 20:49:50 +00009988/// order.
Dan Gohman475871a2008-07-27 21:46:04 +00009989static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Nate Begeman9008ca62009-04-27 18:41:29 +00009990 const TargetLowering &TLI) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009991 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00009992 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +00009993
Eli Friedman7a5e5552009-06-07 06:52:44 +00009994 if (VT.getSizeInBits() != 128)
9995 return SDValue();
9996
Nate Begemanfdea31a2010-03-24 20:49:50 +00009997 SmallVector<SDValue, 16> Elts;
9998 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00009999 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000010000
Nate Begemanfdea31a2010-03-24 20:49:50 +000010001 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000010002}
Evan Chengd880b972008-05-09 21:53:03 +000010003
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000010004/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
10005/// generation and convert it from being a bunch of shuffles and extracts
10006/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010007static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
10008 const TargetLowering &TLI) {
10009 SDValue InputVector = N->getOperand(0);
10010
10011 // Only operate on vectors of 4 elements, where the alternative shuffling
10012 // gets to be more expensive.
10013 if (InputVector.getValueType() != MVT::v4i32)
10014 return SDValue();
10015
10016 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
10017 // single use which is a sign-extend or zero-extend, and all elements are
10018 // used.
10019 SmallVector<SDNode *, 4> Uses;
10020 unsigned ExtractedElements = 0;
10021 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
10022 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
10023 if (UI.getUse().getResNo() != InputVector.getResNo())
10024 return SDValue();
10025
10026 SDNode *Extract = *UI;
10027 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
10028 return SDValue();
10029
10030 if (Extract->getValueType(0) != MVT::i32)
10031 return SDValue();
10032 if (!Extract->hasOneUse())
10033 return SDValue();
10034 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
10035 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
10036 return SDValue();
10037 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
10038 return SDValue();
10039
10040 // Record which element was extracted.
10041 ExtractedElements |=
10042 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
10043
10044 Uses.push_back(Extract);
10045 }
10046
10047 // If not all the elements were used, this may not be worthwhile.
10048 if (ExtractedElements != 15)
10049 return SDValue();
10050
10051 // Ok, we've now decided to do the transformation.
10052 DebugLoc dl = InputVector.getDebugLoc();
10053
10054 // Store the value to a temporary stack slot.
10055 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010056 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
10057 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010058
10059 // Replace each use (extract) with a load of the appropriate element.
10060 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
10061 UE = Uses.end(); UI != UE; ++UI) {
10062 SDNode *Extract = *UI;
10063
10064 // Compute the element's address.
10065 SDValue Idx = Extract->getOperand(1);
10066 unsigned EltSize =
10067 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
10068 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
10069 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
10070
Eric Christopher90eb4022010-07-22 00:26:08 +000010071 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(),
Chris Lattner51abfe42010-09-21 06:02:19 +000010072 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010073
10074 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000010075 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000010076 ScalarAddr, MachinePointerInfo(),
10077 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010078
10079 // Replace the exact with the load.
10080 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
10081 }
10082
10083 // The replacement was made in place; don't return anything.
10084 return SDValue();
10085}
10086
Chris Lattner83e6c992006-10-04 06:57:07 +000010087/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000010088static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000010089 const X86Subtarget *Subtarget) {
10090 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000010091 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000010092 // Get the LHS/RHS of the select.
10093 SDValue LHS = N->getOperand(1);
10094 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000010095
Dan Gohman670e5392009-09-21 18:03:22 +000010096 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000010097 // instructions match the semantics of the common C idiom x<y?x:y but not
10098 // x<=y?x:y, because of how they handle negative zero (which can be
10099 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000010100 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000010101 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000010102 Cond.getOpcode() == ISD::SETCC) {
10103 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010104
Chris Lattner47b4ce82009-03-11 05:48:52 +000010105 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000010106 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000010107 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
10108 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000010109 switch (CC) {
10110 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000010111 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000010112 // Converting this to a min would handle NaNs incorrectly, and swapping
10113 // the operands would cause it to handle comparisons between positive
10114 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010115 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000010116 if (!UnsafeFPMath &&
10117 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10118 break;
10119 std::swap(LHS, RHS);
10120 }
Dan Gohman670e5392009-09-21 18:03:22 +000010121 Opcode = X86ISD::FMIN;
10122 break;
10123 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000010124 // Converting this to a min would handle comparisons between positive
10125 // and negative zero incorrectly.
10126 if (!UnsafeFPMath &&
10127 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
10128 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010129 Opcode = X86ISD::FMIN;
10130 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000010131 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000010132 // Converting this to a min would handle both negative zeros and NaNs
10133 // incorrectly, but we can swap the operands to fix both.
10134 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010135 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010136 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000010137 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010138 Opcode = X86ISD::FMIN;
10139 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010140
Dan Gohman670e5392009-09-21 18:03:22 +000010141 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010142 // Converting this to a max would handle comparisons between positive
10143 // and negative zero incorrectly.
10144 if (!UnsafeFPMath &&
10145 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(LHS))
10146 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010147 Opcode = X86ISD::FMAX;
10148 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000010149 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000010150 // Converting this to a max would handle NaNs incorrectly, and swapping
10151 // the operands would cause it to handle comparisons between positive
10152 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010153 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000010154 if (!UnsafeFPMath &&
10155 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10156 break;
10157 std::swap(LHS, RHS);
10158 }
Dan Gohman670e5392009-09-21 18:03:22 +000010159 Opcode = X86ISD::FMAX;
10160 break;
10161 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010162 // Converting this to a max would handle both negative zeros and NaNs
10163 // incorrectly, but we can swap the operands to fix both.
10164 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010165 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010166 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010167 case ISD::SETGE:
10168 Opcode = X86ISD::FMAX;
10169 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000010170 }
Dan Gohman670e5392009-09-21 18:03:22 +000010171 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000010172 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
10173 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000010174 switch (CC) {
10175 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000010176 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010177 // Converting this to a min would handle comparisons between positive
10178 // and negative zero incorrectly, and swapping the operands would
10179 // cause it to handle NaNs incorrectly.
10180 if (!UnsafeFPMath &&
10181 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000010182 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010183 break;
10184 std::swap(LHS, RHS);
10185 }
Dan Gohman670e5392009-09-21 18:03:22 +000010186 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000010187 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010188 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000010189 // Converting this to a min would handle NaNs incorrectly.
10190 if (!UnsafeFPMath &&
10191 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
10192 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010193 Opcode = X86ISD::FMIN;
10194 break;
10195 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010196 // Converting this to a min would handle both negative zeros and NaNs
10197 // incorrectly, but we can swap the operands to fix both.
10198 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010199 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010200 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010201 case ISD::SETGE:
10202 Opcode = X86ISD::FMIN;
10203 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010204
Dan Gohman670e5392009-09-21 18:03:22 +000010205 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000010206 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010207 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010208 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010209 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000010210 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010211 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000010212 // Converting this to a max would handle comparisons between positive
10213 // and negative zero incorrectly, and swapping the operands would
10214 // cause it to handle NaNs incorrectly.
10215 if (!UnsafeFPMath &&
10216 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000010217 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010218 break;
10219 std::swap(LHS, RHS);
10220 }
Dan Gohman670e5392009-09-21 18:03:22 +000010221 Opcode = X86ISD::FMAX;
10222 break;
10223 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000010224 // Converting this to a max would handle both negative zeros and NaNs
10225 // incorrectly, but we can swap the operands to fix both.
10226 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010227 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010228 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000010229 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010230 Opcode = X86ISD::FMAX;
10231 break;
10232 }
Chris Lattner83e6c992006-10-04 06:57:07 +000010233 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010234
Chris Lattner47b4ce82009-03-11 05:48:52 +000010235 if (Opcode)
10236 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000010237 }
Eric Christopherfd179292009-08-27 18:07:15 +000010238
Chris Lattnerd1980a52009-03-12 06:52:53 +000010239 // If this is a select between two integer constants, try to do some
10240 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000010241 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
10242 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000010243 // Don't do this for crazy integer types.
10244 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
10245 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000010246 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000010247 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000010248
Chris Lattnercee56e72009-03-13 05:53:31 +000010249 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000010250 // Efficiently invertible.
10251 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
10252 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
10253 isa<ConstantSDNode>(Cond.getOperand(1))))) {
10254 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000010255 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000010256 }
Eric Christopherfd179292009-08-27 18:07:15 +000010257
Chris Lattnerd1980a52009-03-12 06:52:53 +000010258 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000010259 if (FalseC->getAPIntValue() == 0 &&
10260 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000010261 if (NeedsCondInvert) // Invert the condition if needed.
10262 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10263 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010264
Chris Lattnerd1980a52009-03-12 06:52:53 +000010265 // Zero extend the condition if needed.
10266 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010267
Chris Lattnercee56e72009-03-13 05:53:31 +000010268 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000010269 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000010270 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000010271 }
Eric Christopherfd179292009-08-27 18:07:15 +000010272
Chris Lattner97a29a52009-03-13 05:22:11 +000010273 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000010274 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000010275 if (NeedsCondInvert) // Invert the condition if needed.
10276 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10277 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010278
Chris Lattner97a29a52009-03-13 05:22:11 +000010279 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000010280 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
10281 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000010282 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000010283 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000010284 }
Eric Christopherfd179292009-08-27 18:07:15 +000010285
Chris Lattnercee56e72009-03-13 05:53:31 +000010286 // Optimize cases that will turn into an LEA instruction. This requires
10287 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000010288 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000010289 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000010290 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000010291
Chris Lattnercee56e72009-03-13 05:53:31 +000010292 bool isFastMultiplier = false;
10293 if (Diff < 10) {
10294 switch ((unsigned char)Diff) {
10295 default: break;
10296 case 1: // result = add base, cond
10297 case 2: // result = lea base( , cond*2)
10298 case 3: // result = lea base(cond, cond*2)
10299 case 4: // result = lea base( , cond*4)
10300 case 5: // result = lea base(cond, cond*4)
10301 case 8: // result = lea base( , cond*8)
10302 case 9: // result = lea base(cond, cond*8)
10303 isFastMultiplier = true;
10304 break;
10305 }
10306 }
Eric Christopherfd179292009-08-27 18:07:15 +000010307
Chris Lattnercee56e72009-03-13 05:53:31 +000010308 if (isFastMultiplier) {
10309 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
10310 if (NeedsCondInvert) // Invert the condition if needed.
10311 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10312 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010313
Chris Lattnercee56e72009-03-13 05:53:31 +000010314 // Zero extend the condition if needed.
10315 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
10316 Cond);
10317 // Scale the condition by the difference.
10318 if (Diff != 1)
10319 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
10320 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010321
Chris Lattnercee56e72009-03-13 05:53:31 +000010322 // Add the base if non-zero.
10323 if (FalseC->getAPIntValue() != 0)
10324 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10325 SDValue(FalseC, 0));
10326 return Cond;
10327 }
Eric Christopherfd179292009-08-27 18:07:15 +000010328 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000010329 }
10330 }
Eric Christopherfd179292009-08-27 18:07:15 +000010331
Dan Gohman475871a2008-07-27 21:46:04 +000010332 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000010333}
10334
Chris Lattnerd1980a52009-03-12 06:52:53 +000010335/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
10336static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
10337 TargetLowering::DAGCombinerInfo &DCI) {
10338 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000010339
Chris Lattnerd1980a52009-03-12 06:52:53 +000010340 // If the flag operand isn't dead, don't touch this CMOV.
10341 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
10342 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000010343
Chris Lattnerd1980a52009-03-12 06:52:53 +000010344 // If this is a select between two integer constants, try to do some
10345 // optimizations. Note that the operands are ordered the opposite of SELECT
10346 // operands.
10347 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
10348 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
10349 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
10350 // larger than FalseC (the false value).
10351 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
Eric Christopherfd179292009-08-27 18:07:15 +000010352
Chris Lattnerd1980a52009-03-12 06:52:53 +000010353 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
10354 CC = X86::GetOppositeBranchCondition(CC);
10355 std::swap(TrueC, FalseC);
10356 }
Eric Christopherfd179292009-08-27 18:07:15 +000010357
Chris Lattnerd1980a52009-03-12 06:52:53 +000010358 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000010359 // This is efficient for any integer data type (including i8/i16) and
10360 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000010361 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
10362 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010363 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10364 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010365
Chris Lattnerd1980a52009-03-12 06:52:53 +000010366 // Zero extend the condition if needed.
10367 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010368
Chris Lattnerd1980a52009-03-12 06:52:53 +000010369 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
10370 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000010371 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000010372 if (N->getNumValues() == 2) // Dead flag value?
10373 return DCI.CombineTo(N, Cond, SDValue());
10374 return Cond;
10375 }
Eric Christopherfd179292009-08-27 18:07:15 +000010376
Chris Lattnercee56e72009-03-13 05:53:31 +000010377 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
10378 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000010379 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
10380 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010381 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10382 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010383
Chris Lattner97a29a52009-03-13 05:22:11 +000010384 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000010385 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
10386 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000010387 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10388 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000010389
Chris Lattner97a29a52009-03-13 05:22:11 +000010390 if (N->getNumValues() == 2) // Dead flag value?
10391 return DCI.CombineTo(N, Cond, SDValue());
10392 return Cond;
10393 }
Eric Christopherfd179292009-08-27 18:07:15 +000010394
Chris Lattnercee56e72009-03-13 05:53:31 +000010395 // Optimize cases that will turn into an LEA instruction. This requires
10396 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000010397 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000010398 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000010399 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000010400
Chris Lattnercee56e72009-03-13 05:53:31 +000010401 bool isFastMultiplier = false;
10402 if (Diff < 10) {
10403 switch ((unsigned char)Diff) {
10404 default: break;
10405 case 1: // result = add base, cond
10406 case 2: // result = lea base( , cond*2)
10407 case 3: // result = lea base(cond, cond*2)
10408 case 4: // result = lea base( , cond*4)
10409 case 5: // result = lea base(cond, cond*4)
10410 case 8: // result = lea base( , cond*8)
10411 case 9: // result = lea base(cond, cond*8)
10412 isFastMultiplier = true;
10413 break;
10414 }
10415 }
Eric Christopherfd179292009-08-27 18:07:15 +000010416
Chris Lattnercee56e72009-03-13 05:53:31 +000010417 if (isFastMultiplier) {
10418 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
10419 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010420 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10421 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000010422 // Zero extend the condition if needed.
10423 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
10424 Cond);
10425 // Scale the condition by the difference.
10426 if (Diff != 1)
10427 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
10428 DAG.getConstant(Diff, Cond.getValueType()));
10429
10430 // Add the base if non-zero.
10431 if (FalseC->getAPIntValue() != 0)
10432 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10433 SDValue(FalseC, 0));
10434 if (N->getNumValues() == 2) // Dead flag value?
10435 return DCI.CombineTo(N, Cond, SDValue());
10436 return Cond;
10437 }
Eric Christopherfd179292009-08-27 18:07:15 +000010438 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000010439 }
10440 }
10441 return SDValue();
10442}
10443
10444
Evan Cheng0b0cd912009-03-28 05:57:29 +000010445/// PerformMulCombine - Optimize a single multiply with constant into two
10446/// in order to implement it with two cheaper instructions, e.g.
10447/// LEA + SHL, LEA + LEA.
10448static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
10449 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000010450 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
10451 return SDValue();
10452
Owen Andersone50ed302009-08-10 22:56:29 +000010453 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000010454 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000010455 return SDValue();
10456
10457 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
10458 if (!C)
10459 return SDValue();
10460 uint64_t MulAmt = C->getZExtValue();
10461 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
10462 return SDValue();
10463
10464 uint64_t MulAmt1 = 0;
10465 uint64_t MulAmt2 = 0;
10466 if ((MulAmt % 9) == 0) {
10467 MulAmt1 = 9;
10468 MulAmt2 = MulAmt / 9;
10469 } else if ((MulAmt % 5) == 0) {
10470 MulAmt1 = 5;
10471 MulAmt2 = MulAmt / 5;
10472 } else if ((MulAmt % 3) == 0) {
10473 MulAmt1 = 3;
10474 MulAmt2 = MulAmt / 3;
10475 }
10476 if (MulAmt2 &&
10477 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
10478 DebugLoc DL = N->getDebugLoc();
10479
10480 if (isPowerOf2_64(MulAmt2) &&
10481 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
10482 // If second multiplifer is pow2, issue it first. We want the multiply by
10483 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
10484 // is an add.
10485 std::swap(MulAmt1, MulAmt2);
10486
10487 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000010488 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000010489 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000010490 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000010491 else
Evan Cheng73f24c92009-03-30 21:36:47 +000010492 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000010493 DAG.getConstant(MulAmt1, VT));
10494
Eric Christopherfd179292009-08-27 18:07:15 +000010495 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000010496 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000010497 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000010498 else
Evan Cheng73f24c92009-03-30 21:36:47 +000010499 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000010500 DAG.getConstant(MulAmt2, VT));
10501
10502 // Do not add new nodes to DAG combiner worklist.
10503 DCI.CombineTo(N, NewMul, false);
10504 }
10505 return SDValue();
10506}
10507
Evan Chengad9c0a32009-12-15 00:53:42 +000010508static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
10509 SDValue N0 = N->getOperand(0);
10510 SDValue N1 = N->getOperand(1);
10511 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
10512 EVT VT = N0.getValueType();
10513
10514 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
10515 // since the result of setcc_c is all zero's or all ones.
10516 if (N1C && N0.getOpcode() == ISD::AND &&
10517 N0.getOperand(1).getOpcode() == ISD::Constant) {
10518 SDValue N00 = N0.getOperand(0);
10519 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
10520 ((N00.getOpcode() == ISD::ANY_EXTEND ||
10521 N00.getOpcode() == ISD::ZERO_EXTEND) &&
10522 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
10523 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
10524 APInt ShAmt = N1C->getAPIntValue();
10525 Mask = Mask.shl(ShAmt);
10526 if (Mask != 0)
10527 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
10528 N00, DAG.getConstant(Mask, VT));
10529 }
10530 }
10531
10532 return SDValue();
10533}
Evan Cheng0b0cd912009-03-28 05:57:29 +000010534
Nate Begeman740ab032009-01-26 00:52:55 +000010535/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
10536/// when possible.
10537static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
10538 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000010539 EVT VT = N->getValueType(0);
10540 if (!VT.isVector() && VT.isInteger() &&
10541 N->getOpcode() == ISD::SHL)
10542 return PerformSHLCombine(N, DAG);
10543
Nate Begeman740ab032009-01-26 00:52:55 +000010544 // On X86 with SSE2 support, we can transform this to a vector shift if
10545 // all elements are shifted by the same amount. We can't do this in legalize
10546 // because the a constant vector is typically transformed to a constant pool
10547 // so we have no knowledge of the shift amount.
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010548 if (!Subtarget->hasSSE2())
10549 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000010550
Owen Anderson825b72b2009-08-11 20:47:22 +000010551 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010552 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000010553
Mon P Wang3becd092009-01-28 08:12:05 +000010554 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000010555 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000010556 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000010557 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000010558 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
10559 unsigned NumElts = VT.getVectorNumElements();
10560 unsigned i = 0;
10561 for (; i != NumElts; ++i) {
10562 SDValue Arg = ShAmtOp.getOperand(i);
10563 if (Arg.getOpcode() == ISD::UNDEF) continue;
10564 BaseShAmt = Arg;
10565 break;
10566 }
10567 for (; i != NumElts; ++i) {
10568 SDValue Arg = ShAmtOp.getOperand(i);
10569 if (Arg.getOpcode() == ISD::UNDEF) continue;
10570 if (Arg != BaseShAmt) {
10571 return SDValue();
10572 }
10573 }
10574 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000010575 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000010576 SDValue InVec = ShAmtOp.getOperand(0);
10577 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
10578 unsigned NumElts = InVec.getValueType().getVectorNumElements();
10579 unsigned i = 0;
10580 for (; i != NumElts; ++i) {
10581 SDValue Arg = InVec.getOperand(i);
10582 if (Arg.getOpcode() == ISD::UNDEF) continue;
10583 BaseShAmt = Arg;
10584 break;
10585 }
10586 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
10587 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000010588 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000010589 if (C->getZExtValue() == SplatIdx)
10590 BaseShAmt = InVec.getOperand(1);
10591 }
10592 }
10593 if (BaseShAmt.getNode() == 0)
10594 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
10595 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000010596 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010597 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000010598
Mon P Wangefa42202009-09-03 19:56:25 +000010599 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000010600 if (EltVT.bitsGT(MVT::i32))
10601 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
10602 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000010603 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000010604
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010605 // The shift amount is identical so we can do a vector shift.
10606 SDValue ValOp = N->getOperand(0);
10607 switch (N->getOpcode()) {
10608 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000010609 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010610 break;
10611 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000010612 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010613 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010614 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010615 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010616 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010617 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010618 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010619 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010620 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010621 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010622 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010623 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010624 break;
10625 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000010626 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010627 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010628 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010629 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010630 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010631 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010632 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010633 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010634 break;
10635 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000010636 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010637 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010638 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010639 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010640 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010641 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010642 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010643 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010644 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010645 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010646 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010647 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010648 break;
Nate Begeman740ab032009-01-26 00:52:55 +000010649 }
10650 return SDValue();
10651}
10652
Evan Cheng760d1942010-01-04 21:22:48 +000010653static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000010654 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000010655 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000010656 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000010657 return SDValue();
10658
Evan Cheng760d1942010-01-04 21:22:48 +000010659 EVT VT = N->getValueType(0);
Evan Cheng8b1190a2010-04-28 01:18:01 +000010660 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
Evan Cheng760d1942010-01-04 21:22:48 +000010661 return SDValue();
10662
10663 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
10664 SDValue N0 = N->getOperand(0);
10665 SDValue N1 = N->getOperand(1);
10666 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
10667 std::swap(N0, N1);
10668 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
10669 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000010670 if (!N0.hasOneUse() || !N1.hasOneUse())
10671 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000010672
10673 SDValue ShAmt0 = N0.getOperand(1);
10674 if (ShAmt0.getValueType() != MVT::i8)
10675 return SDValue();
10676 SDValue ShAmt1 = N1.getOperand(1);
10677 if (ShAmt1.getValueType() != MVT::i8)
10678 return SDValue();
10679 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
10680 ShAmt0 = ShAmt0.getOperand(0);
10681 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
10682 ShAmt1 = ShAmt1.getOperand(0);
10683
10684 DebugLoc DL = N->getDebugLoc();
10685 unsigned Opc = X86ISD::SHLD;
10686 SDValue Op0 = N0.getOperand(0);
10687 SDValue Op1 = N1.getOperand(0);
10688 if (ShAmt0.getOpcode() == ISD::SUB) {
10689 Opc = X86ISD::SHRD;
10690 std::swap(Op0, Op1);
10691 std::swap(ShAmt0, ShAmt1);
10692 }
10693
Evan Cheng8b1190a2010-04-28 01:18:01 +000010694 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000010695 if (ShAmt1.getOpcode() == ISD::SUB) {
10696 SDValue Sum = ShAmt1.getOperand(0);
10697 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000010698 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
10699 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
10700 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
10701 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000010702 return DAG.getNode(Opc, DL, VT,
10703 Op0, Op1,
10704 DAG.getNode(ISD::TRUNCATE, DL,
10705 MVT::i8, ShAmt0));
10706 }
10707 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
10708 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
10709 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000010710 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000010711 return DAG.getNode(Opc, DL, VT,
10712 N0.getOperand(0), N1.getOperand(0),
10713 DAG.getNode(ISD::TRUNCATE, DL,
10714 MVT::i8, ShAmt0));
10715 }
10716
10717 return SDValue();
10718}
10719
Chris Lattner149a4e52008-02-22 02:09:43 +000010720/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000010721static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000010722 const X86Subtarget *Subtarget) {
Chris Lattner149a4e52008-02-22 02:09:43 +000010723 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
10724 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000010725 // A preferable solution to the general problem is to figure out the right
10726 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000010727
10728 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng7e2ff772008-05-08 00:57:18 +000010729 StoreSDNode *St = cast<StoreSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +000010730 EVT VT = St->getValue().getValueType();
Evan Cheng536e6672009-03-12 05:59:15 +000010731 if (VT.getSizeInBits() != 64)
10732 return SDValue();
10733
Devang Patel578efa92009-06-05 21:57:13 +000010734 const Function *F = DAG.getMachineFunction().getFunction();
10735 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000010736 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000010737 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000010738 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000010739 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000010740 isa<LoadSDNode>(St->getValue()) &&
10741 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
10742 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000010743 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000010744 LoadSDNode *Ld = 0;
10745 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000010746 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000010747 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000010748 // Must be a store of a load. We currently handle two cases: the load
10749 // is a direct child, and it's under an intervening TokenFactor. It is
10750 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000010751 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000010752 Ld = cast<LoadSDNode>(St->getChain());
10753 else if (St->getValue().hasOneUse() &&
10754 ChainVal->getOpcode() == ISD::TokenFactor) {
10755 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000010756 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000010757 TokenFactorIndex = i;
10758 Ld = cast<LoadSDNode>(St->getValue());
10759 } else
10760 Ops.push_back(ChainVal->getOperand(i));
10761 }
10762 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000010763
Evan Cheng536e6672009-03-12 05:59:15 +000010764 if (!Ld || !ISD::isNormalLoad(Ld))
10765 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000010766
Evan Cheng536e6672009-03-12 05:59:15 +000010767 // If this is not the MMX case, i.e. we are just turning i64 load/store
10768 // into f64 load/store, avoid the transformation if there are multiple
10769 // uses of the loaded value.
10770 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
10771 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000010772
Evan Cheng536e6672009-03-12 05:59:15 +000010773 DebugLoc LdDL = Ld->getDebugLoc();
10774 DebugLoc StDL = N->getDebugLoc();
10775 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
10776 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
10777 // pair instead.
10778 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000010779 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000010780 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
10781 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000010782 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000010783 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000010784 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000010785 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000010786 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000010787 Ops.size());
10788 }
Evan Cheng536e6672009-03-12 05:59:15 +000010789 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000010790 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000010791 St->isVolatile(), St->isNonTemporal(),
10792 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000010793 }
Evan Cheng536e6672009-03-12 05:59:15 +000010794
10795 // Otherwise, lower to two pairs of 32-bit loads / stores.
10796 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000010797 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
10798 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000010799
Owen Anderson825b72b2009-08-11 20:47:22 +000010800 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000010801 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000010802 Ld->isVolatile(), Ld->isNonTemporal(),
10803 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000010804 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000010805 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000010806 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000010807 MinAlign(Ld->getAlignment(), 4));
10808
10809 SDValue NewChain = LoLd.getValue(1);
10810 if (TokenFactorIndex != -1) {
10811 Ops.push_back(LoLd);
10812 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000010813 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000010814 Ops.size());
10815 }
10816
10817 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000010818 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
10819 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000010820
10821 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000010822 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000010823 St->isVolatile(), St->isNonTemporal(),
10824 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000010825 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000010826 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000010827 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000010828 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000010829 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000010830 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000010831 }
Dan Gohman475871a2008-07-27 21:46:04 +000010832 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000010833}
10834
Chris Lattner6cf73262008-01-25 06:14:17 +000010835/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
10836/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000010837static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000010838 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
10839 // F[X]OR(0.0, x) -> x
10840 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000010841 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
10842 if (C->getValueAPF().isPosZero())
10843 return N->getOperand(1);
10844 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
10845 if (C->getValueAPF().isPosZero())
10846 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000010847 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000010848}
10849
10850/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000010851static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000010852 // FAND(0.0, x) -> 0.0
10853 // FAND(x, 0.0) -> 0.0
10854 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
10855 if (C->getValueAPF().isPosZero())
10856 return N->getOperand(0);
10857 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
10858 if (C->getValueAPF().isPosZero())
10859 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000010860 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000010861}
10862
Dan Gohmane5af2d32009-01-29 01:59:02 +000010863static SDValue PerformBTCombine(SDNode *N,
10864 SelectionDAG &DAG,
10865 TargetLowering::DAGCombinerInfo &DCI) {
10866 // BT ignores high bits in the bit index operand.
10867 SDValue Op1 = N->getOperand(1);
10868 if (Op1.hasOneUse()) {
10869 unsigned BitWidth = Op1.getValueSizeInBits();
10870 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
10871 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000010872 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
10873 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000010874 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000010875 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
10876 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
10877 DCI.CommitTargetLoweringOpt(TLO);
10878 }
10879 return SDValue();
10880}
Chris Lattner83e6c992006-10-04 06:57:07 +000010881
Eli Friedman7a5e5552009-06-07 06:52:44 +000010882static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
10883 SDValue Op = N->getOperand(0);
10884 if (Op.getOpcode() == ISD::BIT_CONVERT)
10885 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000010886 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000010887 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000010888 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000010889 OpVT.getVectorElementType().getSizeInBits()) {
10890 return DAG.getNode(ISD::BIT_CONVERT, N->getDebugLoc(), VT, Op);
10891 }
10892 return SDValue();
10893}
10894
Evan Cheng2e489c42009-12-16 00:53:11 +000010895static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
10896 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
10897 // (and (i32 x86isd::setcc_carry), 1)
10898 // This eliminates the zext. This transformation is necessary because
10899 // ISD::SETCC is always legalized to i8.
10900 DebugLoc dl = N->getDebugLoc();
10901 SDValue N0 = N->getOperand(0);
10902 EVT VT = N->getValueType(0);
10903 if (N0.getOpcode() == ISD::AND &&
10904 N0.hasOneUse() &&
10905 N0.getOperand(0).hasOneUse()) {
10906 SDValue N00 = N0.getOperand(0);
10907 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
10908 return SDValue();
10909 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
10910 if (!C || C->getZExtValue() != 1)
10911 return SDValue();
10912 return DAG.getNode(ISD::AND, dl, VT,
10913 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
10914 N00.getOperand(0), N00.getOperand(1)),
10915 DAG.getConstant(1, VT));
10916 }
10917
10918 return SDValue();
10919}
10920
Dan Gohman475871a2008-07-27 21:46:04 +000010921SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000010922 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000010923 SelectionDAG &DAG = DCI.DAG;
10924 switch (N->getOpcode()) {
10925 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010926 case ISD::EXTRACT_VECTOR_ELT:
10927 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000010928 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000010929 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000010930 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000010931 case ISD::SHL:
10932 case ISD::SRA:
10933 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000010934 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000010935 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000010936 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000010937 case X86ISD::FOR: return PerformFORCombine(N, DAG);
10938 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000010939 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000010940 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000010941 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000010942 case X86ISD::SHUFPS: // Handle all target specific shuffles
10943 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000010944 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000010945 case X86ISD::PUNPCKHBW:
10946 case X86ISD::PUNPCKHWD:
10947 case X86ISD::PUNPCKHDQ:
10948 case X86ISD::PUNPCKHQDQ:
10949 case X86ISD::UNPCKHPS:
10950 case X86ISD::UNPCKHPD:
10951 case X86ISD::PUNPCKLBW:
10952 case X86ISD::PUNPCKLWD:
10953 case X86ISD::PUNPCKLDQ:
10954 case X86ISD::PUNPCKLQDQ:
10955 case X86ISD::UNPCKLPS:
10956 case X86ISD::UNPCKLPD:
10957 case X86ISD::MOVHLPS:
10958 case X86ISD::MOVLHPS:
10959 case X86ISD::PSHUFD:
10960 case X86ISD::PSHUFHW:
10961 case X86ISD::PSHUFLW:
10962 case X86ISD::MOVSS:
10963 case X86ISD::MOVSD:
10964 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this);
Evan Cheng206ee9d2006-07-07 08:33:52 +000010965 }
10966
Dan Gohman475871a2008-07-27 21:46:04 +000010967 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000010968}
10969
Evan Chenge5b51ac2010-04-17 06:13:15 +000010970/// isTypeDesirableForOp - Return true if the target has native support for
10971/// the specified value type and it is 'desirable' to use the type for the
10972/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
10973/// instruction encodings are longer and some i16 instructions are slow.
10974bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
10975 if (!isTypeLegal(VT))
10976 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000010977 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000010978 return true;
10979
10980 switch (Opc) {
10981 default:
10982 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000010983 case ISD::LOAD:
10984 case ISD::SIGN_EXTEND:
10985 case ISD::ZERO_EXTEND:
10986 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000010987 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000010988 case ISD::SRL:
10989 case ISD::SUB:
10990 case ISD::ADD:
10991 case ISD::MUL:
10992 case ISD::AND:
10993 case ISD::OR:
10994 case ISD::XOR:
10995 return false;
10996 }
10997}
10998
10999/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000011000/// beneficial for dag combiner to promote the specified node. If true, it
11001/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000011002bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000011003 EVT VT = Op.getValueType();
11004 if (VT != MVT::i16)
11005 return false;
11006
Evan Cheng4c26e932010-04-19 19:29:22 +000011007 bool Promote = false;
11008 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011009 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000011010 default: break;
11011 case ISD::LOAD: {
11012 LoadSDNode *LD = cast<LoadSDNode>(Op);
11013 // If the non-extending load has a single use and it's not live out, then it
11014 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011015 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
11016 Op.hasOneUse()*/) {
11017 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
11018 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
11019 // The only case where we'd want to promote LOAD (rather then it being
11020 // promoted as an operand is when it's only use is liveout.
11021 if (UI->getOpcode() != ISD::CopyToReg)
11022 return false;
11023 }
11024 }
Evan Cheng4c26e932010-04-19 19:29:22 +000011025 Promote = true;
11026 break;
11027 }
11028 case ISD::SIGN_EXTEND:
11029 case ISD::ZERO_EXTEND:
11030 case ISD::ANY_EXTEND:
11031 Promote = true;
11032 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011033 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011034 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000011035 SDValue N0 = Op.getOperand(0);
11036 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000011037 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000011038 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000011039 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011040 break;
11041 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000011042 case ISD::ADD:
11043 case ISD::MUL:
11044 case ISD::AND:
11045 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000011046 case ISD::XOR:
11047 Commute = true;
11048 // fallthrough
11049 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000011050 SDValue N0 = Op.getOperand(0);
11051 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000011052 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011053 return false;
11054 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000011055 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011056 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000011057 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011058 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000011059 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011060 }
11061 }
11062
11063 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000011064 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011065}
11066
Evan Cheng60c07e12006-07-05 22:17:51 +000011067//===----------------------------------------------------------------------===//
11068// X86 Inline Assembly Support
11069//===----------------------------------------------------------------------===//
11070
Chris Lattnerb8105652009-07-20 17:51:36 +000011071static bool LowerToBSwap(CallInst *CI) {
11072 // FIXME: this should verify that we are targetting a 486 or better. If not,
11073 // we will turn this bswap into something that will be lowered to logical ops
11074 // instead of emitting the bswap asm. For now, we don't support 486 or lower
11075 // so don't worry about this.
Eric Christopherfd179292009-08-27 18:07:15 +000011076
Chris Lattnerb8105652009-07-20 17:51:36 +000011077 // Verify this is a simple bswap.
Gabor Greife1c2b9c2010-06-30 13:03:37 +000011078 if (CI->getNumArgOperands() != 1 ||
Gabor Greif1cfe44a2010-06-26 11:51:52 +000011079 CI->getType() != CI->getArgOperand(0)->getType() ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011080 !CI->getType()->isIntegerTy())
Chris Lattnerb8105652009-07-20 17:51:36 +000011081 return false;
Eric Christopherfd179292009-08-27 18:07:15 +000011082
Chris Lattnerb8105652009-07-20 17:51:36 +000011083 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
11084 if (!Ty || Ty->getBitWidth() % 16 != 0)
11085 return false;
Eric Christopherfd179292009-08-27 18:07:15 +000011086
Chris Lattnerb8105652009-07-20 17:51:36 +000011087 // Okay, we can do this xform, do so now.
11088 const Type *Tys[] = { Ty };
11089 Module *M = CI->getParent()->getParent()->getParent();
11090 Constant *Int = Intrinsic::getDeclaration(M, Intrinsic::bswap, Tys, 1);
Eric Christopherfd179292009-08-27 18:07:15 +000011091
Gabor Greif1cfe44a2010-06-26 11:51:52 +000011092 Value *Op = CI->getArgOperand(0);
Chris Lattnerb8105652009-07-20 17:51:36 +000011093 Op = CallInst::Create(Int, Op, CI->getName(), CI);
Eric Christopherfd179292009-08-27 18:07:15 +000011094
Chris Lattnerb8105652009-07-20 17:51:36 +000011095 CI->replaceAllUsesWith(Op);
11096 CI->eraseFromParent();
11097 return true;
11098}
11099
11100bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
11101 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
11102 std::vector<InlineAsm::ConstraintInfo> Constraints = IA->ParseConstraints();
11103
11104 std::string AsmStr = IA->getAsmString();
11105
11106 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000011107 SmallVector<StringRef, 4> AsmPieces;
Chris Lattnerb8105652009-07-20 17:51:36 +000011108 SplitString(AsmStr, AsmPieces, "\n"); // ; as separator?
11109
11110 switch (AsmPieces.size()) {
11111 default: return false;
11112 case 1:
11113 AsmStr = AsmPieces[0];
11114 AsmPieces.clear();
11115 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
11116
11117 // bswap $0
11118 if (AsmPieces.size() == 2 &&
11119 (AsmPieces[0] == "bswap" ||
11120 AsmPieces[0] == "bswapq" ||
11121 AsmPieces[0] == "bswapl") &&
11122 (AsmPieces[1] == "$0" ||
11123 AsmPieces[1] == "${0:q}")) {
11124 // No need to check constraints, nothing other than the equivalent of
11125 // "=r,0" would be valid here.
11126 return LowerToBSwap(CI);
11127 }
11128 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011129 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011130 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000011131 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011132 AsmPieces[1] == "$$8," &&
11133 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000011134 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
11135 AsmPieces.clear();
Benjamin Kramer018cbd52010-03-12 13:54:59 +000011136 const std::string &Constraints = IA->getConstraintString();
11137 SplitString(StringRef(Constraints).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000011138 std::sort(AsmPieces.begin(), AsmPieces.end());
11139 if (AsmPieces.size() == 4 &&
11140 AsmPieces[0] == "~{cc}" &&
11141 AsmPieces[1] == "~{dirflag}" &&
11142 AsmPieces[2] == "~{flags}" &&
11143 AsmPieces[3] == "~{fpsr}") {
11144 return LowerToBSwap(CI);
11145 }
Chris Lattnerb8105652009-07-20 17:51:36 +000011146 }
11147 break;
11148 case 3:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011149 if (CI->getType()->isIntegerTy(64) &&
Owen Anderson1d0be152009-08-13 21:58:54 +000011150 Constraints.size() >= 2 &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011151 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
11152 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
11153 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
Benjamin Kramerd4f19592010-01-11 18:03:24 +000011154 SmallVector<StringRef, 4> Words;
Chris Lattnerb8105652009-07-20 17:51:36 +000011155 SplitString(AsmPieces[0], Words, " \t");
11156 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
11157 Words.clear();
11158 SplitString(AsmPieces[1], Words, " \t");
11159 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
11160 Words.clear();
11161 SplitString(AsmPieces[2], Words, " \t,");
11162 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
11163 Words[2] == "%edx") {
11164 return LowerToBSwap(CI);
11165 }
11166 }
11167 }
11168 }
11169 break;
11170 }
11171 return false;
11172}
11173
11174
11175
Chris Lattnerf4dff842006-07-11 02:54:03 +000011176/// getConstraintType - Given a constraint letter, return the type of
11177/// constraint it is for this target.
11178X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000011179X86TargetLowering::getConstraintType(const std::string &Constraint) const {
11180 if (Constraint.size() == 1) {
11181 switch (Constraint[0]) {
11182 case 'A':
Dale Johannesen330169f2008-11-13 21:52:36 +000011183 return C_Register;
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011184 case 'f':
Chris Lattner4234f572007-03-25 02:14:49 +000011185 case 'r':
11186 case 'R':
11187 case 'l':
11188 case 'q':
11189 case 'Q':
11190 case 'x':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000011191 case 'y':
Chris Lattner4234f572007-03-25 02:14:49 +000011192 case 'Y':
11193 return C_RegisterClass;
Dale Johannesen78e3e522009-02-12 20:58:09 +000011194 case 'e':
11195 case 'Z':
11196 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000011197 default:
11198 break;
11199 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000011200 }
Chris Lattner4234f572007-03-25 02:14:49 +000011201 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000011202}
11203
John Thompsoneac6e1d2010-09-13 18:15:37 +000011204/// Examine constraint type and operand type and determine a weight value,
11205/// where: -1 = invalid match, and 0 = so-so match to 3 = good match.
11206/// This object must already have been set up with the operand type
11207/// and the current alternative constraint selected.
11208int X86TargetLowering::getSingleConstraintMatchWeight(
11209 AsmOperandInfo &info, const char *constraint) const {
11210 int weight = -1;
11211 Value *CallOperandVal = info.CallOperandVal;
11212 // If we don't have a value, we can't do a match,
11213 // but allow it at the lowest weight.
11214 if (CallOperandVal == NULL)
11215 return 0;
11216 // Look at the constraint type.
11217 switch (*constraint) {
11218 default:
11219 return TargetLowering::getSingleConstraintMatchWeight(info, constraint);
11220 break;
11221 case 'I':
11222 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
11223 if (C->getZExtValue() <= 31)
11224 weight = 3;
11225 }
11226 break;
11227 // etc.
11228 }
11229 return weight;
11230}
11231
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011232/// LowerXConstraint - try to replace an X constraint, which matches anything,
11233/// with another that has more specific requirements based on the type of the
11234/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000011235const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000011236LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000011237 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
11238 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000011239 if (ConstraintVT.isFloatingPoint()) {
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011240 if (Subtarget->hasSSE2())
Chris Lattner5e764232008-04-26 23:02:14 +000011241 return "Y";
11242 if (Subtarget->hasSSE1())
11243 return "x";
11244 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011245
Chris Lattner5e764232008-04-26 23:02:14 +000011246 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011247}
11248
Chris Lattner48884cd2007-08-25 00:47:38 +000011249/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
11250/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000011251void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattner48884cd2007-08-25 00:47:38 +000011252 char Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000011253 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000011254 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000011255 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000011256
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011257 switch (Constraint) {
11258 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000011259 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000011260 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011261 if (C->getZExtValue() <= 31) {
11262 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000011263 break;
11264 }
Devang Patel84f7fd22007-03-17 00:13:28 +000011265 }
Chris Lattner48884cd2007-08-25 00:47:38 +000011266 return;
Evan Cheng364091e2008-09-22 23:57:37 +000011267 case 'J':
11268 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000011269 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000011270 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11271 break;
11272 }
11273 }
11274 return;
11275 case 'K':
11276 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000011277 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000011278 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11279 break;
11280 }
11281 }
11282 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000011283 case 'N':
11284 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011285 if (C->getZExtValue() <= 255) {
11286 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000011287 break;
11288 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000011289 }
Chris Lattner48884cd2007-08-25 00:47:38 +000011290 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000011291 case 'e': {
11292 // 32-bit signed value
11293 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000011294 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
11295 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011296 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000011297 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000011298 break;
11299 }
11300 // FIXME gcc accepts some relocatable values here too, but only in certain
11301 // memory models; it's complicated.
11302 }
11303 return;
11304 }
11305 case 'Z': {
11306 // 32-bit unsigned value
11307 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000011308 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
11309 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011310 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11311 break;
11312 }
11313 }
11314 // FIXME gcc accepts some relocatable values here too, but only in certain
11315 // memory models; it's complicated.
11316 return;
11317 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011318 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011319 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000011320 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011321 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000011322 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000011323 break;
11324 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011325
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000011326 // In any sort of PIC mode addresses need to be computed at runtime by
11327 // adding in a register or some sort of table lookup. These can't
11328 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000011329 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000011330 return;
11331
Chris Lattnerdc43a882007-05-03 16:52:29 +000011332 // If we are in non-pic codegen mode, we allow the address of a global (with
11333 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000011334 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000011335 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000011336
Chris Lattner49921962009-05-08 18:23:14 +000011337 // Match either (GA), (GA+C), (GA+C1+C2), etc.
11338 while (1) {
11339 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
11340 Offset += GA->getOffset();
11341 break;
11342 } else if (Op.getOpcode() == ISD::ADD) {
11343 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
11344 Offset += C->getZExtValue();
11345 Op = Op.getOperand(0);
11346 continue;
11347 }
11348 } else if (Op.getOpcode() == ISD::SUB) {
11349 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
11350 Offset += -C->getZExtValue();
11351 Op = Op.getOperand(0);
11352 continue;
11353 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011354 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011355
Chris Lattner49921962009-05-08 18:23:14 +000011356 // Otherwise, this isn't something we can handle, reject it.
11357 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000011358 }
Eric Christopherfd179292009-08-27 18:07:15 +000011359
Dan Gohman46510a72010-04-15 01:51:59 +000011360 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011361 // If we require an extra load to get this address, as in PIC mode, we
11362 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000011363 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
11364 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011365 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000011366
Devang Patel0d881da2010-07-06 22:08:15 +000011367 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
11368 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000011369 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011370 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011371 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011372
Gabor Greifba36cb52008-08-28 21:40:38 +000011373 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000011374 Ops.push_back(Result);
11375 return;
11376 }
Dale Johannesen1784d162010-06-25 21:55:36 +000011377 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011378}
11379
Chris Lattner259e97c2006-01-31 19:43:35 +000011380std::vector<unsigned> X86TargetLowering::
Chris Lattner1efa40f2006-02-22 00:56:39 +000011381getRegClassForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000011382 EVT VT) const {
Chris Lattner259e97c2006-01-31 19:43:35 +000011383 if (Constraint.size() == 1) {
11384 // FIXME: not handling fp-stack yet!
Chris Lattner259e97c2006-01-31 19:43:35 +000011385 switch (Constraint[0]) { // GCC X86 Constraint Letters
Chris Lattnerf4dff842006-07-11 02:54:03 +000011386 default: break; // Unknown constraint letter
Evan Cheng47e9fab2009-07-17 22:13:25 +000011387 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
11388 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011389 if (VT == MVT::i32)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011390 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX,
11391 X86::ESI, X86::EDI, X86::R8D, X86::R9D,
11392 X86::R10D,X86::R11D,X86::R12D,
11393 X86::R13D,X86::R14D,X86::R15D,
11394 X86::EBP, X86::ESP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011395 else if (VT == MVT::i16)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011396 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX,
11397 X86::SI, X86::DI, X86::R8W,X86::R9W,
11398 X86::R10W,X86::R11W,X86::R12W,
11399 X86::R13W,X86::R14W,X86::R15W,
11400 X86::BP, X86::SP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011401 else if (VT == MVT::i8)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011402 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL,
11403 X86::SIL, X86::DIL, X86::R8B,X86::R9B,
11404 X86::R10B,X86::R11B,X86::R12B,
11405 X86::R13B,X86::R14B,X86::R15B,
11406 X86::BPL, X86::SPL, 0);
11407
Owen Anderson825b72b2009-08-11 20:47:22 +000011408 else if (VT == MVT::i64)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011409 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX,
11410 X86::RSI, X86::RDI, X86::R8, X86::R9,
11411 X86::R10, X86::R11, X86::R12,
11412 X86::R13, X86::R14, X86::R15,
11413 X86::RBP, X86::RSP, 0);
11414
11415 break;
11416 }
Eric Christopherfd179292009-08-27 18:07:15 +000011417 // 32-bit fallthrough
Chris Lattner259e97c2006-01-31 19:43:35 +000011418 case 'Q': // Q_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000011419 if (VT == MVT::i32)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000011420 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011421 else if (VT == MVT::i16)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000011422 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011423 else if (VT == MVT::i8)
Evan Cheng12914382007-08-13 23:27:11 +000011424 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011425 else if (VT == MVT::i64)
Chris Lattner03e6c702007-11-04 06:51:12 +000011426 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
11427 break;
Chris Lattner259e97c2006-01-31 19:43:35 +000011428 }
11429 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011430
Chris Lattner1efa40f2006-02-22 00:56:39 +000011431 return std::vector<unsigned>();
Chris Lattner259e97c2006-01-31 19:43:35 +000011432}
Chris Lattnerf76d1802006-07-31 23:26:50 +000011433
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011434std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000011435X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000011436 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000011437 // First, see if this is a constraint that directly corresponds to an LLVM
11438 // register class.
11439 if (Constraint.size() == 1) {
11440 // GCC Constraint Letters
11441 switch (Constraint[0]) {
11442 default: break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000011443 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000011444 case 'l': // INDEX_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000011445 if (VT == MVT::i8)
Chris Lattner0f65cad2007-04-09 05:49:22 +000011446 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011447 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000011448 return std::make_pair(0U, X86::GR16RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011449 if (VT == MVT::i32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000011450 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000011451 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000011452 case 'R': // LEGACY_REGS
11453 if (VT == MVT::i8)
11454 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
11455 if (VT == MVT::i16)
11456 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
11457 if (VT == MVT::i32 || !Subtarget->is64Bit())
11458 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
11459 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011460 case 'f': // FP Stack registers.
11461 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
11462 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000011463 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011464 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011465 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011466 return std::make_pair(0U, X86::RFP64RegisterClass);
11467 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000011468 case 'y': // MMX_REGS if MMX allowed.
11469 if (!Subtarget->hasMMX()) break;
11470 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000011471 case 'Y': // SSE_REGS if SSE2 allowed
11472 if (!Subtarget->hasSSE2()) break;
11473 // FALL THROUGH.
11474 case 'x': // SSE_REGS if SSE1 allowed
11475 if (!Subtarget->hasSSE1()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000011476
Owen Anderson825b72b2009-08-11 20:47:22 +000011477 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000011478 default: break;
11479 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000011480 case MVT::f32:
11481 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000011482 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011483 case MVT::f64:
11484 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000011485 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000011486 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000011487 case MVT::v16i8:
11488 case MVT::v8i16:
11489 case MVT::v4i32:
11490 case MVT::v2i64:
11491 case MVT::v4f32:
11492 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000011493 return std::make_pair(0U, X86::VR128RegisterClass);
11494 }
Chris Lattnerad043e82007-04-09 05:11:28 +000011495 break;
11496 }
11497 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011498
Chris Lattnerf76d1802006-07-31 23:26:50 +000011499 // Use the default implementation in TargetLowering to convert the register
11500 // constraint into a member of a register class.
11501 std::pair<unsigned, const TargetRegisterClass*> Res;
11502 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000011503
11504 // Not found as a standard register?
11505 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000011506 // Map st(0) -> st(7) -> ST0
11507 if (Constraint.size() == 7 && Constraint[0] == '{' &&
11508 tolower(Constraint[1]) == 's' &&
11509 tolower(Constraint[2]) == 't' &&
11510 Constraint[3] == '(' &&
11511 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
11512 Constraint[5] == ')' &&
11513 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000011514
Chris Lattner56d77c72009-09-13 22:41:48 +000011515 Res.first = X86::ST0+Constraint[4]-'0';
11516 Res.second = X86::RFP80RegisterClass;
11517 return Res;
11518 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000011519
Chris Lattner56d77c72009-09-13 22:41:48 +000011520 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000011521 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000011522 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000011523 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000011524 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000011525 }
Chris Lattner56d77c72009-09-13 22:41:48 +000011526
11527 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000011528 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000011529 Res.first = X86::EFLAGS;
11530 Res.second = X86::CCRRegisterClass;
11531 return Res;
11532 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000011533
Dale Johannesen330169f2008-11-13 21:52:36 +000011534 // 'A' means EAX + EDX.
11535 if (Constraint == "A") {
11536 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000011537 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000011538 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000011539 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000011540 return Res;
11541 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011542
Chris Lattnerf76d1802006-07-31 23:26:50 +000011543 // Otherwise, check to see if this is a register class of the wrong value
11544 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
11545 // turn into {ax},{dx}.
11546 if (Res.second->hasType(VT))
11547 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011548
Chris Lattnerf76d1802006-07-31 23:26:50 +000011549 // All of the single-register GCC register classes map their values onto
11550 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
11551 // really want an 8-bit or 32-bit register, map to the appropriate register
11552 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000011553 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011554 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000011555 unsigned DestReg = 0;
11556 switch (Res.first) {
11557 default: break;
11558 case X86::AX: DestReg = X86::AL; break;
11559 case X86::DX: DestReg = X86::DL; break;
11560 case X86::CX: DestReg = X86::CL; break;
11561 case X86::BX: DestReg = X86::BL; break;
11562 }
11563 if (DestReg) {
11564 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000011565 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000011566 }
Owen Anderson825b72b2009-08-11 20:47:22 +000011567 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000011568 unsigned DestReg = 0;
11569 switch (Res.first) {
11570 default: break;
11571 case X86::AX: DestReg = X86::EAX; break;
11572 case X86::DX: DestReg = X86::EDX; break;
11573 case X86::CX: DestReg = X86::ECX; break;
11574 case X86::BX: DestReg = X86::EBX; break;
11575 case X86::SI: DestReg = X86::ESI; break;
11576 case X86::DI: DestReg = X86::EDI; break;
11577 case X86::BP: DestReg = X86::EBP; break;
11578 case X86::SP: DestReg = X86::ESP; break;
11579 }
11580 if (DestReg) {
11581 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000011582 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000011583 }
Owen Anderson825b72b2009-08-11 20:47:22 +000011584 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000011585 unsigned DestReg = 0;
11586 switch (Res.first) {
11587 default: break;
11588 case X86::AX: DestReg = X86::RAX; break;
11589 case X86::DX: DestReg = X86::RDX; break;
11590 case X86::CX: DestReg = X86::RCX; break;
11591 case X86::BX: DestReg = X86::RBX; break;
11592 case X86::SI: DestReg = X86::RSI; break;
11593 case X86::DI: DestReg = X86::RDI; break;
11594 case X86::BP: DestReg = X86::RBP; break;
11595 case X86::SP: DestReg = X86::RSP; break;
11596 }
11597 if (DestReg) {
11598 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000011599 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000011600 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000011601 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000011602 } else if (Res.second == X86::FR32RegisterClass ||
11603 Res.second == X86::FR64RegisterClass ||
11604 Res.second == X86::VR128RegisterClass) {
11605 // Handle references to XMM physical registers that got mapped into the
11606 // wrong class. This can happen with constraints like {xmm0} where the
11607 // target independent register mapper will just pick the first match it can
11608 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000011609 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000011610 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000011611 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000011612 Res.second = X86::FR64RegisterClass;
11613 else if (X86::VR128RegisterClass->hasType(VT))
11614 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000011615 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011616
Chris Lattnerf76d1802006-07-31 23:26:50 +000011617 return Res;
11618}