blob: d9b0ef20a3e55832ea7ecbddc48241ab4e370864 [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. Spencer94f7eeb2010-10-19 07:32:52 +0000104 setLibcallName(RTLIB::FPTOUINT_F32_I64, "_ftol2");
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000105 setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
Michael J. Spencer335b8062010-10-11 05:29:15 +0000106 setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
107 setLibcallCallingConv(RTLIB::FPTOUINT_F64_I64, CallingConv::X86_StdCall);
Michael J. Spencer94f7eeb2010-10-19 07:32:52 +0000108 setLibcallCallingConv(RTLIB::FPTOUINT_F32_I64, CallingConv::X86_StdCall);
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000109 }
110
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000111 if (Subtarget->isTargetDarwin()) {
Evan Chengdf57fa02006-03-17 20:31:41 +0000112 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000113 setUseUnderscoreSetJmp(false);
114 setUseUnderscoreLongJmp(false);
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000115 } else if (Subtarget->isTargetMingw()) {
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000116 // MS runtime is weird: it exports _setjmp, but longjmp!
117 setUseUnderscoreSetJmp(true);
118 setUseUnderscoreLongJmp(false);
119 } else {
120 setUseUnderscoreSetJmp(true);
121 setUseUnderscoreLongJmp(true);
122 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000123
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000124 // Set up the register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000125 addRegisterClass(MVT::i8, X86::GR8RegisterClass);
Dan Gohman71edb242010-04-30 18:30:26 +0000126 addRegisterClass(MVT::i16, X86::GR16RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +0000127 addRegisterClass(MVT::i32, X86::GR32RegisterClass);
Evan Cheng25ab6902006-09-08 06:48:29 +0000128 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000129 addRegisterClass(MVT::i64, X86::GR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000130
Owen Anderson825b72b2009-08-11 20:47:22 +0000131 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Evan Chengc5484282006-10-04 00:56:09 +0000132
Scott Michelfdc40a02009-02-17 22:15:04 +0000133 // We don't accept any truncstore of integer registers.
Owen Anderson825b72b2009-08-11 20:47:22 +0000134 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000135 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000136 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000137 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000138 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
139 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
Evan Cheng7f042682008-10-15 02:05:31 +0000140
141 // SETOEQ and SETUNE require checking two conditions.
Owen Anderson825b72b2009-08-11 20:47:22 +0000142 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
143 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
144 setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
145 setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
146 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
147 setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
Chris Lattnerddf89562008-01-17 19:59:44 +0000148
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000149 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
150 // operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000151 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
152 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
153 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
Evan Cheng6892f282006-01-17 02:32:49 +0000154
Evan Cheng25ab6902006-09-08 06:48:29 +0000155 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000156 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
157 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand);
Eli Friedman948e95a2009-05-23 09:59:16 +0000158 } else if (!UseSoftFloat) {
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000159 // We have an algorithm for SSE2->double, and we turn this into a
160 // 64-bit FILD followed by conditional FADD for other targets.
161 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Eli Friedman948e95a2009-05-23 09:59:16 +0000162 // We have an algorithm for SSE2, and we turn this into a 64-bit
163 // FILD for other targets.
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000164 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000165 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000166
167 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
168 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000169 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
170 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000171
Devang Patel6a784892009-06-05 18:48:29 +0000172 if (!UseSoftFloat) {
Bill Wendling105be5a2009-03-13 08:41:47 +0000173 // SSE has no i16 to fp conversion, only i32
174 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000175 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000176 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000177 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000178 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000179 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
180 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000181 }
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000182 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000183 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
184 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Promote);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000185 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000186
Dale Johannesen73328d12007-09-19 23:55:34 +0000187 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
188 // are Legal, f80 is custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000189 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
190 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Evan Cheng6dab0532006-01-30 08:02:57 +0000191
Evan Cheng02568ff2006-01-30 22:13:22 +0000192 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
193 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000194 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
195 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
Evan Cheng02568ff2006-01-30 22:13:22 +0000196
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000197 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000198 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000199 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000200 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000201 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000202 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
203 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000204 }
205
206 // Handle FP_TO_UINT by promoting the destination to a larger signed
207 // conversion.
Owen Anderson825b72b2009-08-11 20:47:22 +0000208 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
209 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
210 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000211
Evan Cheng25ab6902006-09-08 06:48:29 +0000212 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000213 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
214 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
Eli Friedman948e95a2009-05-23 09:59:16 +0000215 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000216 if (X86ScalarSSEf32 && !Subtarget->hasSSE3())
Evan Cheng25ab6902006-09-08 06:48:29 +0000217 // Expand FP_TO_UINT into a select.
218 // FIXME: We would like to use a Custom expander here eventually to do
219 // the optimal thing for SSE vs. the default expansion in the legalizer.
Owen Anderson825b72b2009-08-11 20:47:22 +0000220 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000221 else
Eli Friedman948e95a2009-05-23 09:59:16 +0000222 // With SSE3 we can use fisttpll to convert to a signed i64; without
223 // SSE, we're stuck with a fistpll.
Owen Anderson825b72b2009-08-11 20:47:22 +0000224 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000225 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000226
Chris Lattner399610a2006-12-05 18:22:22 +0000227 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Michael J. Spencerec38de22010-10-10 22:04:20 +0000228 if (!X86ScalarSSEf64) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000229 setOperationAction(ISD::BIT_CONVERT , MVT::f32 , Expand);
230 setOperationAction(ISD::BIT_CONVERT , MVT::i32 , Expand);
Dale Johannesene39859a2010-05-21 18:40:15 +0000231 if (Subtarget->is64Bit()) {
Dale Johannesen7d07b482010-05-21 00:52:33 +0000232 setOperationAction(ISD::BIT_CONVERT , MVT::f64 , Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000233 // Without SSE, i64->f64 goes through memory.
234 setOperationAction(ISD::BIT_CONVERT , MVT::i64 , Expand);
Dale Johannesen7d07b482010-05-21 00:52:33 +0000235 }
Chris Lattnerf3597a12006-12-05 18:45:06 +0000236 }
Chris Lattner21f66852005-12-23 05:15:23 +0000237
Dan Gohmanb00ee212008-02-18 19:34:53 +0000238 // Scalar integer divide and remainder are lowered to use operations that
239 // produce two results, to match the available instructions. This exposes
240 // the two-result form to trivial CSE, which is able to combine x/y and x%y
241 // into a single instruction.
242 //
243 // Scalar integer multiply-high is also lowered to use two-result
244 // operations, to match the available instructions. However, plain multiply
245 // (low) operations are left as Legal, as there are single-result
246 // instructions for this in x86. Using the two-result multiply instructions
247 // when both high and low results are needed must be arranged by dagcombine.
Owen Anderson825b72b2009-08-11 20:47:22 +0000248 setOperationAction(ISD::MULHS , MVT::i8 , Expand);
249 setOperationAction(ISD::MULHU , MVT::i8 , Expand);
250 setOperationAction(ISD::SDIV , MVT::i8 , Expand);
251 setOperationAction(ISD::UDIV , MVT::i8 , Expand);
252 setOperationAction(ISD::SREM , MVT::i8 , Expand);
253 setOperationAction(ISD::UREM , MVT::i8 , Expand);
254 setOperationAction(ISD::MULHS , MVT::i16 , Expand);
255 setOperationAction(ISD::MULHU , MVT::i16 , Expand);
256 setOperationAction(ISD::SDIV , MVT::i16 , Expand);
257 setOperationAction(ISD::UDIV , MVT::i16 , Expand);
258 setOperationAction(ISD::SREM , MVT::i16 , Expand);
259 setOperationAction(ISD::UREM , MVT::i16 , Expand);
260 setOperationAction(ISD::MULHS , MVT::i32 , Expand);
261 setOperationAction(ISD::MULHU , MVT::i32 , Expand);
262 setOperationAction(ISD::SDIV , MVT::i32 , Expand);
263 setOperationAction(ISD::UDIV , MVT::i32 , Expand);
264 setOperationAction(ISD::SREM , MVT::i32 , Expand);
265 setOperationAction(ISD::UREM , MVT::i32 , Expand);
266 setOperationAction(ISD::MULHS , MVT::i64 , Expand);
267 setOperationAction(ISD::MULHU , MVT::i64 , Expand);
268 setOperationAction(ISD::SDIV , MVT::i64 , Expand);
269 setOperationAction(ISD::UDIV , MVT::i64 , Expand);
270 setOperationAction(ISD::SREM , MVT::i64 , Expand);
271 setOperationAction(ISD::UREM , MVT::i64 , Expand);
Dan Gohmana37c9f72007-09-25 18:23:27 +0000272
Owen Anderson825b72b2009-08-11 20:47:22 +0000273 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
274 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
275 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
276 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000277 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000278 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
279 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
280 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
281 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
282 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
283 setOperationAction(ISD::FREM , MVT::f32 , Expand);
284 setOperationAction(ISD::FREM , MVT::f64 , Expand);
285 setOperationAction(ISD::FREM , MVT::f80 , Expand);
286 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000287
Owen Anderson825b72b2009-08-11 20:47:22 +0000288 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
289 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
290 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
291 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000292 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
293 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000294 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
295 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
296 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000297 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000298 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
299 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
300 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000301 }
302
Owen Anderson825b72b2009-08-11 20:47:22 +0000303 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
304 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000305
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000306 // These should be promoted to a larger select which is supported.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000307 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000308 // X86 wants to expand cmov itself.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000309 setOperationAction(ISD::SELECT , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000310 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000311 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
312 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
313 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
314 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
315 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000316 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000317 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
318 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
319 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
320 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000321 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000322 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
323 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000324 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000325 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000326
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000327 // Darwin ABI issue.
Owen Anderson825b72b2009-08-11 20:47:22 +0000328 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
329 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
330 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
331 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000332 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000333 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
334 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000335 setOperationAction(ISD::BlockAddress , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000336 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000337 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
338 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
339 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
340 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000341 setOperationAction(ISD::BlockAddress , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000342 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000343 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Owen Anderson825b72b2009-08-11 20:47:22 +0000344 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
345 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
346 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000347 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000348 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
349 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
350 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000351 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000352
Evan Chengd2cde682008-03-10 19:38:10 +0000353 if (Subtarget->hasSSE1())
Owen Anderson825b72b2009-08-11 20:47:22 +0000354 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000355
Eric Christopher9a9d2752010-07-22 02:48:34 +0000356 // We may not have a libcall for MEMBARRIER so we should lower this.
357 setOperationAction(ISD::MEMBARRIER , MVT::Other, Custom);
Michael J. Spencerec38de22010-10-10 22:04:20 +0000358
Jim Grosbachf1ab49e2010-06-23 16:25:07 +0000359 // On X86 and X86-64, atomic operations are lowered to locked instructions.
360 // Locked instructions, in turn, have implicit fence semantics (all memory
361 // operations are flushed before issuing the locked instruction, and they
362 // are not buffered), so we can fold away the common pattern of
363 // fence-atomic-fence.
364 setShouldFoldAtomicFences(true);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000365
Mon P Wang63307c32008-05-05 19:05:59 +0000366 // Expand certain atomics
Owen Anderson825b72b2009-08-11 20:47:22 +0000367 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i8, Custom);
368 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i16, Custom);
369 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Custom);
370 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i64, Custom);
Bill Wendling5bf1b4e2008-08-20 00:28:16 +0000371
Owen Anderson825b72b2009-08-11 20:47:22 +0000372 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i8, Custom);
373 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i16, Custom);
374 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Custom);
375 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000376
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000377 if (!Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000378 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
379 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
380 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
381 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
382 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
383 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
384 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000385 }
386
Evan Cheng3c992d22006-03-07 02:02:57 +0000387 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000388 if (!Subtarget->isTargetDarwin() &&
389 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000390 !Subtarget->isTargetCygMing()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000391 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohman44066042008-07-01 00:05:16 +0000392 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000393
Owen Anderson825b72b2009-08-11 20:47:22 +0000394 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
395 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
396 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
397 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000398 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000399 setExceptionPointerRegister(X86::RAX);
400 setExceptionSelectorRegister(X86::RDX);
401 } else {
402 setExceptionPointerRegister(X86::EAX);
403 setExceptionSelectorRegister(X86::EDX);
404 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000405 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
406 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000407
Owen Anderson825b72b2009-08-11 20:47:22 +0000408 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000409
Owen Anderson825b72b2009-08-11 20:47:22 +0000410 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000411
Nate Begemanacc398c2006-01-25 18:21:52 +0000412 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000413 setOperationAction(ISD::VASTART , MVT::Other, Custom);
414 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000415 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000416 setOperationAction(ISD::VAARG , MVT::Other, Custom);
417 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000418 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000419 setOperationAction(ISD::VAARG , MVT::Other, Expand);
420 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000421 }
Evan Chengae642192007-03-02 23:16:35 +0000422
Owen Anderson825b72b2009-08-11 20:47:22 +0000423 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
424 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000425 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000426 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
Michael J. Spencere9c253e2010-10-21 01:41:01 +0000427 if (Subtarget->isTargetCygMing() || Subtarget->isTargetWindows())
Owen Anderson825b72b2009-08-11 20:47:22 +0000428 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +0000429 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000430 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000431
Evan Chengc7ce29b2009-02-13 22:36:38 +0000432 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000433 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000434 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000435 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
436 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000437
Evan Cheng223547a2006-01-31 22:28:30 +0000438 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000439 setOperationAction(ISD::FABS , MVT::f64, Custom);
440 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000441
442 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000443 setOperationAction(ISD::FNEG , MVT::f64, Custom);
444 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000445
Evan Cheng68c47cb2007-01-05 07:55:56 +0000446 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000447 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
448 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000449
Evan Chengd25e9e82006-02-02 00:28:23 +0000450 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000451 setOperationAction(ISD::FSIN , MVT::f64, Expand);
452 setOperationAction(ISD::FCOS , MVT::f64, Expand);
453 setOperationAction(ISD::FSIN , MVT::f32, Expand);
454 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000455
Chris Lattnera54aa942006-01-29 06:26:08 +0000456 // Expand FP immediates into loads from the stack, except for the special
457 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000458 addLegalFPImmediate(APFloat(+0.0)); // xorpd
459 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Evan Chengc7ce29b2009-02-13 22:36:38 +0000460 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000461 // Use SSE for f32, x87 for f64.
462 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000463 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
464 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000465
466 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000467 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000468
469 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000470 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000471
Owen Anderson825b72b2009-08-11 20:47:22 +0000472 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000473
474 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000475 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
476 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000477
478 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000479 setOperationAction(ISD::FSIN , MVT::f32, Expand);
480 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000481
Nate Begemane1795842008-02-14 08:57:00 +0000482 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000483 addLegalFPImmediate(APFloat(+0.0f)); // xorps
484 addLegalFPImmediate(APFloat(+0.0)); // FLD0
485 addLegalFPImmediate(APFloat(+1.0)); // FLD1
486 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
487 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
488
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000489 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000490 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
491 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000492 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000493 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000494 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000495 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000496 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
497 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000498
Owen Anderson825b72b2009-08-11 20:47:22 +0000499 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
500 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
501 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
502 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000503
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000504 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000505 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
506 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000507 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000508 addLegalFPImmediate(APFloat(+0.0)); // FLD0
509 addLegalFPImmediate(APFloat(+1.0)); // FLD1
510 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
511 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000512 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
513 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
514 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
515 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000516 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000517
Dale Johannesen59a58732007-08-05 18:49:15 +0000518 // Long double always uses X87.
Evan Cheng92722532009-03-26 23:06:32 +0000519 if (!UseSoftFloat) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000520 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
521 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
522 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000523 {
524 bool ignored;
525 APFloat TmpFlt(+0.0);
526 TmpFlt.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
527 &ignored);
528 addLegalFPImmediate(TmpFlt); // FLD0
529 TmpFlt.changeSign();
530 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
531 APFloat TmpFlt2(+1.0);
532 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
533 &ignored);
534 addLegalFPImmediate(TmpFlt2); // FLD1
535 TmpFlt2.changeSign();
536 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
537 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000538
Evan Chengc7ce29b2009-02-13 22:36:38 +0000539 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000540 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
541 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000542 }
Dale Johannesen2f429012007-09-26 21:10:55 +0000543 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000544
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000545 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000546 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
547 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
548 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000549
Owen Anderson825b72b2009-08-11 20:47:22 +0000550 setOperationAction(ISD::FLOG, MVT::f80, Expand);
551 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
552 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
553 setOperationAction(ISD::FEXP, MVT::f80, Expand);
554 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000555
Mon P Wangf007a8b2008-11-06 05:31:54 +0000556 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000557 // (for widening) or expand (for scalarization). Then we will selectively
558 // turn on ones that can be effectively codegen'd.
Owen Anderson825b72b2009-08-11 20:47:22 +0000559 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
560 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
561 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
562 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
563 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
564 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
565 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
566 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
567 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
568 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
569 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
570 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
571 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
572 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
573 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
574 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
575 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
576 setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
577 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
578 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
579 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
580 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
581 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
582 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
583 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
584 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
585 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
586 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
587 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
588 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
589 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
590 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
591 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
592 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
593 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
594 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
595 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
596 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
597 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
598 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
599 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
600 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
601 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
602 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
603 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
604 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
605 setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
606 setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
607 setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
608 setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
Dan Gohman87862e72009-12-11 21:31:27 +0000609 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
Dan Gohman2e141d72009-12-14 23:40:38 +0000610 setOperationAction(ISD::TRUNCATE, (MVT::SimpleValueType)VT, Expand);
611 setOperationAction(ISD::SIGN_EXTEND, (MVT::SimpleValueType)VT, Expand);
612 setOperationAction(ISD::ZERO_EXTEND, (MVT::SimpleValueType)VT, Expand);
613 setOperationAction(ISD::ANY_EXTEND, (MVT::SimpleValueType)VT, Expand);
614 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
615 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
616 setTruncStoreAction((MVT::SimpleValueType)VT,
617 (MVT::SimpleValueType)InnerVT, Expand);
618 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
619 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
620 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000621 }
622
Evan Chengc7ce29b2009-02-13 22:36:38 +0000623 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
624 // with -msoft-float, disable use of MMX as well.
Evan Cheng92722532009-03-26 23:06:32 +0000625 if (!UseSoftFloat && !DisableMMX && Subtarget->hasMMX()) {
Dale Johannesene93d99c2010-10-20 21:32:10 +0000626 addRegisterClass(MVT::x86mmx, X86::VR64RegisterClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000627 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000628 }
629
Dale Johannesen0488fb62010-09-30 23:57:10 +0000630 // MMX-sized vectors (other than x86mmx) are expected to be expanded
631 // into smaller operations.
632 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
633 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
634 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
635 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
636 setOperationAction(ISD::AND, MVT::v8i8, Expand);
637 setOperationAction(ISD::AND, MVT::v4i16, Expand);
638 setOperationAction(ISD::AND, MVT::v2i32, Expand);
639 setOperationAction(ISD::AND, MVT::v1i64, Expand);
640 setOperationAction(ISD::OR, MVT::v8i8, Expand);
641 setOperationAction(ISD::OR, MVT::v4i16, Expand);
642 setOperationAction(ISD::OR, MVT::v2i32, Expand);
643 setOperationAction(ISD::OR, MVT::v1i64, Expand);
644 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
645 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
646 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
647 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
648 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
649 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
650 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
651 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
652 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
653 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
654 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
655 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
656 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
657 setOperationAction(ISD::BIT_CONVERT, MVT::v8i8, Expand);
658 setOperationAction(ISD::BIT_CONVERT, MVT::v4i16, Expand);
659 setOperationAction(ISD::BIT_CONVERT, MVT::v2i32, Expand);
660 setOperationAction(ISD::BIT_CONVERT, MVT::v1i64, Expand);
661
Evan Cheng92722532009-03-26 23:06:32 +0000662 if (!UseSoftFloat && Subtarget->hasSSE1()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000663 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000664
Owen Anderson825b72b2009-08-11 20:47:22 +0000665 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
666 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
667 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
668 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
669 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
670 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
671 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
672 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
673 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
674 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
675 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
676 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000677 }
678
Evan Cheng92722532009-03-26 23:06:32 +0000679 if (!UseSoftFloat && Subtarget->hasSSE2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000680 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000681
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000682 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
683 // registers cannot be used even for integer operations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000684 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
685 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
686 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
687 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000688
Owen Anderson825b72b2009-08-11 20:47:22 +0000689 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
690 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
691 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
692 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
693 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
694 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
695 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
696 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
697 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
698 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
699 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
700 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
701 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
702 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
703 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
704 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000705
Owen Anderson825b72b2009-08-11 20:47:22 +0000706 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
707 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
708 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
709 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000710
Owen Anderson825b72b2009-08-11 20:47:22 +0000711 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
712 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
713 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
714 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
715 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000716
Mon P Wangeb38ebf2010-01-24 00:05:03 +0000717 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2f64, Custom);
718 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2i64, Custom);
719 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i8, Custom);
720 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i16, Custom);
721 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
722
Evan Cheng2c3ae372006-04-12 21:21:57 +0000723 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Owen Anderson825b72b2009-08-11 20:47:22 +0000724 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
725 EVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000726 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000727 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000728 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000729 // Do not attempt to custom lower non-128-bit vectors
730 if (!VT.is128BitVector())
731 continue;
Owen Anderson825b72b2009-08-11 20:47:22 +0000732 setOperationAction(ISD::BUILD_VECTOR,
733 VT.getSimpleVT().SimpleTy, Custom);
734 setOperationAction(ISD::VECTOR_SHUFFLE,
735 VT.getSimpleVT().SimpleTy, Custom);
736 setOperationAction(ISD::EXTRACT_VECTOR_ELT,
737 VT.getSimpleVT().SimpleTy, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000738 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000739
Owen Anderson825b72b2009-08-11 20:47:22 +0000740 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
741 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
742 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
743 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
744 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
745 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000746
Nate Begemancdd1eec2008-02-12 22:51:28 +0000747 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000748 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
749 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000750 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000751
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000752 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Owen Anderson825b72b2009-08-11 20:47:22 +0000753 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) {
754 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
Owen Andersone50ed302009-08-10 22:56:29 +0000755 EVT VT = SVT;
David Greene9b9838d2009-06-29 16:47:10 +0000756
757 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000758 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000759 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +0000760
Owen Andersond6662ad2009-08-10 20:46:15 +0000761 setOperationAction(ISD::AND, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000762 AddPromotedToType (ISD::AND, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000763 setOperationAction(ISD::OR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000764 AddPromotedToType (ISD::OR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000765 setOperationAction(ISD::XOR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000766 AddPromotedToType (ISD::XOR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000767 setOperationAction(ISD::LOAD, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000768 AddPromotedToType (ISD::LOAD, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000769 setOperationAction(ISD::SELECT, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000770 AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000771 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000772
Owen Anderson825b72b2009-08-11 20:47:22 +0000773 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000774
Evan Cheng2c3ae372006-04-12 21:21:57 +0000775 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +0000776 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
777 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
778 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
779 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000780
Owen Anderson825b72b2009-08-11 20:47:22 +0000781 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
782 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000783 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000784
Nate Begeman14d12ca2008-02-11 04:19:36 +0000785 if (Subtarget->hasSSE41()) {
Dale Johannesen54feef22010-05-27 20:12:41 +0000786 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
787 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
788 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
789 setOperationAction(ISD::FRINT, MVT::f32, Legal);
790 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
791 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
792 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
793 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
794 setOperationAction(ISD::FRINT, MVT::f64, Legal);
795 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
796
Nate Begeman14d12ca2008-02-11 04:19:36 +0000797 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +0000798 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000799
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000800 // Can turn SHL into an integer multiply.
801 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
Nate Begeman51409212010-07-28 00:21:48 +0000802 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000803
Nate Begeman14d12ca2008-02-11 04:19:36 +0000804 // i8 and i16 vectors are custom , because the source register and source
805 // source memory operand types are not the same width. f32 vectors are
806 // custom since the immediate controlling the insert encodes additional
807 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +0000808 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
809 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
810 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
811 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000812
Owen Anderson825b72b2009-08-11 20:47:22 +0000813 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
814 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
815 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
816 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000817
818 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000819 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
820 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000821 }
822 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000823
Nate Begeman30a0de92008-07-17 16:51:19 +0000824 if (Subtarget->hasSSE42()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000825 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
Nate Begeman30a0de92008-07-17 16:51:19 +0000826 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000827
David Greene9b9838d2009-06-29 16:47:10 +0000828 if (!UseSoftFloat && Subtarget->hasAVX()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000829 addRegisterClass(MVT::v8f32, X86::VR256RegisterClass);
830 addRegisterClass(MVT::v4f64, X86::VR256RegisterClass);
831 addRegisterClass(MVT::v8i32, X86::VR256RegisterClass);
832 addRegisterClass(MVT::v4i64, X86::VR256RegisterClass);
Bruno Cardoso Lopes405f11b2010-08-10 01:43:16 +0000833 addRegisterClass(MVT::v32i8, X86::VR256RegisterClass);
David Greened94c1012009-06-29 22:50:51 +0000834
Owen Anderson825b72b2009-08-11 20:47:22 +0000835 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
836 setOperationAction(ISD::LOAD, MVT::v8i32, Legal);
837 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
838 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
839 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
840 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
841 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
842 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
843 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
844 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +0000845 setOperationAction(ISD::BUILD_VECTOR, MVT::v8f32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000846 //setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8f32, Custom);
847 //setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8f32, Custom);
848 //setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
849 //setOperationAction(ISD::VSETCC, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000850
851 // Operations to consider commented out -v16i16 v32i8
Owen Anderson825b72b2009-08-11 20:47:22 +0000852 //setOperationAction(ISD::ADD, MVT::v16i16, Legal);
853 setOperationAction(ISD::ADD, MVT::v8i32, Custom);
854 setOperationAction(ISD::ADD, MVT::v4i64, Custom);
855 //setOperationAction(ISD::SUB, MVT::v32i8, Legal);
856 //setOperationAction(ISD::SUB, MVT::v16i16, Legal);
857 setOperationAction(ISD::SUB, MVT::v8i32, Custom);
858 setOperationAction(ISD::SUB, MVT::v4i64, Custom);
859 //setOperationAction(ISD::MUL, MVT::v16i16, Legal);
860 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
861 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
862 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
863 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
864 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
865 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000866
Owen Anderson825b72b2009-08-11 20:47:22 +0000867 setOperationAction(ISD::VSETCC, MVT::v4f64, Custom);
868 // setOperationAction(ISD::VSETCC, MVT::v32i8, Custom);
869 // setOperationAction(ISD::VSETCC, MVT::v16i16, Custom);
870 setOperationAction(ISD::VSETCC, MVT::v8i32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000871
Owen Anderson825b72b2009-08-11 20:47:22 +0000872 // setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v32i8, Custom);
873 // setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i16, Custom);
874 // setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i16, Custom);
875 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i32, Custom);
876 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000877
Owen Anderson825b72b2009-08-11 20:47:22 +0000878 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f64, Custom);
879 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i64, Custom);
880 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f64, Custom);
881 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i64, Custom);
882 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f64, Custom);
883 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000884
885#if 0
886 // Not sure we want to do this since there are no 256-bit integer
887 // operations in AVX
888
889 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
890 // This includes 256-bit vectors
Owen Anderson825b72b2009-08-11 20:47:22 +0000891 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v4i64; ++i) {
892 EVT VT = (MVT::SimpleValueType)i;
David Greene9b9838d2009-06-29 16:47:10 +0000893
894 // Do not attempt to custom lower non-power-of-2 vectors
895 if (!isPowerOf2_32(VT.getVectorNumElements()))
896 continue;
897
898 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
899 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
900 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
901 }
902
903 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000904 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i64, Custom);
905 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i64, Custom);
Eric Christopherfd179292009-08-27 18:07:15 +0000906 }
David Greene9b9838d2009-06-29 16:47:10 +0000907#endif
908
909#if 0
910 // Not sure we want to do this since there are no 256-bit integer
911 // operations in AVX
912
913 // Promote v32i8, v16i16, v8i32 load, select, and, or, xor to v4i64.
914 // Including 256-bit vectors
Owen Anderson825b72b2009-08-11 20:47:22 +0000915 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v4i64; i++) {
916 EVT VT = (MVT::SimpleValueType)i;
David Greene9b9838d2009-06-29 16:47:10 +0000917
918 if (!VT.is256BitVector()) {
919 continue;
920 }
921 setOperationAction(ISD::AND, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000922 AddPromotedToType (ISD::AND, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000923 setOperationAction(ISD::OR, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000924 AddPromotedToType (ISD::OR, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000925 setOperationAction(ISD::XOR, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000926 AddPromotedToType (ISD::XOR, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000927 setOperationAction(ISD::LOAD, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000928 AddPromotedToType (ISD::LOAD, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000929 setOperationAction(ISD::SELECT, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000930 AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000931 }
932
Owen Anderson825b72b2009-08-11 20:47:22 +0000933 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
David Greene9b9838d2009-06-29 16:47:10 +0000934#endif
935 }
936
Evan Cheng6be2c582006-04-05 23:38:46 +0000937 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +0000938 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +0000939
Bill Wendling74c37652008-12-09 22:08:41 +0000940 // Add/Sub/Mul with overflow operations are custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000941 setOperationAction(ISD::SADDO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000942 setOperationAction(ISD::UADDO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000943 setOperationAction(ISD::SSUBO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000944 setOperationAction(ISD::USUBO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000945 setOperationAction(ISD::SMULO, MVT::i32, Custom);
Dan Gohman71c62a22010-06-02 19:13:40 +0000946
Eli Friedman962f5492010-06-02 19:35:46 +0000947 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
948 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +0000949 //
Eli Friedman962f5492010-06-02 19:35:46 +0000950 // FIXME: We really should do custom legalization for addition and
951 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
952 // than generic legalization for 64-bit multiplication-with-overflow, though.
Eli Friedmana993f0a2010-06-02 00:27:18 +0000953 if (Subtarget->is64Bit()) {
954 setOperationAction(ISD::SADDO, MVT::i64, Custom);
955 setOperationAction(ISD::UADDO, MVT::i64, Custom);
956 setOperationAction(ISD::SSUBO, MVT::i64, Custom);
957 setOperationAction(ISD::USUBO, MVT::i64, Custom);
958 setOperationAction(ISD::SMULO, MVT::i64, Custom);
959 }
Bill Wendling41ea7e72008-11-24 19:21:46 +0000960
Evan Chengd54f2d52009-03-31 19:38:51 +0000961 if (!Subtarget->is64Bit()) {
962 // These libcalls are not available in 32-bit.
963 setLibcallName(RTLIB::SHL_I128, 0);
964 setLibcallName(RTLIB::SRL_I128, 0);
965 setLibcallName(RTLIB::SRA_I128, 0);
966 }
967
Evan Cheng206ee9d2006-07-07 08:33:52 +0000968 // We have target-specific dag combine patterns for the following nodes:
969 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +0000970 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +0000971 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +0000972 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +0000973 setTargetDAGCombine(ISD::SHL);
974 setTargetDAGCombine(ISD::SRA);
975 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +0000976 setTargetDAGCombine(ISD::OR);
Chris Lattner149a4e52008-02-22 02:09:43 +0000977 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +0000978 setTargetDAGCombine(ISD::ZERO_EXTEND);
Evan Cheng0b0cd912009-03-28 05:57:29 +0000979 if (Subtarget->is64Bit())
980 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +0000981
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000982 computeRegisterProperties();
983
Evan Cheng87ed7162006-02-14 08:25:08 +0000984 // FIXME: These should be based on subtarget info. Plus, the values should
985 // be smaller when we are in optimizing for size mode.
Dan Gohman87060f52008-06-30 21:00:56 +0000986 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng255f20f2010-04-01 06:04:33 +0000987 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Dan Gohman87060f52008-06-30 21:00:56 +0000988 maxStoresPerMemmove = 3; // For @llvm.memmove -> sequence of stores
Evan Chengfb8075d2008-02-28 00:43:03 +0000989 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +0000990 benefitFromCodePlacementOpt = true;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000991}
992
Scott Michel5b8f82e2008-03-10 15:42:14 +0000993
Owen Anderson825b72b2009-08-11 20:47:22 +0000994MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
995 return MVT::i8;
Scott Michel5b8f82e2008-03-10 15:42:14 +0000996}
997
998
Evan Cheng29286502008-01-23 23:17:41 +0000999/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1000/// the desired ByVal argument alignment.
1001static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) {
1002 if (MaxAlign == 16)
1003 return;
1004 if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1005 if (VTy->getBitWidth() == 128)
1006 MaxAlign = 16;
Evan Cheng29286502008-01-23 23:17:41 +00001007 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1008 unsigned EltAlign = 0;
1009 getMaxByValAlign(ATy->getElementType(), EltAlign);
1010 if (EltAlign > MaxAlign)
1011 MaxAlign = EltAlign;
1012 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
1013 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1014 unsigned EltAlign = 0;
1015 getMaxByValAlign(STy->getElementType(i), EltAlign);
1016 if (EltAlign > MaxAlign)
1017 MaxAlign = EltAlign;
1018 if (MaxAlign == 16)
1019 break;
1020 }
1021 }
1022 return;
1023}
1024
1025/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1026/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001027/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1028/// are at 4-byte boundaries.
Evan Cheng29286502008-01-23 23:17:41 +00001029unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001030 if (Subtarget->is64Bit()) {
1031 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001032 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001033 if (TyAlign > 8)
1034 return TyAlign;
1035 return 8;
1036 }
1037
Evan Cheng29286502008-01-23 23:17:41 +00001038 unsigned Align = 4;
Dale Johannesen0c191872008-02-08 19:48:20 +00001039 if (Subtarget->hasSSE1())
1040 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001041 return Align;
1042}
Chris Lattner2b02a442007-02-25 08:29:00 +00001043
Evan Chengf0df0312008-05-15 08:39:06 +00001044/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001045/// and store operations as a result of memset, memcpy, and memmove
1046/// lowering. If DstAlign is zero that means it's safe to destination
1047/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1048/// means there isn't a need to check it against alignment requirement,
1049/// probably because the source does not need to be loaded. If
1050/// 'NonScalarIntSafe' is true, that means it's safe to return a
1051/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1052/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1053/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001054/// It returns EVT::Other if the type should be determined using generic
1055/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001056EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001057X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1058 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001059 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001060 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001061 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001062 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1063 // linux. This is because the stack realignment code can't handle certain
1064 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001065 const Function *F = MF.getFunction();
Evan Chengf28f8bc2010-04-02 19:36:14 +00001066 if (NonScalarIntSafe &&
1067 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001068 if (Size >= 16 &&
1069 (Subtarget->isUnalignedMemAccessFast() ||
Chandler Carruthae1d41c2010-04-02 01:31:24 +00001070 ((DstAlign == 0 || DstAlign >= 16) &&
1071 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001072 Subtarget->getStackAlignment() >= 16) {
1073 if (Subtarget->hasSSE2())
1074 return MVT::v4i32;
Evan Chengf28f8bc2010-04-02 19:36:14 +00001075 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001076 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001077 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001078 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001079 Subtarget->getStackAlignment() >= 8 &&
Evan Chengc3b0c342010-04-08 07:37:57 +00001080 Subtarget->hasSSE2()) {
1081 // Do not use f64 to lower memcpy if source is string constant. It's
1082 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001083 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001084 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001085 }
Evan Chengf0df0312008-05-15 08:39:06 +00001086 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001087 return MVT::i64;
1088 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001089}
1090
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001091/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1092/// current function. The returned value is a member of the
1093/// MachineJumpTableInfo::JTEntryKind enum.
1094unsigned X86TargetLowering::getJumpTableEncoding() const {
1095 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1096 // symbol.
1097 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1098 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001099 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001100
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001101 // Otherwise, use the normal jump table encoding heuristics.
1102 return TargetLowering::getJumpTableEncoding();
1103}
1104
Chris Lattner589c6f62010-01-26 06:28:43 +00001105/// getPICBaseSymbol - Return the X86-32 PIC base.
1106MCSymbol *
1107X86TargetLowering::getPICBaseSymbol(const MachineFunction *MF,
1108 MCContext &Ctx) const {
1109 const MCAsmInfo &MAI = *getTargetMachine().getMCAsmInfo();
Chris Lattner9b97a732010-03-30 18:10:53 +00001110 return Ctx.GetOrCreateSymbol(Twine(MAI.getPrivateGlobalPrefix())+
1111 Twine(MF->getFunctionNumber())+"$pb");
Chris Lattner589c6f62010-01-26 06:28:43 +00001112}
1113
1114
Chris Lattnerc64daab2010-01-26 05:02:42 +00001115const MCExpr *
1116X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1117 const MachineBasicBlock *MBB,
1118 unsigned uid,MCContext &Ctx) const{
1119 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1120 Subtarget->isPICStyleGOT());
1121 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1122 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001123 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1124 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001125}
1126
Evan Chengcc415862007-11-09 01:32:10 +00001127/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1128/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001129SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001130 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001131 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001132 // This doesn't have DebugLoc associated with it, but is not really the
1133 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001134 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001135 return Table;
1136}
1137
Chris Lattner589c6f62010-01-26 06:28:43 +00001138/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1139/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1140/// MCExpr.
1141const MCExpr *X86TargetLowering::
1142getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1143 MCContext &Ctx) const {
1144 // X86-64 uses RIP relative addressing based on the jump table label.
1145 if (Subtarget->isPICStyleRIPRel())
1146 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1147
1148 // Otherwise, the reference is relative to the PIC base.
1149 return MCSymbolRefExpr::Create(getPICBaseSymbol(MF, Ctx), Ctx);
1150}
1151
Bill Wendlingb4202b82009-07-01 18:50:55 +00001152/// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling20c568f2009-06-30 22:38:32 +00001153unsigned X86TargetLowering::getFunctionAlignment(const Function *F) const {
Dan Gohman25103a22009-08-18 00:20:06 +00001154 return F->hasFnAttr(Attribute::OptimizeForSize) ? 0 : 4;
Bill Wendling20c568f2009-06-30 22:38:32 +00001155}
1156
Evan Chengdee81012010-07-26 21:50:05 +00001157std::pair<const TargetRegisterClass*, uint8_t>
1158X86TargetLowering::findRepresentativeClass(EVT VT) const{
1159 const TargetRegisterClass *RRC = 0;
1160 uint8_t Cost = 1;
1161 switch (VT.getSimpleVT().SimpleTy) {
1162 default:
1163 return TargetLowering::findRepresentativeClass(VT);
1164 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1165 RRC = (Subtarget->is64Bit()
1166 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1167 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001168 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001169 RRC = X86::VR64RegisterClass;
1170 break;
1171 case MVT::f32: case MVT::f64:
1172 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1173 case MVT::v4f32: case MVT::v2f64:
1174 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1175 case MVT::v4f64:
1176 RRC = X86::VR128RegisterClass;
1177 break;
1178 }
1179 return std::make_pair(RRC, Cost);
1180}
1181
Evan Cheng70017e42010-07-24 00:39:05 +00001182unsigned
1183X86TargetLowering::getRegPressureLimit(const TargetRegisterClass *RC,
1184 MachineFunction &MF) const {
1185 unsigned FPDiff = RegInfo->hasFP(MF) ? 1 : 0;
1186 switch (RC->getID()) {
1187 default:
1188 return 0;
1189 case X86::GR32RegClassID:
1190 return 4 - FPDiff;
1191 case X86::GR64RegClassID:
1192 return 8 - FPDiff;
1193 case X86::VR128RegClassID:
1194 return Subtarget->is64Bit() ? 10 : 4;
1195 case X86::VR64RegClassID:
1196 return 4;
1197 }
1198}
1199
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001200bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1201 unsigned &Offset) const {
1202 if (!Subtarget->isTargetLinux())
1203 return false;
1204
1205 if (Subtarget->is64Bit()) {
1206 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1207 Offset = 0x28;
1208 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1209 AddressSpace = 256;
1210 else
1211 AddressSpace = 257;
1212 } else {
1213 // %gs:0x14 on i386
1214 Offset = 0x14;
1215 AddressSpace = 256;
1216 }
1217 return true;
1218}
1219
1220
Chris Lattner2b02a442007-02-25 08:29:00 +00001221//===----------------------------------------------------------------------===//
1222// Return Value Calling Convention Implementation
1223//===----------------------------------------------------------------------===//
1224
Chris Lattner59ed56b2007-02-28 04:55:35 +00001225#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001226
Michael J. Spencerec38de22010-10-10 22:04:20 +00001227bool
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001228X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001229 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001230 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001231 SmallVector<CCValAssign, 16> RVLocs;
1232 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001233 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001234 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001235}
1236
Dan Gohman98ca4f22009-08-05 01:29:28 +00001237SDValue
1238X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001239 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001240 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001241 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001242 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001243 MachineFunction &MF = DAG.getMachineFunction();
1244 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001245
Chris Lattner9774c912007-02-27 05:28:59 +00001246 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001247 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1248 RVLocs, *DAG.getContext());
1249 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001250
Evan Chengdcea1632010-02-04 02:40:39 +00001251 // Add the regs to the liveout set for the function.
1252 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1253 for (unsigned i = 0; i != RVLocs.size(); ++i)
1254 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1255 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001256
Dan Gohman475871a2008-07-27 21:46:04 +00001257 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001258
Dan Gohman475871a2008-07-27 21:46:04 +00001259 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001260 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1261 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001262 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1263 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001264
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001265 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001266 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1267 CCValAssign &VA = RVLocs[i];
1268 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001269 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001270 EVT ValVT = ValToCopy.getValueType();
1271
Dale Johannesenc4510512010-09-24 19:05:48 +00001272 // If this is x86-64, and we disabled SSE, we can't return FP values,
1273 // or SSE or MMX vectors.
1274 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1275 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1276 (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001277 report_fatal_error("SSE register return with SSE disabled");
1278 }
1279 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1280 // llvm-gcc has never done it right and no one has noticed, so this
1281 // should be OK for now.
1282 if (ValVT == MVT::f64 &&
Chris Lattner83069682010-08-26 05:51:22 +00001283 (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001284 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001285
Chris Lattner447ff682008-03-11 03:23:40 +00001286 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1287 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001288 if (VA.getLocReg() == X86::ST0 ||
1289 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001290 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1291 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001292 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001293 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001294 RetOps.push_back(ValToCopy);
1295 // Don't emit a copytoreg.
1296 continue;
1297 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001298
Evan Cheng242b38b2009-02-23 09:03:22 +00001299 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1300 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001301 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001302 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001303 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001304 ValToCopy = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001305 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1306 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001307 // If we don't have SSE2 available, convert to v4f32 so the generated
1308 // register is legal.
1309 if (!Subtarget->hasSSE2())
1310 ValToCopy = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32,ValToCopy);
1311 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001312 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001313 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001314
Dale Johannesendd64c412009-02-04 00:33:20 +00001315 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001316 Flag = Chain.getValue(1);
1317 }
Dan Gohman61a92132008-04-21 23:59:07 +00001318
1319 // The x86-64 ABI for returning structs by value requires that we copy
1320 // the sret argument into %rax for the return. We saved the argument into
1321 // a virtual register in the entry block, so now we copy the value out
1322 // and into %rax.
1323 if (Subtarget->is64Bit() &&
1324 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1325 MachineFunction &MF = DAG.getMachineFunction();
1326 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1327 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001328 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001329 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001330 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001331
Dale Johannesendd64c412009-02-04 00:33:20 +00001332 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001333 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001334
1335 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001336 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001337 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001338
Chris Lattner447ff682008-03-11 03:23:40 +00001339 RetOps[0] = Chain; // Update chain.
1340
1341 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001342 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001343 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001344
1345 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001346 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001347}
1348
Dan Gohman98ca4f22009-08-05 01:29:28 +00001349/// LowerCallResult - Lower the result values of a call into the
1350/// appropriate copies out of appropriate physical registers.
1351///
1352SDValue
1353X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001354 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001355 const SmallVectorImpl<ISD::InputArg> &Ins,
1356 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001357 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001358
Chris Lattnere32bbf62007-02-28 07:09:55 +00001359 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001360 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001361 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001362 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Owen Andersone922c022009-07-22 00:24:57 +00001363 RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001364 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001365
Chris Lattner3085e152007-02-25 08:59:22 +00001366 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001367 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001368 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001369 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001370
Torok Edwin3f142c32009-02-01 18:15:56 +00001371 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001372 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Dan Gohman98ca4f22009-08-05 01:29:28 +00001373 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001374 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001375 }
1376
Evan Cheng79fb3b42009-02-20 20:43:02 +00001377 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001378
1379 // If this is a call to a function that returns an fp value on the floating
1380 // point stack, we must guarantee the the value is popped from the stack, so
1381 // a CopyFromReg is not good enough - the copy instruction may be eliminated
1382 // if the return value is not used. We use the FpGET_ST0 instructions
1383 // instead.
1384 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1385 // If we prefer to use the value in xmm registers, copy it out as f80 and
1386 // use a truncate to move it from fp stack reg to xmm reg.
1387 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1388 bool isST0 = VA.getLocReg() == X86::ST0;
1389 unsigned Opc = 0;
1390 if (CopyVT == MVT::f32) Opc = isST0 ? X86::FpGET_ST0_32:X86::FpGET_ST1_32;
1391 if (CopyVT == MVT::f64) Opc = isST0 ? X86::FpGET_ST0_64:X86::FpGET_ST1_64;
1392 if (CopyVT == MVT::f80) Opc = isST0 ? X86::FpGET_ST0_80:X86::FpGET_ST1_80;
1393 SDValue Ops[] = { Chain, InFlag };
1394 Chain = SDValue(DAG.getMachineNode(Opc, dl, CopyVT, MVT::Other, MVT::Flag,
1395 Ops, 2), 1);
1396 Val = Chain.getValue(0);
1397
1398 // Round the f80 to the right size, which also moves it to the appropriate
1399 // xmm register.
1400 if (CopyVT != VA.getValVT())
1401 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1402 // This truncation won't change the value.
1403 DAG.getIntPtrConstant(1));
1404 } else if (Is64Bit && CopyVT.isVector() && CopyVT.getSizeInBits() == 64) {
Evan Cheng242b38b2009-02-23 09:03:22 +00001405 // For x86-64, MMX values are returned in XMM0 / XMM1 except for v1i64.
1406 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1407 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001408 MVT::v2i64, InFlag).getValue(1);
Evan Cheng242b38b2009-02-23 09:03:22 +00001409 Val = Chain.getValue(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001410 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1411 Val, DAG.getConstant(0, MVT::i64));
Evan Cheng242b38b2009-02-23 09:03:22 +00001412 } else {
1413 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001414 MVT::i64, InFlag).getValue(1);
Evan Cheng242b38b2009-02-23 09:03:22 +00001415 Val = Chain.getValue(0);
1416 }
Evan Cheng79fb3b42009-02-20 20:43:02 +00001417 Val = DAG.getNode(ISD::BIT_CONVERT, dl, CopyVT, Val);
1418 } else {
1419 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1420 CopyVT, InFlag).getValue(1);
1421 Val = Chain.getValue(0);
1422 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001423 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001424 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001425 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001426
Dan Gohman98ca4f22009-08-05 01:29:28 +00001427 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001428}
1429
1430
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001431//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001432// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001433//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001434// StdCall calling convention seems to be standard for many Windows' API
1435// routines and around. It differs from C calling convention just a little:
1436// callee should clean up the stack, not caller. Symbols should be also
1437// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001438// For info on fast calling convention see Fast Calling Convention (tail call)
1439// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001440
Dan Gohman98ca4f22009-08-05 01:29:28 +00001441/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001442/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001443static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1444 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001445 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001446
Dan Gohman98ca4f22009-08-05 01:29:28 +00001447 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001448}
1449
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001450/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001451/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001452static bool
1453ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1454 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001455 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001456
Dan Gohman98ca4f22009-08-05 01:29:28 +00001457 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001458}
1459
Dan Gohman095cc292008-09-13 01:54:27 +00001460/// CCAssignFnForNode - Selects the correct CCAssignFn for a the
1461/// given CallingConvention value.
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001462CCAssignFn *X86TargetLowering::CCAssignFnForNode(CallingConv::ID CC) const {
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00001463 if (Subtarget->is64Bit()) {
Chris Lattner29689432010-03-11 00:22:57 +00001464 if (CC == CallingConv::GHC)
1465 return CC_X86_64_GHC;
1466 else if (Subtarget->isTargetWin64())
Anton Korobeynikov8f88cb02008-03-22 20:37:30 +00001467 return CC_X86_Win64_C;
Evan Chenge9ac9e62008-09-07 09:07:23 +00001468 else
1469 return CC_X86_64_C;
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00001470 }
1471
Gordon Henriksen86737662008-01-05 16:56:59 +00001472 if (CC == CallingConv::X86_FastCall)
1473 return CC_X86_32_FastCall;
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001474 else if (CC == CallingConv::X86_ThisCall)
1475 return CC_X86_32_ThisCall;
Evan Chengb188dd92008-09-10 18:25:29 +00001476 else if (CC == CallingConv::Fast)
1477 return CC_X86_32_FastCC;
Chris Lattner29689432010-03-11 00:22:57 +00001478 else if (CC == CallingConv::GHC)
1479 return CC_X86_32_GHC;
Gordon Henriksen86737662008-01-05 16:56:59 +00001480 else
1481 return CC_X86_32_C;
1482}
1483
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001484/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1485/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001486/// the specific parameter attribute. The copy will be passed as a byval
1487/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001488static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001489CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001490 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1491 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001492 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001493
Dale Johannesendd64c412009-02-04 00:33:20 +00001494 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Mon P Wang20adc9d2010-04-04 03:10:48 +00001495 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001496 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001497}
1498
Chris Lattner29689432010-03-11 00:22:57 +00001499/// IsTailCallConvention - Return true if the calling convention is one that
1500/// supports tail call optimization.
1501static bool IsTailCallConvention(CallingConv::ID CC) {
1502 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1503}
1504
Evan Cheng0c439eb2010-01-27 00:07:07 +00001505/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1506/// a tailcall target by changing its ABI.
1507static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001508 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001509}
1510
Dan Gohman98ca4f22009-08-05 01:29:28 +00001511SDValue
1512X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001513 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001514 const SmallVectorImpl<ISD::InputArg> &Ins,
1515 DebugLoc dl, SelectionDAG &DAG,
1516 const CCValAssign &VA,
1517 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001518 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001519 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001520 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001521 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001522 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001523 EVT ValVT;
1524
1525 // If value is passed by pointer we have address passed instead of the value
1526 // itself.
1527 if (VA.getLocInfo() == CCValAssign::Indirect)
1528 ValVT = VA.getLocVT();
1529 else
1530 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001531
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001532 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001533 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001534 // In case of tail call optimization mark all arguments mutable. Since they
1535 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001536 if (Flags.isByVal()) {
1537 int FI = MFI->CreateFixedObject(Flags.getByValSize(),
Evan Chenged2ae132010-07-03 00:40:23 +00001538 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001539 return DAG.getFrameIndex(FI, getPointerTy());
1540 } else {
1541 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001542 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001543 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1544 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001545 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001546 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001547 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001548}
1549
Dan Gohman475871a2008-07-27 21:46:04 +00001550SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001551X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001552 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001553 bool isVarArg,
1554 const SmallVectorImpl<ISD::InputArg> &Ins,
1555 DebugLoc dl,
1556 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001557 SmallVectorImpl<SDValue> &InVals)
1558 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001559 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001560 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001561
Gordon Henriksen86737662008-01-05 16:56:59 +00001562 const Function* Fn = MF.getFunction();
1563 if (Fn->hasExternalLinkage() &&
1564 Subtarget->isTargetCygMing() &&
1565 Fn->getName() == "main")
1566 FuncInfo->setForceFramePointer(true);
1567
Evan Cheng1bc78042006-04-26 01:20:17 +00001568 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001569 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001570 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001571
Chris Lattner29689432010-03-11 00:22:57 +00001572 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1573 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001574
Chris Lattner638402b2007-02-28 07:00:42 +00001575 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001576 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001577 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1578 ArgLocs, *DAG.getContext());
1579 CCInfo.AnalyzeFormalArguments(Ins, CCAssignFnForNode(CallConv));
Scott Michelfdc40a02009-02-17 22:15:04 +00001580
Chris Lattnerf39f7712007-02-28 05:46:49 +00001581 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001582 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001583 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1584 CCValAssign &VA = ArgLocs[i];
1585 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1586 // places.
1587 assert(VA.getValNo() != LastVal &&
1588 "Don't support value assigned to multiple locs yet");
1589 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001590
Chris Lattnerf39f7712007-02-28 05:46:49 +00001591 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001592 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001593 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001594 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001595 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001596 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001597 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001598 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001599 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001600 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001601 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001602 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1603 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001604 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001605 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001606 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001607 RC = X86::VR64RegisterClass;
1608 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001609 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001610
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001611 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001612 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001613
Chris Lattnerf39f7712007-02-28 05:46:49 +00001614 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1615 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1616 // right size.
1617 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001618 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001619 DAG.getValueType(VA.getValVT()));
1620 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001621 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001622 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001623 else if (VA.getLocInfo() == CCValAssign::BCvt)
Anton Korobeynikov6dde14b2009-08-03 08:14:14 +00001624 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001625
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001626 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001627 // Handle MMX values passed in XMM regs.
1628 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001629 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1630 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001631 } else
1632 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001633 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001634 } else {
1635 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001636 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001637 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001638
1639 // If value is passed via pointer - do a load.
1640 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001641 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1642 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001643
Dan Gohman98ca4f22009-08-05 01:29:28 +00001644 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001645 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001646
Dan Gohman61a92132008-04-21 23:59:07 +00001647 // The x86-64 ABI for returning structs by value requires that we copy
1648 // the sret argument into %rax for the return. Save the argument into
1649 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001650 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001651 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1652 unsigned Reg = FuncInfo->getSRetReturnReg();
1653 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001654 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001655 FuncInfo->setSRetReturnReg(Reg);
1656 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001657 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001658 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001659 }
1660
Chris Lattnerf39f7712007-02-28 05:46:49 +00001661 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001662 // Align stack specially for tail calls.
1663 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001664 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001665
Evan Cheng1bc78042006-04-26 01:20:17 +00001666 // If the function takes variable number of arguments, make a frame index for
1667 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001668 if (isVarArg) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001669 if (!IsWin64 && (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1670 CallConv != CallingConv::X86_ThisCall))) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001671 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001672 }
1673 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001674 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1675
1676 // FIXME: We should really autogenerate these arrays
1677 static const unsigned GPR64ArgRegsWin64[] = {
1678 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001679 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001680 static const unsigned GPR64ArgRegs64Bit[] = {
1681 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1682 };
1683 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001684 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1685 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1686 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001687 const unsigned *GPR64ArgRegs;
1688 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001689
1690 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001691 // The XMM registers which might contain var arg parameters are shadowed
1692 // in their paired GPR. So we only need to save the GPR to their home
1693 // slots.
1694 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001695 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001696 } else {
1697 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1698 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001699
1700 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001701 }
1702 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1703 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001704
Devang Patel578efa92009-06-05 21:57:13 +00001705 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Evan Chengc7ce29b2009-02-13 22:36:38 +00001706 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001707 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001708 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001709 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001710 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasSSE1())
Torok Edwin3f142c32009-02-01 18:15:56 +00001711 // Kernel mode asks for SSE to be disabled, so don't push them
1712 // on the stack.
1713 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001714
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001715 if (IsWin64) {
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001716 const TargetFrameInfo &TFI = *getTargetMachine().getFrameInfo();
1717 // Get to the caller-allocated home save location. Add 8 to account
1718 // for the return address.
1719 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001720 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001721 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001722 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
1723 } else {
1724 // For X86-64, if there are vararg parameters that are passed via
1725 // registers, then we must store them to their spots on the stack so they
1726 // may be loaded by deferencing the result of va_next.
1727 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1728 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1729 FuncInfo->setRegSaveFrameIndex(
1730 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001731 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001732 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001733
Gordon Henriksen86737662008-01-05 16:56:59 +00001734 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001735 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001736 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1737 getPointerTy());
1738 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001739 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001740 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1741 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001742 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
1743 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001744 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001745 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001746 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001747 MachinePointerInfo::getFixedStack(
1748 FuncInfo->getRegSaveFrameIndex(), Offset),
1749 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001750 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001751 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001752 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001753
Dan Gohmanface41a2009-08-16 21:24:25 +00001754 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1755 // Now store the XMM (fp + vector) parameter registers.
1756 SmallVector<SDValue, 11> SaveXMMOps;
1757 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001758
Dan Gohmanface41a2009-08-16 21:24:25 +00001759 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
1760 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1761 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001762
Dan Gohman1e93df62010-04-17 14:41:14 +00001763 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1764 FuncInfo->getRegSaveFrameIndex()));
1765 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1766 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001767
Dan Gohmanface41a2009-08-16 21:24:25 +00001768 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001769 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Dan Gohmanface41a2009-08-16 21:24:25 +00001770 X86::VR128RegisterClass);
1771 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1772 SaveXMMOps.push_back(Val);
1773 }
1774 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1775 MVT::Other,
1776 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001777 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001778
1779 if (!MemOps.empty())
1780 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1781 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001782 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001783 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001784
Gordon Henriksen86737662008-01-05 16:56:59 +00001785 // Some CCs need callee pop.
Dan Gohman4d3d6e12010-05-27 18:43:40 +00001786 if (Subtarget->IsCalleePop(isVarArg, CallConv)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001787 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001788 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001789 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001790 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001791 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001792 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001793 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001794
Gordon Henriksen86737662008-01-05 16:56:59 +00001795 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001796 // RegSaveFrameIndex is X86-64 only.
1797 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001798 if (CallConv == CallingConv::X86_FastCall ||
1799 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001800 // fastcc functions can't have varargs.
1801 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001802 }
Evan Cheng25caf632006-05-23 21:06:34 +00001803
Dan Gohman98ca4f22009-08-05 01:29:28 +00001804 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001805}
1806
Dan Gohman475871a2008-07-27 21:46:04 +00001807SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001808X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1809 SDValue StackPtr, SDValue Arg,
1810 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001811 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001812 ISD::ArgFlagsTy Flags) const {
Anton Korobeynikovc7c62bb2010-09-02 22:31:32 +00001813 const unsigned FirstStackArgOffset = (Subtarget->isTargetWin64() ? 32 : 0);
1814 unsigned LocMemOffset = FirstStackArgOffset + VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001815 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001816 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001817 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001818 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001819
1820 return DAG.getStore(Chain, dl, Arg, PtrOff,
1821 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001822 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001823}
1824
Bill Wendling64e87322009-01-16 19:25:27 +00001825/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001826/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001827SDValue
1828X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001829 SDValue &OutRetAddr, SDValue Chain,
1830 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001831 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001832 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001833 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001834 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001835
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001836 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001837 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1838 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001839 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001840}
1841
1842/// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1843/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001844static SDValue
1845EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001846 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001847 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001848 // Store the return address to the appropriate stack slot.
1849 if (!FPDiff) return Chain;
1850 // Calculate the new stack slot for the return address.
1851 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001852 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001853 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001854 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001855 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001856 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001857 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001858 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001859 return Chain;
1860}
1861
Dan Gohman98ca4f22009-08-05 01:29:28 +00001862SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001863X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001864 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001865 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001866 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001867 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001868 const SmallVectorImpl<ISD::InputArg> &Ins,
1869 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001870 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001871 MachineFunction &MF = DAG.getMachineFunction();
1872 bool Is64Bit = Subtarget->is64Bit();
1873 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00001874 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001875
Evan Cheng5f941932010-02-05 02:21:12 +00001876 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00001877 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00001878 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1879 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001880 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00001881
1882 // Sibcalls are automatically detected tailcalls which do not require
1883 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00001884 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00001885 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00001886
1887 if (isTailCall)
1888 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00001889 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00001890
Chris Lattner29689432010-03-11 00:22:57 +00001891 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1892 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001893
Chris Lattner638402b2007-02-28 07:00:42 +00001894 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00001895 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001896 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1897 ArgLocs, *DAG.getContext());
1898 CCInfo.AnalyzeCallOperands(Outs, CCAssignFnForNode(CallConv));
Scott Michelfdc40a02009-02-17 22:15:04 +00001899
Chris Lattner423c5f42007-02-28 05:31:48 +00001900 // Get a count of how many bytes are to be pushed on the stack.
1901 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00001902 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00001903 // This is a sibcall. The memory operands are available in caller's
1904 // own caller's stack.
1905 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00001906 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00001907 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001908
Gordon Henriksen86737662008-01-05 16:56:59 +00001909 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00001910 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001911 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00001912 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00001913 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1914 FPDiff = NumBytesCallerPushed - NumBytes;
1915
1916 // Set the delta of movement of the returnaddr stackslot.
1917 // But only set if delta is greater than previous delta.
1918 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1919 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
1920 }
1921
Evan Chengf22f9b32010-02-06 03:28:46 +00001922 if (!IsSibcall)
1923 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001924
Dan Gohman475871a2008-07-27 21:46:04 +00001925 SDValue RetAddrFrIdx;
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001926 // Load return adress for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00001927 if (isTailCall && FPDiff)
1928 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
1929 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00001930
Dan Gohman475871a2008-07-27 21:46:04 +00001931 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1932 SmallVector<SDValue, 8> MemOpChains;
1933 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00001934
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001935 // Walk the register/memloc assignments, inserting copies/loads. In the case
1936 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00001937 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1938 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001939 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00001940 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00001941 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00001942 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00001943
Chris Lattner423c5f42007-02-28 05:31:48 +00001944 // Promote the value if needed.
1945 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001946 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00001947 case CCValAssign::Full: break;
1948 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001949 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001950 break;
1951 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001952 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001953 break;
1954 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001955 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
1956 // Special case: passing MMX values in XMM registers.
Owen Anderson825b72b2009-08-11 20:47:22 +00001957 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
1958 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
1959 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001960 } else
1961 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
1962 break;
1963 case CCValAssign::BCvt:
1964 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001965 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001966 case CCValAssign::Indirect: {
1967 // Store the argument.
1968 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00001969 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001970 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00001971 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001972 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001973 Arg = SpillSlot;
1974 break;
1975 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00001976 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001977
Chris Lattner423c5f42007-02-28 05:31:48 +00001978 if (VA.isRegLoc()) {
1979 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00001980 if (isVarArg && Subtarget->isTargetWin64()) {
1981 // Win64 ABI requires argument XMM reg to be copied to the corresponding
1982 // shadow reg if callee is a varargs function.
1983 unsigned ShadowReg = 0;
1984 switch (VA.getLocReg()) {
1985 case X86::XMM0: ShadowReg = X86::RCX; break;
1986 case X86::XMM1: ShadowReg = X86::RDX; break;
1987 case X86::XMM2: ShadowReg = X86::R8; break;
1988 case X86::XMM3: ShadowReg = X86::R9; break;
1989 }
1990 if (ShadowReg)
1991 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
1992 }
Evan Chengf22f9b32010-02-06 03:28:46 +00001993 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00001994 assert(VA.isMemLoc());
1995 if (StackPtr.getNode() == 0)
1996 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
1997 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
1998 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001999 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002000 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002001
Evan Cheng32fe1032006-05-25 00:59:30 +00002002 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002003 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002004 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002005
Evan Cheng347d5f72006-04-28 21:29:37 +00002006 // Build a sequence of copy-to-reg nodes chained together with token chain
2007 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002008 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002009 // Tail call byval lowering might overwrite argument registers so in case of
2010 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002011 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002012 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002013 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002014 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002015 InFlag = Chain.getValue(1);
2016 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002017
Chris Lattner88e1fd52009-07-09 04:24:46 +00002018 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002019 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2020 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002021 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002022 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2023 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002024 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002025 InFlag);
2026 InFlag = Chain.getValue(1);
2027 } else {
2028 // If we are tail calling and generating PIC/GOT style code load the
2029 // address of the callee into ECX. The value in ecx is used as target of
2030 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2031 // for tail calls on PIC/GOT architectures. Normally we would just put the
2032 // address of GOT into ebx and then call target@PLT. But for tail calls
2033 // ebx would be restored (since ebx is callee saved) before jumping to the
2034 // target@PLT.
2035
2036 // Note: The actual moving to ECX is done further down.
2037 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2038 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2039 !G->getGlobal()->hasProtectedVisibility())
2040 Callee = LowerGlobalAddress(Callee, DAG);
2041 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002042 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002043 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002044 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002045
Nate Begemanc8ea6732010-07-21 20:49:52 +00002046 if (Is64Bit && isVarArg && !Subtarget->isTargetWin64()) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002047 // From AMD64 ABI document:
2048 // For calls that may call functions that use varargs or stdargs
2049 // (prototype-less calls or calls to functions containing ellipsis (...) in
2050 // the declaration) %al is used as hidden argument to specify the number
2051 // of SSE registers used. The contents of %al do not need to match exactly
2052 // the number of registers, but must be an ubound on the number of SSE
2053 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002054
Gordon Henriksen86737662008-01-05 16:56:59 +00002055 // Count the number of XMM registers allocated.
2056 static const unsigned XMMArgRegs[] = {
2057 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2058 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2059 };
2060 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Scott Michelfdc40a02009-02-17 22:15:04 +00002061 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002062 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002063
Dale Johannesendd64c412009-02-04 00:33:20 +00002064 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002065 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002066 InFlag = Chain.getValue(1);
2067 }
2068
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002069
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002070 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002071 if (isTailCall) {
2072 // Force all the incoming stack arguments to be loaded from the stack
2073 // before any new outgoing arguments are stored to the stack, because the
2074 // outgoing stack slots may alias the incoming argument stack slots, and
2075 // the alias isn't otherwise explicit. This is slightly more conservative
2076 // than necessary, because it means that each store effectively depends
2077 // on every argument instead of just those arguments it would clobber.
2078 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2079
Dan Gohman475871a2008-07-27 21:46:04 +00002080 SmallVector<SDValue, 8> MemOpChains2;
2081 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002082 int FI = 0;
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002083 // Do not flag preceeding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002084 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002085 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002086 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2087 CCValAssign &VA = ArgLocs[i];
2088 if (VA.isRegLoc())
2089 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002090 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002091 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002092 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002093 // Create frame index.
2094 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002095 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002096 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002097 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002098
Duncan Sands276dcbd2008-03-21 09:14:45 +00002099 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002100 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002101 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002102 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002103 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002104 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002105 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002106
Dan Gohman98ca4f22009-08-05 01:29:28 +00002107 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2108 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002109 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002110 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002111 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002112 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002113 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002114 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002115 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002116 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002117 }
2118 }
2119
2120 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002121 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002122 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002123
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002124 // Copy arguments to their registers.
2125 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002126 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002127 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002128 InFlag = Chain.getValue(1);
2129 }
Dan Gohman475871a2008-07-27 21:46:04 +00002130 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002131
Gordon Henriksen86737662008-01-05 16:56:59 +00002132 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002133 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002134 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002135 }
2136
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002137 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2138 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2139 // In the 64-bit large code model, we have to make all calls
2140 // through a register, since the call instruction's 32-bit
2141 // pc-relative offset may not be large enough to hold the whole
2142 // address.
2143 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002144 // If the callee is a GlobalAddress node (quite common, every direct call
2145 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2146 // it.
2147
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002148 // We should use extra load for direct calls to dllimported functions in
2149 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002150 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002151 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002152 unsigned char OpFlags = 0;
Eric Christopherfd179292009-08-27 18:07:15 +00002153
Chris Lattner48a7d022009-07-09 05:02:21 +00002154 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2155 // external symbols most go through the PLT in PIC mode. If the symbol
2156 // has hidden or protected visibility, or if it is static or local, then
2157 // we don't need to use the PLT - we can directly call it.
2158 if (Subtarget->isTargetELF() &&
2159 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002160 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002161 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002162 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002163 (GV->isDeclaration() || GV->isWeakForLinker()) &&
2164 Subtarget->getDarwinVers() < 9) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002165 // PC-relative references to external symbols should go through $stub,
2166 // unless we're building with the leopard linker or later, which
2167 // automatically synthesizes these stubs.
2168 OpFlags = X86II::MO_DARWIN_STUB;
2169 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002170
Devang Patel0d881da2010-07-06 22:08:15 +00002171 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002172 G->getOffset(), OpFlags);
2173 }
Bill Wendling056292f2008-09-16 21:48:12 +00002174 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002175 unsigned char OpFlags = 0;
2176
2177 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to external
2178 // symbols should go through the PLT.
2179 if (Subtarget->isTargetELF() &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002180 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002181 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002182 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002183 Subtarget->getDarwinVers() < 9) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002184 // PC-relative references to external symbols should go through $stub,
2185 // unless we're building with the leopard linker or later, which
2186 // automatically synthesizes these stubs.
2187 OpFlags = X86II::MO_DARWIN_STUB;
2188 }
Eric Christopherfd179292009-08-27 18:07:15 +00002189
Chris Lattner48a7d022009-07-09 05:02:21 +00002190 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2191 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002192 }
2193
Chris Lattnerd96d0722007-02-25 06:40:16 +00002194 // Returns a chain & a flag for retval copy to use.
Owen Anderson825b72b2009-08-11 20:47:22 +00002195 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00002196 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002197
Evan Chengf22f9b32010-02-06 03:28:46 +00002198 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002199 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2200 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002201 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002202 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002203
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002204 Ops.push_back(Chain);
2205 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002206
Dan Gohman98ca4f22009-08-05 01:29:28 +00002207 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002208 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002209
Gordon Henriksen86737662008-01-05 16:56:59 +00002210 // Add argument registers to the end of the list so that they are known live
2211 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002212 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2213 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2214 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002215
Evan Cheng586ccac2008-03-18 23:36:35 +00002216 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002217 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002218 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2219
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002220 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
2221 if (Is64Bit && isVarArg && !Subtarget->isTargetWin64())
Owen Anderson825b72b2009-08-11 20:47:22 +00002222 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002223
Gabor Greifba36cb52008-08-28 21:40:38 +00002224 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002225 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002226
Dan Gohman98ca4f22009-08-05 01:29:28 +00002227 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002228 // We used to do:
2229 //// If this is the first return lowered for this function, add the regs
2230 //// to the liveout set for the function.
2231 // This isn't right, although it's probably harmless on x86; liveouts
2232 // should be computed from returns not tail calls. Consider a void
2233 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002234 return DAG.getNode(X86ISD::TC_RETURN, dl,
2235 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002236 }
2237
Dale Johannesenace16102009-02-03 19:33:06 +00002238 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002239 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002240
Chris Lattner2d297092006-05-23 18:50:38 +00002241 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002242 unsigned NumBytesForCalleeToPush;
Dan Gohman4d3d6e12010-05-27 18:43:40 +00002243 if (Subtarget->IsCalleePop(isVarArg, CallConv))
Gordon Henriksen86737662008-01-05 16:56:59 +00002244 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002245 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002246 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002247 // pops the hidden struct pointer, so we have to push it back.
2248 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002249 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002250 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002251 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002252
Gordon Henriksenae636f82008-01-03 16:47:34 +00002253 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002254 if (!IsSibcall) {
2255 Chain = DAG.getCALLSEQ_END(Chain,
2256 DAG.getIntPtrConstant(NumBytes, true),
2257 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2258 true),
2259 InFlag);
2260 InFlag = Chain.getValue(1);
2261 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002262
Chris Lattner3085e152007-02-25 08:59:22 +00002263 // Handle result values, copying them out of physregs into vregs that we
2264 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002265 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2266 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002267}
2268
Evan Cheng25ab6902006-09-08 06:48:29 +00002269
2270//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002271// Fast Calling Convention (tail call) implementation
2272//===----------------------------------------------------------------------===//
2273
2274// Like std call, callee cleans arguments, convention except that ECX is
2275// reserved for storing the tail called function address. Only 2 registers are
2276// free for argument passing (inreg). Tail call optimization is performed
2277// provided:
2278// * tailcallopt is enabled
2279// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002280// On X86_64 architecture with GOT-style position independent code only local
2281// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002282// To keep the stack aligned according to platform abi the function
2283// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2284// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002285// If a tail called function callee has more arguments than the caller the
2286// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002287// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002288// original REtADDR, but before the saved framepointer or the spilled registers
2289// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2290// stack layout:
2291// arg1
2292// arg2
2293// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002294// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002295// move area ]
2296// (possible EBP)
2297// ESI
2298// EDI
2299// local1 ..
2300
2301/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2302/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002303unsigned
2304X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2305 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002306 MachineFunction &MF = DAG.getMachineFunction();
2307 const TargetMachine &TM = MF.getTarget();
2308 const TargetFrameInfo &TFI = *TM.getFrameInfo();
2309 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002310 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002311 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002312 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002313 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2314 // Number smaller than 12 so just add the difference.
2315 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2316 } else {
2317 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002318 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002319 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002320 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002321 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002322}
2323
Evan Cheng5f941932010-02-05 02:21:12 +00002324/// MatchingStackOffset - Return true if the given stack call argument is
2325/// already available in the same position (relatively) of the caller's
2326/// incoming argument stack.
2327static
2328bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2329 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2330 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002331 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2332 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002333 if (Arg.getOpcode() == ISD::CopyFromReg) {
2334 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
2335 if (!VR || TargetRegisterInfo::isPhysicalRegister(VR))
2336 return false;
2337 MachineInstr *Def = MRI->getVRegDef(VR);
2338 if (!Def)
2339 return false;
2340 if (!Flags.isByVal()) {
2341 if (!TII->isLoadFromStackSlot(Def, FI))
2342 return false;
2343 } else {
2344 unsigned Opcode = Def->getOpcode();
2345 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2346 Def->getOperand(1).isFI()) {
2347 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002348 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002349 } else
2350 return false;
2351 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002352 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2353 if (Flags.isByVal())
2354 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002355 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002356 // define @foo(%struct.X* %A) {
2357 // tail call @bar(%struct.X* byval %A)
2358 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002359 return false;
2360 SDValue Ptr = Ld->getBasePtr();
2361 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2362 if (!FINode)
2363 return false;
2364 FI = FINode->getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002365 } else
2366 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002367
Evan Cheng4cae1332010-03-05 08:38:04 +00002368 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002369 if (!MFI->isFixedObjectIndex(FI))
2370 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002371 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002372}
2373
Dan Gohman98ca4f22009-08-05 01:29:28 +00002374/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2375/// for tail call optimization. Targets which want to do tail call
2376/// optimization should implement this function.
2377bool
2378X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002379 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002380 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002381 bool isCalleeStructRet,
2382 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002383 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002384 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002385 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002386 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002387 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002388 CalleeCC != CallingConv::C)
2389 return false;
2390
Evan Cheng7096ae42010-01-29 06:45:59 +00002391 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002392 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002393 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002394 CallingConv::ID CallerCC = CallerF->getCallingConv();
2395 bool CCMatch = CallerCC == CalleeCC;
2396
Dan Gohman1797ed52010-02-08 20:27:50 +00002397 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002398 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002399 return true;
2400 return false;
2401 }
2402
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002403 // Look for obvious safe cases to perform tail call optimization that do not
2404 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002405
Evan Cheng2c12cb42010-03-26 16:26:03 +00002406 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2407 // emit a special epilogue.
2408 if (RegInfo->needsStackRealignment(MF))
2409 return false;
2410
Eric Christopher90eb4022010-07-22 00:26:08 +00002411 // Do not sibcall optimize vararg calls unless the call site is not passing
2412 // any arguments.
Evan Cheng3c262ee2010-03-26 02:13:13 +00002413 if (isVarArg && !Outs.empty())
Evan Cheng843bd692010-01-31 06:44:49 +00002414 return false;
2415
Evan Chenga375d472010-03-15 18:54:48 +00002416 // Also avoid sibcall optimization if either caller or callee uses struct
2417 // return semantics.
2418 if (isCalleeStructRet || isCallerStructRet)
2419 return false;
2420
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002421 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2422 // Therefore if it's not used by the call it is not safe to optimize this into
2423 // a sibcall.
2424 bool Unused = false;
2425 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2426 if (!Ins[i].Used) {
2427 Unused = true;
2428 break;
2429 }
2430 }
2431 if (Unused) {
2432 SmallVector<CCValAssign, 16> RVLocs;
2433 CCState CCInfo(CalleeCC, false, getTargetMachine(),
2434 RVLocs, *DAG.getContext());
2435 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002436 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002437 CCValAssign &VA = RVLocs[i];
2438 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2439 return false;
2440 }
2441 }
2442
Evan Cheng13617962010-04-30 01:12:32 +00002443 // If the calling conventions do not match, then we'd better make sure the
2444 // results are returned in the same way as what the caller expects.
2445 if (!CCMatch) {
2446 SmallVector<CCValAssign, 16> RVLocs1;
2447 CCState CCInfo1(CalleeCC, false, getTargetMachine(),
2448 RVLocs1, *DAG.getContext());
2449 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2450
2451 SmallVector<CCValAssign, 16> RVLocs2;
2452 CCState CCInfo2(CallerCC, false, getTargetMachine(),
2453 RVLocs2, *DAG.getContext());
2454 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2455
2456 if (RVLocs1.size() != RVLocs2.size())
2457 return false;
2458 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2459 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2460 return false;
2461 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2462 return false;
2463 if (RVLocs1[i].isRegLoc()) {
2464 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2465 return false;
2466 } else {
2467 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2468 return false;
2469 }
2470 }
2471 }
2472
Evan Chenga6bff982010-01-30 01:22:00 +00002473 // If the callee takes no arguments then go on to check the results of the
2474 // call.
2475 if (!Outs.empty()) {
2476 // Check if stack adjustment is needed. For now, do not do this if any
2477 // argument is passed on the stack.
2478 SmallVector<CCValAssign, 16> ArgLocs;
2479 CCState CCInfo(CalleeCC, isVarArg, getTargetMachine(),
2480 ArgLocs, *DAG.getContext());
2481 CCInfo.AnalyzeCallOperands(Outs, CCAssignFnForNode(CalleeCC));
Evan Chengb2c92902010-02-02 02:22:50 +00002482 if (CCInfo.getNextStackOffset()) {
2483 MachineFunction &MF = DAG.getMachineFunction();
2484 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2485 return false;
2486 if (Subtarget->isTargetWin64())
2487 // Win64 ABI has additional complications.
2488 return false;
2489
2490 // Check if the arguments are already laid out in the right way as
2491 // the caller's fixed stack objects.
2492 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002493 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2494 const X86InstrInfo *TII =
2495 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002496 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2497 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002498 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002499 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002500 if (VA.getLocInfo() == CCValAssign::Indirect)
2501 return false;
2502 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002503 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2504 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002505 return false;
2506 }
2507 }
2508 }
Evan Cheng9c044672010-05-29 01:35:22 +00002509
2510 // If the tailcall address may be in a register, then make sure it's
2511 // possible to register allocate for it. In 32-bit, the call address can
2512 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002513 // callee-saved registers are restored. These happen to be the same
2514 // registers used to pass 'inreg' arguments so watch out for those.
2515 if (!Subtarget->is64Bit() &&
2516 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002517 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002518 unsigned NumInRegs = 0;
2519 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2520 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002521 if (!VA.isRegLoc())
2522 continue;
2523 unsigned Reg = VA.getLocReg();
2524 switch (Reg) {
2525 default: break;
2526 case X86::EAX: case X86::EDX: case X86::ECX:
2527 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002528 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002529 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002530 }
2531 }
2532 }
Evan Chenga6bff982010-01-30 01:22:00 +00002533 }
Evan Chengb1712452010-01-27 06:25:16 +00002534
Evan Cheng86809cc2010-02-03 03:28:02 +00002535 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002536}
2537
Dan Gohman3df24e62008-09-03 23:12:08 +00002538FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002539X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2540 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002541}
2542
2543
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002544//===----------------------------------------------------------------------===//
2545// Other Lowering Hooks
2546//===----------------------------------------------------------------------===//
2547
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002548static bool MayFoldLoad(SDValue Op) {
2549 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2550}
2551
2552static bool MayFoldIntoStore(SDValue Op) {
2553 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2554}
2555
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002556static bool isTargetShuffle(unsigned Opcode) {
2557 switch(Opcode) {
2558 default: return false;
2559 case X86ISD::PSHUFD:
2560 case X86ISD::PSHUFHW:
2561 case X86ISD::PSHUFLW:
2562 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002563 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002564 case X86ISD::SHUFPS:
2565 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002566 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002567 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002568 case X86ISD::MOVLPS:
2569 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002570 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002571 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002572 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002573 case X86ISD::MOVSS:
2574 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002575 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002576 case X86ISD::UNPCKLPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002577 case X86ISD::PUNPCKLWD:
2578 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002579 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002580 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002581 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002582 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002583 case X86ISD::PUNPCKHWD:
2584 case X86ISD::PUNPCKHBW:
2585 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002586 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002587 return true;
2588 }
2589 return false;
2590}
2591
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002592static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002593 SDValue V1, SelectionDAG &DAG) {
2594 switch(Opc) {
2595 default: llvm_unreachable("Unknown x86 shuffle node");
2596 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002597 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002598 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002599 return DAG.getNode(Opc, dl, VT, V1);
2600 }
2601
2602 return SDValue();
2603}
2604
2605static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002606 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002607 switch(Opc) {
2608 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002609 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002610 case X86ISD::PSHUFHW:
2611 case X86ISD::PSHUFLW:
2612 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2613 }
2614
2615 return SDValue();
2616}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002617
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002618static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2619 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2620 switch(Opc) {
2621 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002622 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002623 case X86ISD::SHUFPD:
2624 case X86ISD::SHUFPS:
2625 return DAG.getNode(Opc, dl, VT, V1, V2,
2626 DAG.getConstant(TargetMask, MVT::i8));
2627 }
2628 return SDValue();
2629}
2630
2631static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2632 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2633 switch(Opc) {
2634 default: llvm_unreachable("Unknown x86 shuffle node");
2635 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002636 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002637 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002638 case X86ISD::MOVLPS:
2639 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002640 case X86ISD::MOVSS:
2641 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002642 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002643 case X86ISD::UNPCKLPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002644 case X86ISD::PUNPCKLWD:
2645 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002646 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002647 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002648 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002649 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002650 case X86ISD::PUNPCKHWD:
2651 case X86ISD::PUNPCKHBW:
2652 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002653 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002654 return DAG.getNode(Opc, dl, VT, V1, V2);
2655 }
2656 return SDValue();
2657}
2658
Dan Gohmand858e902010-04-17 15:26:15 +00002659SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002660 MachineFunction &MF = DAG.getMachineFunction();
2661 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2662 int ReturnAddrIndex = FuncInfo->getRAIndex();
2663
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002664 if (ReturnAddrIndex == 0) {
2665 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002666 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002667 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002668 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002669 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002670 }
2671
Evan Cheng25ab6902006-09-08 06:48:29 +00002672 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002673}
2674
2675
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002676bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2677 bool hasSymbolicDisplacement) {
2678 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002679 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002680 return false;
2681
2682 // If we don't have a symbolic displacement - we don't have any extra
2683 // restrictions.
2684 if (!hasSymbolicDisplacement)
2685 return true;
2686
2687 // FIXME: Some tweaks might be needed for medium code model.
2688 if (M != CodeModel::Small && M != CodeModel::Kernel)
2689 return false;
2690
2691 // For small code model we assume that latest object is 16MB before end of 31
2692 // bits boundary. We may also accept pretty large negative constants knowing
2693 // that all objects are in the positive half of address space.
2694 if (M == CodeModel::Small && Offset < 16*1024*1024)
2695 return true;
2696
2697 // For kernel code model we know that all object resist in the negative half
2698 // of 32bits address space. We may not accept negative offsets, since they may
2699 // be just off and we may accept pretty large positive ones.
2700 if (M == CodeModel::Kernel && Offset > 0)
2701 return true;
2702
2703 return false;
2704}
2705
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002706/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2707/// specific condition code, returning the condition code and the LHS/RHS of the
2708/// comparison to make.
2709static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2710 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002711 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002712 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2713 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2714 // X > -1 -> X == 0, jump !sign.
2715 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002716 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002717 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2718 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002719 return X86::COND_S;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002720 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002721 // X < 1 -> X <= 0
2722 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002723 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002724 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002725 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002726
Evan Chengd9558e02006-01-06 00:43:03 +00002727 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002728 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002729 case ISD::SETEQ: return X86::COND_E;
2730 case ISD::SETGT: return X86::COND_G;
2731 case ISD::SETGE: return X86::COND_GE;
2732 case ISD::SETLT: return X86::COND_L;
2733 case ISD::SETLE: return X86::COND_LE;
2734 case ISD::SETNE: return X86::COND_NE;
2735 case ISD::SETULT: return X86::COND_B;
2736 case ISD::SETUGT: return X86::COND_A;
2737 case ISD::SETULE: return X86::COND_BE;
2738 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002739 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002740 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002741
Chris Lattner4c78e022008-12-23 23:42:27 +00002742 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002743
Chris Lattner4c78e022008-12-23 23:42:27 +00002744 // If LHS is a foldable load, but RHS is not, flip the condition.
2745 if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) &&
2746 !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) {
2747 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2748 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002749 }
2750
Chris Lattner4c78e022008-12-23 23:42:27 +00002751 switch (SetCCOpcode) {
2752 default: break;
2753 case ISD::SETOLT:
2754 case ISD::SETOLE:
2755 case ISD::SETUGT:
2756 case ISD::SETUGE:
2757 std::swap(LHS, RHS);
2758 break;
2759 }
2760
2761 // On a floating point condition, the flags are set as follows:
2762 // ZF PF CF op
2763 // 0 | 0 | 0 | X > Y
2764 // 0 | 0 | 1 | X < Y
2765 // 1 | 0 | 0 | X == Y
2766 // 1 | 1 | 1 | unordered
2767 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002768 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002769 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002770 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002771 case ISD::SETOLT: // flipped
2772 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002773 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002774 case ISD::SETOLE: // flipped
2775 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002776 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002777 case ISD::SETUGT: // flipped
2778 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002779 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002780 case ISD::SETUGE: // flipped
2781 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002782 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002783 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002784 case ISD::SETNE: return X86::COND_NE;
2785 case ISD::SETUO: return X86::COND_P;
2786 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00002787 case ISD::SETOEQ:
2788 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00002789 }
Evan Chengd9558e02006-01-06 00:43:03 +00002790}
2791
Evan Cheng4a460802006-01-11 00:33:36 +00002792/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2793/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002794/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002795static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002796 switch (X86CC) {
2797 default:
2798 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00002799 case X86::COND_B:
2800 case X86::COND_BE:
2801 case X86::COND_E:
2802 case X86::COND_P:
2803 case X86::COND_A:
2804 case X86::COND_AE:
2805 case X86::COND_NE:
2806 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00002807 return true;
2808 }
2809}
2810
Evan Chengeb2f9692009-10-27 19:56:55 +00002811/// isFPImmLegal - Returns true if the target can instruction select the
2812/// specified FP immediate natively. If false, the legalizer will
2813/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00002814bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00002815 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
2816 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
2817 return true;
2818 }
2819 return false;
2820}
2821
Nate Begeman9008ca62009-04-27 18:41:29 +00002822/// isUndefOrInRange - Return true if Val is undef or if its value falls within
2823/// the specified range (L, H].
2824static bool isUndefOrInRange(int Val, int Low, int Hi) {
2825 return (Val < 0) || (Val >= Low && Val < Hi);
2826}
2827
2828/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
2829/// specified value.
2830static bool isUndefOrEqual(int Val, int CmpVal) {
2831 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00002832 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00002833 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00002834}
2835
Nate Begeman9008ca62009-04-27 18:41:29 +00002836/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
2837/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
2838/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00002839static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00002840 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00002841 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00002842 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00002843 return (Mask[0] < 2 && Mask[1] < 2);
2844 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002845}
2846
Nate Begeman9008ca62009-04-27 18:41:29 +00002847bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002848 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002849 N->getMask(M);
2850 return ::isPSHUFDMask(M, N->getValueType(0));
2851}
Evan Cheng0188ecb2006-03-22 18:59:22 +00002852
Nate Begeman9008ca62009-04-27 18:41:29 +00002853/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
2854/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00002855static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002856 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00002857 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002858
Nate Begeman9008ca62009-04-27 18:41:29 +00002859 // Lower quadword copied in order or undef.
2860 for (int i = 0; i != 4; ++i)
2861 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00002862 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002863
Evan Cheng506d3df2006-03-29 23:07:14 +00002864 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00002865 for (int i = 4; i != 8; ++i)
2866 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00002867 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002868
Evan Cheng506d3df2006-03-29 23:07:14 +00002869 return true;
2870}
2871
Nate Begeman9008ca62009-04-27 18:41:29 +00002872bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002873 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002874 N->getMask(M);
2875 return ::isPSHUFHWMask(M, N->getValueType(0));
2876}
Evan Cheng506d3df2006-03-29 23:07:14 +00002877
Nate Begeman9008ca62009-04-27 18:41:29 +00002878/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
2879/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00002880static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002881 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00002882 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002883
Rafael Espindola15684b22009-04-24 12:40:33 +00002884 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00002885 for (int i = 4; i != 8; ++i)
2886 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00002887 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002888
Rafael Espindola15684b22009-04-24 12:40:33 +00002889 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00002890 for (int i = 0; i != 4; ++i)
2891 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00002892 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002893
Rafael Espindola15684b22009-04-24 12:40:33 +00002894 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00002895}
2896
Nate Begeman9008ca62009-04-27 18:41:29 +00002897bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002898 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002899 N->getMask(M);
2900 return ::isPSHUFLWMask(M, N->getValueType(0));
2901}
2902
Nate Begemana09008b2009-10-19 02:17:23 +00002903/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
2904/// is suitable for input to PALIGNR.
2905static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
2906 bool hasSSSE3) {
2907 int i, e = VT.getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00002908
Nate Begemana09008b2009-10-19 02:17:23 +00002909 // Do not handle v2i64 / v2f64 shuffles with palignr.
2910 if (e < 4 || !hasSSSE3)
2911 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002912
Nate Begemana09008b2009-10-19 02:17:23 +00002913 for (i = 0; i != e; ++i)
2914 if (Mask[i] >= 0)
2915 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002916
Nate Begemana09008b2009-10-19 02:17:23 +00002917 // All undef, not a palignr.
2918 if (i == e)
2919 return false;
2920
2921 // Determine if it's ok to perform a palignr with only the LHS, since we
2922 // don't have access to the actual shuffle elements to see if RHS is undef.
2923 bool Unary = Mask[i] < (int)e;
2924 bool NeedsUnary = false;
2925
2926 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002927
Nate Begemana09008b2009-10-19 02:17:23 +00002928 // Check the rest of the elements to see if they are consecutive.
2929 for (++i; i != e; ++i) {
2930 int m = Mask[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00002931 if (m < 0)
Nate Begemana09008b2009-10-19 02:17:23 +00002932 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002933
Nate Begemana09008b2009-10-19 02:17:23 +00002934 Unary = Unary && (m < (int)e);
2935 NeedsUnary = NeedsUnary || (m < s);
2936
2937 if (NeedsUnary && !Unary)
2938 return false;
2939 if (Unary && m != ((s+i) & (e-1)))
2940 return false;
2941 if (!Unary && m != (s+i))
2942 return false;
2943 }
2944 return true;
2945}
2946
2947bool X86::isPALIGNRMask(ShuffleVectorSDNode *N) {
2948 SmallVector<int, 8> M;
2949 N->getMask(M);
2950 return ::isPALIGNRMask(M, N->getValueType(0), true);
2951}
2952
Evan Cheng14aed5e2006-03-24 01:18:28 +00002953/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
2954/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersone50ed302009-08-10 22:56:29 +00002955static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002956 int NumElems = VT.getVectorNumElements();
2957 if (NumElems != 2 && NumElems != 4)
2958 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002959
Nate Begeman9008ca62009-04-27 18:41:29 +00002960 int Half = NumElems / 2;
2961 for (int i = 0; i < Half; ++i)
2962 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002963 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002964 for (int i = Half; i < NumElems; ++i)
2965 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002966 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002967
Evan Cheng14aed5e2006-03-24 01:18:28 +00002968 return true;
2969}
2970
Nate Begeman9008ca62009-04-27 18:41:29 +00002971bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
2972 SmallVector<int, 8> M;
2973 N->getMask(M);
2974 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00002975}
2976
Evan Cheng213d2cf2007-05-17 18:45:50 +00002977/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00002978/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
2979/// half elements to come from vector 1 (which would equal the dest.) and
2980/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00002981static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002982 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00002983
2984 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00002985 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002986
Nate Begeman9008ca62009-04-27 18:41:29 +00002987 int Half = NumElems / 2;
2988 for (int i = 0; i < Half; ++i)
2989 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002990 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002991 for (int i = Half; i < NumElems; ++i)
2992 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002993 return false;
2994 return true;
2995}
2996
Nate Begeman9008ca62009-04-27 18:41:29 +00002997static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
2998 SmallVector<int, 8> M;
2999 N->getMask(M);
3000 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003001}
3002
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003003/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3004/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003005bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
3006 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003007 return false;
3008
Evan Cheng2064a2b2006-03-28 06:50:32 +00003009 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003010 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3011 isUndefOrEqual(N->getMaskElt(1), 7) &&
3012 isUndefOrEqual(N->getMaskElt(2), 2) &&
3013 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003014}
3015
Nate Begeman0b10b912009-11-07 23:17:15 +00003016/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3017/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3018/// <2, 3, 2, 3>
3019bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
3020 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00003021
Nate Begeman0b10b912009-11-07 23:17:15 +00003022 if (NumElems != 4)
3023 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003024
Nate Begeman0b10b912009-11-07 23:17:15 +00003025 return isUndefOrEqual(N->getMaskElt(0), 2) &&
3026 isUndefOrEqual(N->getMaskElt(1), 3) &&
3027 isUndefOrEqual(N->getMaskElt(2), 2) &&
3028 isUndefOrEqual(N->getMaskElt(3), 3);
3029}
3030
Evan Cheng5ced1d82006-04-06 23:23:56 +00003031/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3032/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003033bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3034 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003035
Evan Cheng5ced1d82006-04-06 23:23:56 +00003036 if (NumElems != 2 && NumElems != 4)
3037 return false;
3038
Evan Chengc5cdff22006-04-07 21:53:05 +00003039 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003040 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003041 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003042
Evan Chengc5cdff22006-04-07 21:53:05 +00003043 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003044 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003045 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003046
3047 return true;
3048}
3049
Nate Begeman0b10b912009-11-07 23:17:15 +00003050/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3051/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3052bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003053 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003054
Evan Cheng5ced1d82006-04-06 23:23:56 +00003055 if (NumElems != 2 && NumElems != 4)
3056 return false;
3057
Evan Chengc5cdff22006-04-07 21:53:05 +00003058 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003059 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003060 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003061
Nate Begeman9008ca62009-04-27 18:41:29 +00003062 for (unsigned i = 0; i < NumElems/2; ++i)
3063 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003064 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003065
3066 return true;
3067}
3068
Evan Cheng0038e592006-03-28 00:39:58 +00003069/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3070/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003071static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003072 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003073 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003074 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng0038e592006-03-28 00:39:58 +00003075 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003076
Nate Begeman9008ca62009-04-27 18:41:29 +00003077 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3078 int BitI = Mask[i];
3079 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00003080 if (!isUndefOrEqual(BitI, j))
3081 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003082 if (V2IsSplat) {
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003083 if (!isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003084 return false;
3085 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003086 if (!isUndefOrEqual(BitI1, j + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003087 return false;
3088 }
Evan Cheng0038e592006-03-28 00:39:58 +00003089 }
Evan Cheng0038e592006-03-28 00:39:58 +00003090 return true;
3091}
3092
Nate Begeman9008ca62009-04-27 18:41:29 +00003093bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3094 SmallVector<int, 8> M;
3095 N->getMask(M);
3096 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003097}
3098
Evan Cheng4fcb9222006-03-28 02:43:26 +00003099/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3100/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003101static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003102 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003103 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003104 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003105 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003106
Nate Begeman9008ca62009-04-27 18:41:29 +00003107 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3108 int BitI = Mask[i];
3109 int BitI1 = Mask[i+1];
Chris Lattner5a88b832007-02-25 07:10:00 +00003110 if (!isUndefOrEqual(BitI, j + NumElts/2))
Evan Chengc5cdff22006-04-07 21:53:05 +00003111 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003112 if (V2IsSplat) {
Chris Lattner5a88b832007-02-25 07:10:00 +00003113 if (isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003114 return false;
3115 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003116 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003117 return false;
3118 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003119 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003120 return true;
3121}
3122
Nate Begeman9008ca62009-04-27 18:41:29 +00003123bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3124 SmallVector<int, 8> M;
3125 N->getMask(M);
3126 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003127}
3128
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003129/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3130/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3131/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003132static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003133 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003134 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003135 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003136
Nate Begeman9008ca62009-04-27 18:41:29 +00003137 for (int i = 0, j = 0; i != NumElems; i += 2, ++j) {
3138 int BitI = Mask[i];
3139 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00003140 if (!isUndefOrEqual(BitI, j))
3141 return false;
3142 if (!isUndefOrEqual(BitI1, j))
3143 return false;
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003144 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003145 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003146}
3147
Nate Begeman9008ca62009-04-27 18:41:29 +00003148bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3149 SmallVector<int, 8> M;
3150 N->getMask(M);
3151 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3152}
3153
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003154/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3155/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3156/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003157static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003158 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003159 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3160 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003161
Nate Begeman9008ca62009-04-27 18:41:29 +00003162 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3163 int BitI = Mask[i];
3164 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003165 if (!isUndefOrEqual(BitI, j))
3166 return false;
3167 if (!isUndefOrEqual(BitI1, j))
3168 return false;
3169 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003170 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003171}
3172
Nate Begeman9008ca62009-04-27 18:41:29 +00003173bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3174 SmallVector<int, 8> M;
3175 N->getMask(M);
3176 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3177}
3178
Evan Cheng017dcc62006-04-21 01:05:10 +00003179/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3180/// specifies a shuffle of elements that is suitable for input to MOVSS,
3181/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003182static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003183 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003184 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003185
3186 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003187
Nate Begeman9008ca62009-04-27 18:41:29 +00003188 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003189 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003190
Nate Begeman9008ca62009-04-27 18:41:29 +00003191 for (int i = 1; i < NumElts; ++i)
3192 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003193 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003194
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003195 return true;
3196}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003197
Nate Begeman9008ca62009-04-27 18:41:29 +00003198bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3199 SmallVector<int, 8> M;
3200 N->getMask(M);
3201 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003202}
3203
Evan Cheng017dcc62006-04-21 01:05:10 +00003204/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3205/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003206/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003207static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003208 bool V2IsSplat = false, bool V2IsUndef = false) {
3209 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003210 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003211 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003212
Nate Begeman9008ca62009-04-27 18:41:29 +00003213 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003214 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003215
Nate Begeman9008ca62009-04-27 18:41:29 +00003216 for (int i = 1; i < NumOps; ++i)
3217 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3218 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3219 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003220 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003221
Evan Cheng39623da2006-04-20 08:58:49 +00003222 return true;
3223}
3224
Nate Begeman9008ca62009-04-27 18:41:29 +00003225static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003226 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003227 SmallVector<int, 8> M;
3228 N->getMask(M);
3229 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003230}
3231
Evan Chengd9539472006-04-14 21:59:03 +00003232/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3233/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003234bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N) {
3235 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003236 return false;
3237
3238 // Expect 1, 1, 3, 3
Rafael Espindola15684b22009-04-24 12:40:33 +00003239 for (unsigned i = 0; i < 2; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003240 int Elt = N->getMaskElt(i);
3241 if (Elt >= 0 && Elt != 1)
3242 return false;
Rafael Espindola15684b22009-04-24 12:40:33 +00003243 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003244
3245 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003246 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003247 int Elt = N->getMaskElt(i);
3248 if (Elt >= 0 && Elt != 3)
3249 return false;
3250 if (Elt == 3)
3251 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003252 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003253 // Don't use movshdup if it can be done with a shufps.
Nate Begeman9008ca62009-04-27 18:41:29 +00003254 // FIXME: verify that matching u, u, 3, 3 is what we want.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003255 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003256}
3257
3258/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3259/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003260bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N) {
3261 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003262 return false;
3263
3264 // Expect 0, 0, 2, 2
Nate Begeman9008ca62009-04-27 18:41:29 +00003265 for (unsigned i = 0; i < 2; ++i)
3266 if (N->getMaskElt(i) > 0)
3267 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003268
3269 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003270 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003271 int Elt = N->getMaskElt(i);
3272 if (Elt >= 0 && Elt != 2)
3273 return false;
3274 if (Elt == 2)
3275 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003276 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003277 // Don't use movsldup if it can be done with a shufps.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003278 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003279}
3280
Evan Cheng0b457f02008-09-25 20:50:48 +00003281/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3282/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003283bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3284 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopherfd179292009-08-27 18:07:15 +00003285
Nate Begeman9008ca62009-04-27 18:41:29 +00003286 for (int i = 0; i < e; ++i)
3287 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003288 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003289 for (int i = 0; i < e; ++i)
3290 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003291 return false;
3292 return true;
3293}
3294
Evan Cheng63d33002006-03-22 08:01:21 +00003295/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003296/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003297unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003298 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3299 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3300
Evan Chengb9df0ca2006-03-22 02:53:00 +00003301 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3302 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003303 for (int i = 0; i < NumOperands; ++i) {
3304 int Val = SVOp->getMaskElt(NumOperands-i-1);
3305 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003306 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003307 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003308 if (i != NumOperands - 1)
3309 Mask <<= Shift;
3310 }
Evan Cheng63d33002006-03-22 08:01:21 +00003311 return Mask;
3312}
3313
Evan Cheng506d3df2006-03-29 23:07:14 +00003314/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003315/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003316unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003317 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003318 unsigned Mask = 0;
3319 // 8 nodes, but we only care about the last 4.
3320 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003321 int Val = SVOp->getMaskElt(i);
3322 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003323 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003324 if (i != 4)
3325 Mask <<= 2;
3326 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003327 return Mask;
3328}
3329
3330/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003331/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003332unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003333 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003334 unsigned Mask = 0;
3335 // 8 nodes, but we only care about the first 4.
3336 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003337 int Val = SVOp->getMaskElt(i);
3338 if (Val >= 0)
3339 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00003340 if (i != 0)
3341 Mask <<= 2;
3342 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003343 return Mask;
3344}
3345
Nate Begemana09008b2009-10-19 02:17:23 +00003346/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3347/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3348unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3349 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3350 EVT VVT = N->getValueType(0);
3351 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3352 int Val = 0;
3353
3354 unsigned i, e;
3355 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3356 Val = SVOp->getMaskElt(i);
3357 if (Val >= 0)
3358 break;
3359 }
3360 return (Val - i) * EltSize;
3361}
3362
Evan Cheng37b73872009-07-30 08:33:02 +00003363/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3364/// constant +0.0.
3365bool X86::isZeroNode(SDValue Elt) {
3366 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00003367 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00003368 (isa<ConstantFPSDNode>(Elt) &&
3369 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3370}
3371
Nate Begeman9008ca62009-04-27 18:41:29 +00003372/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3373/// their permute mask.
3374static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3375 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003376 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003377 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00003378 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00003379
Nate Begeman5a5ca152009-04-29 05:20:52 +00003380 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003381 int idx = SVOp->getMaskElt(i);
3382 if (idx < 0)
3383 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003384 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003385 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003386 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003387 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003388 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003389 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3390 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003391}
3392
Evan Cheng779ccea2007-12-07 21:30:01 +00003393/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3394/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00003395static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00003396 unsigned NumElems = VT.getVectorNumElements();
3397 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003398 int idx = Mask[i];
3399 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003400 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003401 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003402 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003403 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003404 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003405 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003406}
3407
Evan Cheng533a0aa2006-04-19 20:35:22 +00003408/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3409/// match movhlps. The lower half elements should come from upper half of
3410/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003411/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00003412static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
3413 if (Op->getValueType(0).getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00003414 return false;
3415 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003416 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003417 return false;
3418 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003419 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003420 return false;
3421 return true;
3422}
3423
Evan Cheng5ced1d82006-04-06 23:23:56 +00003424/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00003425/// is promoted to a vector. It also returns the LoadSDNode by reference if
3426/// required.
3427static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00003428 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3429 return false;
3430 N = N->getOperand(0).getNode();
3431 if (!ISD::isNON_EXTLoad(N))
3432 return false;
3433 if (LD)
3434 *LD = cast<LoadSDNode>(N);
3435 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003436}
3437
Evan Cheng533a0aa2006-04-19 20:35:22 +00003438/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3439/// match movlp{s|d}. The lower half elements should come from lower half of
3440/// V1 (and in order), and the upper half elements should come from the upper
3441/// half of V2 (and in order). And since V1 will become the source of the
3442/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003443static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3444 ShuffleVectorSDNode *Op) {
Evan Cheng466685d2006-10-09 20:57:25 +00003445 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003446 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00003447 // Is V2 is a vector load, don't do this transformation. We will try to use
3448 // load folding shufps op.
3449 if (ISD::isNON_EXTLoad(V2))
3450 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003451
Nate Begeman5a5ca152009-04-29 05:20:52 +00003452 unsigned NumElems = Op->getValueType(0).getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003453
Evan Cheng533a0aa2006-04-19 20:35:22 +00003454 if (NumElems != 2 && NumElems != 4)
3455 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003456 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003457 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003458 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003459 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003460 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003461 return false;
3462 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003463}
3464
Evan Cheng39623da2006-04-20 08:58:49 +00003465/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
3466/// all the same.
3467static bool isSplatVector(SDNode *N) {
3468 if (N->getOpcode() != ISD::BUILD_VECTOR)
3469 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003470
Dan Gohman475871a2008-07-27 21:46:04 +00003471 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00003472 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
3473 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003474 return false;
3475 return true;
3476}
3477
Evan Cheng213d2cf2007-05-17 18:45:50 +00003478/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00003479/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00003480/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00003481static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00003482 SDValue V1 = N->getOperand(0);
3483 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003484 unsigned NumElems = N->getValueType(0).getVectorNumElements();
3485 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003486 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003487 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003488 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00003489 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
3490 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003491 if (Opc != ISD::BUILD_VECTOR ||
3492 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00003493 return false;
3494 } else if (Idx >= 0) {
3495 unsigned Opc = V1.getOpcode();
3496 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
3497 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003498 if (Opc != ISD::BUILD_VECTOR ||
3499 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00003500 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00003501 }
3502 }
3503 return true;
3504}
3505
3506/// getZeroVector - Returns a vector of specified type with all zero elements.
3507///
Owen Andersone50ed302009-08-10 22:56:29 +00003508static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003509 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003510 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003511
Dale Johannesen0488fb62010-09-30 23:57:10 +00003512 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003513 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00003514 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003515 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003516 if (HasSSE2) { // SSE2
3517 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3518 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
3519 } else { // SSE1
3520 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
3521 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
3522 }
3523 } else if (VT.getSizeInBits() == 256) { // AVX
3524 // 256-bit logic and arithmetic instructions in AVX are
3525 // all floating-point, no support for integer ops. Default
3526 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00003527 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003528 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
3529 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00003530 }
Dale Johannesenace16102009-02-03 19:33:06 +00003531 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00003532}
3533
Chris Lattner8a594482007-11-25 00:24:49 +00003534/// getOnesVector - Returns a vector of specified type with all bits set.
3535///
Owen Andersone50ed302009-08-10 22:56:29 +00003536static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003537 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003538
Chris Lattner8a594482007-11-25 00:24:49 +00003539 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
3540 // type. This ensures they get CSE'd.
Owen Anderson825b72b2009-08-11 20:47:22 +00003541 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +00003542 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003543 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Dale Johannesenace16102009-02-03 19:33:06 +00003544 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00003545}
3546
3547
Evan Cheng39623da2006-04-20 08:58:49 +00003548/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
3549/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00003550static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003551 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003552 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003553
Evan Cheng39623da2006-04-20 08:58:49 +00003554 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003555 SmallVector<int, 8> MaskVec;
3556 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00003557
Nate Begeman5a5ca152009-04-29 05:20:52 +00003558 for (unsigned i = 0; i != NumElems; ++i) {
3559 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003560 MaskVec[i] = NumElems;
3561 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00003562 }
Evan Cheng39623da2006-04-20 08:58:49 +00003563 }
Evan Cheng39623da2006-04-20 08:58:49 +00003564 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00003565 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
3566 SVOp->getOperand(1), &MaskVec[0]);
3567 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00003568}
3569
Evan Cheng017dcc62006-04-21 01:05:10 +00003570/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
3571/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00003572static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003573 SDValue V2) {
3574 unsigned NumElems = VT.getVectorNumElements();
3575 SmallVector<int, 8> Mask;
3576 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00003577 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003578 Mask.push_back(i);
3579 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00003580}
3581
Nate Begeman9008ca62009-04-27 18:41:29 +00003582/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003583static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003584 SDValue V2) {
3585 unsigned NumElems = VT.getVectorNumElements();
3586 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00003587 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003588 Mask.push_back(i);
3589 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00003590 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003591 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00003592}
3593
Nate Begeman9008ca62009-04-27 18:41:29 +00003594/// getUnpackhMask - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003595static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003596 SDValue V2) {
3597 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00003598 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00003599 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00003600 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003601 Mask.push_back(i + Half);
3602 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00003603 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003604 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00003605}
3606
Bruno Cardoso Lopesbb0a9482010-08-13 17:50:47 +00003607/// PromoteSplat - Promote a splat of v4i32, v8i16 or v16i8 to v4f32.
3608static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003609 EVT PVT = MVT::v4f32;
Owen Andersone50ed302009-08-10 22:56:29 +00003610 EVT VT = SV->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00003611 DebugLoc dl = SV->getDebugLoc();
3612 SDValue V1 = SV->getOperand(0);
3613 int NumElems = VT.getVectorNumElements();
3614 int EltNo = SV->getSplatIndex();
Rafael Espindola15684b22009-04-24 12:40:33 +00003615
Nate Begeman9008ca62009-04-27 18:41:29 +00003616 // unpack elements to the correct location
3617 while (NumElems > 4) {
3618 if (EltNo < NumElems/2) {
3619 V1 = getUnpackl(DAG, dl, VT, V1, V1);
3620 } else {
3621 V1 = getUnpackh(DAG, dl, VT, V1, V1);
3622 EltNo -= NumElems/2;
3623 }
3624 NumElems >>= 1;
3625 }
Eric Christopherfd179292009-08-27 18:07:15 +00003626
Nate Begeman9008ca62009-04-27 18:41:29 +00003627 // Perform the splat.
3628 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Dale Johannesenace16102009-02-03 19:33:06 +00003629 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, PVT, V1);
Nate Begeman9008ca62009-04-27 18:41:29 +00003630 V1 = DAG.getVectorShuffle(PVT, dl, V1, DAG.getUNDEF(PVT), &SplatMask[0]);
3631 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, V1);
Evan Chengc575ca22006-04-17 20:43:08 +00003632}
3633
Evan Chengba05f722006-04-21 23:03:30 +00003634/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00003635/// vector of zero or undef vector. This produces a shuffle where the low
3636/// element of V2 is swizzled into the zero/undef vector, landing at element
3637/// 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 +00003638static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00003639 bool isZero, bool HasSSE2,
3640 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003641 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003642 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00003643 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
3644 unsigned NumElems = VT.getVectorNumElements();
3645 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00003646 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003647 // If this is the insertion idx, put the low elt of V2 here.
3648 MaskVec.push_back(i == Idx ? NumElems : i);
3649 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00003650}
3651
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003652/// getShuffleScalarElt - Returns the scalar element that will make up the ith
3653/// element of the result of the vector shuffle.
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003654SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
3655 unsigned Depth) {
3656 if (Depth == 6)
3657 return SDValue(); // Limit search depth.
3658
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003659 SDValue V = SDValue(N, 0);
3660 EVT VT = V.getValueType();
3661 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003662
3663 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
3664 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
3665 Index = SV->getMaskElt(Index);
3666
3667 if (Index < 0)
3668 return DAG.getUNDEF(VT.getVectorElementType());
3669
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003670 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003671 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003672 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00003673 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003674
3675 // Recurse into target specific vector shuffles to find scalars.
3676 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003677 int NumElems = VT.getVectorNumElements();
3678 SmallVector<unsigned, 16> ShuffleMask;
3679 SDValue ImmN;
3680
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003681 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003682 case X86ISD::SHUFPS:
3683 case X86ISD::SHUFPD:
3684 ImmN = N->getOperand(N->getNumOperands()-1);
3685 DecodeSHUFPSMask(NumElems,
3686 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3687 ShuffleMask);
3688 break;
3689 case X86ISD::PUNPCKHBW:
3690 case X86ISD::PUNPCKHWD:
3691 case X86ISD::PUNPCKHDQ:
3692 case X86ISD::PUNPCKHQDQ:
3693 DecodePUNPCKHMask(NumElems, ShuffleMask);
3694 break;
3695 case X86ISD::UNPCKHPS:
3696 case X86ISD::UNPCKHPD:
3697 DecodeUNPCKHPMask(NumElems, ShuffleMask);
3698 break;
3699 case X86ISD::PUNPCKLBW:
3700 case X86ISD::PUNPCKLWD:
3701 case X86ISD::PUNPCKLDQ:
3702 case X86ISD::PUNPCKLQDQ:
3703 DecodePUNPCKLMask(NumElems, ShuffleMask);
3704 break;
3705 case X86ISD::UNPCKLPS:
3706 case X86ISD::UNPCKLPD:
3707 DecodeUNPCKLPMask(NumElems, ShuffleMask);
3708 break;
3709 case X86ISD::MOVHLPS:
3710 DecodeMOVHLPSMask(NumElems, ShuffleMask);
3711 break;
3712 case X86ISD::MOVLHPS:
3713 DecodeMOVLHPSMask(NumElems, ShuffleMask);
3714 break;
3715 case X86ISD::PSHUFD:
3716 ImmN = N->getOperand(N->getNumOperands()-1);
3717 DecodePSHUFMask(NumElems,
3718 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3719 ShuffleMask);
3720 break;
3721 case X86ISD::PSHUFHW:
3722 ImmN = N->getOperand(N->getNumOperands()-1);
3723 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3724 ShuffleMask);
3725 break;
3726 case X86ISD::PSHUFLW:
3727 ImmN = N->getOperand(N->getNumOperands()-1);
3728 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3729 ShuffleMask);
3730 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003731 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003732 case X86ISD::MOVSD: {
3733 // The index 0 always comes from the first element of the second source,
3734 // this is why MOVSS and MOVSD are used in the first place. The other
3735 // elements come from the other positions of the first source vector.
3736 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003737 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
3738 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003739 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003740 default:
3741 assert("not implemented for target shuffle node");
3742 return SDValue();
3743 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003744
3745 Index = ShuffleMask[Index];
3746 if (Index < 0)
3747 return DAG.getUNDEF(VT.getVectorElementType());
3748
3749 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
3750 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
3751 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003752 }
3753
3754 // Actual nodes that may contain scalar elements
3755 if (Opcode == ISD::BIT_CONVERT) {
3756 V = V.getOperand(0);
3757 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003758 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003759
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003760 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003761 return SDValue();
3762 }
3763
3764 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
3765 return (Index == 0) ? V.getOperand(0)
3766 : DAG.getUNDEF(VT.getVectorElementType());
3767
3768 if (V.getOpcode() == ISD::BUILD_VECTOR)
3769 return V.getOperand(Index);
3770
3771 return SDValue();
3772}
3773
3774/// getNumOfConsecutiveZeros - Return the number of elements of a vector
3775/// shuffle operation which come from a consecutively from a zero. The
3776/// search can start in two diferent directions, from left or right.
3777static
3778unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
3779 bool ZerosFromLeft, SelectionDAG &DAG) {
3780 int i = 0;
3781
3782 while (i < NumElems) {
3783 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003784 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003785 if (!(Elt.getNode() &&
3786 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
3787 break;
3788 ++i;
3789 }
3790
3791 return i;
3792}
3793
3794/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
3795/// MaskE correspond consecutively to elements from one of the vector operands,
3796/// starting from its index OpIdx. Also tell OpNum which source vector operand.
3797static
3798bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
3799 int OpIdx, int NumElems, unsigned &OpNum) {
3800 bool SeenV1 = false;
3801 bool SeenV2 = false;
3802
3803 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
3804 int Idx = SVOp->getMaskElt(i);
3805 // Ignore undef indicies
3806 if (Idx < 0)
3807 continue;
3808
3809 if (Idx < NumElems)
3810 SeenV1 = true;
3811 else
3812 SeenV2 = true;
3813
3814 // Only accept consecutive elements from the same vector
3815 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
3816 return false;
3817 }
3818
3819 OpNum = SeenV1 ? 0 : 1;
3820 return true;
3821}
3822
3823/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
3824/// logical left shift of a vector.
3825static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
3826 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
3827 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
3828 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
3829 false /* check zeros from right */, DAG);
3830 unsigned OpSrc;
3831
3832 if (!NumZeros)
3833 return false;
3834
3835 // Considering the elements in the mask that are not consecutive zeros,
3836 // check if they consecutively come from only one of the source vectors.
3837 //
3838 // V1 = {X, A, B, C} 0
3839 // \ \ \ /
3840 // vector_shuffle V1, V2 <1, 2, 3, X>
3841 //
3842 if (!isShuffleMaskConsecutive(SVOp,
3843 0, // Mask Start Index
3844 NumElems-NumZeros-1, // Mask End Index
3845 NumZeros, // Where to start looking in the src vector
3846 NumElems, // Number of elements in vector
3847 OpSrc)) // Which source operand ?
3848 return false;
3849
3850 isLeft = false;
3851 ShAmt = NumZeros;
3852 ShVal = SVOp->getOperand(OpSrc);
3853 return true;
3854}
3855
3856/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
3857/// logical left shift of a vector.
3858static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
3859 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
3860 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
3861 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
3862 true /* check zeros from left */, DAG);
3863 unsigned OpSrc;
3864
3865 if (!NumZeros)
3866 return false;
3867
3868 // Considering the elements in the mask that are not consecutive zeros,
3869 // check if they consecutively come from only one of the source vectors.
3870 //
3871 // 0 { A, B, X, X } = V2
3872 // / \ / /
3873 // vector_shuffle V1, V2 <X, X, 4, 5>
3874 //
3875 if (!isShuffleMaskConsecutive(SVOp,
3876 NumZeros, // Mask Start Index
3877 NumElems-1, // Mask End Index
3878 0, // Where to start looking in the src vector
3879 NumElems, // Number of elements in vector
3880 OpSrc)) // Which source operand ?
3881 return false;
3882
3883 isLeft = true;
3884 ShAmt = NumZeros;
3885 ShVal = SVOp->getOperand(OpSrc);
3886 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00003887}
3888
3889/// isVectorShift - Returns true if the shuffle can be implemented as a
3890/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003891static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00003892 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003893 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
3894 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
3895 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00003896
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003897 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00003898}
3899
Evan Chengc78d3b42006-04-24 18:01:45 +00003900/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
3901///
Dan Gohman475871a2008-07-27 21:46:04 +00003902static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00003903 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00003904 SelectionDAG &DAG,
3905 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003906 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00003907 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003908
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003909 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003910 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003911 bool First = true;
3912 for (unsigned i = 0; i < 16; ++i) {
3913 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
3914 if (ThisIsNonZero && First) {
3915 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003916 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003917 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003918 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003919 First = false;
3920 }
3921
3922 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00003923 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003924 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
3925 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003926 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003927 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00003928 }
3929 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003930 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
3931 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
3932 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00003933 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003934 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00003935 } else
3936 ThisElt = LastElt;
3937
Gabor Greifba36cb52008-08-28 21:40:38 +00003938 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00003939 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00003940 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00003941 }
3942 }
3943
Owen Anderson825b72b2009-08-11 20:47:22 +00003944 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00003945}
3946
Bill Wendlinga348c562007-03-22 18:42:45 +00003947/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00003948///
Dan Gohman475871a2008-07-27 21:46:04 +00003949static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00003950 unsigned NumNonZero, unsigned NumZero,
3951 SelectionDAG &DAG,
3952 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003953 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00003954 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003955
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003956 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003957 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003958 bool First = true;
3959 for (unsigned i = 0; i < 8; ++i) {
3960 bool isNonZero = (NonZeros & (1 << i)) != 0;
3961 if (isNonZero) {
3962 if (First) {
3963 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003964 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003965 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003966 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003967 First = false;
3968 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003969 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003970 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00003971 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00003972 }
3973 }
3974
3975 return V;
3976}
3977
Evan Chengf26ffe92008-05-29 08:22:04 +00003978/// getVShift - Return a vector logical shift node.
3979///
Owen Andersone50ed302009-08-10 22:56:29 +00003980static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00003981 unsigned NumBits, SelectionDAG &DAG,
3982 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003983 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00003984 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Dale Johannesenace16102009-02-03 19:33:06 +00003985 SrcOp = DAG.getNode(ISD::BIT_CONVERT, dl, ShVT, SrcOp);
3986 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3987 DAG.getNode(Opc, dl, ShVT, SrcOp,
Gabor Greif327ef032008-08-28 23:19:51 +00003988 DAG.getConstant(NumBits, TLI.getShiftAmountTy())));
Evan Chengf26ffe92008-05-29 08:22:04 +00003989}
3990
Dan Gohman475871a2008-07-27 21:46:04 +00003991SDValue
Evan Chengc3630942009-12-09 21:00:30 +00003992X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00003993 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00003994
Evan Chengc3630942009-12-09 21:00:30 +00003995 // Check if the scalar load can be widened into a vector load. And if
3996 // the address is "base + cst" see if the cst can be "absorbed" into
3997 // the shuffle mask.
3998 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
3999 SDValue Ptr = LD->getBasePtr();
4000 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4001 return SDValue();
4002 EVT PVT = LD->getValueType(0);
4003 if (PVT != MVT::i32 && PVT != MVT::f32)
4004 return SDValue();
4005
4006 int FI = -1;
4007 int64_t Offset = 0;
4008 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4009 FI = FINode->getIndex();
4010 Offset = 0;
4011 } else if (Ptr.getOpcode() == ISD::ADD &&
4012 isa<ConstantSDNode>(Ptr.getOperand(1)) &&
4013 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4014 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4015 Offset = Ptr.getConstantOperandVal(1);
4016 Ptr = Ptr.getOperand(0);
4017 } else {
4018 return SDValue();
4019 }
4020
4021 SDValue Chain = LD->getChain();
4022 // Make sure the stack object alignment is at least 16.
4023 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
4024 if (DAG.InferPtrAlignment(Ptr) < 16) {
4025 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004026 // Can't change the alignment. FIXME: It's possible to compute
4027 // the exact stack offset and reference FI + adjust offset instead.
4028 // If someone *really* cares about this. That's the way to implement it.
4029 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004030 } else {
4031 MFI->setObjectAlignment(FI, 16);
4032 }
4033 }
4034
4035 // (Offset % 16) must be multiple of 4. Then address is then
4036 // Ptr + (Offset & ~15).
4037 if (Offset < 0)
4038 return SDValue();
4039 if ((Offset % 16) & 3)
4040 return SDValue();
4041 int64_t StartOffset = Offset & ~15;
4042 if (StartOffset)
4043 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4044 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4045
4046 int EltNo = (Offset - StartOffset) >> 2;
4047 int Mask[4] = { EltNo, EltNo, EltNo, EltNo };
4048 EVT VT = (PVT == MVT::i32) ? MVT::v4i32 : MVT::v4f32;
Chris Lattner51abfe42010-09-21 06:02:19 +00004049 SDValue V1 = DAG.getLoad(VT, dl, Chain, Ptr,
4050 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004051 false, false, 0);
Evan Chengc3630942009-12-09 21:00:30 +00004052 // Canonicalize it to a v4i32 shuffle.
4053 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32, V1);
4054 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4055 DAG.getVectorShuffle(MVT::v4i32, dl, V1,
Chris Lattner51abfe42010-09-21 06:02:19 +00004056 DAG.getUNDEF(MVT::v4i32),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004057 }
4058
4059 return SDValue();
4060}
4061
Michael J. Spencerec38de22010-10-10 22:04:20 +00004062/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4063/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004064/// load which has the same value as a build_vector whose operands are 'elts'.
4065///
4066/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004067///
Nate Begeman1449f292010-03-24 22:19:06 +00004068/// FIXME: we'd also like to handle the case where the last elements are zero
4069/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4070/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004071static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004072 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004073 EVT EltVT = VT.getVectorElementType();
4074 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004075
Nate Begemanfdea31a2010-03-24 20:49:50 +00004076 LoadSDNode *LDBase = NULL;
4077 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004078
Nate Begeman1449f292010-03-24 22:19:06 +00004079 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004080 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004081 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004082 for (unsigned i = 0; i < NumElems; ++i) {
4083 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004084
Nate Begemanfdea31a2010-03-24 20:49:50 +00004085 if (!Elt.getNode() ||
4086 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4087 return SDValue();
4088 if (!LDBase) {
4089 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4090 return SDValue();
4091 LDBase = cast<LoadSDNode>(Elt.getNode());
4092 LastLoadedElt = i;
4093 continue;
4094 }
4095 if (Elt.getOpcode() == ISD::UNDEF)
4096 continue;
4097
4098 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4099 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4100 return SDValue();
4101 LastLoadedElt = i;
4102 }
Nate Begeman1449f292010-03-24 22:19:06 +00004103
4104 // If we have found an entire vector of loads and undefs, then return a large
4105 // load of the entire vector width starting at the base pointer. If we found
4106 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004107 if (LastLoadedElt == NumElems - 1) {
4108 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004109 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004110 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004111 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004112 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004113 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004114 LDBase->isVolatile(), LDBase->isNonTemporal(),
4115 LDBase->getAlignment());
4116 } else if (NumElems == 4 && LastLoadedElt == 1) {
4117 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4118 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004119 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4120 Ops, 2, MVT::i32,
4121 LDBase->getMemOperand());
4122 return DAG.getNode(ISD::BIT_CONVERT, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004123 }
4124 return SDValue();
4125}
4126
Evan Chengc3630942009-12-09 21:00:30 +00004127SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004128X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004129 DebugLoc dl = Op.getDebugLoc();
Chris Lattner6e80e442010-08-28 17:15:43 +00004130 // All zero's are handled with pxor in SSE2 and above, xorps in SSE1.
4131 // All one's are handled with pcmpeqd. In AVX, zero's are handled with
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004132 // vpxor in 128-bit and xor{pd,ps} in 256-bit, but no 256 version of pcmpeqd
4133 // is present, so AllOnes is ignored.
4134 if (ISD::isBuildVectorAllZeros(Op.getNode()) ||
4135 (Op.getValueType().getSizeInBits() != 256 &&
4136 ISD::isBuildVectorAllOnes(Op.getNode()))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004137 // Canonicalize this to <4 x i32> (SSE) to
Chris Lattner8a594482007-11-25 00:24:49 +00004138 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
4139 // eliminated on x86-32 hosts.
Dale Johannesen0488fb62010-09-30 23:57:10 +00004140 if (Op.getValueType() == MVT::v4i32)
Chris Lattner8a594482007-11-25 00:24:49 +00004141 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004142
Gabor Greifba36cb52008-08-28 21:40:38 +00004143 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00004144 return getOnesVector(Op.getValueType(), DAG, dl);
4145 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00004146 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004147
Owen Andersone50ed302009-08-10 22:56:29 +00004148 EVT VT = Op.getValueType();
4149 EVT ExtVT = VT.getVectorElementType();
4150 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004151
4152 unsigned NumElems = Op.getNumOperands();
4153 unsigned NumZero = 0;
4154 unsigned NumNonZero = 0;
4155 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004156 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004157 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004158 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004159 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00004160 if (Elt.getOpcode() == ISD::UNDEF)
4161 continue;
4162 Values.insert(Elt);
4163 if (Elt.getOpcode() != ISD::Constant &&
4164 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004165 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00004166 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00004167 NumZero++;
4168 else {
4169 NonZeros |= (1 << i);
4170 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004171 }
4172 }
4173
Chris Lattner97a2a562010-08-26 05:24:29 +00004174 // All undef vector. Return an UNDEF. All zero vectors were handled above.
4175 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00004176 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004177
Chris Lattner67f453a2008-03-09 05:42:06 +00004178 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00004179 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004180 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00004181 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00004182
Chris Lattner62098042008-03-09 01:05:04 +00004183 // If this is an insertion of an i64 value on x86-32, and if the top bits of
4184 // the value are obviously zero, truncate the value to i32 and do the
4185 // insertion that way. Only do this if the value is non-constant or if the
4186 // value is a constant being inserted into element 0. It is cheaper to do
4187 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00004188 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00004189 (!IsAllConstants || Idx == 0)) {
4190 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004191 // Handle SSE only.
4192 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4193 EVT VecVT = MVT::v4i32;
4194 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004195
Chris Lattner62098042008-03-09 01:05:04 +00004196 // Truncate the value (which may itself be a constant) to i32, and
4197 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00004198 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00004199 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00004200 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4201 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004202
Chris Lattner62098042008-03-09 01:05:04 +00004203 // Now we have our 32-bit value zero extended in the low element of
4204 // a vector. If Idx != 0, swizzle it into place.
4205 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004206 SmallVector<int, 4> Mask;
4207 Mask.push_back(Idx);
4208 for (unsigned i = 1; i != VecElts; ++i)
4209 Mask.push_back(i);
4210 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00004211 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00004212 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004213 }
Dale Johannesenace16102009-02-03 19:33:06 +00004214 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00004215 }
4216 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004217
Chris Lattner19f79692008-03-08 22:59:52 +00004218 // If we have a constant or non-constant insertion into the low element of
4219 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4220 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00004221 // depending on what the source datatype is.
4222 if (Idx == 0) {
4223 if (NumZero == 0) {
4224 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00004225 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4226 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00004227 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4228 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4229 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4230 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00004231 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4232 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00004233 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4234 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00004235 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4236 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4237 Subtarget->hasSSE2(), DAG);
4238 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Item);
4239 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004240 }
Evan Chengf26ffe92008-05-29 08:22:04 +00004241
4242 // Is it a vector logical left shift?
4243 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00004244 X86::isZeroNode(Op.getOperand(0)) &&
4245 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004246 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004247 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004248 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004249 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00004250 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004251 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004252
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004253 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00004254 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004255
Chris Lattner19f79692008-03-08 22:59:52 +00004256 // Otherwise, if this is a vector with i32 or f32 elements, and the element
4257 // is a non-constant being inserted into an element other than the low one,
4258 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
4259 // movd/movss) to move this into the low element, then shuffle it into
4260 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004261 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00004262 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00004263
Evan Cheng0db9fe62006-04-25 20:13:52 +00004264 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00004265 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4266 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00004267 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004268 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00004269 MaskVec.push_back(i == Idx ? 0 : 1);
4270 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004271 }
4272 }
4273
Chris Lattner67f453a2008-03-09 05:42:06 +00004274 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00004275 if (Values.size() == 1) {
4276 if (EVTBits == 32) {
4277 // Instead of a shuffle like this:
4278 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4279 // Check if it's possible to issue this instead.
4280 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4281 unsigned Idx = CountTrailingZeros_32(NonZeros);
4282 SDValue Item = Op.getOperand(Idx);
4283 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4284 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4285 }
Dan Gohman475871a2008-07-27 21:46:04 +00004286 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004287 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004288
Dan Gohmana3941172007-07-24 22:55:08 +00004289 // A vector full of immediates; various special cases are already
4290 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004291 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00004292 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00004293
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004294 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004295 if (EVTBits == 64) {
4296 if (NumNonZero == 1) {
4297 // One half is zero or undef.
4298 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00004299 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004300 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00004301 return getShuffleVectorZeroOrUndef(V2, Idx, true,
4302 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00004303 }
Dan Gohman475871a2008-07-27 21:46:04 +00004304 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00004305 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004306
4307 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00004308 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004309 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00004310 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004311 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004312 }
4313
Bill Wendling826f36f2007-03-28 00:57:11 +00004314 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004315 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00004316 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004317 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004318 }
4319
4320 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004321 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00004322 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004323 if (NumElems == 4 && NumZero > 0) {
4324 for (unsigned i = 0; i < 4; ++i) {
4325 bool isZero = !(NonZeros & (1 << i));
4326 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00004327 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004328 else
Dale Johannesenace16102009-02-03 19:33:06 +00004329 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004330 }
4331
4332 for (unsigned i = 0; i < 2; ++i) {
4333 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
4334 default: break;
4335 case 0:
4336 V[i] = V[i*2]; // Must be a zero vector.
4337 break;
4338 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00004339 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004340 break;
4341 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00004342 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004343 break;
4344 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00004345 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004346 break;
4347 }
4348 }
4349
Nate Begeman9008ca62009-04-27 18:41:29 +00004350 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004351 bool Reverse = (NonZeros & 0x3) == 2;
4352 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004353 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004354 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
4355 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004356 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
4357 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004358 }
4359
Nate Begemanfdea31a2010-03-24 20:49:50 +00004360 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
4361 // Check for a build vector of consecutive loads.
4362 for (unsigned i = 0; i < NumElems; ++i)
4363 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004364
Nate Begemanfdea31a2010-03-24 20:49:50 +00004365 // Check for elements which are consecutive loads.
4366 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
4367 if (LD.getNode())
4368 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004369
4370 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004371 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00004372 SDValue Result;
4373 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
4374 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
4375 else
4376 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004377
Chris Lattner24faf612010-08-28 17:59:08 +00004378 for (unsigned i = 1; i < NumElems; ++i) {
4379 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
4380 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00004381 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00004382 }
4383 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00004384 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00004385
Chris Lattner6e80e442010-08-28 17:15:43 +00004386 // Otherwise, expand into a number of unpckl*, start by extending each of
4387 // our (non-undef) elements to the full vector width with the element in the
4388 // bottom slot of the vector (which generates no code for SSE).
4389 for (unsigned i = 0; i < NumElems; ++i) {
4390 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
4391 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
4392 else
4393 V[i] = DAG.getUNDEF(VT);
4394 }
4395
4396 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004397 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
4398 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
4399 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00004400 unsigned EltStride = NumElems >> 1;
4401 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00004402 for (unsigned i = 0; i < EltStride; ++i) {
4403 // If V[i+EltStride] is undef and this is the first round of mixing,
4404 // then it is safe to just drop this shuffle: V[i] is already in the
4405 // right place, the one element (since it's the first round) being
4406 // inserted as undef can be dropped. This isn't safe for successive
4407 // rounds because they will permute elements within both vectors.
4408 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
4409 EltStride == NumElems/2)
4410 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004411
Chris Lattner6e80e442010-08-28 17:15:43 +00004412 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00004413 }
Chris Lattner6e80e442010-08-28 17:15:43 +00004414 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004415 }
4416 return V[0];
4417 }
Dan Gohman475871a2008-07-27 21:46:04 +00004418 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004419}
4420
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004421SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004422X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004423 // We support concatenate two MMX registers and place them in a MMX
4424 // register. This is better than doing a stack convert.
4425 DebugLoc dl = Op.getDebugLoc();
4426 EVT ResVT = Op.getValueType();
4427 assert(Op.getNumOperands() == 2);
4428 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
4429 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
4430 int Mask[2];
4431 SDValue InVec = DAG.getNode(ISD::BIT_CONVERT,dl, MVT::v1i64, Op.getOperand(0));
4432 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4433 InVec = Op.getOperand(1);
4434 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
4435 unsigned NumElts = ResVT.getVectorNumElements();
4436 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, ResVT, VecOp);
4437 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
4438 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
4439 } else {
4440 InVec = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v1i64, InVec);
4441 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4442 Mask[0] = 0; Mask[1] = 2;
4443 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
4444 }
4445 return DAG.getNode(ISD::BIT_CONVERT, dl, ResVT, VecOp);
4446}
4447
Nate Begemanb9a47b82009-02-23 08:49:38 +00004448// v8i16 shuffles - Prefer shuffles in the following order:
4449// 1. [all] pshuflw, pshufhw, optional move
4450// 2. [ssse3] 1 x pshufb
4451// 3. [ssse3] 2 x pshufb + 1 x por
4452// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004453SDValue
4454X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
4455 SelectionDAG &DAG) const {
4456 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00004457 SDValue V1 = SVOp->getOperand(0);
4458 SDValue V2 = SVOp->getOperand(1);
4459 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004460 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00004461
Nate Begemanb9a47b82009-02-23 08:49:38 +00004462 // Determine if more than 1 of the words in each of the low and high quadwords
4463 // of the result come from the same quadword of one of the two inputs. Undef
4464 // mask values count as coming from any quadword, for better codegen.
4465 SmallVector<unsigned, 4> LoQuad(4);
4466 SmallVector<unsigned, 4> HiQuad(4);
4467 BitVector InputQuads(4);
4468 for (unsigned i = 0; i < 8; ++i) {
4469 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00004470 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004471 MaskVals.push_back(EltIdx);
4472 if (EltIdx < 0) {
4473 ++Quad[0];
4474 ++Quad[1];
4475 ++Quad[2];
4476 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00004477 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004478 }
4479 ++Quad[EltIdx / 4];
4480 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00004481 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004482
Nate Begemanb9a47b82009-02-23 08:49:38 +00004483 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004484 unsigned MaxQuad = 1;
4485 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004486 if (LoQuad[i] > MaxQuad) {
4487 BestLoQuad = i;
4488 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004489 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004490 }
4491
Nate Begemanb9a47b82009-02-23 08:49:38 +00004492 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004493 MaxQuad = 1;
4494 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004495 if (HiQuad[i] > MaxQuad) {
4496 BestHiQuad = i;
4497 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004498 }
4499 }
4500
Nate Begemanb9a47b82009-02-23 08:49:38 +00004501 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00004502 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00004503 // single pshufb instruction is necessary. If There are more than 2 input
4504 // quads, disable the next transformation since it does not help SSSE3.
4505 bool V1Used = InputQuads[0] || InputQuads[1];
4506 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004507 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004508 if (InputQuads.count() == 2 && V1Used && V2Used) {
4509 BestLoQuad = InputQuads.find_first();
4510 BestHiQuad = InputQuads.find_next(BestLoQuad);
4511 }
4512 if (InputQuads.count() > 2) {
4513 BestLoQuad = -1;
4514 BestHiQuad = -1;
4515 }
4516 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004517
Nate Begemanb9a47b82009-02-23 08:49:38 +00004518 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
4519 // the shuffle mask. If a quad is scored as -1, that means that it contains
4520 // words from all 4 input quadwords.
4521 SDValue NewV;
4522 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004523 SmallVector<int, 8> MaskV;
4524 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
4525 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00004526 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004527 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V1),
4528 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V2), &MaskV[0]);
4529 NewV = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004530
Nate Begemanb9a47b82009-02-23 08:49:38 +00004531 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
4532 // source words for the shuffle, to aid later transformations.
4533 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00004534 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00004535 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004536 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00004537 if (idx != (int)i)
4538 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004539 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00004540 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004541 AllWordsInNewV = false;
4542 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00004543 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004544
Nate Begemanb9a47b82009-02-23 08:49:38 +00004545 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
4546 if (AllWordsInNewV) {
4547 for (int i = 0; i != 8; ++i) {
4548 int idx = MaskVals[i];
4549 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004550 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004551 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004552 if ((idx != i) && idx < 4)
4553 pshufhw = false;
4554 if ((idx != i) && idx > 3)
4555 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00004556 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00004557 V1 = NewV;
4558 V2Used = false;
4559 BestLoQuad = 0;
4560 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004561 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004562
Nate Begemanb9a47b82009-02-23 08:49:38 +00004563 // If we've eliminated the use of V2, and the new mask is a pshuflw or
4564 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00004565 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004566 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
4567 unsigned TargetMask = 0;
4568 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00004569 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004570 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
4571 X86::getShufflePSHUFLWImmediate(NewV.getNode());
4572 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004573 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00004574 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004575 }
Eric Christopherfd179292009-08-27 18:07:15 +00004576
Nate Begemanb9a47b82009-02-23 08:49:38 +00004577 // If we have SSSE3, and all words of the result are from 1 input vector,
4578 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
4579 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004580 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004581 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004582
Nate Begemanb9a47b82009-02-23 08:49:38 +00004583 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00004584 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00004585 // mask, and elements that come from V1 in the V2 mask, so that the two
4586 // results can be OR'd together.
4587 bool TwoInputs = V1Used && V2Used;
4588 for (unsigned i = 0; i != 8; ++i) {
4589 int EltIdx = MaskVals[i] * 2;
4590 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004591 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4592 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004593 continue;
4594 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004595 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
4596 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004597 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004598 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004599 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004600 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004601 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004602 if (!TwoInputs)
Owen Anderson825b72b2009-08-11 20:47:22 +00004603 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004604
Nate Begemanb9a47b82009-02-23 08:49:38 +00004605 // Calculate the shuffle mask for the second input, shuffle it, and
4606 // OR it with the first shuffled input.
4607 pshufbMask.clear();
4608 for (unsigned i = 0; i != 8; ++i) {
4609 int EltIdx = MaskVals[i] * 2;
4610 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004611 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4612 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004613 continue;
4614 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004615 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
4616 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004617 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004618 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00004619 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004620 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004621 MVT::v16i8, &pshufbMask[0], 16));
4622 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
4623 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004624 }
4625
4626 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
4627 // and update MaskVals with new element order.
4628 BitVector InOrder(8);
4629 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004630 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004631 for (int i = 0; i != 4; ++i) {
4632 int idx = MaskVals[i];
4633 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004634 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004635 InOrder.set(i);
4636 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004637 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004638 InOrder.set(i);
4639 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004640 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004641 }
4642 }
4643 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004644 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00004645 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004646 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004647
4648 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4649 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
4650 NewV.getOperand(0),
4651 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
4652 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004653 }
Eric Christopherfd179292009-08-27 18:07:15 +00004654
Nate Begemanb9a47b82009-02-23 08:49:38 +00004655 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
4656 // and update MaskVals with the new element order.
4657 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004658 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004659 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004660 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004661 for (unsigned i = 4; i != 8; ++i) {
4662 int idx = MaskVals[i];
4663 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004664 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004665 InOrder.set(i);
4666 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004667 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004668 InOrder.set(i);
4669 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004670 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004671 }
4672 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004673 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004674 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004675
4676 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4677 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
4678 NewV.getOperand(0),
4679 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
4680 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004681 }
Eric Christopherfd179292009-08-27 18:07:15 +00004682
Nate Begemanb9a47b82009-02-23 08:49:38 +00004683 // In case BestHi & BestLo were both -1, which means each quadword has a word
4684 // from each of the four input quadwords, calculate the InOrder bitvector now
4685 // before falling through to the insert/extract cleanup.
4686 if (BestLoQuad == -1 && BestHiQuad == -1) {
4687 NewV = V1;
4688 for (int i = 0; i != 8; ++i)
4689 if (MaskVals[i] < 0 || MaskVals[i] == i)
4690 InOrder.set(i);
4691 }
Eric Christopherfd179292009-08-27 18:07:15 +00004692
Nate Begemanb9a47b82009-02-23 08:49:38 +00004693 // The other elements are put in the right place using pextrw and pinsrw.
4694 for (unsigned i = 0; i != 8; ++i) {
4695 if (InOrder[i])
4696 continue;
4697 int EltIdx = MaskVals[i];
4698 if (EltIdx < 0)
4699 continue;
4700 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00004701 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004702 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00004703 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004704 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00004705 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004706 DAG.getIntPtrConstant(i));
4707 }
4708 return NewV;
4709}
4710
4711// v16i8 shuffles - Prefer shuffles in the following order:
4712// 1. [ssse3] 1 x pshufb
4713// 2. [ssse3] 2 x pshufb + 1 x por
4714// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
4715static
Nate Begeman9008ca62009-04-27 18:41:29 +00004716SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00004717 SelectionDAG &DAG,
4718 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004719 SDValue V1 = SVOp->getOperand(0);
4720 SDValue V2 = SVOp->getOperand(1);
4721 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004722 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00004723 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00004724
Nate Begemanb9a47b82009-02-23 08:49:38 +00004725 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00004726 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00004727 // present, fall back to case 3.
4728 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
4729 bool V1Only = true;
4730 bool V2Only = true;
4731 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004732 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00004733 if (EltIdx < 0)
4734 continue;
4735 if (EltIdx < 16)
4736 V2Only = false;
4737 else
4738 V1Only = false;
4739 }
Eric Christopherfd179292009-08-27 18:07:15 +00004740
Nate Begemanb9a47b82009-02-23 08:49:38 +00004741 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
4742 if (TLI.getSubtarget()->hasSSSE3()) {
4743 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004744
Nate Begemanb9a47b82009-02-23 08:49:38 +00004745 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00004746 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00004747 //
4748 // Otherwise, we have elements from both input vectors, and must zero out
4749 // elements that come from V2 in the first mask, and V1 in the second mask
4750 // so that we can OR them together.
4751 bool TwoInputs = !(V1Only || V2Only);
4752 for (unsigned i = 0; i != 16; ++i) {
4753 int EltIdx = MaskVals[i];
4754 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004755 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004756 continue;
4757 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004758 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004759 }
4760 // If all the elements are from V2, assign it to V1 and return after
4761 // building the first pshufb.
4762 if (V2Only)
4763 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00004764 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004765 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004766 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004767 if (!TwoInputs)
4768 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00004769
Nate Begemanb9a47b82009-02-23 08:49:38 +00004770 // Calculate the shuffle mask for the second input, shuffle it, and
4771 // OR it with the first shuffled input.
4772 pshufbMask.clear();
4773 for (unsigned i = 0; i != 16; ++i) {
4774 int EltIdx = MaskVals[i];
4775 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004776 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004777 continue;
4778 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004779 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004780 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004781 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004782 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004783 MVT::v16i8, &pshufbMask[0], 16));
4784 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004785 }
Eric Christopherfd179292009-08-27 18:07:15 +00004786
Nate Begemanb9a47b82009-02-23 08:49:38 +00004787 // No SSSE3 - Calculate in place words and then fix all out of place words
4788 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
4789 // the 16 different words that comprise the two doublequadword input vectors.
Owen Anderson825b72b2009-08-11 20:47:22 +00004790 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
4791 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004792 SDValue NewV = V2Only ? V2 : V1;
4793 for (int i = 0; i != 8; ++i) {
4794 int Elt0 = MaskVals[i*2];
4795 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00004796
Nate Begemanb9a47b82009-02-23 08:49:38 +00004797 // This word of the result is all undef, skip it.
4798 if (Elt0 < 0 && Elt1 < 0)
4799 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004800
Nate Begemanb9a47b82009-02-23 08:49:38 +00004801 // This word of the result is already in the correct place, skip it.
4802 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
4803 continue;
4804 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
4805 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004806
Nate Begemanb9a47b82009-02-23 08:49:38 +00004807 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
4808 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
4809 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00004810
4811 // If Elt0 and Elt1 are defined, are consecutive, and can be load
4812 // using a single extract together, load it and store it.
4813 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004814 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00004815 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00004816 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00004817 DAG.getIntPtrConstant(i));
4818 continue;
4819 }
4820
Nate Begemanb9a47b82009-02-23 08:49:38 +00004821 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00004822 // source byte is not also odd, shift the extracted word left 8 bits
4823 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00004824 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004825 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004826 DAG.getIntPtrConstant(Elt1 / 2));
4827 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004828 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004829 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00004830 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004831 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
4832 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004833 }
4834 // If Elt0 is defined, extract it from the appropriate source. If the
4835 // source byte is not also even, shift the extracted word right 8 bits. If
4836 // Elt1 was also defined, OR the extracted values together before
4837 // inserting them in the result.
4838 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004839 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004840 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
4841 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004842 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004843 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00004844 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004845 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
4846 DAG.getConstant(0x00FF, MVT::i16));
4847 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00004848 : InsElt0;
4849 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004850 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004851 DAG.getIntPtrConstant(i));
4852 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004853 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004854}
4855
Evan Cheng7a831ce2007-12-15 03:00:47 +00004856/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004857/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00004858/// done when every pair / quad of shuffle mask elements point to elements in
4859/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004860/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00004861static
Nate Begeman9008ca62009-04-27 18:41:29 +00004862SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00004863 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00004864 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00004865 SDValue V1 = SVOp->getOperand(0);
4866 SDValue V2 = SVOp->getOperand(1);
4867 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00004868 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004869 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00004870 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004871 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00004872 case MVT::v4f32: NewVT = MVT::v2f64; break;
4873 case MVT::v4i32: NewVT = MVT::v2i64; break;
4874 case MVT::v8i16: NewVT = MVT::v4i32; break;
4875 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00004876 }
4877
Nate Begeman9008ca62009-04-27 18:41:29 +00004878 int Scale = NumElems / NewWidth;
4879 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00004880 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004881 int StartIdx = -1;
4882 for (int j = 0; j < Scale; ++j) {
4883 int EltIdx = SVOp->getMaskElt(i+j);
4884 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004885 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00004886 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00004887 StartIdx = EltIdx - (EltIdx % Scale);
4888 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00004889 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00004890 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004891 if (StartIdx == -1)
4892 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00004893 else
Nate Begeman9008ca62009-04-27 18:41:29 +00004894 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004895 }
4896
Dale Johannesenace16102009-02-03 19:33:06 +00004897 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V1);
4898 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00004899 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004900}
4901
Evan Chengd880b972008-05-09 21:53:03 +00004902/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004903///
Owen Andersone50ed302009-08-10 22:56:29 +00004904static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00004905 SDValue SrcOp, SelectionDAG &DAG,
4906 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004907 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004908 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00004909 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00004910 LD = dyn_cast<LoadSDNode>(SrcOp);
4911 if (!LD) {
4912 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
4913 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00004914 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
4915 if ((ExtVT.SimpleTy != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00004916 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
4917 SrcOp.getOperand(0).getOpcode() == ISD::BIT_CONVERT &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00004918 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004919 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00004920 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Dale Johannesenace16102009-02-03 19:33:06 +00004921 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4922 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
4923 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
4924 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00004925 SrcOp.getOperand(0)
4926 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00004927 }
4928 }
4929 }
4930
Dale Johannesenace16102009-02-03 19:33:06 +00004931 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4932 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004933 DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00004934 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00004935}
4936
Evan Chengace3c172008-07-22 21:13:36 +00004937/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
4938/// shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004939static SDValue
Nate Begeman9008ca62009-04-27 18:41:29 +00004940LowerVECTOR_SHUFFLE_4wide(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
4941 SDValue V1 = SVOp->getOperand(0);
4942 SDValue V2 = SVOp->getOperand(1);
4943 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00004944 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00004945
Evan Chengace3c172008-07-22 21:13:36 +00004946 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00004947 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00004948 SmallVector<int, 8> Mask1(4U, -1);
4949 SmallVector<int, 8> PermMask;
4950 SVOp->getMask(PermMask);
4951
Evan Chengace3c172008-07-22 21:13:36 +00004952 unsigned NumHi = 0;
4953 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00004954 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004955 int Idx = PermMask[i];
4956 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00004957 Locs[i] = std::make_pair(-1, -1);
4958 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004959 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
4960 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00004961 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00004962 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004963 NumLo++;
4964 } else {
4965 Locs[i] = std::make_pair(1, NumHi);
4966 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00004967 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004968 NumHi++;
4969 }
4970 }
4971 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004972
Evan Chengace3c172008-07-22 21:13:36 +00004973 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004974 // If no more than two elements come from either vector. This can be
4975 // implemented with two shuffles. First shuffle gather the elements.
4976 // The second shuffle, which takes the first shuffle as both of its
4977 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00004978 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004979
Nate Begeman9008ca62009-04-27 18:41:29 +00004980 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00004981
Evan Chengace3c172008-07-22 21:13:36 +00004982 for (unsigned i = 0; i != 4; ++i) {
4983 if (Locs[i].first == -1)
4984 continue;
4985 else {
4986 unsigned Idx = (i < 2) ? 0 : 4;
4987 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00004988 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004989 }
4990 }
4991
Nate Begeman9008ca62009-04-27 18:41:29 +00004992 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004993 } else if (NumLo == 3 || NumHi == 3) {
4994 // Otherwise, we must have three elements from one vector, call it X, and
4995 // one element from the other, call it Y. First, use a shufps to build an
4996 // intermediate vector with the one element from Y and the element from X
4997 // that will be in the same half in the final destination (the indexes don't
4998 // matter). Then, use a shufps to build the final vector, taking the half
4999 // containing the element from Y from the intermediate, and the other half
5000 // from X.
5001 if (NumHi == 3) {
5002 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00005003 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005004 std::swap(V1, V2);
5005 }
5006
5007 // Find the element from V2.
5008 unsigned HiIndex;
5009 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005010 int Val = PermMask[HiIndex];
5011 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005012 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005013 if (Val >= 4)
5014 break;
5015 }
5016
Nate Begeman9008ca62009-04-27 18:41:29 +00005017 Mask1[0] = PermMask[HiIndex];
5018 Mask1[1] = -1;
5019 Mask1[2] = PermMask[HiIndex^1];
5020 Mask1[3] = -1;
5021 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005022
5023 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005024 Mask1[0] = PermMask[0];
5025 Mask1[1] = PermMask[1];
5026 Mask1[2] = HiIndex & 1 ? 6 : 4;
5027 Mask1[3] = HiIndex & 1 ? 4 : 6;
5028 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005029 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005030 Mask1[0] = HiIndex & 1 ? 2 : 0;
5031 Mask1[1] = HiIndex & 1 ? 0 : 2;
5032 Mask1[2] = PermMask[2];
5033 Mask1[3] = PermMask[3];
5034 if (Mask1[2] >= 0)
5035 Mask1[2] += 4;
5036 if (Mask1[3] >= 0)
5037 Mask1[3] += 4;
5038 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005039 }
Evan Chengace3c172008-07-22 21:13:36 +00005040 }
5041
5042 // Break it into (shuffle shuffle_hi, shuffle_lo).
5043 Locs.clear();
Nate Begeman9008ca62009-04-27 18:41:29 +00005044 SmallVector<int,8> LoMask(4U, -1);
5045 SmallVector<int,8> HiMask(4U, -1);
5046
5047 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00005048 unsigned MaskIdx = 0;
5049 unsigned LoIdx = 0;
5050 unsigned HiIdx = 2;
5051 for (unsigned i = 0; i != 4; ++i) {
5052 if (i == 2) {
5053 MaskPtr = &HiMask;
5054 MaskIdx = 1;
5055 LoIdx = 0;
5056 HiIdx = 2;
5057 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005058 int Idx = PermMask[i];
5059 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005060 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005061 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005062 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005063 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005064 LoIdx++;
5065 } else {
5066 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005067 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005068 HiIdx++;
5069 }
5070 }
5071
Nate Begeman9008ca62009-04-27 18:41:29 +00005072 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5073 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5074 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00005075 for (unsigned i = 0; i != 4; ++i) {
5076 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005077 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00005078 } else {
5079 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005080 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00005081 }
5082 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005083 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00005084}
5085
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005086static bool MayFoldVectorLoad(SDValue V) {
5087 if (V.hasOneUse() && V.getOpcode() == ISD::BIT_CONVERT)
5088 V = V.getOperand(0);
5089 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5090 V = V.getOperand(0);
5091 if (MayFoldLoad(V))
5092 return true;
5093 return false;
5094}
5095
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005096// FIXME: the version above should always be used. Since there's
5097// a bug where several vector shuffles can't be folded because the
5098// DAG is not updated during lowering and a node claims to have two
5099// uses while it only has one, use this version, and let isel match
5100// another instruction if the load really happens to have more than
5101// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00005102// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005103static bool RelaxedMayFoldVectorLoad(SDValue V) {
5104 if (V.hasOneUse() && V.getOpcode() == ISD::BIT_CONVERT)
5105 V = V.getOperand(0);
5106 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5107 V = V.getOperand(0);
5108 if (ISD::isNormalLoad(V.getNode()))
5109 return true;
5110 return false;
5111}
5112
5113/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5114/// a vector extract, and if both can be later optimized into a single load.
5115/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5116/// here because otherwise a target specific shuffle node is going to be
5117/// emitted for this shuffle, and the optimization not done.
5118/// FIXME: This is probably not the best approach, but fix the problem
5119/// until the right path is decided.
5120static
5121bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5122 const TargetLowering &TLI) {
5123 EVT VT = V.getValueType();
5124 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5125
5126 // Be sure that the vector shuffle is present in a pattern like this:
5127 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5128 if (!V.hasOneUse())
5129 return false;
5130
5131 SDNode *N = *V.getNode()->use_begin();
5132 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5133 return false;
5134
5135 SDValue EltNo = N->getOperand(1);
5136 if (!isa<ConstantSDNode>(EltNo))
5137 return false;
5138
5139 // If the bit convert changed the number of elements, it is unsafe
5140 // to examine the mask.
5141 bool HasShuffleIntoBitcast = false;
5142 if (V.getOpcode() == ISD::BIT_CONVERT) {
5143 EVT SrcVT = V.getOperand(0).getValueType();
5144 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5145 return false;
5146 V = V.getOperand(0);
5147 HasShuffleIntoBitcast = true;
5148 }
5149
5150 // Select the input vector, guarding against out of range extract vector.
5151 unsigned NumElems = VT.getVectorNumElements();
5152 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5153 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5154 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5155
5156 // Skip one more bit_convert if necessary
5157 if (V.getOpcode() == ISD::BIT_CONVERT)
5158 V = V.getOperand(0);
5159
5160 if (ISD::isNormalLoad(V.getNode())) {
5161 // Is the original load suitable?
5162 LoadSDNode *LN0 = cast<LoadSDNode>(V);
5163
5164 // FIXME: avoid the multi-use bug that is preventing lots of
5165 // of foldings to be detected, this is still wrong of course, but
5166 // give the temporary desired behavior, and if it happens that
5167 // the load has real more uses, during isel it will not fold, and
5168 // will generate poor code.
5169 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
5170 return false;
5171
5172 if (!HasShuffleIntoBitcast)
5173 return true;
5174
5175 // If there's a bitcast before the shuffle, check if the load type and
5176 // alignment is valid.
5177 unsigned Align = LN0->getAlignment();
5178 unsigned NewAlign =
5179 TLI.getTargetData()->getABITypeAlignment(
5180 VT.getTypeForEVT(*DAG.getContext()));
5181
5182 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
5183 return false;
5184 }
5185
5186 return true;
5187}
5188
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005189static
Evan Cheng835580f2010-10-07 20:50:20 +00005190SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
5191 EVT VT = Op.getValueType();
5192
5193 // Canonizalize to v2f64.
5194 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, V1);
5195 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
5196 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
5197 V1, DAG));
5198}
5199
5200static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005201SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
5202 bool HasSSE2) {
5203 SDValue V1 = Op.getOperand(0);
5204 SDValue V2 = Op.getOperand(1);
5205 EVT VT = Op.getValueType();
5206
5207 assert(VT != MVT::v2i64 && "unsupported shuffle type");
5208
5209 if (HasSSE2 && VT == MVT::v2f64)
5210 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
5211
5212 // v4f32 or v4i32
5213 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
5214}
5215
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005216static
5217SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
5218 SDValue V1 = Op.getOperand(0);
5219 SDValue V2 = Op.getOperand(1);
5220 EVT VT = Op.getValueType();
5221
5222 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
5223 "unsupported shuffle type");
5224
5225 if (V2.getOpcode() == ISD::UNDEF)
5226 V2 = V1;
5227
5228 // v4i32 or v4f32
5229 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
5230}
5231
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005232static
5233SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
5234 SDValue V1 = Op.getOperand(0);
5235 SDValue V2 = Op.getOperand(1);
5236 EVT VT = Op.getValueType();
5237 unsigned NumElems = VT.getVectorNumElements();
5238
5239 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
5240 // operand of these instructions is only memory, so check if there's a
5241 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
5242 // same masks.
5243 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005244
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00005245 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005246 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005247 CanFoldLoad = true;
5248
5249 // When V1 is a load, it can be folded later into a store in isel, example:
5250 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
5251 // turns into:
5252 // (MOVLPSmr addr:$src1, VR128:$src2)
5253 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005254 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005255 CanFoldLoad = true;
5256
5257 if (CanFoldLoad) {
5258 if (HasSSE2 && NumElems == 2)
5259 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
5260
5261 if (NumElems == 4)
5262 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
5263 }
5264
5265 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5266 // movl and movlp will both match v2i64, but v2i64 is never matched by
5267 // movl earlier because we make it strict to avoid messing with the movlp load
5268 // folding logic (see the code above getMOVLP call). Match it here then,
5269 // this is horrible, but will stay like this until we move all shuffle
5270 // matching to x86 specific nodes. Note that for the 1st condition all
5271 // types are matched with movsd.
5272 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
5273 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5274 else if (HasSSE2)
5275 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5276
5277
5278 assert(VT != MVT::v4i32 && "unsupported shuffle type");
5279
5280 // Invert the operand order and use SHUFPS to match it.
5281 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
5282 X86::getShuffleSHUFImmediate(SVOp), DAG);
5283}
5284
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005285static inline unsigned getUNPCKLOpcode(EVT VT) {
5286 switch(VT.getSimpleVT().SimpleTy) {
5287 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
5288 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
5289 case MVT::v4f32: return X86ISD::UNPCKLPS;
5290 case MVT::v2f64: return X86ISD::UNPCKLPD;
5291 case MVT::v16i8: return X86ISD::PUNPCKLBW;
5292 case MVT::v8i16: return X86ISD::PUNPCKLWD;
5293 default:
5294 llvm_unreachable("Unknow type for unpckl");
5295 }
5296 return 0;
5297}
5298
5299static inline unsigned getUNPCKHOpcode(EVT VT) {
5300 switch(VT.getSimpleVT().SimpleTy) {
5301 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
5302 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
5303 case MVT::v4f32: return X86ISD::UNPCKHPS;
5304 case MVT::v2f64: return X86ISD::UNPCKHPD;
5305 case MVT::v16i8: return X86ISD::PUNPCKHBW;
5306 case MVT::v8i16: return X86ISD::PUNPCKHWD;
5307 default:
5308 llvm_unreachable("Unknow type for unpckh");
5309 }
5310 return 0;
5311}
5312
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005313static
5314SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005315 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005316 const X86Subtarget *Subtarget) {
5317 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5318 EVT VT = Op.getValueType();
5319 DebugLoc dl = Op.getDebugLoc();
5320 SDValue V1 = Op.getOperand(0);
5321 SDValue V2 = Op.getOperand(1);
5322
5323 if (isZeroShuffle(SVOp))
5324 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
5325
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005326 // Handle splat operations
5327 if (SVOp->isSplat()) {
5328 // Special case, this is the only place now where it's
5329 // allowed to return a vector_shuffle operation without
5330 // using a target specific node, because *hopefully* it
5331 // will be optimized away by the dag combiner.
5332 if (VT.getVectorNumElements() <= 4 &&
5333 CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
5334 return Op;
5335
5336 // Handle splats by matching through known masks
5337 if (VT.getVectorNumElements() <= 4)
5338 return SDValue();
5339
Evan Cheng835580f2010-10-07 20:50:20 +00005340 // Canonicalize all of the remaining to v4f32.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005341 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005342 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005343
5344 // If the shuffle can be profitably rewritten as a narrower shuffle, then
5345 // do it!
5346 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
5347 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5348 if (NewOp.getNode())
5349 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, NewOp);
5350 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
5351 // FIXME: Figure out a cleaner way to do this.
5352 // Try to make use of movq to zero out the top part.
5353 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
5354 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5355 if (NewOp.getNode()) {
5356 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
5357 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
5358 DAG, Subtarget, dl);
5359 }
5360 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
5361 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5362 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
5363 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
5364 DAG, Subtarget, dl);
5365 }
5366 }
5367 return SDValue();
5368}
5369
Dan Gohman475871a2008-07-27 21:46:04 +00005370SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005371X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00005372 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005373 SDValue V1 = Op.getOperand(0);
5374 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005375 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005376 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00005377 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005378 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005379 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
5380 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00005381 bool V1IsSplat = false;
5382 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005383 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005384 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005385 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005386 MachineFunction &MF = DAG.getMachineFunction();
5387 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005388
Dale Johannesen0488fb62010-09-30 23:57:10 +00005389 // Shuffle operations on MMX not supported.
5390 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00005391 return Op;
5392
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005393 // Vector shuffle lowering takes 3 steps:
5394 //
5395 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
5396 // narrowing and commutation of operands should be handled.
5397 // 2) Matching of shuffles with known shuffle masks to x86 target specific
5398 // shuffle nodes.
5399 // 3) Rewriting of unmatched masks into new generic shuffle operations,
5400 // so the shuffle can be broken into other shuffles and the legalizer can
5401 // try the lowering again.
5402 //
5403 // The general ideia is that no vector_shuffle operation should be left to
5404 // be matched during isel, all of them must be converted to a target specific
5405 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00005406
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005407 // Normalize the input vectors. Here splats, zeroed vectors, profitable
5408 // narrowing and commutation of operands should be handled. The actual code
5409 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005410 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005411 if (NewOp.getNode())
5412 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00005413
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005414 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
5415 // unpckh_undef). Only use pshufd if speed is more important than size.
5416 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
5417 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5418 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
5419 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
5420 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5421 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00005422
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005423 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00005424 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00005425 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005426
Dale Johannesen0488fb62010-09-30 23:57:10 +00005427 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005428 return getMOVHighToLow(Op, dl, DAG);
5429
5430 // Use to match splats
5431 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
5432 (VT == MVT::v2f64 || VT == MVT::v2i64))
5433 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5434
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005435 if (X86::isPSHUFDMask(SVOp)) {
5436 // The actual implementation will match the mask in the if above and then
5437 // during isel it can match several different instructions, not only pshufd
5438 // as its name says, sad but true, emulate the behavior for now...
5439 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
5440 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
5441
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005442 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5443
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005444 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005445 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
5446
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005447 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005448 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
5449 TargetMask, DAG);
5450
5451 if (VT == MVT::v4f32)
5452 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
5453 TargetMask, DAG);
5454 }
Eric Christopherfd179292009-08-27 18:07:15 +00005455
Evan Chengf26ffe92008-05-29 08:22:04 +00005456 // Check if this can be converted into a logical shift.
5457 bool isLeft = false;
5458 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00005459 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00005460 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00005461 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00005462 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005463 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00005464 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005465 EVT EltVT = VT.getVectorElementType();
5466 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005467 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005468 }
Eric Christopherfd179292009-08-27 18:07:15 +00005469
Nate Begeman9008ca62009-04-27 18:41:29 +00005470 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005471 if (V1IsUndef)
5472 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00005473 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00005474 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00005475 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005476 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005477 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5478
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005479 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005480 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5481 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00005482 }
Eric Christopherfd179292009-08-27 18:07:15 +00005483
Nate Begeman9008ca62009-04-27 18:41:29 +00005484 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00005485 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
5486 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005487
Dale Johannesen0488fb62010-09-30 23:57:10 +00005488 if (X86::isMOVHLPSMask(SVOp))
5489 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005490
Dale Johannesen0488fb62010-09-30 23:57:10 +00005491 if (X86::isMOVSHDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5492 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005493
Dale Johannesen0488fb62010-09-30 23:57:10 +00005494 if (X86::isMOVSLDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5495 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00005496
Dale Johannesen0488fb62010-09-30 23:57:10 +00005497 if (X86::isMOVLPMask(SVOp))
5498 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005499
Nate Begeman9008ca62009-04-27 18:41:29 +00005500 if (ShouldXformToMOVHLPS(SVOp) ||
5501 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
5502 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005503
Evan Chengf26ffe92008-05-29 08:22:04 +00005504 if (isShift) {
5505 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005506 EVT EltVT = VT.getVectorElementType();
5507 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005508 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005509 }
Eric Christopherfd179292009-08-27 18:07:15 +00005510
Evan Cheng9eca5e82006-10-25 21:49:50 +00005511 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00005512 // FIXME: This should also accept a bitcast of a splat? Be careful, not
5513 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00005514 V1IsSplat = isSplatVector(V1.getNode());
5515 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005516
Chris Lattner8a594482007-11-25 00:24:49 +00005517 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00005518 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005519 Op = CommuteVectorShuffle(SVOp, DAG);
5520 SVOp = cast<ShuffleVectorSDNode>(Op);
5521 V1 = SVOp->getOperand(0);
5522 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00005523 std::swap(V1IsSplat, V2IsSplat);
5524 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005525 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00005526 }
5527
Nate Begeman9008ca62009-04-27 18:41:29 +00005528 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
5529 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00005530 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00005531 return V1;
5532 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
5533 // the instruction selector will not match, so get a canonical MOVL with
5534 // swapped operands to undo the commute.
5535 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00005536 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005537
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005538 if (X86::isUNPCKLMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005539 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005540
5541 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005542 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00005543
Evan Cheng9bbbb982006-10-25 20:48:19 +00005544 if (V2IsSplat) {
5545 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00005546 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00005547 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00005548 SDValue NewMask = NormalizeMask(SVOp, DAG);
5549 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
5550 if (NSVOp != SVOp) {
5551 if (X86::isUNPCKLMask(NSVOp, true)) {
5552 return NewMask;
5553 } else if (X86::isUNPCKHMask(NSVOp, true)) {
5554 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005555 }
5556 }
5557 }
5558
Evan Cheng9eca5e82006-10-25 21:49:50 +00005559 if (Commuted) {
5560 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00005561 // FIXME: this seems wrong.
5562 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
5563 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005564
5565 if (X86::isUNPCKLMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005566 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005567
5568 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005569 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005570 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005571
Nate Begeman9008ca62009-04-27 18:41:29 +00005572 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00005573 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00005574 return CommuteVectorShuffle(SVOp, DAG);
5575
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00005576 // The checks below are all present in isShuffleMaskLegal, but they are
5577 // inlined here right now to enable us to directly emit target specific
5578 // nodes, and remove one by one until they don't return Op anymore.
5579 SmallVector<int, 16> M;
5580 SVOp->getMask(M);
5581
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005582 if (isPALIGNRMask(M, VT, HasSSSE3))
5583 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
5584 X86::getShufflePALIGNRImmediate(SVOp),
5585 DAG);
5586
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00005587 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
5588 SVOp->getSplatIndex() == 0 && V2IsUndef) {
5589 if (VT == MVT::v2f64)
5590 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
5591 if (VT == MVT::v2i64)
5592 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
5593 }
5594
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00005595 if (isPSHUFHWMask(M, VT))
5596 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
5597 X86::getShufflePSHUFHWImmediate(SVOp),
5598 DAG);
5599
5600 if (isPSHUFLWMask(M, VT))
5601 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
5602 X86::getShufflePSHUFLWImmediate(SVOp),
5603 DAG);
5604
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00005605 if (isSHUFPMask(M, VT)) {
5606 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5607 if (VT == MVT::v4f32 || VT == MVT::v4i32)
5608 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
5609 TargetMask, DAG);
5610 if (VT == MVT::v2f64 || VT == MVT::v2i64)
5611 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
5612 TargetMask, DAG);
5613 }
5614
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005615 if (X86::isUNPCKL_v_undef_Mask(SVOp))
5616 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5617 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
5618 if (X86::isUNPCKH_v_undef_Mask(SVOp))
5619 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5620 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5621
Evan Cheng14b32e12007-12-11 01:46:18 +00005622 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
Owen Anderson825b72b2009-08-11 20:47:22 +00005623 if (VT == MVT::v8i16) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005624 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005625 if (NewOp.getNode())
Evan Cheng14b32e12007-12-11 01:46:18 +00005626 return NewOp;
5627 }
5628
Owen Anderson825b72b2009-08-11 20:47:22 +00005629 if (VT == MVT::v16i8) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005630 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005631 if (NewOp.getNode())
5632 return NewOp;
5633 }
Eric Christopherfd179292009-08-27 18:07:15 +00005634
Dale Johannesen0488fb62010-09-30 23:57:10 +00005635 // Handle all 4 wide cases with a number of shuffles.
5636 if (NumElems == 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005637 return LowerVECTOR_SHUFFLE_4wide(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005638
Dan Gohman475871a2008-07-27 21:46:04 +00005639 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005640}
5641
Dan Gohman475871a2008-07-27 21:46:04 +00005642SDValue
5643X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00005644 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005645 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005646 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005647 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005648 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005649 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005650 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005651 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005652 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005653 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00005654 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
5655 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
5656 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005657 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
5658 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Dale Johannesenace16102009-02-03 19:33:06 +00005659 DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005660 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00005661 Op.getOperand(0)),
5662 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00005663 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005664 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005665 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005666 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005667 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00005668 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00005669 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
5670 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005671 // result has a single use which is a store or a bitcast to i32. And in
5672 // the case of a store, it's not worth it if the index is a constant 0,
5673 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00005674 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00005675 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00005676 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005677 if ((User->getOpcode() != ISD::STORE ||
5678 (isa<ConstantSDNode>(Op.getOperand(1)) &&
5679 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Dan Gohman171c11e2008-04-16 02:32:24 +00005680 (User->getOpcode() != ISD::BIT_CONVERT ||
Owen Anderson825b72b2009-08-11 20:47:22 +00005681 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00005682 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00005683 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
5684 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00005685 Op.getOperand(0)),
5686 Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005687 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, Extract);
5688 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00005689 // ExtractPS works with constant index.
5690 if (isa<ConstantSDNode>(Op.getOperand(1)))
5691 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00005692 }
Dan Gohman475871a2008-07-27 21:46:04 +00005693 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005694}
5695
5696
Dan Gohman475871a2008-07-27 21:46:04 +00005697SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005698X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
5699 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005700 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00005701 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005702
Evan Cheng62a3f152008-03-24 21:52:23 +00005703 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005704 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005705 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00005706 return Res;
5707 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00005708
Owen Andersone50ed302009-08-10 22:56:29 +00005709 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005710 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005711 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005712 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005713 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005714 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005715 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005716 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
5717 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Scott Michelfdc40a02009-02-17 22:15:04 +00005718 DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005719 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00005720 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005721 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00005722 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00005723 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00005724 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00005725 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00005726 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005727 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005728 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005729 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005730 if (Idx == 0)
5731 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00005732
Evan Cheng0db9fe62006-04-25 20:13:52 +00005733 // SHUFPS the element to the lowest double word, then movss.
Nate Begeman9008ca62009-04-27 18:41:29 +00005734 int Mask[4] = { Idx, -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00005735 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00005736 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00005737 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00005738 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00005739 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00005740 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00005741 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
5742 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
5743 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005744 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005745 if (Idx == 0)
5746 return Op;
5747
5748 // UNPCKHPD the element to the lowest double word, then movsd.
5749 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
5750 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00005751 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00005752 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00005753 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00005754 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00005755 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00005756 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005757 }
5758
Dan Gohman475871a2008-07-27 21:46:04 +00005759 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005760}
5761
Dan Gohman475871a2008-07-27 21:46:04 +00005762SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005763X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
5764 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005765 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00005766 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005767 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005768
Dan Gohman475871a2008-07-27 21:46:04 +00005769 SDValue N0 = Op.getOperand(0);
5770 SDValue N1 = Op.getOperand(1);
5771 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00005772
Dan Gohman8a55ce42009-09-23 21:02:20 +00005773 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00005774 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00005775 unsigned Opc;
5776 if (VT == MVT::v8i16)
5777 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00005778 else if (VT == MVT::v16i8)
5779 Opc = X86ISD::PINSRB;
5780 else
5781 Opc = X86ISD::PINSRB;
5782
Nate Begeman14d12ca2008-02-11 04:19:36 +00005783 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
5784 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00005785 if (N1.getValueType() != MVT::i32)
5786 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
5787 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005788 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00005789 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00005790 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00005791 // Bits [7:6] of the constant are the source select. This will always be
5792 // zero here. The DAG Combiner may combine an extract_elt index into these
5793 // bits. For example (insert (extract, 3), 2) could be matched by putting
5794 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00005795 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00005796 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00005797 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00005798 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005799 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00005800 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00005801 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00005802 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00005803 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00005804 // PINSR* works with constant index.
5805 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00005806 }
Dan Gohman475871a2008-07-27 21:46:04 +00005807 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005808}
5809
Dan Gohman475871a2008-07-27 21:46:04 +00005810SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005811X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005812 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00005813 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005814
5815 if (Subtarget->hasSSE41())
5816 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
5817
Dan Gohman8a55ce42009-09-23 21:02:20 +00005818 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00005819 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00005820
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005821 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00005822 SDValue N0 = Op.getOperand(0);
5823 SDValue N1 = Op.getOperand(1);
5824 SDValue N2 = Op.getOperand(2);
Evan Cheng794405e2007-12-12 07:55:34 +00005825
Dan Gohman8a55ce42009-09-23 21:02:20 +00005826 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00005827 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
5828 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00005829 if (N1.getValueType() != MVT::i32)
5830 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
5831 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005832 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00005833 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005834 }
Dan Gohman475871a2008-07-27 21:46:04 +00005835 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005836}
5837
Dan Gohman475871a2008-07-27 21:46:04 +00005838SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005839X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005840 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00005841
Chris Lattnerf172ecd2010-07-04 23:07:25 +00005842 if (Op.getValueType() == MVT::v1i64 &&
5843 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00005844 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00005845
Owen Anderson825b72b2009-08-11 20:47:22 +00005846 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00005847 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
5848 "Expected an SSE type!");
Dale Johannesenace16102009-02-03 19:33:06 +00005849 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00005850 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005851}
5852
Bill Wendling056292f2008-09-16 21:48:12 +00005853// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
5854// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
5855// one of the above mentioned nodes. It has to be wrapped because otherwise
5856// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
5857// be used to form addressing mode. These wrapped nodes will be selected
5858// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00005859SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005860X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005861 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00005862
Chris Lattner41621a22009-06-26 19:22:52 +00005863 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5864 // global base reg.
5865 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00005866 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005867 CodeModel::Model M = getTargetMachine().getCodeModel();
5868
Chris Lattner4f066492009-07-11 20:29:19 +00005869 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005870 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005871 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005872 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005873 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005874 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005875 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005876
Evan Cheng1606e8e2009-03-13 07:51:59 +00005877 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00005878 CP->getAlignment(),
5879 CP->getOffset(), OpFlag);
5880 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00005881 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005882 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00005883 if (OpFlag) {
5884 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005885 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005886 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005887 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005888 }
5889
5890 return Result;
5891}
5892
Dan Gohmand858e902010-04-17 15:26:15 +00005893SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00005894 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00005895
Chris Lattner18c59872009-06-27 04:16:01 +00005896 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5897 // global base reg.
5898 unsigned char OpFlag = 0;
5899 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005900 CodeModel::Model M = getTargetMachine().getCodeModel();
5901
Chris Lattner4f066492009-07-11 20:29:19 +00005902 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005903 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005904 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005905 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005906 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005907 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005908 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005909
Chris Lattner18c59872009-06-27 04:16:01 +00005910 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
5911 OpFlag);
5912 DebugLoc DL = JT->getDebugLoc();
5913 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005914
Chris Lattner18c59872009-06-27 04:16:01 +00005915 // With PIC, the address is actually $g + Offset.
5916 if (OpFlag) {
5917 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
5918 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005919 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00005920 Result);
5921 }
Eric Christopherfd179292009-08-27 18:07:15 +00005922
Chris Lattner18c59872009-06-27 04:16:01 +00005923 return Result;
5924}
5925
5926SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005927X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00005928 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00005929
Chris Lattner18c59872009-06-27 04:16:01 +00005930 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5931 // global base reg.
5932 unsigned char OpFlag = 0;
5933 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005934 CodeModel::Model M = getTargetMachine().getCodeModel();
5935
Chris Lattner4f066492009-07-11 20:29:19 +00005936 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005937 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005938 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005939 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005940 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005941 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005942 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005943
Chris Lattner18c59872009-06-27 04:16:01 +00005944 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00005945
Chris Lattner18c59872009-06-27 04:16:01 +00005946 DebugLoc DL = Op.getDebugLoc();
5947 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005948
5949
Chris Lattner18c59872009-06-27 04:16:01 +00005950 // With PIC, the address is actually $g + Offset.
5951 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00005952 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00005953 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
5954 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005955 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00005956 Result);
5957 }
Eric Christopherfd179292009-08-27 18:07:15 +00005958
Chris Lattner18c59872009-06-27 04:16:01 +00005959 return Result;
5960}
5961
Dan Gohman475871a2008-07-27 21:46:04 +00005962SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005963X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00005964 // Create the TargetBlockAddressAddress node.
5965 unsigned char OpFlags =
5966 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00005967 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00005968 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00005969 DebugLoc dl = Op.getDebugLoc();
5970 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
5971 /*isTarget=*/true, OpFlags);
5972
Dan Gohmanf705adb2009-10-30 01:28:02 +00005973 if (Subtarget->isPICStyleRIPRel() &&
5974 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00005975 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
5976 else
5977 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00005978
Dan Gohman29cbade2009-11-20 23:18:13 +00005979 // With PIC, the address is actually $g + Offset.
5980 if (isGlobalRelativeToPICBase(OpFlags)) {
5981 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
5982 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
5983 Result);
5984 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00005985
5986 return Result;
5987}
5988
5989SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00005990X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00005991 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00005992 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00005993 // Create the TargetGlobalAddress node, folding in the constant
5994 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00005995 unsigned char OpFlags =
5996 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005997 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00005998 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005999 if (OpFlags == X86II::MO_NO_FLAG &&
6000 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00006001 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00006002 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00006003 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006004 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00006005 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006006 }
Eric Christopherfd179292009-08-27 18:07:15 +00006007
Chris Lattner4f066492009-07-11 20:29:19 +00006008 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006009 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00006010 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6011 else
6012 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00006013
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006014 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00006015 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006016 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6017 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006018 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006019 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006020
Chris Lattner36c25012009-07-10 07:34:39 +00006021 // For globals that require a load from a stub to get the address, emit the
6022 // load.
6023 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00006024 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006025 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006026
Dan Gohman6520e202008-10-18 02:06:02 +00006027 // If there was a non-zero offset that we didn't fold, create an explicit
6028 // addition for it.
6029 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006030 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00006031 DAG.getConstant(Offset, getPointerTy()));
6032
Evan Cheng0db9fe62006-04-25 20:13:52 +00006033 return Result;
6034}
6035
Evan Chengda43bcf2008-09-24 00:05:32 +00006036SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006037X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00006038 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00006039 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006040 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00006041}
6042
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006043static SDValue
6044GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00006045 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00006046 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006047 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Owen Anderson825b72b2009-08-11 20:47:22 +00006048 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006049 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006050 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006051 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006052 GA->getOffset(),
6053 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006054 if (InFlag) {
6055 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006056 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006057 } else {
6058 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006059 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006060 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006061
6062 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00006063 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006064
Rafael Espindola15f1b662009-04-24 12:59:40 +00006065 SDValue Flag = Chain.getValue(1);
6066 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006067}
6068
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006069// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006070static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006071LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006072 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00006073 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00006074 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
6075 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006076 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006077 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006078 InFlag = Chain.getValue(1);
6079
Chris Lattnerb903bed2009-06-26 21:20:29 +00006080 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006081}
6082
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006083// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006084static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006085LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006086 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006087 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
6088 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006089}
6090
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006091// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
6092// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00006093static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006094 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00006095 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006096 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00006097
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006098 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
6099 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
6100 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00006101
Michael J. Spencerec38de22010-10-10 22:04:20 +00006102 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006103 DAG.getIntPtrConstant(0),
6104 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00006105
Chris Lattnerb903bed2009-06-26 21:20:29 +00006106 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006107 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
6108 // initialexec.
6109 unsigned WrapperKind = X86ISD::Wrapper;
6110 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006111 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00006112 } else if (is64Bit) {
6113 assert(model == TLSModel::InitialExec);
6114 OperandFlags = X86II::MO_GOTTPOFF;
6115 WrapperKind = X86ISD::WrapperRIP;
6116 } else {
6117 assert(model == TLSModel::InitialExec);
6118 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00006119 }
Eric Christopherfd179292009-08-27 18:07:15 +00006120
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006121 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
6122 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00006123 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00006124 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006125 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006126 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006127
Rafael Espindola9a580232009-02-27 13:37:18 +00006128 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006129 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006130 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006131
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006132 // The address of the thread local variable is the add of the thread
6133 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00006134 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006135}
6136
Dan Gohman475871a2008-07-27 21:46:04 +00006137SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006138X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00006139
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006140 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00006141 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00006142
Eric Christopher30ef0e52010-06-03 04:07:48 +00006143 if (Subtarget->isTargetELF()) {
6144 // TODO: implement the "local dynamic" model
6145 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00006146
Eric Christopher30ef0e52010-06-03 04:07:48 +00006147 // If GV is an alias then use the aliasee for determining
6148 // thread-localness.
6149 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
6150 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006151
6152 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00006153 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006154
Eric Christopher30ef0e52010-06-03 04:07:48 +00006155 switch (model) {
6156 case TLSModel::GeneralDynamic:
6157 case TLSModel::LocalDynamic: // not implemented
6158 if (Subtarget->is64Bit())
6159 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
6160 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006161
Eric Christopher30ef0e52010-06-03 04:07:48 +00006162 case TLSModel::InitialExec:
6163 case TLSModel::LocalExec:
6164 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
6165 Subtarget->is64Bit());
6166 }
6167 } else if (Subtarget->isTargetDarwin()) {
6168 // Darwin only has one model of TLS. Lower to that.
6169 unsigned char OpFlag = 0;
6170 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
6171 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006172
Eric Christopher30ef0e52010-06-03 04:07:48 +00006173 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6174 // global base reg.
6175 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
6176 !Subtarget->is64Bit();
6177 if (PIC32)
6178 OpFlag = X86II::MO_TLVP_PIC_BASE;
6179 else
6180 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006181 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006182 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopher30ef0e52010-06-03 04:07:48 +00006183 getPointerTy(),
6184 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00006185 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006186
Eric Christopher30ef0e52010-06-03 04:07:48 +00006187 // With PIC32, the address is actually $g + Offset.
6188 if (PIC32)
6189 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6190 DAG.getNode(X86ISD::GlobalBaseReg,
6191 DebugLoc(), getPointerTy()),
6192 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006193
Eric Christopher30ef0e52010-06-03 04:07:48 +00006194 // Lowering the machine isd will make sure everything is in the right
6195 // location.
6196 SDValue Args[] = { Offset };
6197 SDValue Chain = DAG.getNode(X86ISD::TLSCALL, DL, MVT::Other, Args, 1);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006198
Eric Christopher30ef0e52010-06-03 04:07:48 +00006199 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
6200 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6201 MFI->setAdjustsStack(true);
Eric Christopherfd179292009-08-27 18:07:15 +00006202
Eric Christopher30ef0e52010-06-03 04:07:48 +00006203 // And our return value (tls address) is in the standard call return value
6204 // location.
6205 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
6206 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006207 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006208
Eric Christopher30ef0e52010-06-03 04:07:48 +00006209 assert(false &&
6210 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00006211
Torok Edwinc23197a2009-07-14 16:55:14 +00006212 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00006213 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006214}
6215
Evan Cheng0db9fe62006-04-25 20:13:52 +00006216
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006217/// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00006218/// take a 2 x i32 value to shift plus a shift amount.
Dan Gohmand858e902010-04-17 15:26:15 +00006219SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00006220 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00006221 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006222 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006223 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006224 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00006225 SDValue ShOpLo = Op.getOperand(0);
6226 SDValue ShOpHi = Op.getOperand(1);
6227 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00006228 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00006229 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00006230 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00006231
Dan Gohman475871a2008-07-27 21:46:04 +00006232 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006233 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006234 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
6235 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006236 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006237 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
6238 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006239 }
Evan Chenge3413162006-01-09 18:33:28 +00006240
Owen Anderson825b72b2009-08-11 20:47:22 +00006241 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
6242 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00006243 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00006244 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00006245
Dan Gohman475871a2008-07-27 21:46:04 +00006246 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00006247 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00006248 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
6249 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00006250
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006251 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006252 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6253 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006254 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006255 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6256 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006257 }
6258
Dan Gohman475871a2008-07-27 21:46:04 +00006259 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00006260 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006261}
Evan Chenga3195e82006-01-12 22:54:21 +00006262
Dan Gohmand858e902010-04-17 15:26:15 +00006263SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
6264 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006265 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00006266
Dale Johannesen0488fb62010-09-30 23:57:10 +00006267 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006268 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006269
Owen Anderson825b72b2009-08-11 20:47:22 +00006270 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00006271 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00006272
Eli Friedman36df4992009-05-27 00:47:34 +00006273 // These are really Legal; return the operand so the caller accepts it as
6274 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006275 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00006276 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00006277 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00006278 Subtarget->is64Bit()) {
6279 return Op;
6280 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006281
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006282 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006283 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006284 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00006285 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006286 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00006287 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00006288 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006289 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006290 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006291 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
6292}
Evan Cheng0db9fe62006-04-25 20:13:52 +00006293
Owen Andersone50ed302009-08-10 22:56:29 +00006294SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00006295 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00006296 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006297 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00006298 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00006299 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00006300 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006301 if (useSSE)
Owen Anderson825b72b2009-08-11 20:47:22 +00006302 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
Chris Lattner5a88b832007-02-25 07:10:00 +00006303 else
Owen Anderson825b72b2009-08-11 20:47:22 +00006304 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006305
Chris Lattner492a43e2010-09-22 01:28:21 +00006306 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006307
Chris Lattner492a43e2010-09-22 01:28:21 +00006308 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6309 MachineMemOperand *MMO =
6310 DAG.getMachineFunction()
6311 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6312 MachineMemOperand::MOLoad, ByteSize, ByteSize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006313
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006314 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006315 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
6316 X86ISD::FILD, DL,
6317 Tys, Ops, array_lengthof(Ops),
6318 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006319
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006320 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006321 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00006322 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006323
6324 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
6325 // shouldn't be necessary except that RFP cannot be live across
6326 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006327 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006328 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
6329 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006330 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00006331 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006332 SDValue Ops[] = {
6333 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
6334 };
Chris Lattner492a43e2010-09-22 01:28:21 +00006335 MachineMemOperand *MMO =
6336 DAG.getMachineFunction()
6337 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006338 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006339
Chris Lattner492a43e2010-09-22 01:28:21 +00006340 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
6341 Ops, array_lengthof(Ops),
6342 Op.getValueType(), MMO);
6343 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006344 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006345 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006346 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006347
Evan Cheng0db9fe62006-04-25 20:13:52 +00006348 return Result;
6349}
6350
Bill Wendling8b8a6362009-01-17 03:56:04 +00006351// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006352SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
6353 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00006354 // This algorithm is not obvious. Here it is in C code, more or less:
6355 /*
6356 double uint64_to_double( uint32_t hi, uint32_t lo ) {
6357 static const __m128i exp = { 0x4330000045300000ULL, 0 };
6358 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00006359
Bill Wendling8b8a6362009-01-17 03:56:04 +00006360 // Copy ints to xmm registers.
6361 __m128i xh = _mm_cvtsi32_si128( hi );
6362 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00006363
Bill Wendling8b8a6362009-01-17 03:56:04 +00006364 // Combine into low half of a single xmm register.
6365 __m128i x = _mm_unpacklo_epi32( xh, xl );
6366 __m128d d;
6367 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00006368
Bill Wendling8b8a6362009-01-17 03:56:04 +00006369 // Merge in appropriate exponents to give the integer bits the right
6370 // magnitude.
6371 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00006372
Bill Wendling8b8a6362009-01-17 03:56:04 +00006373 // Subtract away the biases to deal with the IEEE-754 double precision
6374 // implicit 1.
6375 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00006376
Bill Wendling8b8a6362009-01-17 03:56:04 +00006377 // All conversions up to here are exact. The correctly rounded result is
6378 // calculated using the current rounding mode using the following
6379 // horizontal add.
6380 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
6381 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
6382 // store doesn't really need to be here (except
6383 // maybe to zero the other double)
6384 return sd;
6385 }
6386 */
Dale Johannesen040225f2008-10-21 23:07:49 +00006387
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006388 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00006389 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00006390
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006391 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00006392 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00006393 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
6394 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
6395 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
6396 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006397 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006398 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006399
Bill Wendling8b8a6362009-01-17 03:56:04 +00006400 std::vector<Constant*> CV1;
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, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00006403 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006404 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006405 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006406 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006407
Owen Anderson825b72b2009-08-11 20:47:22 +00006408 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6409 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006410 Op.getOperand(0),
6411 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006412 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6413 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006414 Op.getOperand(0),
6415 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006416 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
6417 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00006418 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006419 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006420 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
6421 SDValue XR2F = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Unpck2);
6422 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00006423 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006424 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006425 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006426
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006427 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00006428 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00006429 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
6430 DAG.getUNDEF(MVT::v2f64), ShufMask);
6431 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
6432 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006433 DAG.getIntPtrConstant(0));
6434}
6435
Bill Wendling8b8a6362009-01-17 03:56:04 +00006436// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006437SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
6438 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006439 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006440 // FP constant to bias correct the final result.
6441 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00006442 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006443
6444 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00006445 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6446 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling8b8a6362009-01-17 03:56:04 +00006447 Op.getOperand(0),
6448 DAG.getIntPtrConstant(0)));
6449
Owen Anderson825b72b2009-08-11 20:47:22 +00006450 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
6451 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006452 DAG.getIntPtrConstant(0));
6453
6454 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006455 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
6456 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006457 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006458 MVT::v2f64, Load)),
6459 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006460 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006461 MVT::v2f64, Bias)));
6462 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
6463 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006464 DAG.getIntPtrConstant(0));
6465
6466 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006467 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006468
6469 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00006470 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00006471
Owen Anderson825b72b2009-08-11 20:47:22 +00006472 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006473 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00006474 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00006475 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006476 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00006477 }
6478
6479 // Handle final rounding.
6480 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00006481}
6482
Dan Gohmand858e902010-04-17 15:26:15 +00006483SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
6484 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00006485 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006486 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006487
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006488 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00006489 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
6490 // the optimization here.
6491 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00006492 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00006493
Owen Andersone50ed302009-08-10 22:56:29 +00006494 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006495 EVT DstVT = Op.getValueType();
6496 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006497 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006498 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006499 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00006500
6501 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00006502 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006503 if (SrcVT == MVT::i32) {
6504 SDValue WordOff = DAG.getConstant(4, getPointerTy());
6505 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
6506 getPointerTy(), StackSlot, WordOff);
6507 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006508 StackSlot, MachinePointerInfo(),
6509 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006510 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006511 OffsetSlot, MachinePointerInfo(),
6512 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006513 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
6514 return Fild;
6515 }
6516
6517 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
6518 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006519 StackSlot, MachinePointerInfo(),
6520 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006521 // For i64 source, we need to add the appropriate power of 2 if the input
6522 // was negative. This is the same as the optimization in
6523 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
6524 // we must be careful to do the computation in x87 extended precision, not
6525 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00006526 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6527 MachineMemOperand *MMO =
6528 DAG.getMachineFunction()
6529 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6530 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006531
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006532 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
6533 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006534 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
6535 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006536
6537 APInt FF(32, 0x5F800000ULL);
6538
6539 // Check whether the sign bit is set.
6540 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
6541 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
6542 ISD::SETLT);
6543
6544 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
6545 SDValue FudgePtr = DAG.getConstantPool(
6546 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
6547 getPointerTy());
6548
6549 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
6550 SDValue Zero = DAG.getIntPtrConstant(0);
6551 SDValue Four = DAG.getIntPtrConstant(4);
6552 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
6553 Zero, Four);
6554 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
6555
6556 // Load the value out, extending it from f32 to f80.
6557 // FIXME: Avoid the extend by constructing the right constant pool?
Evan Chengbcc80172010-07-07 22:15:37 +00006558 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, MVT::f80, dl, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00006559 FudgePtr, MachinePointerInfo::getConstantPool(),
6560 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006561 // Extend everything to 80 bits to force it to be done on x87.
6562 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
6563 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00006564}
6565
Dan Gohman475871a2008-07-27 21:46:04 +00006566std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00006567FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00006568 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00006569
Owen Andersone50ed302009-08-10 22:56:29 +00006570 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00006571
6572 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006573 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
6574 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00006575 }
6576
Owen Anderson825b72b2009-08-11 20:47:22 +00006577 assert(DstTy.getSimpleVT() <= MVT::i64 &&
6578 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00006579 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00006580
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006581 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006582 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00006583 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00006584 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00006585 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00006586 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00006587 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00006588 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006589
Evan Cheng87c89352007-10-15 20:11:21 +00006590 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
6591 // stack slot.
6592 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00006593 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00006594 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006595 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00006596
Michael J. Spencerec38de22010-10-10 22:04:20 +00006597
6598
Evan Cheng0db9fe62006-04-25 20:13:52 +00006599 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00006600 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00006601 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00006602 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
6603 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
6604 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006605 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006606
Dan Gohman475871a2008-07-27 21:46:04 +00006607 SDValue Chain = DAG.getEntryNode();
6608 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00006609 EVT TheVT = Op.getOperand(0).getValueType();
6610 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006611 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00006612 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006613 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006614 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00006615 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00006616 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00006617 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00006618 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00006619
Chris Lattner492a43e2010-09-22 01:28:21 +00006620 MachineMemOperand *MMO =
6621 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6622 MachineMemOperand::MOLoad, MemSize, MemSize);
6623 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
6624 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006625 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00006626 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006627 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
6628 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006629
Chris Lattner07290932010-09-22 01:05:16 +00006630 MachineMemOperand *MMO =
6631 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6632 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006633
Evan Cheng0db9fe62006-04-25 20:13:52 +00006634 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00006635 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00006636 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
6637 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00006638
Chris Lattner27a6c732007-11-24 07:07:01 +00006639 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006640}
6641
Dan Gohmand858e902010-04-17 15:26:15 +00006642SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
6643 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00006644 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006645 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006646
Eli Friedman948e95a2009-05-23 09:59:16 +00006647 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00006648 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00006649 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
6650 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00006651
Chris Lattner27a6c732007-11-24 07:07:01 +00006652 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006653 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00006654 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00006655}
6656
Dan Gohmand858e902010-04-17 15:26:15 +00006657SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
6658 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00006659 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
6660 SDValue FIST = Vals.first, StackSlot = Vals.second;
6661 assert(FIST.getNode() && "Unexpected failure");
6662
6663 // Load the result.
6664 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00006665 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006666}
6667
Dan Gohmand858e902010-04-17 15:26:15 +00006668SDValue X86TargetLowering::LowerFABS(SDValue Op,
6669 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006670 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006671 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006672 EVT VT = Op.getValueType();
6673 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006674 if (VT.isVector())
6675 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006676 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006677 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006678 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00006679 CV.push_back(C);
6680 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006681 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006682 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00006683 CV.push_back(C);
6684 CV.push_back(C);
6685 CV.push_back(C);
6686 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006687 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006688 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006689 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006690 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006691 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006692 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006693 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006694}
6695
Dan Gohmand858e902010-04-17 15:26:15 +00006696SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006697 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006698 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006699 EVT VT = Op.getValueType();
6700 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00006701 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00006702 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006703 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006704 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006705 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00006706 CV.push_back(C);
6707 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006708 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006709 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00006710 CV.push_back(C);
6711 CV.push_back(C);
6712 CV.push_back(C);
6713 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006714 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006715 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006716 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006717 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006718 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006719 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006720 if (VT.isVector()) {
Dale Johannesenace16102009-02-03 19:33:06 +00006721 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00006722 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
6723 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006724 Op.getOperand(0)),
Owen Anderson825b72b2009-08-11 20:47:22 +00006725 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00006726 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006727 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00006728 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006729}
6730
Dan Gohmand858e902010-04-17 15:26:15 +00006731SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006732 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00006733 SDValue Op0 = Op.getOperand(0);
6734 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006735 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006736 EVT VT = Op.getValueType();
6737 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00006738
6739 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006740 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006741 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00006742 SrcVT = VT;
6743 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006744 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006745 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006746 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006747 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006748 }
6749
6750 // At this point the operands and the result should have the same
6751 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00006752
Evan Cheng68c47cb2007-01-05 07:55:56 +00006753 // First get the sign bit of second operand.
6754 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006755 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006756 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
6757 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006758 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006759 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
6760 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6761 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6762 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006763 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006764 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006765 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006766 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006767 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006768 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006769 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006770
6771 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006772 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006773 // Op0 is MVT::f32, Op1 is MVT::f64.
6774 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
6775 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
6776 DAG.getConstant(32, MVT::i32));
6777 SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32, SignBit);
6778 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00006779 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006780 }
6781
Evan Cheng73d6cf12007-01-05 21:37:56 +00006782 // Clear first operand sign bit.
6783 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00006784 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006785 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
6786 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00006787 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006788 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
6789 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6790 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6791 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00006792 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006793 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006794 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006795 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006796 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006797 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006798 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00006799
6800 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00006801 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006802}
6803
Dan Gohman076aee32009-03-04 19:44:21 +00006804/// Emit nodes that will be selected as "test Op0,Op0", or something
6805/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00006806SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00006807 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00006808 DebugLoc dl = Op.getDebugLoc();
6809
Dan Gohman31125812009-03-07 01:58:32 +00006810 // CF and OF aren't always set the way we want. Determine which
6811 // of these we need.
6812 bool NeedCF = false;
6813 bool NeedOF = false;
6814 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006815 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00006816 case X86::COND_A: case X86::COND_AE:
6817 case X86::COND_B: case X86::COND_BE:
6818 NeedCF = true;
6819 break;
6820 case X86::COND_G: case X86::COND_GE:
6821 case X86::COND_L: case X86::COND_LE:
6822 case X86::COND_O: case X86::COND_NO:
6823 NeedOF = true;
6824 break;
Dan Gohman31125812009-03-07 01:58:32 +00006825 }
6826
Dan Gohman076aee32009-03-04 19:44:21 +00006827 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00006828 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
6829 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006830 if (Op.getResNo() != 0 || NeedOF || NeedCF)
6831 // Emit a CMP with 0, which is the TEST pattern.
6832 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
6833 DAG.getConstant(0, Op.getValueType()));
6834
6835 unsigned Opcode = 0;
6836 unsigned NumOperands = 0;
6837 switch (Op.getNode()->getOpcode()) {
6838 case ISD::ADD:
6839 // Due to an isel shortcoming, be conservative if this add is likely to be
6840 // selected as part of a load-modify-store instruction. When the root node
6841 // in a match is a store, isel doesn't know how to remap non-chain non-flag
6842 // uses of other nodes in the match, such as the ADD in this case. This
6843 // leads to the ADD being left around and reselected, with the result being
6844 // two adds in the output. Alas, even if none our users are stores, that
6845 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
6846 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
6847 // climbing the DAG back to the root, and it doesn't seem to be worth the
6848 // effort.
6849 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00006850 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006851 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
6852 goto default_case;
6853
6854 if (ConstantSDNode *C =
6855 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
6856 // An add of one will be selected as an INC.
6857 if (C->getAPIntValue() == 1) {
6858 Opcode = X86ISD::INC;
6859 NumOperands = 1;
6860 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00006861 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006862
6863 // An add of negative one (subtract of one) will be selected as a DEC.
6864 if (C->getAPIntValue().isAllOnesValue()) {
6865 Opcode = X86ISD::DEC;
6866 NumOperands = 1;
6867 break;
6868 }
Dan Gohman076aee32009-03-04 19:44:21 +00006869 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006870
6871 // Otherwise use a regular EFLAGS-setting add.
6872 Opcode = X86ISD::ADD;
6873 NumOperands = 2;
6874 break;
6875 case ISD::AND: {
6876 // If the primary and result isn't used, don't bother using X86ISD::AND,
6877 // because a TEST instruction will be better.
6878 bool NonFlagUse = false;
6879 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
6880 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
6881 SDNode *User = *UI;
6882 unsigned UOpNo = UI.getOperandNo();
6883 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
6884 // Look pass truncate.
6885 UOpNo = User->use_begin().getOperandNo();
6886 User = *User->use_begin();
6887 }
6888
6889 if (User->getOpcode() != ISD::BRCOND &&
6890 User->getOpcode() != ISD::SETCC &&
6891 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
6892 NonFlagUse = true;
6893 break;
6894 }
Dan Gohman076aee32009-03-04 19:44:21 +00006895 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006896
6897 if (!NonFlagUse)
6898 break;
6899 }
6900 // FALL THROUGH
6901 case ISD::SUB:
6902 case ISD::OR:
6903 case ISD::XOR:
6904 // Due to the ISEL shortcoming noted above, be conservative if this op is
6905 // likely to be selected as part of a load-modify-store instruction.
6906 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
6907 UE = Op.getNode()->use_end(); UI != UE; ++UI)
6908 if (UI->getOpcode() == ISD::STORE)
6909 goto default_case;
6910
6911 // Otherwise use a regular EFLAGS-setting instruction.
6912 switch (Op.getNode()->getOpcode()) {
6913 default: llvm_unreachable("unexpected operator!");
6914 case ISD::SUB: Opcode = X86ISD::SUB; break;
6915 case ISD::OR: Opcode = X86ISD::OR; break;
6916 case ISD::XOR: Opcode = X86ISD::XOR; break;
6917 case ISD::AND: Opcode = X86ISD::AND; break;
6918 }
6919
6920 NumOperands = 2;
6921 break;
6922 case X86ISD::ADD:
6923 case X86ISD::SUB:
6924 case X86ISD::INC:
6925 case X86ISD::DEC:
6926 case X86ISD::OR:
6927 case X86ISD::XOR:
6928 case X86ISD::AND:
6929 return SDValue(Op.getNode(), 1);
6930 default:
6931 default_case:
6932 break;
Dan Gohman076aee32009-03-04 19:44:21 +00006933 }
6934
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006935 if (Opcode == 0)
6936 // Emit a CMP with 0, which is the TEST pattern.
6937 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
6938 DAG.getConstant(0, Op.getValueType()));
6939
6940 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
6941 SmallVector<SDValue, 4> Ops;
6942 for (unsigned i = 0; i != NumOperands; ++i)
6943 Ops.push_back(Op.getOperand(i));
6944
6945 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
6946 DAG.ReplaceAllUsesWith(Op, New);
6947 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00006948}
6949
6950/// Emit nodes that will be selected as "cmp Op0,Op1", or something
6951/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00006952SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00006953 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00006954 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
6955 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00006956 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00006957
6958 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00006959 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00006960}
6961
Evan Chengd40d03e2010-01-06 19:38:29 +00006962/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
6963/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00006964SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
6965 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006966 SDValue Op0 = And.getOperand(0);
6967 SDValue Op1 = And.getOperand(1);
6968 if (Op0.getOpcode() == ISD::TRUNCATE)
6969 Op0 = Op0.getOperand(0);
6970 if (Op1.getOpcode() == ISD::TRUNCATE)
6971 Op1 = Op1.getOperand(0);
6972
Evan Chengd40d03e2010-01-06 19:38:29 +00006973 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00006974 if (Op1.getOpcode() == ISD::SHL)
6975 std::swap(Op0, Op1);
6976 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006977 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
6978 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00006979 // If we looked past a truncate, check that it's only truncating away
6980 // known zeros.
6981 unsigned BitWidth = Op0.getValueSizeInBits();
6982 unsigned AndBitWidth = And.getValueSizeInBits();
6983 if (BitWidth > AndBitWidth) {
6984 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
6985 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
6986 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
6987 return SDValue();
6988 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00006989 LHS = Op1;
6990 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00006991 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00006992 } else if (Op1.getOpcode() == ISD::Constant) {
6993 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
6994 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00006995 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
6996 LHS = AndLHS.getOperand(0);
6997 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00006998 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006999 }
Evan Cheng0488db92007-09-25 01:57:46 +00007000
Evan Chengd40d03e2010-01-06 19:38:29 +00007001 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00007002 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00007003 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00007004 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00007005 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00007006 // Also promote i16 to i32 for performance / code size reason.
7007 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00007008 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00007009 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00007010
Evan Chengd40d03e2010-01-06 19:38:29 +00007011 // If the operand types disagree, extend the shift amount to match. Since
7012 // BT ignores high bits (like shifts) we can use anyextend.
7013 if (LHS.getValueType() != RHS.getValueType())
7014 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007015
Evan Chengd40d03e2010-01-06 19:38:29 +00007016 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
7017 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
7018 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7019 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00007020 }
7021
Evan Cheng54de3ea2010-01-05 06:52:31 +00007022 return SDValue();
7023}
7024
Dan Gohmand858e902010-04-17 15:26:15 +00007025SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00007026 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
7027 SDValue Op0 = Op.getOperand(0);
7028 SDValue Op1 = Op.getOperand(1);
7029 DebugLoc dl = Op.getDebugLoc();
7030 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7031
7032 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00007033 // Lower (X & (1 << N)) == 0 to BT(X, N).
7034 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
7035 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
7036 if (Op0.getOpcode() == ISD::AND &&
7037 Op0.hasOneUse() &&
7038 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00007039 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007040 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7041 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
7042 if (NewSetCC.getNode())
7043 return NewSetCC;
7044 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00007045
Evan Cheng2c755ba2010-02-27 07:36:59 +00007046 // Look for "(setcc) == / != 1" to avoid unncessary setcc.
7047 if (Op0.getOpcode() == X86ISD::SETCC &&
7048 Op1.getOpcode() == ISD::Constant &&
7049 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
7050 cast<ConstantSDNode>(Op1)->isNullValue()) &&
7051 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7052 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
7053 bool Invert = (CC == ISD::SETNE) ^
7054 cast<ConstantSDNode>(Op1)->isNullValue();
7055 if (Invert)
7056 CCode = X86::GetOppositeBranchCondition(CCode);
7057 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7058 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
7059 }
7060
Evan Chenge5b51ac2010-04-17 06:13:15 +00007061 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00007062 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007063 if (X86CC == X86::COND_INVALID)
7064 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007065
Evan Cheng552f09a2010-04-26 19:06:11 +00007066 SDValue Cond = EmitCmp(Op0, Op1, X86CC, DAG);
Evan Chengad9c0a32009-12-15 00:53:42 +00007067
7068 // Use sbb x, x to materialize carry bit into a GPR.
Evan Cheng2e489c42009-12-16 00:53:11 +00007069 if (X86CC == X86::COND_B)
Evan Chengad9c0a32009-12-15 00:53:42 +00007070 return DAG.getNode(ISD::AND, dl, MVT::i8,
7071 DAG.getNode(X86ISD::SETCC_CARRY, dl, MVT::i8,
7072 DAG.getConstant(X86CC, MVT::i8), Cond),
7073 DAG.getConstant(1, MVT::i8));
Evan Chengad9c0a32009-12-15 00:53:42 +00007074
Owen Anderson825b72b2009-08-11 20:47:22 +00007075 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7076 DAG.getConstant(X86CC, MVT::i8), Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00007077}
7078
Dan Gohmand858e902010-04-17 15:26:15 +00007079SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007080 SDValue Cond;
7081 SDValue Op0 = Op.getOperand(0);
7082 SDValue Op1 = Op.getOperand(1);
7083 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00007084 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00007085 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
7086 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007087 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00007088
7089 if (isFP) {
7090 unsigned SSECC = 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007091 EVT VT0 = Op0.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00007092 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
7093 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00007094 bool Swap = false;
7095
7096 switch (SetCCOpcode) {
7097 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007098 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00007099 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007100 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00007101 case ISD::SETGT: Swap = true; // Fallthrough
7102 case ISD::SETLT:
7103 case ISD::SETOLT: SSECC = 1; break;
7104 case ISD::SETOGE:
7105 case ISD::SETGE: Swap = true; // Fallthrough
7106 case ISD::SETLE:
7107 case ISD::SETOLE: SSECC = 2; break;
7108 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007109 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00007110 case ISD::SETNE: SSECC = 4; break;
7111 case ISD::SETULE: Swap = true;
7112 case ISD::SETUGE: SSECC = 5; break;
7113 case ISD::SETULT: Swap = true;
7114 case ISD::SETUGT: SSECC = 6; break;
7115 case ISD::SETO: SSECC = 7; break;
7116 }
7117 if (Swap)
7118 std::swap(Op0, Op1);
7119
Nate Begemanfb8ead02008-07-25 19:05:58 +00007120 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00007121 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00007122 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00007123 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007124 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
7125 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007126 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007127 }
7128 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00007129 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007130 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
7131 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007132 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007133 }
Torok Edwinc23197a2009-07-14 16:55:14 +00007134 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00007135 }
7136 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00007137 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00007138 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007139
Nate Begeman30a0de92008-07-17 16:51:19 +00007140 // We are handling one of the integer comparisons here. Since SSE only has
7141 // GT and EQ comparisons for integer, swapping operands and multiple
7142 // operations may be required for some comparisons.
7143 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
7144 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007145
Owen Anderson825b72b2009-08-11 20:47:22 +00007146 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00007147 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007148 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007149 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007150 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
7151 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00007152 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007153
Nate Begeman30a0de92008-07-17 16:51:19 +00007154 switch (SetCCOpcode) {
7155 default: break;
7156 case ISD::SETNE: Invert = true;
7157 case ISD::SETEQ: Opc = EQOpc; break;
7158 case ISD::SETLT: Swap = true;
7159 case ISD::SETGT: Opc = GTOpc; break;
7160 case ISD::SETGE: Swap = true;
7161 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
7162 case ISD::SETULT: Swap = true;
7163 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
7164 case ISD::SETUGE: Swap = true;
7165 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
7166 }
7167 if (Swap)
7168 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007169
Nate Begeman30a0de92008-07-17 16:51:19 +00007170 // Since SSE has no unsigned integer comparisons, we need to flip the sign
7171 // bits of the inputs before performing those operations.
7172 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00007173 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00007174 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
7175 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00007176 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00007177 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
7178 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00007179 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
7180 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00007181 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007182
Dale Johannesenace16102009-02-03 19:33:06 +00007183 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00007184
7185 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00007186 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00007187 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00007188
Nate Begeman30a0de92008-07-17 16:51:19 +00007189 return Result;
7190}
Evan Cheng0488db92007-09-25 01:57:46 +00007191
Evan Cheng370e5342008-12-03 08:38:43 +00007192// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00007193static bool isX86LogicalCmp(SDValue Op) {
7194 unsigned Opc = Op.getNode()->getOpcode();
7195 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
7196 return true;
7197 if (Op.getResNo() == 1 &&
7198 (Opc == X86ISD::ADD ||
7199 Opc == X86ISD::SUB ||
7200 Opc == X86ISD::SMUL ||
7201 Opc == X86ISD::UMUL ||
7202 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00007203 Opc == X86ISD::DEC ||
7204 Opc == X86ISD::OR ||
7205 Opc == X86ISD::XOR ||
7206 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00007207 return true;
7208
7209 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00007210}
7211
Dan Gohmand858e902010-04-17 15:26:15 +00007212SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007213 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007214 SDValue Cond = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007215 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007216 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00007217
Dan Gohman1a492952009-10-20 16:22:37 +00007218 if (Cond.getOpcode() == ISD::SETCC) {
7219 SDValue NewCond = LowerSETCC(Cond, DAG);
7220 if (NewCond.getNode())
7221 Cond = NewCond;
7222 }
Evan Cheng734503b2006-09-11 02:19:56 +00007223
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007224 // (select (x == 0), -1, 0) -> (sign_bit (x - 1))
7225 SDValue Op1 = Op.getOperand(1);
7226 SDValue Op2 = Op.getOperand(2);
7227 if (Cond.getOpcode() == X86ISD::SETCC &&
7228 cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue() == X86::COND_E) {
7229 SDValue Cmp = Cond.getOperand(1);
7230 if (Cmp.getOpcode() == X86ISD::CMP) {
7231 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op1);
7232 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
7233 ConstantSDNode *RHSC =
7234 dyn_cast<ConstantSDNode>(Cmp.getOperand(1).getNode());
7235 if (N1C && N1C->isAllOnesValue() &&
7236 N2C && N2C->isNullValue() &&
7237 RHSC && RHSC->isNullValue()) {
7238 SDValue CmpOp0 = Cmp.getOperand(0);
Chris Lattnerda0688e2010-03-14 18:44:35 +00007239 Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007240 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
7241 return DAG.getNode(X86ISD::SETCC_CARRY, dl, Op.getValueType(),
7242 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
7243 }
7244 }
7245 }
7246
Evan Chengad9c0a32009-12-15 00:53:42 +00007247 // Look pass (and (setcc_carry (cmp ...)), 1).
7248 if (Cond.getOpcode() == ISD::AND &&
7249 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7250 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007251 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007252 Cond = Cond.getOperand(0);
7253 }
7254
Evan Cheng3f41d662007-10-08 22:16:29 +00007255 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7256 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007257 if (Cond.getOpcode() == X86ISD::SETCC ||
7258 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007259 CC = Cond.getOperand(0);
7260
Dan Gohman475871a2008-07-27 21:46:04 +00007261 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007262 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00007263 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00007264
Evan Cheng3f41d662007-10-08 22:16:29 +00007265 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007266 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00007267 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00007268 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00007269
Chris Lattnerd1980a52009-03-12 06:52:53 +00007270 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
7271 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00007272 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007273 addTest = false;
7274 }
7275 }
7276
7277 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007278 // Look pass the truncate.
7279 if (Cond.getOpcode() == ISD::TRUNCATE)
7280 Cond = Cond.getOperand(0);
7281
7282 // We know the result of AND is compared against zero. Try to match
7283 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007284 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007285 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
7286 if (NewSetCC.getNode()) {
7287 CC = NewSetCC.getOperand(0);
7288 Cond = NewSetCC.getOperand(1);
7289 addTest = false;
7290 }
7291 }
7292 }
7293
7294 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007295 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007296 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007297 }
7298
Evan Cheng0488db92007-09-25 01:57:46 +00007299 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
7300 // condition is true.
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007301 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Flag);
7302 SDValue Ops[] = { Op2, Op1, CC, Cond };
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007303 return DAG.getNode(X86ISD::CMOV, dl, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00007304}
7305
Evan Cheng370e5342008-12-03 08:38:43 +00007306// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
7307// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
7308// from the AND / OR.
7309static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
7310 Opc = Op.getOpcode();
7311 if (Opc != ISD::OR && Opc != ISD::AND)
7312 return false;
7313 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7314 Op.getOperand(0).hasOneUse() &&
7315 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
7316 Op.getOperand(1).hasOneUse());
7317}
7318
Evan Cheng961d6d42009-02-02 08:19:07 +00007319// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
7320// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00007321static bool isXor1OfSetCC(SDValue Op) {
7322 if (Op.getOpcode() != ISD::XOR)
7323 return false;
7324 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7325 if (N1C && N1C->getAPIntValue() == 1) {
7326 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7327 Op.getOperand(0).hasOneUse();
7328 }
7329 return false;
7330}
7331
Dan Gohmand858e902010-04-17 15:26:15 +00007332SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007333 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007334 SDValue Chain = Op.getOperand(0);
7335 SDValue Cond = Op.getOperand(1);
7336 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007337 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007338 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00007339
Dan Gohman1a492952009-10-20 16:22:37 +00007340 if (Cond.getOpcode() == ISD::SETCC) {
7341 SDValue NewCond = LowerSETCC(Cond, DAG);
7342 if (NewCond.getNode())
7343 Cond = NewCond;
7344 }
Chris Lattnere55484e2008-12-25 05:34:37 +00007345#if 0
7346 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00007347 else if (Cond.getOpcode() == X86ISD::ADD ||
7348 Cond.getOpcode() == X86ISD::SUB ||
7349 Cond.getOpcode() == X86ISD::SMUL ||
7350 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00007351 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00007352#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00007353
Evan Chengad9c0a32009-12-15 00:53:42 +00007354 // Look pass (and (setcc_carry (cmp ...)), 1).
7355 if (Cond.getOpcode() == ISD::AND &&
7356 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7357 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007358 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007359 Cond = Cond.getOperand(0);
7360 }
7361
Evan Cheng3f41d662007-10-08 22:16:29 +00007362 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7363 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007364 if (Cond.getOpcode() == X86ISD::SETCC ||
7365 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007366 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007367
Dan Gohman475871a2008-07-27 21:46:04 +00007368 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007369 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00007370 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00007371 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00007372 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007373 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00007374 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00007375 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007376 default: break;
7377 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00007378 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00007379 // These can only come from an arithmetic instruction with overflow,
7380 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007381 Cond = Cond.getNode()->getOperand(1);
7382 addTest = false;
7383 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00007384 }
Evan Cheng0488db92007-09-25 01:57:46 +00007385 }
Evan Cheng370e5342008-12-03 08:38:43 +00007386 } else {
7387 unsigned CondOpc;
7388 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
7389 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00007390 if (CondOpc == ISD::OR) {
7391 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
7392 // two branches instead of an explicit OR instruction with a
7393 // separate test.
7394 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007395 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00007396 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007397 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007398 Chain, Dest, CC, Cmp);
7399 CC = Cond.getOperand(1).getOperand(0);
7400 Cond = Cmp;
7401 addTest = false;
7402 }
7403 } else { // ISD::AND
7404 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
7405 // two branches instead of an explicit AND instruction with a
7406 // separate test. However, we only do this if this block doesn't
7407 // have a fall-through edge, because this requires an explicit
7408 // jmp when the condition is false.
7409 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007410 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00007411 Op.getNode()->hasOneUse()) {
7412 X86::CondCode CCode =
7413 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7414 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007415 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00007416 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00007417 // Look for an unconditional branch following this conditional branch.
7418 // We need this because we need to reverse the successors in order
7419 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00007420 if (User->getOpcode() == ISD::BR) {
7421 SDValue FalseBB = User->getOperand(1);
7422 SDNode *NewBR =
7423 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00007424 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00007425 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00007426 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00007427
Dale Johannesene4d209d2009-02-03 20:21:25 +00007428 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007429 Chain, Dest, CC, Cmp);
7430 X86::CondCode CCode =
7431 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
7432 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007433 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00007434 Cond = Cmp;
7435 addTest = false;
7436 }
7437 }
Dan Gohman279c22e2008-10-21 03:29:32 +00007438 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00007439 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
7440 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
7441 // It should be transformed during dag combiner except when the condition
7442 // is set by a arithmetics with overflow node.
7443 X86::CondCode CCode =
7444 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7445 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007446 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00007447 Cond = Cond.getOperand(0).getOperand(1);
7448 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00007449 }
Evan Cheng0488db92007-09-25 01:57:46 +00007450 }
7451
7452 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007453 // Look pass the truncate.
7454 if (Cond.getOpcode() == ISD::TRUNCATE)
7455 Cond = Cond.getOperand(0);
7456
7457 // We know the result of AND is compared against zero. Try to match
7458 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007459 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007460 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
7461 if (NewSetCC.getNode()) {
7462 CC = NewSetCC.getOperand(0);
7463 Cond = NewSetCC.getOperand(1);
7464 addTest = false;
7465 }
7466 }
7467 }
7468
7469 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007470 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007471 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007472 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00007473 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00007474 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00007475}
7476
Anton Korobeynikove060b532007-04-17 19:34:00 +00007477
7478// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
7479// Calls to _alloca is needed to probe the stack when allocating more than 4k
7480// bytes in one go. Touching the stack at 4K increments is necessary to ensure
7481// that the guard pages used by the OS virtual memory manager are allocated in
7482// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00007483SDValue
7484X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007485 SelectionDAG &DAG) const {
Michael J. Spencere9c253e2010-10-21 01:41:01 +00007486 assert(Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() &&
7487 "This should be used only on Windows targets");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007488 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007489
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007490 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00007491 SDValue Chain = Op.getOperand(0);
7492 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007493 // FIXME: Ensure alignment here
7494
Dan Gohman475871a2008-07-27 21:46:04 +00007495 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007496
Owen Anderson825b72b2009-08-11 20:47:22 +00007497 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007498
Dale Johannesendd64c412009-02-04 00:33:20 +00007499 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007500 Flag = Chain.getValue(1);
7501
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00007502 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007503
Michael J. Spencere9c253e2010-10-21 01:41:01 +00007504 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00007505 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007506
Dale Johannesendd64c412009-02-04 00:33:20 +00007507 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007508
Dan Gohman475871a2008-07-27 21:46:04 +00007509 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00007510 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007511}
7512
Dan Gohmand858e902010-04-17 15:26:15 +00007513SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00007514 MachineFunction &MF = DAG.getMachineFunction();
7515 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
7516
Dan Gohman69de1932008-02-06 22:27:42 +00007517 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00007518 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00007519
Anton Korobeynikove7beda12010-10-03 22:52:07 +00007520 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00007521 // vastart just stores the address of the VarArgsFrameIndex slot into the
7522 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00007523 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
7524 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007525 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
7526 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007527 }
7528
7529 // __va_list_tag:
7530 // gp_offset (0 - 6 * 8)
7531 // fp_offset (48 - 48 + 8 * 16)
7532 // overflow_arg_area (point to parameters coming in memory).
7533 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00007534 SmallVector<SDValue, 8> MemOps;
7535 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00007536 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00007537 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00007538 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
7539 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007540 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007541 MemOps.push_back(Store);
7542
7543 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00007544 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007545 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00007546 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00007547 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
7548 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007549 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007550 MemOps.push_back(Store);
7551
7552 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00007553 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007554 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00007555 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
7556 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007557 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
7558 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00007559 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007560 MemOps.push_back(Store);
7561
7562 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00007563 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007564 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00007565 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
7566 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007567 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
7568 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007569 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00007570 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00007571 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00007572}
7573
Dan Gohmand858e902010-04-17 15:26:15 +00007574SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00007575 assert(Subtarget->is64Bit() &&
7576 "LowerVAARG only handles 64-bit va_arg!");
7577 assert((Subtarget->isTargetLinux() ||
7578 Subtarget->isTargetDarwin()) &&
7579 "Unhandled target in LowerVAARG");
7580 assert(Op.getNode()->getNumOperands() == 4);
7581 SDValue Chain = Op.getOperand(0);
7582 SDValue SrcPtr = Op.getOperand(1);
7583 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
7584 unsigned Align = Op.getConstantOperandVal(3);
7585 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00007586
Dan Gohman320afb82010-10-12 18:00:49 +00007587 EVT ArgVT = Op.getNode()->getValueType(0);
7588 const Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
7589 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
7590 uint8_t ArgMode;
7591
7592 // Decide which area this value should be read from.
7593 // TODO: Implement the AMD64 ABI in its entirety. This simple
7594 // selection mechanism works only for the basic types.
7595 if (ArgVT == MVT::f80) {
7596 llvm_unreachable("va_arg for f80 not yet implemented");
7597 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
7598 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
7599 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
7600 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
7601 } else {
7602 llvm_unreachable("Unhandled argument type in LowerVAARG");
7603 }
7604
7605 if (ArgMode == 2) {
7606 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00007607 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00007608 !(DAG.getMachineFunction()
7609 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
7610 Subtarget->hasSSE1());
Dan Gohman320afb82010-10-12 18:00:49 +00007611 }
7612
7613 // Insert VAARG_64 node into the DAG
7614 // VAARG_64 returns two values: Variable Argument Address, Chain
7615 SmallVector<SDValue, 11> InstOps;
7616 InstOps.push_back(Chain);
7617 InstOps.push_back(SrcPtr);
7618 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
7619 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
7620 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
7621 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
7622 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
7623 VTs, &InstOps[0], InstOps.size(),
7624 MVT::i64,
7625 MachinePointerInfo(SV),
7626 /*Align=*/0,
7627 /*Volatile=*/false,
7628 /*ReadMem=*/true,
7629 /*WriteMem=*/true);
7630 Chain = VAARG.getValue(1);
7631
7632 // Load the next argument and return it
7633 return DAG.getLoad(ArgVT, dl,
7634 Chain,
7635 VAARG,
7636 MachinePointerInfo(),
7637 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00007638}
7639
Dan Gohmand858e902010-04-17 15:26:15 +00007640SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00007641 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00007642 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00007643 SDValue Chain = Op.getOperand(0);
7644 SDValue DstPtr = Op.getOperand(1);
7645 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00007646 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
7647 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00007648 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00007649
Chris Lattnere72f2022010-09-21 05:40:29 +00007650 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00007651 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00007652 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00007653 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00007654}
7655
Dan Gohman475871a2008-07-27 21:46:04 +00007656SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007657X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007658 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007659 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007660 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00007661 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00007662 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00007663 case Intrinsic::x86_sse_comieq_ss:
7664 case Intrinsic::x86_sse_comilt_ss:
7665 case Intrinsic::x86_sse_comile_ss:
7666 case Intrinsic::x86_sse_comigt_ss:
7667 case Intrinsic::x86_sse_comige_ss:
7668 case Intrinsic::x86_sse_comineq_ss:
7669 case Intrinsic::x86_sse_ucomieq_ss:
7670 case Intrinsic::x86_sse_ucomilt_ss:
7671 case Intrinsic::x86_sse_ucomile_ss:
7672 case Intrinsic::x86_sse_ucomigt_ss:
7673 case Intrinsic::x86_sse_ucomige_ss:
7674 case Intrinsic::x86_sse_ucomineq_ss:
7675 case Intrinsic::x86_sse2_comieq_sd:
7676 case Intrinsic::x86_sse2_comilt_sd:
7677 case Intrinsic::x86_sse2_comile_sd:
7678 case Intrinsic::x86_sse2_comigt_sd:
7679 case Intrinsic::x86_sse2_comige_sd:
7680 case Intrinsic::x86_sse2_comineq_sd:
7681 case Intrinsic::x86_sse2_ucomieq_sd:
7682 case Intrinsic::x86_sse2_ucomilt_sd:
7683 case Intrinsic::x86_sse2_ucomile_sd:
7684 case Intrinsic::x86_sse2_ucomigt_sd:
7685 case Intrinsic::x86_sse2_ucomige_sd:
7686 case Intrinsic::x86_sse2_ucomineq_sd: {
7687 unsigned Opc = 0;
7688 ISD::CondCode CC = ISD::SETCC_INVALID;
7689 switch (IntNo) {
7690 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007691 case Intrinsic::x86_sse_comieq_ss:
7692 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007693 Opc = X86ISD::COMI;
7694 CC = ISD::SETEQ;
7695 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00007696 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007697 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007698 Opc = X86ISD::COMI;
7699 CC = ISD::SETLT;
7700 break;
7701 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007702 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007703 Opc = X86ISD::COMI;
7704 CC = ISD::SETLE;
7705 break;
7706 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007707 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007708 Opc = X86ISD::COMI;
7709 CC = ISD::SETGT;
7710 break;
7711 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007712 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007713 Opc = X86ISD::COMI;
7714 CC = ISD::SETGE;
7715 break;
7716 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007717 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007718 Opc = X86ISD::COMI;
7719 CC = ISD::SETNE;
7720 break;
7721 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007722 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007723 Opc = X86ISD::UCOMI;
7724 CC = ISD::SETEQ;
7725 break;
7726 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007727 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007728 Opc = X86ISD::UCOMI;
7729 CC = ISD::SETLT;
7730 break;
7731 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007732 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007733 Opc = X86ISD::UCOMI;
7734 CC = ISD::SETLE;
7735 break;
7736 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007737 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007738 Opc = X86ISD::UCOMI;
7739 CC = ISD::SETGT;
7740 break;
7741 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007742 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007743 Opc = X86ISD::UCOMI;
7744 CC = ISD::SETGE;
7745 break;
7746 case Intrinsic::x86_sse_ucomineq_ss:
7747 case Intrinsic::x86_sse2_ucomineq_sd:
7748 Opc = X86ISD::UCOMI;
7749 CC = ISD::SETNE;
7750 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00007751 }
Evan Cheng734503b2006-09-11 02:19:56 +00007752
Dan Gohman475871a2008-07-27 21:46:04 +00007753 SDValue LHS = Op.getOperand(1);
7754 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00007755 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007756 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007757 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
7758 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7759 DAG.getConstant(X86CC, MVT::i8), Cond);
7760 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00007761 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007762 // ptest and testp intrinsics. The intrinsic these come from are designed to
7763 // return an integer value, not just an instruction so lower it to the ptest
7764 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00007765 case Intrinsic::x86_sse41_ptestz:
7766 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007767 case Intrinsic::x86_sse41_ptestnzc:
7768 case Intrinsic::x86_avx_ptestz_256:
7769 case Intrinsic::x86_avx_ptestc_256:
7770 case Intrinsic::x86_avx_ptestnzc_256:
7771 case Intrinsic::x86_avx_vtestz_ps:
7772 case Intrinsic::x86_avx_vtestc_ps:
7773 case Intrinsic::x86_avx_vtestnzc_ps:
7774 case Intrinsic::x86_avx_vtestz_pd:
7775 case Intrinsic::x86_avx_vtestc_pd:
7776 case Intrinsic::x86_avx_vtestnzc_pd:
7777 case Intrinsic::x86_avx_vtestz_ps_256:
7778 case Intrinsic::x86_avx_vtestc_ps_256:
7779 case Intrinsic::x86_avx_vtestnzc_ps_256:
7780 case Intrinsic::x86_avx_vtestz_pd_256:
7781 case Intrinsic::x86_avx_vtestc_pd_256:
7782 case Intrinsic::x86_avx_vtestnzc_pd_256: {
7783 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00007784 unsigned X86CC = 0;
7785 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00007786 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007787 case Intrinsic::x86_avx_vtestz_ps:
7788 case Intrinsic::x86_avx_vtestz_pd:
7789 case Intrinsic::x86_avx_vtestz_ps_256:
7790 case Intrinsic::x86_avx_vtestz_pd_256:
7791 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00007792 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007793 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007794 // ZF = 1
7795 X86CC = X86::COND_E;
7796 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007797 case Intrinsic::x86_avx_vtestc_ps:
7798 case Intrinsic::x86_avx_vtestc_pd:
7799 case Intrinsic::x86_avx_vtestc_ps_256:
7800 case Intrinsic::x86_avx_vtestc_pd_256:
7801 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00007802 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007803 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007804 // CF = 1
7805 X86CC = X86::COND_B;
7806 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007807 case Intrinsic::x86_avx_vtestnzc_ps:
7808 case Intrinsic::x86_avx_vtestnzc_pd:
7809 case Intrinsic::x86_avx_vtestnzc_ps_256:
7810 case Intrinsic::x86_avx_vtestnzc_pd_256:
7811 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00007812 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007813 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007814 // ZF and CF = 0
7815 X86CC = X86::COND_A;
7816 break;
7817 }
Eric Christopherfd179292009-08-27 18:07:15 +00007818
Eric Christopher71c67532009-07-29 00:28:05 +00007819 SDValue LHS = Op.getOperand(1);
7820 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007821 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
7822 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00007823 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
7824 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
7825 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00007826 }
Evan Cheng5759f972008-05-04 09:15:50 +00007827
7828 // Fix vector shift instructions where the last operand is a non-immediate
7829 // i32 value.
7830 case Intrinsic::x86_sse2_pslli_w:
7831 case Intrinsic::x86_sse2_pslli_d:
7832 case Intrinsic::x86_sse2_pslli_q:
7833 case Intrinsic::x86_sse2_psrli_w:
7834 case Intrinsic::x86_sse2_psrli_d:
7835 case Intrinsic::x86_sse2_psrli_q:
7836 case Intrinsic::x86_sse2_psrai_w:
7837 case Intrinsic::x86_sse2_psrai_d:
7838 case Intrinsic::x86_mmx_pslli_w:
7839 case Intrinsic::x86_mmx_pslli_d:
7840 case Intrinsic::x86_mmx_pslli_q:
7841 case Intrinsic::x86_mmx_psrli_w:
7842 case Intrinsic::x86_mmx_psrli_d:
7843 case Intrinsic::x86_mmx_psrli_q:
7844 case Intrinsic::x86_mmx_psrai_w:
7845 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00007846 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00007847 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00007848 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00007849
7850 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00007851 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00007852 switch (IntNo) {
7853 case Intrinsic::x86_sse2_pslli_w:
7854 NewIntNo = Intrinsic::x86_sse2_psll_w;
7855 break;
7856 case Intrinsic::x86_sse2_pslli_d:
7857 NewIntNo = Intrinsic::x86_sse2_psll_d;
7858 break;
7859 case Intrinsic::x86_sse2_pslli_q:
7860 NewIntNo = Intrinsic::x86_sse2_psll_q;
7861 break;
7862 case Intrinsic::x86_sse2_psrli_w:
7863 NewIntNo = Intrinsic::x86_sse2_psrl_w;
7864 break;
7865 case Intrinsic::x86_sse2_psrli_d:
7866 NewIntNo = Intrinsic::x86_sse2_psrl_d;
7867 break;
7868 case Intrinsic::x86_sse2_psrli_q:
7869 NewIntNo = Intrinsic::x86_sse2_psrl_q;
7870 break;
7871 case Intrinsic::x86_sse2_psrai_w:
7872 NewIntNo = Intrinsic::x86_sse2_psra_w;
7873 break;
7874 case Intrinsic::x86_sse2_psrai_d:
7875 NewIntNo = Intrinsic::x86_sse2_psra_d;
7876 break;
7877 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00007878 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00007879 switch (IntNo) {
7880 case Intrinsic::x86_mmx_pslli_w:
7881 NewIntNo = Intrinsic::x86_mmx_psll_w;
7882 break;
7883 case Intrinsic::x86_mmx_pslli_d:
7884 NewIntNo = Intrinsic::x86_mmx_psll_d;
7885 break;
7886 case Intrinsic::x86_mmx_pslli_q:
7887 NewIntNo = Intrinsic::x86_mmx_psll_q;
7888 break;
7889 case Intrinsic::x86_mmx_psrli_w:
7890 NewIntNo = Intrinsic::x86_mmx_psrl_w;
7891 break;
7892 case Intrinsic::x86_mmx_psrli_d:
7893 NewIntNo = Intrinsic::x86_mmx_psrl_d;
7894 break;
7895 case Intrinsic::x86_mmx_psrli_q:
7896 NewIntNo = Intrinsic::x86_mmx_psrl_q;
7897 break;
7898 case Intrinsic::x86_mmx_psrai_w:
7899 NewIntNo = Intrinsic::x86_mmx_psra_w;
7900 break;
7901 case Intrinsic::x86_mmx_psrai_d:
7902 NewIntNo = Intrinsic::x86_mmx_psra_d;
7903 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00007904 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00007905 }
7906 break;
7907 }
7908 }
Mon P Wangefa42202009-09-03 19:56:25 +00007909
7910 // The vector shift intrinsics with scalars uses 32b shift amounts but
7911 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
7912 // to be zero.
7913 SDValue ShOps[4];
7914 ShOps[0] = ShAmt;
7915 ShOps[1] = DAG.getConstant(0, MVT::i32);
7916 if (ShAmtVT == MVT::v4i32) {
7917 ShOps[2] = DAG.getUNDEF(MVT::i32);
7918 ShOps[3] = DAG.getUNDEF(MVT::i32);
7919 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
7920 } else {
7921 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00007922// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00007923 }
7924
Owen Andersone50ed302009-08-10 22:56:29 +00007925 EVT VT = Op.getValueType();
Mon P Wangefa42202009-09-03 19:56:25 +00007926 ShAmt = DAG.getNode(ISD::BIT_CONVERT, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007927 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007928 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00007929 Op.getOperand(1), ShAmt);
7930 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00007931 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007932}
Evan Cheng72261582005-12-20 06:22:03 +00007933
Dan Gohmand858e902010-04-17 15:26:15 +00007934SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
7935 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00007936 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7937 MFI->setReturnAddressIsTaken(true);
7938
Bill Wendling64e87322009-01-16 19:25:27 +00007939 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007940 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00007941
7942 if (Depth > 0) {
7943 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
7944 SDValue Offset =
7945 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007946 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007947 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007948 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007949 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00007950 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00007951 }
7952
7953 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00007954 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00007955 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007956 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00007957}
7958
Dan Gohmand858e902010-04-17 15:26:15 +00007959SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00007960 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7961 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00007962
Owen Andersone50ed302009-08-10 22:56:29 +00007963 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007964 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00007965 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
7966 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00007967 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00007968 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00007969 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
7970 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00007971 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00007972 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00007973}
7974
Dan Gohman475871a2008-07-27 21:46:04 +00007975SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007976 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00007977 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007978}
7979
Dan Gohmand858e902010-04-17 15:26:15 +00007980SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007981 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00007982 SDValue Chain = Op.getOperand(0);
7983 SDValue Offset = Op.getOperand(1);
7984 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007985 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007986
Dan Gohmand8816272010-08-11 18:14:00 +00007987 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
7988 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
7989 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00007990 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007991
Dan Gohmand8816272010-08-11 18:14:00 +00007992 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
7993 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00007994 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00007995 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
7996 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00007997 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00007998 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007999
Dale Johannesene4d209d2009-02-03 20:21:25 +00008000 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008001 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008002 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008003}
8004
Dan Gohman475871a2008-07-27 21:46:04 +00008005SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008006 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008007 SDValue Root = Op.getOperand(0);
8008 SDValue Trmp = Op.getOperand(1); // trampoline
8009 SDValue FPtr = Op.getOperand(2); // nested function
8010 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008011 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008012
Dan Gohman69de1932008-02-06 22:27:42 +00008013 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008014
8015 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008016 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00008017
8018 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00008019 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
8020 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00008021
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008022 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
8023 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00008024
8025 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
8026
8027 // Load the pointer to the nested function into R11.
8028 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00008029 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00008030 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008031 Addr, MachinePointerInfo(TrmpAddr),
8032 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008033
Owen Anderson825b72b2009-08-11 20:47:22 +00008034 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8035 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008036 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
8037 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00008038 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008039
8040 // Load the 'nest' parameter value into R10.
8041 // R10 is specified in X86CallingConv.td
8042 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00008043 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8044 DAG.getConstant(10, MVT::i64));
8045 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008046 Addr, MachinePointerInfo(TrmpAddr, 10),
8047 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008048
Owen Anderson825b72b2009-08-11 20:47:22 +00008049 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8050 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008051 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
8052 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00008053 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008054
8055 // Jump to the nested function.
8056 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00008057 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8058 DAG.getConstant(20, MVT::i64));
8059 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008060 Addr, MachinePointerInfo(TrmpAddr, 20),
8061 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008062
8063 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00008064 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8065 DAG.getConstant(22, MVT::i64));
8066 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008067 MachinePointerInfo(TrmpAddr, 22),
8068 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008069
Dan Gohman475871a2008-07-27 21:46:04 +00008070 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008071 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008072 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008073 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00008074 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00008075 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00008076 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00008077 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008078
8079 switch (CC) {
8080 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00008081 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008082 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008083 case CallingConv::X86_StdCall: {
8084 // Pass 'nest' parameter in ECX.
8085 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008086 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008087
8088 // Check that ECX wasn't needed by an 'inreg' parameter.
8089 const FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00008090 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008091
Chris Lattner58d74912008-03-12 17:45:29 +00008092 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00008093 unsigned InRegCount = 0;
8094 unsigned Idx = 1;
8095
8096 for (FunctionType::param_iterator I = FTy->param_begin(),
8097 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00008098 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00008099 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008100 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008101
8102 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00008103 report_fatal_error("Nest register in use - reduce number of inreg"
8104 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008105 }
8106 }
8107 break;
8108 }
8109 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00008110 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00008111 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008112 // Pass 'nest' parameter in EAX.
8113 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008114 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008115 break;
8116 }
8117
Dan Gohman475871a2008-07-27 21:46:04 +00008118 SDValue OutChains[4];
8119 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008120
Owen Anderson825b72b2009-08-11 20:47:22 +00008121 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8122 DAG.getConstant(10, MVT::i32));
8123 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008124
Chris Lattnera62fe662010-02-05 19:20:30 +00008125 // This is storing the opcode for MOV32ri.
8126 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008127 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00008128 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008129 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008130 Trmp, MachinePointerInfo(TrmpAddr),
8131 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008132
Owen Anderson825b72b2009-08-11 20:47:22 +00008133 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8134 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008135 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
8136 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00008137 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008138
Chris Lattnera62fe662010-02-05 19:20:30 +00008139 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00008140 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8141 DAG.getConstant(5, MVT::i32));
8142 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008143 MachinePointerInfo(TrmpAddr, 5),
8144 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008145
Owen Anderson825b72b2009-08-11 20:47:22 +00008146 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8147 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008148 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
8149 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00008150 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008151
Dan Gohman475871a2008-07-27 21:46:04 +00008152 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008153 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008154 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008155 }
8156}
8157
Dan Gohmand858e902010-04-17 15:26:15 +00008158SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
8159 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008160 /*
8161 The rounding mode is in bits 11:10 of FPSR, and has the following
8162 settings:
8163 00 Round to nearest
8164 01 Round to -inf
8165 10 Round to +inf
8166 11 Round to 0
8167
8168 FLT_ROUNDS, on the other hand, expects the following:
8169 -1 Undefined
8170 0 Round to 0
8171 1 Round to nearest
8172 2 Round to +inf
8173 3 Round to -inf
8174
8175 To perform the conversion, we do:
8176 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
8177 */
8178
8179 MachineFunction &MF = DAG.getMachineFunction();
8180 const TargetMachine &TM = MF.getTarget();
8181 const TargetFrameInfo &TFI = *TM.getFrameInfo();
8182 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00008183 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00008184 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008185
8186 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00008187 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008188 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008189
Michael J. Spencerec38de22010-10-10 22:04:20 +00008190
Chris Lattner2156b792010-09-22 01:11:26 +00008191 MachineMemOperand *MMO =
8192 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8193 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008194
Chris Lattner2156b792010-09-22 01:11:26 +00008195 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
8196 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
8197 DAG.getVTList(MVT::Other),
8198 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008199
8200 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00008201 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00008202 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008203
8204 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00008205 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00008206 DAG.getNode(ISD::SRL, DL, MVT::i16,
8207 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008208 CWD, DAG.getConstant(0x800, MVT::i16)),
8209 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00008210 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00008211 DAG.getNode(ISD::SRL, DL, MVT::i16,
8212 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008213 CWD, DAG.getConstant(0x400, MVT::i16)),
8214 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008215
Dan Gohman475871a2008-07-27 21:46:04 +00008216 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00008217 DAG.getNode(ISD::AND, DL, MVT::i16,
8218 DAG.getNode(ISD::ADD, DL, MVT::i16,
8219 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00008220 DAG.getConstant(1, MVT::i16)),
8221 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008222
8223
Duncan Sands83ec4b62008-06-06 12:08:01 +00008224 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00008225 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008226}
8227
Dan Gohmand858e902010-04-17 15:26:15 +00008228SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008229 EVT VT = Op.getValueType();
8230 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008231 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008232 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008233
8234 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008235 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00008236 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00008237 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008238 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008239 }
Evan Cheng18efe262007-12-14 02:13:44 +00008240
Evan Cheng152804e2007-12-14 08:30:15 +00008241 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008242 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008243 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008244
8245 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008246 SDValue Ops[] = {
8247 Op,
8248 DAG.getConstant(NumBits+NumBits-1, OpVT),
8249 DAG.getConstant(X86::COND_E, MVT::i8),
8250 Op.getValue(1)
8251 };
8252 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008253
8254 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00008255 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00008256
Owen Anderson825b72b2009-08-11 20:47:22 +00008257 if (VT == MVT::i8)
8258 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008259 return Op;
8260}
8261
Dan Gohmand858e902010-04-17 15:26:15 +00008262SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008263 EVT VT = Op.getValueType();
8264 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008265 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008266 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008267
8268 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008269 if (VT == MVT::i8) {
8270 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008271 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008272 }
Evan Cheng152804e2007-12-14 08:30:15 +00008273
8274 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008275 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008276 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008277
8278 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008279 SDValue Ops[] = {
8280 Op,
8281 DAG.getConstant(NumBits, OpVT),
8282 DAG.getConstant(X86::COND_E, MVT::i8),
8283 Op.getValue(1)
8284 };
8285 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008286
Owen Anderson825b72b2009-08-11 20:47:22 +00008287 if (VT == MVT::i8)
8288 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008289 return Op;
8290}
8291
Dan Gohmand858e902010-04-17 15:26:15 +00008292SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008293 EVT VT = Op.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00008294 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008295 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00008296
Mon P Wangaf9b9522008-12-18 21:42:19 +00008297 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
8298 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
8299 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
8300 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
8301 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
8302 //
8303 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
8304 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
8305 // return AloBlo + AloBhi + AhiBlo;
8306
8307 SDValue A = Op.getOperand(0);
8308 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008309
Dale Johannesene4d209d2009-02-03 20:21:25 +00008310 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008311 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8312 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008313 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008314 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8315 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008316 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008317 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008318 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008319 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008320 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008321 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008322 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008323 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008324 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008325 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008326 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8327 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008328 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008329 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8330 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008331 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
8332 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008333 return Res;
8334}
8335
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008336SDValue X86TargetLowering::LowerSHL(SDValue Op, SelectionDAG &DAG) const {
8337 EVT VT = Op.getValueType();
8338 DebugLoc dl = Op.getDebugLoc();
8339 SDValue R = Op.getOperand(0);
8340
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008341 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008342
Nate Begeman51409212010-07-28 00:21:48 +00008343 assert(Subtarget->hasSSE41() && "Cannot lower SHL without SSE4.1 or later");
8344
8345 if (VT == MVT::v4i32) {
8346 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8347 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8348 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
8349
8350 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008351
Nate Begeman51409212010-07-28 00:21:48 +00008352 std::vector<Constant*> CV(4, CI);
8353 Constant *C = ConstantVector::get(CV);
8354 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8355 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008356 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008357 false, false, 16);
8358
8359 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
8360 Op = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32, Op);
8361 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
8362 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
8363 }
8364 if (VT == MVT::v16i8) {
8365 // a = a << 5;
8366 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8367 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
8368 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
8369
8370 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
8371 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
8372
8373 std::vector<Constant*> CVM1(16, CM1);
8374 std::vector<Constant*> CVM2(16, CM2);
8375 Constant *C = ConstantVector::get(CVM1);
8376 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8377 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008378 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008379 false, false, 16);
8380
8381 // r = pblendv(r, psllw(r & (char16)15, 4), a);
8382 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8383 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8384 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8385 DAG.getConstant(4, MVT::i32));
8386 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8387 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8388 R, M, Op);
8389 // a += a
8390 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008391
Nate Begeman51409212010-07-28 00:21:48 +00008392 C = ConstantVector::get(CVM2);
8393 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8394 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008395 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00008396 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008397
Nate Begeman51409212010-07-28 00:21:48 +00008398 // r = pblendv(r, psllw(r & (char16)63, 2), a);
8399 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8400 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8401 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8402 DAG.getConstant(2, MVT::i32));
8403 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8404 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8405 R, M, Op);
8406 // a += a
8407 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008408
Nate Begeman51409212010-07-28 00:21:48 +00008409 // return pblendv(r, r+r, a);
8410 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8411 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8412 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
8413 return R;
8414 }
8415 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008416}
Mon P Wangaf9b9522008-12-18 21:42:19 +00008417
Dan Gohmand858e902010-04-17 15:26:15 +00008418SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00008419 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
8420 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00008421 // looks for this combo and may remove the "setcc" instruction if the "setcc"
8422 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00008423 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00008424 SDValue LHS = N->getOperand(0);
8425 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00008426 unsigned BaseOp = 0;
8427 unsigned Cond = 0;
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008428 DebugLoc dl = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00008429
8430 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008431 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00008432 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00008433 // A subtract of one will be selected as a INC. Note that INC doesn't
8434 // set CF, so we can't do this for UADDO.
8435 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
8436 if (C->getAPIntValue() == 1) {
8437 BaseOp = X86ISD::INC;
8438 Cond = X86::COND_O;
8439 break;
8440 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008441 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00008442 Cond = X86::COND_O;
8443 break;
8444 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008445 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00008446 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008447 break;
8448 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00008449 // A subtract of one will be selected as a DEC. Note that DEC doesn't
8450 // set CF, so we can't do this for USUBO.
8451 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
8452 if (C->getAPIntValue() == 1) {
8453 BaseOp = X86ISD::DEC;
8454 Cond = X86::COND_O;
8455 break;
8456 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008457 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00008458 Cond = X86::COND_O;
8459 break;
8460 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008461 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00008462 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008463 break;
8464 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00008465 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00008466 Cond = X86::COND_O;
8467 break;
8468 case ISD::UMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00008469 BaseOp = X86ISD::UMUL;
Dan Gohman653456c2009-01-07 00:15:08 +00008470 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008471 break;
8472 }
Bill Wendling3fafd932008-11-26 22:37:40 +00008473
Bill Wendling61edeb52008-12-02 01:06:39 +00008474 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008475 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008476 SDValue Sum = DAG.getNode(BaseOp, dl, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00008477
Bill Wendling61edeb52008-12-02 01:06:39 +00008478 SDValue SetCC =
Dale Johannesene4d209d2009-02-03 20:21:25 +00008479 DAG.getNode(X86ISD::SETCC, dl, N->getValueType(1),
Owen Anderson825b72b2009-08-11 20:47:22 +00008480 DAG.getConstant(Cond, MVT::i32), SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00008481
Bill Wendling61edeb52008-12-02 01:06:39 +00008482 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
8483 return Sum;
Bill Wendling41ea7e72008-11-24 19:21:46 +00008484}
8485
Eric Christopher9a9d2752010-07-22 02:48:34 +00008486SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
8487 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008488
Eric Christopherb6729dc2010-08-04 23:03:04 +00008489 if (!Subtarget->hasSSE2()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +00008490 SDValue Chain = Op.getOperand(0);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008491 SDValue Zero = DAG.getConstant(0,
Eric Christopherb6729dc2010-08-04 23:03:04 +00008492 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +00008493 SDValue Ops[] = {
8494 DAG.getRegister(X86::ESP, MVT::i32), // Base
8495 DAG.getTargetConstant(1, MVT::i8), // Scale
8496 DAG.getRegister(0, MVT::i32), // Index
8497 DAG.getTargetConstant(0, MVT::i32), // Disp
8498 DAG.getRegister(0, MVT::i32), // Segment.
8499 Zero,
8500 Chain
8501 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00008502 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +00008503 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
8504 array_lengthof(Ops));
8505 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +00008506 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008507
Eric Christopher9a9d2752010-07-22 02:48:34 +00008508 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +00008509 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +00008510 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008511
Chris Lattner132929a2010-08-14 17:26:09 +00008512 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
8513 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
8514 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
8515 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008516
Chris Lattner132929a2010-08-14 17:26:09 +00008517 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
8518 if (!Op1 && !Op2 && !Op3 && Op4)
8519 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008520
Chris Lattner132929a2010-08-14 17:26:09 +00008521 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
8522 if (Op1 && !Op2 && !Op3 && !Op4)
8523 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008524
8525 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +00008526 // (MFENCE)>;
8527 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +00008528}
8529
Dan Gohmand858e902010-04-17 15:26:15 +00008530SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008531 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008532 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00008533 unsigned Reg = 0;
8534 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00008535 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00008536 default:
8537 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008538 case MVT::i8: Reg = X86::AL; size = 1; break;
8539 case MVT::i16: Reg = X86::AX; size = 2; break;
8540 case MVT::i32: Reg = X86::EAX; size = 4; break;
8541 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00008542 assert(Subtarget->is64Bit() && "Node not type legal!");
8543 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00008544 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008545 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008546 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00008547 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00008548 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00008549 Op.getOperand(1),
8550 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +00008551 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +00008552 cpIn.getValue(1) };
Owen Anderson825b72b2009-08-11 20:47:22 +00008553 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008554 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
8555 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
8556 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +00008557 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008558 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00008559 return cpOut;
8560}
8561
Duncan Sands1607f052008-12-01 11:39:25 +00008562SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008563 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +00008564 assert(Subtarget->is64Bit() && "Result not type legalized?");
Owen Anderson825b72b2009-08-11 20:47:22 +00008565 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00008566 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008567 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008568 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008569 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
8570 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00008571 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +00008572 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
8573 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +00008574 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +00008575 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00008576 rdx.getValue(1)
8577 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008578 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00008579}
8580
Dale Johannesen7d07b482010-05-21 00:52:33 +00008581SDValue X86TargetLowering::LowerBIT_CONVERT(SDValue Op,
8582 SelectionDAG &DAG) const {
8583 EVT SrcVT = Op.getOperand(0).getValueType();
8584 EVT DstVT = Op.getValueType();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008585 assert((Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
Dale Johannesen7d07b482010-05-21 00:52:33 +00008586 Subtarget->hasMMX() && !DisableMMX) &&
8587 "Unexpected custom BIT_CONVERT");
Michael J. Spencerec38de22010-10-10 22:04:20 +00008588 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +00008589 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
8590 "Unexpected custom BIT_CONVERT");
8591 // i64 <=> MMX conversions are Legal.
8592 if (SrcVT==MVT::i64 && DstVT.isVector())
8593 return Op;
8594 if (DstVT==MVT::i64 && SrcVT.isVector())
8595 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +00008596 // MMX <=> MMX conversions are Legal.
8597 if (SrcVT.isVector() && DstVT.isVector())
8598 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +00008599 // All other conversions need to be expanded.
8600 return SDValue();
8601}
Dan Gohmand858e902010-04-17 15:26:15 +00008602SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +00008603 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008604 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00008605 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008606 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00008607 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008608 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008609 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00008610 Node->getOperand(0),
8611 Node->getOperand(1), negOp,
8612 cast<AtomicSDNode>(Node)->getSrcValue(),
8613 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang63307c32008-05-05 19:05:59 +00008614}
8615
Evan Cheng0db9fe62006-04-25 20:13:52 +00008616/// LowerOperation - Provide custom lowering hooks for some operations.
8617///
Dan Gohmand858e902010-04-17 15:26:15 +00008618SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008619 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008620 default: llvm_unreachable("Should not custom lower this!");
Eric Christopher9a9d2752010-07-22 02:48:34 +00008621 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008622 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
8623 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008624 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00008625 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008626 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
8627 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
8628 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
8629 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
8630 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
8631 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008632 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00008633 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +00008634 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008635 case ISD::SHL_PARTS:
8636 case ISD::SRA_PARTS:
8637 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
8638 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008639 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008640 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00008641 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008642 case ISD::FABS: return LowerFABS(Op, DAG);
8643 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00008644 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00008645 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00008646 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00008647 case ISD::SELECT: return LowerSELECT(Op, DAG);
8648 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008649 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008650 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00008651 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00008652 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008653 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00008654 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
8655 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008656 case ISD::FRAME_TO_ARGS_OFFSET:
8657 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008658 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008659 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008660 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00008661 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00008662 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
8663 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008664 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008665 case ISD::SHL: return LowerSHL(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00008666 case ISD::SADDO:
8667 case ISD::UADDO:
8668 case ISD::SSUBO:
8669 case ISD::USUBO:
8670 case ISD::SMULO:
8671 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00008672 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Dale Johannesen7d07b482010-05-21 00:52:33 +00008673 case ISD::BIT_CONVERT: return LowerBIT_CONVERT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008674 }
Chris Lattner27a6c732007-11-24 07:07:01 +00008675}
8676
Duncan Sands1607f052008-12-01 11:39:25 +00008677void X86TargetLowering::
8678ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00008679 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008680 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008681 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00008682 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +00008683
8684 SDValue Chain = Node->getOperand(0);
8685 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008686 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008687 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00008688 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008689 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +00008690 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +00008691 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +00008692 SDValue Result =
8693 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
8694 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +00008695 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +00008696 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008697 Results.push_back(Result.getValue(2));
8698}
8699
Duncan Sands126d9072008-07-04 11:47:58 +00008700/// ReplaceNodeResults - Replace a node with an illegal result type
8701/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00008702void X86TargetLowering::ReplaceNodeResults(SDNode *N,
8703 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00008704 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +00008705 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +00008706 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00008707 default:
Duncan Sands1607f052008-12-01 11:39:25 +00008708 assert(false && "Do not know how to custom type legalize this operation!");
8709 return;
8710 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +00008711 std::pair<SDValue,SDValue> Vals =
8712 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +00008713 SDValue FIST = Vals.first, StackSlot = Vals.second;
8714 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +00008715 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +00008716 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +00008717 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
8718 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +00008719 }
8720 return;
8721 }
8722 case ISD::READCYCLECOUNTER: {
Owen Anderson825b72b2009-08-11 20:47:22 +00008723 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00008724 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008725 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008726 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +00008727 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00008728 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008729 eax.getValue(2));
8730 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
8731 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +00008732 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008733 Results.push_back(edx.getValue(1));
8734 return;
8735 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008736 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +00008737 EVT T = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008738 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands1607f052008-12-01 11:39:25 +00008739 SDValue cpInL, cpInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00008740 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
8741 DAG.getConstant(0, MVT::i32));
8742 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
8743 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00008744 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
8745 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +00008746 cpInL.getValue(1));
8747 SDValue swapInL, swapInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00008748 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
8749 DAG.getConstant(0, MVT::i32));
8750 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
8751 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00008752 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +00008753 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00008754 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +00008755 swapInL.getValue(1));
8756 SDValue Ops[] = { swapInH.getValue(0),
8757 N->getOperand(1),
8758 swapInH.getValue(1) };
Owen Anderson825b72b2009-08-11 20:47:22 +00008759 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +00008760 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
8761 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys,
8762 Ops, 3, T, MMO);
Dale Johannesendd64c412009-02-04 00:33:20 +00008763 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson825b72b2009-08-11 20:47:22 +00008764 MVT::i32, Result.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00008765 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson825b72b2009-08-11 20:47:22 +00008766 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +00008767 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson825b72b2009-08-11 20:47:22 +00008768 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008769 Results.push_back(cpOutH.getValue(1));
8770 return;
8771 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008772 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00008773 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
8774 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008775 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00008776 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
8777 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008778 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00008779 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
8780 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008781 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00008782 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
8783 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008784 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00008785 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
8786 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008787 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00008788 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
8789 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008790 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00008791 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
8792 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00008793 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00008794}
8795
Evan Cheng72261582005-12-20 06:22:03 +00008796const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
8797 switch (Opcode) {
8798 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00008799 case X86ISD::BSF: return "X86ISD::BSF";
8800 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00008801 case X86ISD::SHLD: return "X86ISD::SHLD";
8802 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00008803 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00008804 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00008805 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00008806 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00008807 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00008808 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00008809 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
8810 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
8811 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00008812 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00008813 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00008814 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +00008815 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00008816 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00008817 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00008818 case X86ISD::COMI: return "X86ISD::COMI";
8819 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00008820 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +00008821 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Evan Cheng72261582005-12-20 06:22:03 +00008822 case X86ISD::CMOV: return "X86ISD::CMOV";
8823 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00008824 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00008825 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
8826 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00008827 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00008828 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +00008829 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +00008830 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00008831 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00008832 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
8833 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00008834 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +00008835 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Evan Cheng8ca29322006-11-10 21:43:37 +00008836 case X86ISD::FMAX: return "X86ISD::FMAX";
8837 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00008838 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
8839 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008840 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +00008841 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008842 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00008843 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008844 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00008845 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
8846 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00008847 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
8848 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
8849 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
8850 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
8851 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
8852 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00008853 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
8854 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00008855 case X86ISD::VSHL: return "X86ISD::VSHL";
8856 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00008857 case X86ISD::CMPPD: return "X86ISD::CMPPD";
8858 case X86ISD::CMPPS: return "X86ISD::CMPPS";
8859 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
8860 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
8861 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
8862 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
8863 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
8864 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
8865 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
8866 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008867 case X86ISD::ADD: return "X86ISD::ADD";
8868 case X86ISD::SUB: return "X86ISD::SUB";
Bill Wendlingd350e022008-12-12 21:15:41 +00008869 case X86ISD::SMUL: return "X86ISD::SMUL";
8870 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +00008871 case X86ISD::INC: return "X86ISD::INC";
8872 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +00008873 case X86ISD::OR: return "X86ISD::OR";
8874 case X86ISD::XOR: return "X86ISD::XOR";
8875 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +00008876 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +00008877 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008878 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008879 case X86ISD::PALIGN: return "X86ISD::PALIGN";
8880 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
8881 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
8882 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
8883 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
8884 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
8885 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
8886 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
8887 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008888 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00008889 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008890 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00008891 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
8892 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008893 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
8894 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
8895 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
8896 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
8897 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
8898 case X86ISD::MOVSD: return "X86ISD::MOVSD";
8899 case X86ISD::MOVSS: return "X86ISD::MOVSS";
8900 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
8901 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
8902 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
8903 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
8904 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
8905 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
8906 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
8907 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
8908 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
8909 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
8910 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
8911 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Dan Gohmand6708ea2009-08-15 01:38:56 +00008912 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +00008913 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008914 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Evan Cheng72261582005-12-20 06:22:03 +00008915 }
8916}
Evan Cheng3a03ebb2005-12-21 23:05:39 +00008917
Chris Lattnerc9addb72007-03-30 23:15:24 +00008918// isLegalAddressingMode - Return true if the addressing mode represented
8919// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00008920bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerc9addb72007-03-30 23:15:24 +00008921 const Type *Ty) const {
8922 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008923 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +00008924 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +00008925
Chris Lattnerc9addb72007-03-30 23:15:24 +00008926 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008927 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +00008928 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00008929
Chris Lattnerc9addb72007-03-30 23:15:24 +00008930 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +00008931 unsigned GVFlags =
8932 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008933
Chris Lattnerdfed4132009-07-10 07:38:24 +00008934 // If a reference to this global requires an extra load, we can't fold it.
8935 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +00008936 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008937
Chris Lattnerdfed4132009-07-10 07:38:24 +00008938 // If BaseGV requires a register for the PIC base, we cannot also have a
8939 // BaseReg specified.
8940 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +00008941 return false;
Evan Cheng52787842007-08-01 23:46:47 +00008942
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008943 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +00008944 if ((M != CodeModel::Small || R != Reloc::Static) &&
8945 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008946 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +00008947 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008948
Chris Lattnerc9addb72007-03-30 23:15:24 +00008949 switch (AM.Scale) {
8950 case 0:
8951 case 1:
8952 case 2:
8953 case 4:
8954 case 8:
8955 // These scales always work.
8956 break;
8957 case 3:
8958 case 5:
8959 case 9:
8960 // These scales are formed with basereg+scalereg. Only accept if there is
8961 // no basereg yet.
8962 if (AM.HasBaseReg)
8963 return false;
8964 break;
8965 default: // Other stuff never works.
8966 return false;
8967 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008968
Chris Lattnerc9addb72007-03-30 23:15:24 +00008969 return true;
8970}
8971
8972
Evan Cheng2bd122c2007-10-26 01:56:11 +00008973bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00008974 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +00008975 return false;
Evan Chenge127a732007-10-29 07:57:50 +00008976 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
8977 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00008978 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +00008979 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00008980 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +00008981}
8982
Owen Andersone50ed302009-08-10 22:56:29 +00008983bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00008984 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +00008985 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008986 unsigned NumBits1 = VT1.getSizeInBits();
8987 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00008988 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +00008989 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00008990 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00008991}
Evan Cheng2bd122c2007-10-26 01:56:11 +00008992
Dan Gohman97121ba2009-04-08 00:15:30 +00008993bool X86TargetLowering::isZExtFree(const Type *Ty1, const Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00008994 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00008995 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00008996}
8997
Owen Andersone50ed302009-08-10 22:56:29 +00008998bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00008999 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +00009000 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00009001}
9002
Owen Andersone50ed302009-08-10 22:56:29 +00009003bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +00009004 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +00009005 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +00009006}
9007
Evan Cheng60c07e12006-07-05 22:17:51 +00009008/// isShuffleMaskLegal - Targets can use this to indicate that they only
9009/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
9010/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
9011/// are assumed to be legal.
9012bool
Eric Christopherfd179292009-08-27 18:07:15 +00009013X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +00009014 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +00009015 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +00009016 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +00009017 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +00009018
Nate Begemana09008b2009-10-19 02:17:23 +00009019 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +00009020 return (VT.getVectorNumElements() == 2 ||
9021 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
9022 isMOVLMask(M, VT) ||
9023 isSHUFPMask(M, VT) ||
9024 isPSHUFDMask(M, VT) ||
9025 isPSHUFHWMask(M, VT) ||
9026 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +00009027 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +00009028 isUNPCKLMask(M, VT) ||
9029 isUNPCKHMask(M, VT) ||
9030 isUNPCKL_v_undef_Mask(M, VT) ||
9031 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009032}
9033
Dan Gohman7d8143f2008-04-09 20:09:42 +00009034bool
Nate Begeman5a5ca152009-04-29 05:20:52 +00009035X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +00009036 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00009037 unsigned NumElts = VT.getVectorNumElements();
9038 // FIXME: This collection of masks seems suspect.
9039 if (NumElts == 2)
9040 return true;
9041 if (NumElts == 4 && VT.getSizeInBits() == 128) {
9042 return (isMOVLMask(Mask, VT) ||
9043 isCommutedMOVLMask(Mask, VT, true) ||
9044 isSHUFPMask(Mask, VT) ||
9045 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009046 }
9047 return false;
9048}
9049
9050//===----------------------------------------------------------------------===//
9051// X86 Scheduler Hooks
9052//===----------------------------------------------------------------------===//
9053
Mon P Wang63307c32008-05-05 19:05:59 +00009054// private utility function
9055MachineBasicBlock *
9056X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
9057 MachineBasicBlock *MBB,
9058 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009059 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009060 unsigned LoadOpc,
9061 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009062 unsigned notOpc,
9063 unsigned EAXreg,
9064 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009065 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009066 // For the atomic bitwise operator, we generate
9067 // thisMBB:
9068 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009069 // ld t1 = [bitinstr.addr]
9070 // op t2 = t1, [bitinstr.val]
9071 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009072 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9073 // bz newMBB
9074 // fallthrough -->nextMBB
9075 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9076 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009077 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009078 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009079
Mon P Wang63307c32008-05-05 19:05:59 +00009080 /// First build the CFG
9081 MachineFunction *F = MBB->getParent();
9082 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009083 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9084 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9085 F->insert(MBBIter, newMBB);
9086 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009087
Dan Gohman14152b42010-07-06 20:24:04 +00009088 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9089 nextMBB->splice(nextMBB->begin(), thisMBB,
9090 llvm::next(MachineBasicBlock::iterator(bInstr)),
9091 thisMBB->end());
9092 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009093
Mon P Wang63307c32008-05-05 19:05:59 +00009094 // Update thisMBB to fall through to newMBB
9095 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009096
Mon P Wang63307c32008-05-05 19:05:59 +00009097 // newMBB jumps to itself and fall through to nextMBB
9098 newMBB->addSuccessor(nextMBB);
9099 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009100
Mon P Wang63307c32008-05-05 19:05:59 +00009101 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009102 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009103 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +00009104 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009105 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009106 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009107 int numArgs = bInstr->getNumOperands() - 1;
9108 for (int i=0; i < numArgs; ++i)
9109 argOpers[i] = &bInstr->getOperand(i+1);
9110
9111 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009112 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009113 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009114
Dale Johannesen140be2d2008-08-19 18:47:28 +00009115 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009116 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009117 for (int i=0; i <= lastAddrIndx; ++i)
9118 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009119
Dale Johannesen140be2d2008-08-19 18:47:28 +00009120 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009121 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009122 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009123 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009124 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009125 tt = t1;
9126
Dale Johannesen140be2d2008-08-19 18:47:28 +00009127 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +00009128 assert((argOpers[valArgIndx]->isReg() ||
9129 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009130 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +00009131 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009132 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009133 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009134 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009135 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +00009136 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009137
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009138 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +00009139 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009140
Dale Johannesene4d209d2009-02-03 20:21:25 +00009141 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +00009142 for (int i=0; i <= lastAddrIndx; ++i)
9143 (*MIB).addOperand(*argOpers[i]);
9144 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +00009145 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009146 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9147 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +00009148
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009149 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +00009150 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009151
Mon P Wang63307c32008-05-05 19:05:59 +00009152 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009153 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009154
Dan Gohman14152b42010-07-06 20:24:04 +00009155 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009156 return nextMBB;
9157}
9158
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00009159// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +00009160MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009161X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
9162 MachineBasicBlock *MBB,
9163 unsigned regOpcL,
9164 unsigned regOpcH,
9165 unsigned immOpcL,
9166 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009167 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009168 // For the atomic bitwise operator, we generate
9169 // thisMBB (instructions are in pairs, except cmpxchg8b)
9170 // ld t1,t2 = [bitinstr.addr]
9171 // newMBB:
9172 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
9173 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +00009174 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009175 // mov ECX, EBX <- t5, t6
9176 // mov EAX, EDX <- t1, t2
9177 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
9178 // mov t3, t4 <- EAX, EDX
9179 // bz newMBB
9180 // result in out1, out2
9181 // fallthrough -->nextMBB
9182
9183 const TargetRegisterClass *RC = X86::GR32RegisterClass;
9184 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009185 const unsigned NotOpc = X86::NOT32r;
9186 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9187 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9188 MachineFunction::iterator MBBIter = MBB;
9189 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009190
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009191 /// First build the CFG
9192 MachineFunction *F = MBB->getParent();
9193 MachineBasicBlock *thisMBB = MBB;
9194 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9195 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9196 F->insert(MBBIter, newMBB);
9197 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009198
Dan Gohman14152b42010-07-06 20:24:04 +00009199 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9200 nextMBB->splice(nextMBB->begin(), thisMBB,
9201 llvm::next(MachineBasicBlock::iterator(bInstr)),
9202 thisMBB->end());
9203 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009204
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009205 // Update thisMBB to fall through to newMBB
9206 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009207
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009208 // newMBB jumps to itself and fall through to nextMBB
9209 newMBB->addSuccessor(nextMBB);
9210 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009211
Dale Johannesene4d209d2009-02-03 20:21:25 +00009212 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009213 // Insert instructions into newMBB based on incoming instruction
9214 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009215 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009216 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009217 MachineOperand& dest1Oper = bInstr->getOperand(0);
9218 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009219 MachineOperand* argOpers[2 + X86::AddrNumOperands];
9220 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009221 argOpers[i] = &bInstr->getOperand(i+2);
9222
Dan Gohman71ea4e52010-05-14 21:01:44 +00009223 // We use some of the operands multiple times, so conservatively just
9224 // clear any kill flags that might be present.
9225 if (argOpers[i]->isReg() && argOpers[i]->isUse())
9226 argOpers[i]->setIsKill(false);
9227 }
9228
Evan Chengad5b52f2010-01-08 19:14:57 +00009229 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009230 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +00009231
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009232 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009233 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009234 for (int i=0; i <= lastAddrIndx; ++i)
9235 (*MIB).addOperand(*argOpers[i]);
9236 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009237 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +00009238 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +00009239 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009240 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +00009241 MachineOperand newOp3 = *(argOpers[3]);
9242 if (newOp3.isImm())
9243 newOp3.setImm(newOp3.getImm()+4);
9244 else
9245 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009246 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +00009247 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009248
9249 // t3/4 are defined later, at the bottom of the loop
9250 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
9251 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009252 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009253 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009254 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009255 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
9256
Evan Cheng306b4ca2010-01-08 23:41:50 +00009257 // The subsequent operations should be using the destination registers of
9258 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +00009259 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009260 t1 = F->getRegInfo().createVirtualRegister(RC);
9261 t2 = F->getRegInfo().createVirtualRegister(RC);
9262 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
9263 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009264 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009265 t1 = dest1Oper.getReg();
9266 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009267 }
9268
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009269 int valArgIndx = lastAddrIndx + 1;
9270 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +00009271 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009272 "invalid operand");
9273 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
9274 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009275 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009276 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009277 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009278 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +00009279 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009280 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009281 (*MIB).addOperand(*argOpers[valArgIndx]);
9282 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009283 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009284 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009285 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009286 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009287 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009288 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009289 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +00009290 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009291 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009292 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009293
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009294 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009295 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009296 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009297 MIB.addReg(t2);
9298
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009299 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009300 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009301 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009302 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +00009303
Dale Johannesene4d209d2009-02-03 20:21:25 +00009304 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009305 for (int i=0; i <= lastAddrIndx; ++i)
9306 (*MIB).addOperand(*argOpers[i]);
9307
9308 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009309 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9310 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009311
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009312 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009313 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009314 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009315 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009316
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009317 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009318 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009319
Dan Gohman14152b42010-07-06 20:24:04 +00009320 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009321 return nextMBB;
9322}
9323
9324// private utility function
9325MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +00009326X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
9327 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009328 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009329 // For the atomic min/max operator, we generate
9330 // thisMBB:
9331 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009332 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +00009333 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +00009334 // cmp t1, t2
9335 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +00009336 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009337 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9338 // bz newMBB
9339 // fallthrough -->nextMBB
9340 //
9341 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9342 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009343 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009344 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009345
Mon P Wang63307c32008-05-05 19:05:59 +00009346 /// First build the CFG
9347 MachineFunction *F = MBB->getParent();
9348 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009349 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9350 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9351 F->insert(MBBIter, newMBB);
9352 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009353
Dan Gohman14152b42010-07-06 20:24:04 +00009354 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9355 nextMBB->splice(nextMBB->begin(), thisMBB,
9356 llvm::next(MachineBasicBlock::iterator(mInstr)),
9357 thisMBB->end());
9358 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009359
Mon P Wang63307c32008-05-05 19:05:59 +00009360 // Update thisMBB to fall through to newMBB
9361 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009362
Mon P Wang63307c32008-05-05 19:05:59 +00009363 // newMBB jumps to newMBB and fall through to nextMBB
9364 newMBB->addSuccessor(nextMBB);
9365 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009366
Dale Johannesene4d209d2009-02-03 20:21:25 +00009367 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009368 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009369 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009370 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +00009371 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009372 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009373 int numArgs = mInstr->getNumOperands() - 1;
9374 for (int i=0; i < numArgs; ++i)
9375 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009376
Mon P Wang63307c32008-05-05 19:05:59 +00009377 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009378 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009379 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009380
Mon P Wangab3e7472008-05-05 22:56:23 +00009381 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009382 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009383 for (int i=0; i <= lastAddrIndx; ++i)
9384 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +00009385
Mon P Wang63307c32008-05-05 19:05:59 +00009386 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +00009387 assert((argOpers[valArgIndx]->isReg() ||
9388 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009389 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +00009390
9391 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +00009392 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009393 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +00009394 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009395 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009396 (*MIB).addOperand(*argOpers[valArgIndx]);
9397
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009398 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +00009399 MIB.addReg(t1);
9400
Dale Johannesene4d209d2009-02-03 20:21:25 +00009401 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +00009402 MIB.addReg(t1);
9403 MIB.addReg(t2);
9404
9405 // Generate movc
9406 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009407 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +00009408 MIB.addReg(t2);
9409 MIB.addReg(t1);
9410
9411 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +00009412 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +00009413 for (int i=0; i <= lastAddrIndx; ++i)
9414 (*MIB).addOperand(*argOpers[i]);
9415 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +00009416 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009417 (*MIB).setMemRefs(mInstr->memoperands_begin(),
9418 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +00009419
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009420 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +00009421 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009422
Mon P Wang63307c32008-05-05 19:05:59 +00009423 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009424 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009425
Dan Gohman14152b42010-07-06 20:24:04 +00009426 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009427 return nextMBB;
9428}
9429
Eric Christopherf83a5de2009-08-27 18:08:16 +00009430// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009431// or XMM0_V32I8 in AVX all of this code can be replaced with that
9432// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +00009433MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +00009434X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +00009435 unsigned numArgs, bool memArg) const {
Eric Christopherb120ab42009-08-18 22:50:32 +00009436
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009437 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
9438 "Target must have SSE4.2 or AVX features enabled");
9439
Eric Christopherb120ab42009-08-18 22:50:32 +00009440 DebugLoc dl = MI->getDebugLoc();
9441 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9442
9443 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009444
9445 if (!Subtarget->hasAVX()) {
9446 if (memArg)
9447 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
9448 else
9449 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
9450 } else {
9451 if (memArg)
9452 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
9453 else
9454 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
9455 }
Eric Christopherb120ab42009-08-18 22:50:32 +00009456
9457 MachineInstrBuilder MIB = BuildMI(BB, dl, TII->get(Opc));
9458
9459 for (unsigned i = 0; i < numArgs; ++i) {
9460 MachineOperand &Op = MI->getOperand(i+1);
9461
9462 if (!(Op.isReg() && Op.isImplicit()))
9463 MIB.addOperand(Op);
9464 }
9465
9466 BuildMI(BB, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
9467 .addReg(X86::XMM0);
9468
Dan Gohman14152b42010-07-06 20:24:04 +00009469 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +00009470
9471 return BB;
9472}
9473
9474MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +00009475X86TargetLowering::EmitVAARG64WithCustomInserter(
9476 MachineInstr *MI,
9477 MachineBasicBlock *MBB) const {
9478 // Emit va_arg instruction on X86-64.
9479
9480 // Operands to this pseudo-instruction:
9481 // 0 ) Output : destination address (reg)
9482 // 1-5) Input : va_list address (addr, i64mem)
9483 // 6 ) ArgSize : Size (in bytes) of vararg type
9484 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
9485 // 8 ) Align : Alignment of type
9486 // 9 ) EFLAGS (implicit-def)
9487
9488 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
9489 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
9490
9491 unsigned DestReg = MI->getOperand(0).getReg();
9492 MachineOperand &Base = MI->getOperand(1);
9493 MachineOperand &Scale = MI->getOperand(2);
9494 MachineOperand &Index = MI->getOperand(3);
9495 MachineOperand &Disp = MI->getOperand(4);
9496 MachineOperand &Segment = MI->getOperand(5);
9497 unsigned ArgSize = MI->getOperand(6).getImm();
9498 unsigned ArgMode = MI->getOperand(7).getImm();
9499 unsigned Align = MI->getOperand(8).getImm();
9500
9501 // Memory Reference
9502 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
9503 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
9504 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
9505
9506 // Machine Information
9507 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9508 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
9509 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
9510 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
9511 DebugLoc DL = MI->getDebugLoc();
9512
9513 // struct va_list {
9514 // i32 gp_offset
9515 // i32 fp_offset
9516 // i64 overflow_area (address)
9517 // i64 reg_save_area (address)
9518 // }
9519 // sizeof(va_list) = 24
9520 // alignment(va_list) = 8
9521
9522 unsigned TotalNumIntRegs = 6;
9523 unsigned TotalNumXMMRegs = 8;
9524 bool UseGPOffset = (ArgMode == 1);
9525 bool UseFPOffset = (ArgMode == 2);
9526 unsigned MaxOffset = TotalNumIntRegs * 8 +
9527 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
9528
9529 /* Align ArgSize to a multiple of 8 */
9530 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
9531 bool NeedsAlign = (Align > 8);
9532
9533 MachineBasicBlock *thisMBB = MBB;
9534 MachineBasicBlock *overflowMBB;
9535 MachineBasicBlock *offsetMBB;
9536 MachineBasicBlock *endMBB;
9537
9538 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
9539 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
9540 unsigned OffsetReg = 0;
9541
9542 if (!UseGPOffset && !UseFPOffset) {
9543 // If we only pull from the overflow region, we don't create a branch.
9544 // We don't need to alter control flow.
9545 OffsetDestReg = 0; // unused
9546 OverflowDestReg = DestReg;
9547
9548 offsetMBB = NULL;
9549 overflowMBB = thisMBB;
9550 endMBB = thisMBB;
9551 } else {
9552 // First emit code to check if gp_offset (or fp_offset) is below the bound.
9553 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
9554 // If not, pull from overflow_area. (branch to overflowMBB)
9555 //
9556 // thisMBB
9557 // | .
9558 // | .
9559 // offsetMBB overflowMBB
9560 // | .
9561 // | .
9562 // endMBB
9563
9564 // Registers for the PHI in endMBB
9565 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
9566 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
9567
9568 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9569 MachineFunction *MF = MBB->getParent();
9570 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9571 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9572 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9573
9574 MachineFunction::iterator MBBIter = MBB;
9575 ++MBBIter;
9576
9577 // Insert the new basic blocks
9578 MF->insert(MBBIter, offsetMBB);
9579 MF->insert(MBBIter, overflowMBB);
9580 MF->insert(MBBIter, endMBB);
9581
9582 // Transfer the remainder of MBB and its successor edges to endMBB.
9583 endMBB->splice(endMBB->begin(), thisMBB,
9584 llvm::next(MachineBasicBlock::iterator(MI)),
9585 thisMBB->end());
9586 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
9587
9588 // Make offsetMBB and overflowMBB successors of thisMBB
9589 thisMBB->addSuccessor(offsetMBB);
9590 thisMBB->addSuccessor(overflowMBB);
9591
9592 // endMBB is a successor of both offsetMBB and overflowMBB
9593 offsetMBB->addSuccessor(endMBB);
9594 overflowMBB->addSuccessor(endMBB);
9595
9596 // Load the offset value into a register
9597 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
9598 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
9599 .addOperand(Base)
9600 .addOperand(Scale)
9601 .addOperand(Index)
9602 .addDisp(Disp, UseFPOffset ? 4 : 0)
9603 .addOperand(Segment)
9604 .setMemRefs(MMOBegin, MMOEnd);
9605
9606 // Check if there is enough room left to pull this argument.
9607 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
9608 .addReg(OffsetReg)
9609 .addImm(MaxOffset + 8 - ArgSizeA8);
9610
9611 // Branch to "overflowMBB" if offset >= max
9612 // Fall through to "offsetMBB" otherwise
9613 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
9614 .addMBB(overflowMBB);
9615 }
9616
9617 // In offsetMBB, emit code to use the reg_save_area.
9618 if (offsetMBB) {
9619 assert(OffsetReg != 0);
9620
9621 // Read the reg_save_area address.
9622 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
9623 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
9624 .addOperand(Base)
9625 .addOperand(Scale)
9626 .addOperand(Index)
9627 .addDisp(Disp, 16)
9628 .addOperand(Segment)
9629 .setMemRefs(MMOBegin, MMOEnd);
9630
9631 // Zero-extend the offset
9632 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
9633 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
9634 .addImm(0)
9635 .addReg(OffsetReg)
9636 .addImm(X86::sub_32bit);
9637
9638 // Add the offset to the reg_save_area to get the final address.
9639 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
9640 .addReg(OffsetReg64)
9641 .addReg(RegSaveReg);
9642
9643 // Compute the offset for the next argument
9644 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
9645 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
9646 .addReg(OffsetReg)
9647 .addImm(UseFPOffset ? 16 : 8);
9648
9649 // Store it back into the va_list.
9650 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
9651 .addOperand(Base)
9652 .addOperand(Scale)
9653 .addOperand(Index)
9654 .addDisp(Disp, UseFPOffset ? 4 : 0)
9655 .addOperand(Segment)
9656 .addReg(NextOffsetReg)
9657 .setMemRefs(MMOBegin, MMOEnd);
9658
9659 // Jump to endMBB
9660 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
9661 .addMBB(endMBB);
9662 }
9663
9664 //
9665 // Emit code to use overflow area
9666 //
9667
9668 // Load the overflow_area address into a register.
9669 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
9670 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
9671 .addOperand(Base)
9672 .addOperand(Scale)
9673 .addOperand(Index)
9674 .addDisp(Disp, 8)
9675 .addOperand(Segment)
9676 .setMemRefs(MMOBegin, MMOEnd);
9677
9678 // If we need to align it, do so. Otherwise, just copy the address
9679 // to OverflowDestReg.
9680 if (NeedsAlign) {
9681 // Align the overflow address
9682 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
9683 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
9684
9685 // aligned_addr = (addr + (align-1)) & ~(align-1)
9686 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
9687 .addReg(OverflowAddrReg)
9688 .addImm(Align-1);
9689
9690 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
9691 .addReg(TmpReg)
9692 .addImm(~(uint64_t)(Align-1));
9693 } else {
9694 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
9695 .addReg(OverflowAddrReg);
9696 }
9697
9698 // Compute the next overflow address after this argument.
9699 // (the overflow address should be kept 8-byte aligned)
9700 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
9701 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
9702 .addReg(OverflowDestReg)
9703 .addImm(ArgSizeA8);
9704
9705 // Store the new overflow address.
9706 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
9707 .addOperand(Base)
9708 .addOperand(Scale)
9709 .addOperand(Index)
9710 .addDisp(Disp, 8)
9711 .addOperand(Segment)
9712 .addReg(NextAddrReg)
9713 .setMemRefs(MMOBegin, MMOEnd);
9714
9715 // If we branched, emit the PHI to the front of endMBB.
9716 if (offsetMBB) {
9717 BuildMI(*endMBB, endMBB->begin(), DL,
9718 TII->get(X86::PHI), DestReg)
9719 .addReg(OffsetDestReg).addMBB(offsetMBB)
9720 .addReg(OverflowDestReg).addMBB(overflowMBB);
9721 }
9722
9723 // Erase the pseudo instruction
9724 MI->eraseFromParent();
9725
9726 return endMBB;
9727}
9728
9729MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +00009730X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
9731 MachineInstr *MI,
9732 MachineBasicBlock *MBB) const {
9733 // Emit code to save XMM registers to the stack. The ABI says that the
9734 // number of registers to save is given in %al, so it's theoretically
9735 // possible to do an indirect jump trick to avoid saving all of them,
9736 // however this code takes a simpler approach and just executes all
9737 // of the stores if %al is non-zero. It's less code, and it's probably
9738 // easier on the hardware branch predictor, and stores aren't all that
9739 // expensive anyway.
9740
9741 // Create the new basic blocks. One block contains all the XMM stores,
9742 // and one block is the final destination regardless of whether any
9743 // stores were performed.
9744 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9745 MachineFunction *F = MBB->getParent();
9746 MachineFunction::iterator MBBIter = MBB;
9747 ++MBBIter;
9748 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
9749 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
9750 F->insert(MBBIter, XMMSaveMBB);
9751 F->insert(MBBIter, EndMBB);
9752
Dan Gohman14152b42010-07-06 20:24:04 +00009753 // Transfer the remainder of MBB and its successor edges to EndMBB.
9754 EndMBB->splice(EndMBB->begin(), MBB,
9755 llvm::next(MachineBasicBlock::iterator(MI)),
9756 MBB->end());
9757 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
9758
Dan Gohmand6708ea2009-08-15 01:38:56 +00009759 // The original block will now fall through to the XMM save block.
9760 MBB->addSuccessor(XMMSaveMBB);
9761 // The XMMSaveMBB will fall through to the end block.
9762 XMMSaveMBB->addSuccessor(EndMBB);
9763
9764 // Now add the instructions.
9765 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9766 DebugLoc DL = MI->getDebugLoc();
9767
9768 unsigned CountReg = MI->getOperand(0).getReg();
9769 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
9770 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
9771
9772 if (!Subtarget->isTargetWin64()) {
9773 // If %al is 0, branch around the XMM save block.
9774 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009775 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009776 MBB->addSuccessor(EndMBB);
9777 }
9778
9779 // In the XMM save block, save all the XMM argument registers.
9780 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
9781 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +00009782 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +00009783 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +00009784 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +00009785 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +00009786 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009787 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
9788 .addFrameIndex(RegSaveFrameIndex)
9789 .addImm(/*Scale=*/1)
9790 .addReg(/*IndexReg=*/0)
9791 .addImm(/*Disp=*/Offset)
9792 .addReg(/*Segment=*/0)
9793 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +00009794 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009795 }
9796
Dan Gohman14152b42010-07-06 20:24:04 +00009797 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +00009798
9799 return EndMBB;
9800}
Mon P Wang63307c32008-05-05 19:05:59 +00009801
Evan Cheng60c07e12006-07-05 22:17:51 +00009802MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +00009803X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009804 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +00009805 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9806 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00009807
Chris Lattner52600972009-09-02 05:57:00 +00009808 // To "insert" a SELECT_CC instruction, we actually have to insert the
9809 // diamond control-flow pattern. The incoming instruction knows the
9810 // destination vreg to set, the condition code register to branch on, the
9811 // true/false values to select between, and a branch opcode to use.
9812 const BasicBlock *LLVM_BB = BB->getBasicBlock();
9813 MachineFunction::iterator It = BB;
9814 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +00009815
Chris Lattner52600972009-09-02 05:57:00 +00009816 // thisMBB:
9817 // ...
9818 // TrueVal = ...
9819 // cmpTY ccX, r1, r2
9820 // bCC copy1MBB
9821 // fallthrough --> copy0MBB
9822 MachineBasicBlock *thisMBB = BB;
9823 MachineFunction *F = BB->getParent();
9824 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
9825 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +00009826 F->insert(It, copy0MBB);
9827 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +00009828
Bill Wendling730c07e2010-06-25 20:48:10 +00009829 // If the EFLAGS register isn't dead in the terminator, then claim that it's
9830 // live into the sink and copy blocks.
9831 const MachineFunction *MF = BB->getParent();
9832 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
9833 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +00009834
Dan Gohman14152b42010-07-06 20:24:04 +00009835 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
9836 const MachineOperand &MO = MI->getOperand(I);
9837 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +00009838 unsigned Reg = MO.getReg();
9839 if (Reg != X86::EFLAGS) continue;
9840 copy0MBB->addLiveIn(Reg);
9841 sinkMBB->addLiveIn(Reg);
9842 }
9843
Dan Gohman14152b42010-07-06 20:24:04 +00009844 // Transfer the remainder of BB and its successor edges to sinkMBB.
9845 sinkMBB->splice(sinkMBB->begin(), BB,
9846 llvm::next(MachineBasicBlock::iterator(MI)),
9847 BB->end());
9848 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
9849
9850 // Add the true and fallthrough blocks as its successors.
9851 BB->addSuccessor(copy0MBB);
9852 BB->addSuccessor(sinkMBB);
9853
9854 // Create the conditional branch instruction.
9855 unsigned Opc =
9856 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
9857 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
9858
Chris Lattner52600972009-09-02 05:57:00 +00009859 // copy0MBB:
9860 // %FalseValue = ...
9861 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +00009862 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00009863
Chris Lattner52600972009-09-02 05:57:00 +00009864 // sinkMBB:
9865 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
9866 // ...
Dan Gohman14152b42010-07-06 20:24:04 +00009867 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
9868 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +00009869 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
9870 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
9871
Dan Gohman14152b42010-07-06 20:24:04 +00009872 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +00009873 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +00009874}
9875
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009876MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009877X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009878 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009879 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9880 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009881
9882 // The lowering is pretty easy: we're just emitting the call to _alloca. The
9883 // non-trivial part is impdef of ESP.
9884 // FIXME: The code should be tweaked as soon as we'll try to do codegen for
9885 // mingw-w64.
9886
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009887 const char *StackProbeSymbol =
9888 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
9889
Dan Gohman14152b42010-07-06 20:24:04 +00009890 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009891 .addExternalSymbol(StackProbeSymbol)
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009892 .addReg(X86::EAX, RegState::Implicit)
9893 .addReg(X86::ESP, RegState::Implicit)
9894 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
Anton Korobeynikov9f7f83b2010-08-25 07:50:11 +00009895 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
9896 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009897
Dan Gohman14152b42010-07-06 20:24:04 +00009898 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009899 return BB;
9900}
Chris Lattner52600972009-09-02 05:57:00 +00009901
9902MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +00009903X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
9904 MachineBasicBlock *BB) const {
9905 // This is pretty easy. We're taking the value that we received from
9906 // our load from the relocation, sticking it in either RDI (x86-64)
9907 // or EAX and doing an indirect call. The return value will then
9908 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +00009909 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +00009910 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +00009911 DebugLoc DL = MI->getDebugLoc();
9912 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +00009913
9914 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +00009915 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +00009916
Eric Christopher30ef0e52010-06-03 04:07:48 +00009917 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +00009918 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9919 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +00009920 .addReg(X86::RIP)
9921 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009922 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +00009923 MI->getOperand(3).getTargetFlags())
9924 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +00009925 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +00009926 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +00009927 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +00009928 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9929 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +00009930 .addReg(0)
9931 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009932 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +00009933 MI->getOperand(3).getTargetFlags())
9934 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +00009935 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +00009936 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +00009937 } else {
Dan Gohman14152b42010-07-06 20:24:04 +00009938 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9939 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +00009940 .addReg(TII->getGlobalBaseReg(F))
9941 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009942 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +00009943 MI->getOperand(3).getTargetFlags())
9944 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +00009945 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +00009946 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +00009947 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00009948
Dan Gohman14152b42010-07-06 20:24:04 +00009949 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +00009950 return BB;
9951}
9952
9953MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +00009954X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009955 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +00009956 switch (MI->getOpcode()) {
9957 default: assert(false && "Unexpected instr type to insert");
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009958 case X86::WIN_ALLOCA:
9959 return EmitLoweredWinAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +00009960 case X86::TLSCall_32:
9961 case X86::TLSCall_64:
9962 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +00009963 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +00009964 case X86::CMOV_FR32:
9965 case X86::CMOV_FR64:
9966 case X86::CMOV_V4F32:
9967 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +00009968 case X86::CMOV_V2I64:
Chris Lattner314a1132010-03-14 18:31:44 +00009969 case X86::CMOV_GR16:
9970 case X86::CMOV_GR32:
9971 case X86::CMOV_RFP32:
9972 case X86::CMOV_RFP64:
9973 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009974 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +00009975
Dale Johannesen849f2142007-07-03 00:53:03 +00009976 case X86::FP32_TO_INT16_IN_MEM:
9977 case X86::FP32_TO_INT32_IN_MEM:
9978 case X86::FP32_TO_INT64_IN_MEM:
9979 case X86::FP64_TO_INT16_IN_MEM:
9980 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +00009981 case X86::FP64_TO_INT64_IN_MEM:
9982 case X86::FP80_TO_INT16_IN_MEM:
9983 case X86::FP80_TO_INT32_IN_MEM:
9984 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +00009985 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9986 DebugLoc DL = MI->getDebugLoc();
9987
Evan Cheng60c07e12006-07-05 22:17:51 +00009988 // Change the floating point control register to use "round towards zero"
9989 // mode when truncating to an integer value.
9990 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +00009991 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +00009992 addFrameReference(BuildMI(*BB, MI, DL,
9993 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00009994
9995 // Load the old value of the high byte of the control word...
9996 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +00009997 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +00009998 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +00009999 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010000
10001 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000010002 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010003 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000010004
10005 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000010006 addFrameReference(BuildMI(*BB, MI, DL,
10007 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010008
10009 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000010010 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010011 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000010012
10013 // Get the X86 opcode to use.
10014 unsigned Opc;
10015 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000010016 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000010017 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
10018 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
10019 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
10020 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
10021 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
10022 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000010023 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
10024 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
10025 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000010026 }
10027
10028 X86AddressMode AM;
10029 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000010030 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010031 AM.BaseType = X86AddressMode::RegBase;
10032 AM.Base.Reg = Op.getReg();
10033 } else {
10034 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000010035 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000010036 }
10037 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000010038 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010039 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010040 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000010041 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010042 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010043 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000010044 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010045 AM.GV = Op.getGlobal();
10046 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000010047 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010048 }
Dan Gohman14152b42010-07-06 20:24:04 +000010049 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010050 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000010051
10052 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000010053 addFrameReference(BuildMI(*BB, MI, DL,
10054 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010055
Dan Gohman14152b42010-07-06 20:24:04 +000010056 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000010057 return BB;
10058 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010059 // String/text processing lowering.
10060 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010061 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010062 return EmitPCMP(MI, BB, 3, false /* in-mem */);
10063 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010064 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010065 return EmitPCMP(MI, BB, 3, true /* in-mem */);
10066 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010067 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010068 return EmitPCMP(MI, BB, 5, false /* in mem */);
10069 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010070 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010071 return EmitPCMP(MI, BB, 5, true /* in mem */);
10072
10073 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000010074 case X86::ATOMAND32:
10075 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010076 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010077 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010078 X86::NOT32r, X86::EAX,
10079 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010080 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000010081 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
10082 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010083 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010084 X86::NOT32r, X86::EAX,
10085 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010086 case X86::ATOMXOR32:
10087 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010088 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010089 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010090 X86::NOT32r, X86::EAX,
10091 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010092 case X86::ATOMNAND32:
10093 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010094 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010095 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010096 X86::NOT32r, X86::EAX,
10097 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000010098 case X86::ATOMMIN32:
10099 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
10100 case X86::ATOMMAX32:
10101 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
10102 case X86::ATOMUMIN32:
10103 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
10104 case X86::ATOMUMAX32:
10105 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000010106
10107 case X86::ATOMAND16:
10108 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10109 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010110 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010111 X86::NOT16r, X86::AX,
10112 X86::GR16RegisterClass);
10113 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000010114 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010115 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010116 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010117 X86::NOT16r, X86::AX,
10118 X86::GR16RegisterClass);
10119 case X86::ATOMXOR16:
10120 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
10121 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010122 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010123 X86::NOT16r, X86::AX,
10124 X86::GR16RegisterClass);
10125 case X86::ATOMNAND16:
10126 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10127 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010128 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010129 X86::NOT16r, X86::AX,
10130 X86::GR16RegisterClass, true);
10131 case X86::ATOMMIN16:
10132 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
10133 case X86::ATOMMAX16:
10134 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
10135 case X86::ATOMUMIN16:
10136 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
10137 case X86::ATOMUMAX16:
10138 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
10139
10140 case X86::ATOMAND8:
10141 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10142 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010143 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010144 X86::NOT8r, X86::AL,
10145 X86::GR8RegisterClass);
10146 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000010147 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010148 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010149 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010150 X86::NOT8r, X86::AL,
10151 X86::GR8RegisterClass);
10152 case X86::ATOMXOR8:
10153 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
10154 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010155 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010156 X86::NOT8r, X86::AL,
10157 X86::GR8RegisterClass);
10158 case X86::ATOMNAND8:
10159 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10160 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010161 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010162 X86::NOT8r, X86::AL,
10163 X86::GR8RegisterClass, true);
10164 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010165 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000010166 case X86::ATOMAND64:
10167 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010168 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010169 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010170 X86::NOT64r, X86::RAX,
10171 X86::GR64RegisterClass);
10172 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000010173 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
10174 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010175 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010176 X86::NOT64r, X86::RAX,
10177 X86::GR64RegisterClass);
10178 case X86::ATOMXOR64:
10179 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010180 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010181 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010182 X86::NOT64r, X86::RAX,
10183 X86::GR64RegisterClass);
10184 case X86::ATOMNAND64:
10185 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
10186 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010187 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010188 X86::NOT64r, X86::RAX,
10189 X86::GR64RegisterClass, true);
10190 case X86::ATOMMIN64:
10191 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
10192 case X86::ATOMMAX64:
10193 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
10194 case X86::ATOMUMIN64:
10195 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
10196 case X86::ATOMUMAX64:
10197 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010198
10199 // This group does 64-bit operations on a 32-bit host.
10200 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010201 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010202 X86::AND32rr, X86::AND32rr,
10203 X86::AND32ri, X86::AND32ri,
10204 false);
10205 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010206 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010207 X86::OR32rr, X86::OR32rr,
10208 X86::OR32ri, X86::OR32ri,
10209 false);
10210 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010211 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010212 X86::XOR32rr, X86::XOR32rr,
10213 X86::XOR32ri, X86::XOR32ri,
10214 false);
10215 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010216 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010217 X86::AND32rr, X86::AND32rr,
10218 X86::AND32ri, X86::AND32ri,
10219 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010220 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010221 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010222 X86::ADD32rr, X86::ADC32rr,
10223 X86::ADD32ri, X86::ADC32ri,
10224 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010225 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010226 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010227 X86::SUB32rr, X86::SBB32rr,
10228 X86::SUB32ri, X86::SBB32ri,
10229 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000010230 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010231 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000010232 X86::MOV32rr, X86::MOV32rr,
10233 X86::MOV32ri, X86::MOV32ri,
10234 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010235 case X86::VASTART_SAVE_XMM_REGS:
10236 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000010237
10238 case X86::VAARG_64:
10239 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000010240 }
10241}
10242
10243//===----------------------------------------------------------------------===//
10244// X86 Optimization Hooks
10245//===----------------------------------------------------------------------===//
10246
Dan Gohman475871a2008-07-27 21:46:04 +000010247void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000010248 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010249 APInt &KnownZero,
10250 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000010251 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000010252 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010253 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000010254 assert((Opc >= ISD::BUILTIN_OP_END ||
10255 Opc == ISD::INTRINSIC_WO_CHAIN ||
10256 Opc == ISD::INTRINSIC_W_CHAIN ||
10257 Opc == ISD::INTRINSIC_VOID) &&
10258 "Should use MaskedValueIsZero if you don't know whether Op"
10259 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010260
Dan Gohmanf4f92f52008-02-13 23:07:24 +000010261 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010262 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000010263 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010264 case X86ISD::ADD:
10265 case X86ISD::SUB:
10266 case X86ISD::SMUL:
10267 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000010268 case X86ISD::INC:
10269 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000010270 case X86ISD::OR:
10271 case X86ISD::XOR:
10272 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010273 // These nodes' second result is a boolean.
10274 if (Op.getResNo() == 0)
10275 break;
10276 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010277 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010278 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
10279 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000010280 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010281 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010282}
Chris Lattner259e97c2006-01-31 19:43:35 +000010283
Owen Andersonbc146b02010-09-21 20:42:50 +000010284unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
10285 unsigned Depth) const {
10286 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
10287 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
10288 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000010289
Owen Andersonbc146b02010-09-21 20:42:50 +000010290 // Fallback case.
10291 return 1;
10292}
10293
Evan Cheng206ee9d2006-07-07 08:33:52 +000010294/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000010295/// node is a GlobalAddress + offset.
10296bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000010297 const GlobalValue* &GA,
10298 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000010299 if (N->getOpcode() == X86ISD::Wrapper) {
10300 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000010301 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000010302 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000010303 return true;
10304 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000010305 }
Evan Chengad4196b2008-05-12 19:56:52 +000010306 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000010307}
10308
Evan Cheng206ee9d2006-07-07 08:33:52 +000010309/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
10310/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
10311/// if the load addresses are consecutive, non-overlapping, and in the right
Nate Begemanfdea31a2010-03-24 20:49:50 +000010312/// order.
Dan Gohman475871a2008-07-27 21:46:04 +000010313static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Nate Begeman9008ca62009-04-27 18:41:29 +000010314 const TargetLowering &TLI) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010315 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000010316 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000010317
Eli Friedman7a5e5552009-06-07 06:52:44 +000010318 if (VT.getSizeInBits() != 128)
10319 return SDValue();
10320
Nate Begemanfdea31a2010-03-24 20:49:50 +000010321 SmallVector<SDValue, 16> Elts;
10322 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000010323 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000010324
Nate Begemanfdea31a2010-03-24 20:49:50 +000010325 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000010326}
Evan Chengd880b972008-05-09 21:53:03 +000010327
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000010328/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
10329/// generation and convert it from being a bunch of shuffles and extracts
10330/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010331static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
10332 const TargetLowering &TLI) {
10333 SDValue InputVector = N->getOperand(0);
10334
10335 // Only operate on vectors of 4 elements, where the alternative shuffling
10336 // gets to be more expensive.
10337 if (InputVector.getValueType() != MVT::v4i32)
10338 return SDValue();
10339
10340 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
10341 // single use which is a sign-extend or zero-extend, and all elements are
10342 // used.
10343 SmallVector<SDNode *, 4> Uses;
10344 unsigned ExtractedElements = 0;
10345 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
10346 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
10347 if (UI.getUse().getResNo() != InputVector.getResNo())
10348 return SDValue();
10349
10350 SDNode *Extract = *UI;
10351 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
10352 return SDValue();
10353
10354 if (Extract->getValueType(0) != MVT::i32)
10355 return SDValue();
10356 if (!Extract->hasOneUse())
10357 return SDValue();
10358 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
10359 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
10360 return SDValue();
10361 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
10362 return SDValue();
10363
10364 // Record which element was extracted.
10365 ExtractedElements |=
10366 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
10367
10368 Uses.push_back(Extract);
10369 }
10370
10371 // If not all the elements were used, this may not be worthwhile.
10372 if (ExtractedElements != 15)
10373 return SDValue();
10374
10375 // Ok, we've now decided to do the transformation.
10376 DebugLoc dl = InputVector.getDebugLoc();
10377
10378 // Store the value to a temporary stack slot.
10379 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010380 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
10381 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010382
10383 // Replace each use (extract) with a load of the appropriate element.
10384 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
10385 UE = Uses.end(); UI != UE; ++UI) {
10386 SDNode *Extract = *UI;
10387
10388 // Compute the element's address.
10389 SDValue Idx = Extract->getOperand(1);
10390 unsigned EltSize =
10391 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
10392 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
10393 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
10394
Eric Christopher90eb4022010-07-22 00:26:08 +000010395 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(),
Chris Lattner51abfe42010-09-21 06:02:19 +000010396 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010397
10398 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000010399 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000010400 ScalarAddr, MachinePointerInfo(),
10401 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010402
10403 // Replace the exact with the load.
10404 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
10405 }
10406
10407 // The replacement was made in place; don't return anything.
10408 return SDValue();
10409}
10410
Chris Lattner83e6c992006-10-04 06:57:07 +000010411/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000010412static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000010413 const X86Subtarget *Subtarget) {
10414 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000010415 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000010416 // Get the LHS/RHS of the select.
10417 SDValue LHS = N->getOperand(1);
10418 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000010419
Dan Gohman670e5392009-09-21 18:03:22 +000010420 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000010421 // instructions match the semantics of the common C idiom x<y?x:y but not
10422 // x<=y?x:y, because of how they handle negative zero (which can be
10423 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000010424 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000010425 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000010426 Cond.getOpcode() == ISD::SETCC) {
10427 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010428
Chris Lattner47b4ce82009-03-11 05:48:52 +000010429 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000010430 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000010431 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
10432 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000010433 switch (CC) {
10434 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000010435 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000010436 // Converting this to a min would handle NaNs incorrectly, and swapping
10437 // the operands would cause it to handle comparisons between positive
10438 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010439 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000010440 if (!UnsafeFPMath &&
10441 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10442 break;
10443 std::swap(LHS, RHS);
10444 }
Dan Gohman670e5392009-09-21 18:03:22 +000010445 Opcode = X86ISD::FMIN;
10446 break;
10447 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000010448 // Converting this to a min would handle comparisons between positive
10449 // and negative zero incorrectly.
10450 if (!UnsafeFPMath &&
10451 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
10452 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010453 Opcode = X86ISD::FMIN;
10454 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000010455 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000010456 // Converting this to a min would handle both negative zeros and NaNs
10457 // incorrectly, but we can swap the operands to fix both.
10458 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010459 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010460 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000010461 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010462 Opcode = X86ISD::FMIN;
10463 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010464
Dan Gohman670e5392009-09-21 18:03:22 +000010465 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010466 // Converting this to a max would handle comparisons between positive
10467 // and negative zero incorrectly.
10468 if (!UnsafeFPMath &&
10469 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(LHS))
10470 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010471 Opcode = X86ISD::FMAX;
10472 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000010473 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000010474 // Converting this to a max would handle NaNs incorrectly, and swapping
10475 // the operands would cause it to handle comparisons between positive
10476 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010477 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000010478 if (!UnsafeFPMath &&
10479 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10480 break;
10481 std::swap(LHS, RHS);
10482 }
Dan Gohman670e5392009-09-21 18:03:22 +000010483 Opcode = X86ISD::FMAX;
10484 break;
10485 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010486 // Converting this to a max would handle both negative zeros and NaNs
10487 // incorrectly, but we can swap the operands to fix both.
10488 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010489 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010490 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010491 case ISD::SETGE:
10492 Opcode = X86ISD::FMAX;
10493 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000010494 }
Dan Gohman670e5392009-09-21 18:03:22 +000010495 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000010496 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
10497 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000010498 switch (CC) {
10499 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000010500 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010501 // Converting this to a min would handle comparisons between positive
10502 // and negative zero incorrectly, and swapping the operands would
10503 // cause it to handle NaNs incorrectly.
10504 if (!UnsafeFPMath &&
10505 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000010506 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010507 break;
10508 std::swap(LHS, RHS);
10509 }
Dan Gohman670e5392009-09-21 18:03:22 +000010510 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000010511 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010512 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000010513 // Converting this to a min would handle NaNs incorrectly.
10514 if (!UnsafeFPMath &&
10515 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
10516 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010517 Opcode = X86ISD::FMIN;
10518 break;
10519 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010520 // Converting this to a min would handle both negative zeros and NaNs
10521 // incorrectly, but we can swap the operands to fix both.
10522 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010523 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010524 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010525 case ISD::SETGE:
10526 Opcode = X86ISD::FMIN;
10527 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010528
Dan Gohman670e5392009-09-21 18:03:22 +000010529 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000010530 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010531 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010532 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010533 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000010534 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010535 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000010536 // Converting this to a max would handle comparisons between positive
10537 // and negative zero incorrectly, and swapping the operands would
10538 // cause it to handle NaNs incorrectly.
10539 if (!UnsafeFPMath &&
10540 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000010541 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010542 break;
10543 std::swap(LHS, RHS);
10544 }
Dan Gohman670e5392009-09-21 18:03:22 +000010545 Opcode = X86ISD::FMAX;
10546 break;
10547 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000010548 // Converting this to a max would handle both negative zeros and NaNs
10549 // incorrectly, but we can swap the operands to fix both.
10550 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010551 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010552 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000010553 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010554 Opcode = X86ISD::FMAX;
10555 break;
10556 }
Chris Lattner83e6c992006-10-04 06:57:07 +000010557 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010558
Chris Lattner47b4ce82009-03-11 05:48:52 +000010559 if (Opcode)
10560 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000010561 }
Eric Christopherfd179292009-08-27 18:07:15 +000010562
Chris Lattnerd1980a52009-03-12 06:52:53 +000010563 // If this is a select between two integer constants, try to do some
10564 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000010565 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
10566 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000010567 // Don't do this for crazy integer types.
10568 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
10569 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000010570 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000010571 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000010572
Chris Lattnercee56e72009-03-13 05:53:31 +000010573 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000010574 // Efficiently invertible.
10575 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
10576 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
10577 isa<ConstantSDNode>(Cond.getOperand(1))))) {
10578 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000010579 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000010580 }
Eric Christopherfd179292009-08-27 18:07:15 +000010581
Chris Lattnerd1980a52009-03-12 06:52:53 +000010582 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000010583 if (FalseC->getAPIntValue() == 0 &&
10584 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000010585 if (NeedsCondInvert) // Invert the condition if needed.
10586 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10587 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010588
Chris Lattnerd1980a52009-03-12 06:52:53 +000010589 // Zero extend the condition if needed.
10590 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010591
Chris Lattnercee56e72009-03-13 05:53:31 +000010592 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000010593 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000010594 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000010595 }
Eric Christopherfd179292009-08-27 18:07:15 +000010596
Chris Lattner97a29a52009-03-13 05:22:11 +000010597 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000010598 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000010599 if (NeedsCondInvert) // Invert the condition if needed.
10600 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10601 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010602
Chris Lattner97a29a52009-03-13 05:22:11 +000010603 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000010604 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
10605 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000010606 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000010607 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000010608 }
Eric Christopherfd179292009-08-27 18:07:15 +000010609
Chris Lattnercee56e72009-03-13 05:53:31 +000010610 // Optimize cases that will turn into an LEA instruction. This requires
10611 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000010612 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000010613 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000010614 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000010615
Chris Lattnercee56e72009-03-13 05:53:31 +000010616 bool isFastMultiplier = false;
10617 if (Diff < 10) {
10618 switch ((unsigned char)Diff) {
10619 default: break;
10620 case 1: // result = add base, cond
10621 case 2: // result = lea base( , cond*2)
10622 case 3: // result = lea base(cond, cond*2)
10623 case 4: // result = lea base( , cond*4)
10624 case 5: // result = lea base(cond, cond*4)
10625 case 8: // result = lea base( , cond*8)
10626 case 9: // result = lea base(cond, cond*8)
10627 isFastMultiplier = true;
10628 break;
10629 }
10630 }
Eric Christopherfd179292009-08-27 18:07:15 +000010631
Chris Lattnercee56e72009-03-13 05:53:31 +000010632 if (isFastMultiplier) {
10633 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
10634 if (NeedsCondInvert) // Invert the condition if needed.
10635 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10636 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010637
Chris Lattnercee56e72009-03-13 05:53:31 +000010638 // Zero extend the condition if needed.
10639 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
10640 Cond);
10641 // Scale the condition by the difference.
10642 if (Diff != 1)
10643 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
10644 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010645
Chris Lattnercee56e72009-03-13 05:53:31 +000010646 // Add the base if non-zero.
10647 if (FalseC->getAPIntValue() != 0)
10648 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10649 SDValue(FalseC, 0));
10650 return Cond;
10651 }
Eric Christopherfd179292009-08-27 18:07:15 +000010652 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000010653 }
10654 }
Eric Christopherfd179292009-08-27 18:07:15 +000010655
Dan Gohman475871a2008-07-27 21:46:04 +000010656 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000010657}
10658
Chris Lattnerd1980a52009-03-12 06:52:53 +000010659/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
10660static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
10661 TargetLowering::DAGCombinerInfo &DCI) {
10662 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000010663
Chris Lattnerd1980a52009-03-12 06:52:53 +000010664 // If the flag operand isn't dead, don't touch this CMOV.
10665 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
10666 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000010667
Chris Lattnerd1980a52009-03-12 06:52:53 +000010668 // If this is a select between two integer constants, try to do some
10669 // optimizations. Note that the operands are ordered the opposite of SELECT
10670 // operands.
10671 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
10672 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
10673 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
10674 // larger than FalseC (the false value).
10675 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
Eric Christopherfd179292009-08-27 18:07:15 +000010676
Chris Lattnerd1980a52009-03-12 06:52:53 +000010677 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
10678 CC = X86::GetOppositeBranchCondition(CC);
10679 std::swap(TrueC, FalseC);
10680 }
Eric Christopherfd179292009-08-27 18:07:15 +000010681
Chris Lattnerd1980a52009-03-12 06:52:53 +000010682 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000010683 // This is efficient for any integer data type (including i8/i16) and
10684 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000010685 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
10686 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010687 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10688 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010689
Chris Lattnerd1980a52009-03-12 06:52:53 +000010690 // Zero extend the condition if needed.
10691 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010692
Chris Lattnerd1980a52009-03-12 06:52:53 +000010693 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
10694 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000010695 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000010696 if (N->getNumValues() == 2) // Dead flag value?
10697 return DCI.CombineTo(N, Cond, SDValue());
10698 return Cond;
10699 }
Eric Christopherfd179292009-08-27 18:07:15 +000010700
Chris Lattnercee56e72009-03-13 05:53:31 +000010701 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
10702 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000010703 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
10704 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010705 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10706 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010707
Chris Lattner97a29a52009-03-13 05:22:11 +000010708 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000010709 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
10710 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000010711 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10712 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000010713
Chris Lattner97a29a52009-03-13 05:22:11 +000010714 if (N->getNumValues() == 2) // Dead flag value?
10715 return DCI.CombineTo(N, Cond, SDValue());
10716 return Cond;
10717 }
Eric Christopherfd179292009-08-27 18:07:15 +000010718
Chris Lattnercee56e72009-03-13 05:53:31 +000010719 // Optimize cases that will turn into an LEA instruction. This requires
10720 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000010721 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000010722 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000010723 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000010724
Chris Lattnercee56e72009-03-13 05:53:31 +000010725 bool isFastMultiplier = false;
10726 if (Diff < 10) {
10727 switch ((unsigned char)Diff) {
10728 default: break;
10729 case 1: // result = add base, cond
10730 case 2: // result = lea base( , cond*2)
10731 case 3: // result = lea base(cond, cond*2)
10732 case 4: // result = lea base( , cond*4)
10733 case 5: // result = lea base(cond, cond*4)
10734 case 8: // result = lea base( , cond*8)
10735 case 9: // result = lea base(cond, cond*8)
10736 isFastMultiplier = true;
10737 break;
10738 }
10739 }
Eric Christopherfd179292009-08-27 18:07:15 +000010740
Chris Lattnercee56e72009-03-13 05:53:31 +000010741 if (isFastMultiplier) {
10742 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
10743 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010744 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10745 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000010746 // Zero extend the condition if needed.
10747 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
10748 Cond);
10749 // Scale the condition by the difference.
10750 if (Diff != 1)
10751 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
10752 DAG.getConstant(Diff, Cond.getValueType()));
10753
10754 // Add the base if non-zero.
10755 if (FalseC->getAPIntValue() != 0)
10756 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10757 SDValue(FalseC, 0));
10758 if (N->getNumValues() == 2) // Dead flag value?
10759 return DCI.CombineTo(N, Cond, SDValue());
10760 return Cond;
10761 }
Eric Christopherfd179292009-08-27 18:07:15 +000010762 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000010763 }
10764 }
10765 return SDValue();
10766}
10767
10768
Evan Cheng0b0cd912009-03-28 05:57:29 +000010769/// PerformMulCombine - Optimize a single multiply with constant into two
10770/// in order to implement it with two cheaper instructions, e.g.
10771/// LEA + SHL, LEA + LEA.
10772static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
10773 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000010774 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
10775 return SDValue();
10776
Owen Andersone50ed302009-08-10 22:56:29 +000010777 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000010778 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000010779 return SDValue();
10780
10781 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
10782 if (!C)
10783 return SDValue();
10784 uint64_t MulAmt = C->getZExtValue();
10785 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
10786 return SDValue();
10787
10788 uint64_t MulAmt1 = 0;
10789 uint64_t MulAmt2 = 0;
10790 if ((MulAmt % 9) == 0) {
10791 MulAmt1 = 9;
10792 MulAmt2 = MulAmt / 9;
10793 } else if ((MulAmt % 5) == 0) {
10794 MulAmt1 = 5;
10795 MulAmt2 = MulAmt / 5;
10796 } else if ((MulAmt % 3) == 0) {
10797 MulAmt1 = 3;
10798 MulAmt2 = MulAmt / 3;
10799 }
10800 if (MulAmt2 &&
10801 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
10802 DebugLoc DL = N->getDebugLoc();
10803
10804 if (isPowerOf2_64(MulAmt2) &&
10805 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
10806 // If second multiplifer is pow2, issue it first. We want the multiply by
10807 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
10808 // is an add.
10809 std::swap(MulAmt1, MulAmt2);
10810
10811 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000010812 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000010813 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000010814 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000010815 else
Evan Cheng73f24c92009-03-30 21:36:47 +000010816 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000010817 DAG.getConstant(MulAmt1, VT));
10818
Eric Christopherfd179292009-08-27 18:07:15 +000010819 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000010820 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000010821 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000010822 else
Evan Cheng73f24c92009-03-30 21:36:47 +000010823 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000010824 DAG.getConstant(MulAmt2, VT));
10825
10826 // Do not add new nodes to DAG combiner worklist.
10827 DCI.CombineTo(N, NewMul, false);
10828 }
10829 return SDValue();
10830}
10831
Evan Chengad9c0a32009-12-15 00:53:42 +000010832static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
10833 SDValue N0 = N->getOperand(0);
10834 SDValue N1 = N->getOperand(1);
10835 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
10836 EVT VT = N0.getValueType();
10837
10838 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
10839 // since the result of setcc_c is all zero's or all ones.
10840 if (N1C && N0.getOpcode() == ISD::AND &&
10841 N0.getOperand(1).getOpcode() == ISD::Constant) {
10842 SDValue N00 = N0.getOperand(0);
10843 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
10844 ((N00.getOpcode() == ISD::ANY_EXTEND ||
10845 N00.getOpcode() == ISD::ZERO_EXTEND) &&
10846 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
10847 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
10848 APInt ShAmt = N1C->getAPIntValue();
10849 Mask = Mask.shl(ShAmt);
10850 if (Mask != 0)
10851 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
10852 N00, DAG.getConstant(Mask, VT));
10853 }
10854 }
10855
10856 return SDValue();
10857}
Evan Cheng0b0cd912009-03-28 05:57:29 +000010858
Nate Begeman740ab032009-01-26 00:52:55 +000010859/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
10860/// when possible.
10861static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
10862 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000010863 EVT VT = N->getValueType(0);
10864 if (!VT.isVector() && VT.isInteger() &&
10865 N->getOpcode() == ISD::SHL)
10866 return PerformSHLCombine(N, DAG);
10867
Nate Begeman740ab032009-01-26 00:52:55 +000010868 // On X86 with SSE2 support, we can transform this to a vector shift if
10869 // all elements are shifted by the same amount. We can't do this in legalize
10870 // because the a constant vector is typically transformed to a constant pool
10871 // so we have no knowledge of the shift amount.
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010872 if (!Subtarget->hasSSE2())
10873 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000010874
Owen Anderson825b72b2009-08-11 20:47:22 +000010875 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010876 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000010877
Mon P Wang3becd092009-01-28 08:12:05 +000010878 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000010879 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000010880 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000010881 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000010882 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
10883 unsigned NumElts = VT.getVectorNumElements();
10884 unsigned i = 0;
10885 for (; i != NumElts; ++i) {
10886 SDValue Arg = ShAmtOp.getOperand(i);
10887 if (Arg.getOpcode() == ISD::UNDEF) continue;
10888 BaseShAmt = Arg;
10889 break;
10890 }
10891 for (; i != NumElts; ++i) {
10892 SDValue Arg = ShAmtOp.getOperand(i);
10893 if (Arg.getOpcode() == ISD::UNDEF) continue;
10894 if (Arg != BaseShAmt) {
10895 return SDValue();
10896 }
10897 }
10898 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000010899 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000010900 SDValue InVec = ShAmtOp.getOperand(0);
10901 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
10902 unsigned NumElts = InVec.getValueType().getVectorNumElements();
10903 unsigned i = 0;
10904 for (; i != NumElts; ++i) {
10905 SDValue Arg = InVec.getOperand(i);
10906 if (Arg.getOpcode() == ISD::UNDEF) continue;
10907 BaseShAmt = Arg;
10908 break;
10909 }
10910 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
10911 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000010912 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000010913 if (C->getZExtValue() == SplatIdx)
10914 BaseShAmt = InVec.getOperand(1);
10915 }
10916 }
10917 if (BaseShAmt.getNode() == 0)
10918 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
10919 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000010920 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010921 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000010922
Mon P Wangefa42202009-09-03 19:56:25 +000010923 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000010924 if (EltVT.bitsGT(MVT::i32))
10925 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
10926 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000010927 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000010928
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010929 // The shift amount is identical so we can do a vector shift.
10930 SDValue ValOp = N->getOperand(0);
10931 switch (N->getOpcode()) {
10932 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000010933 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010934 break;
10935 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000010936 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010937 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010938 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010939 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010940 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010941 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010942 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010943 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010944 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010945 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010946 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010947 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010948 break;
10949 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000010950 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010951 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010952 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010953 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010954 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010955 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010956 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010957 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010958 break;
10959 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000010960 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010961 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010962 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010963 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010964 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010965 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010966 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010967 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010968 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010969 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010970 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010971 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010972 break;
Nate Begeman740ab032009-01-26 00:52:55 +000010973 }
10974 return SDValue();
10975}
10976
Evan Cheng760d1942010-01-04 21:22:48 +000010977static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000010978 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000010979 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000010980 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000010981 return SDValue();
10982
Evan Cheng760d1942010-01-04 21:22:48 +000010983 EVT VT = N->getValueType(0);
Evan Cheng8b1190a2010-04-28 01:18:01 +000010984 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
Evan Cheng760d1942010-01-04 21:22:48 +000010985 return SDValue();
10986
10987 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
10988 SDValue N0 = N->getOperand(0);
10989 SDValue N1 = N->getOperand(1);
10990 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
10991 std::swap(N0, N1);
10992 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
10993 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000010994 if (!N0.hasOneUse() || !N1.hasOneUse())
10995 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000010996
10997 SDValue ShAmt0 = N0.getOperand(1);
10998 if (ShAmt0.getValueType() != MVT::i8)
10999 return SDValue();
11000 SDValue ShAmt1 = N1.getOperand(1);
11001 if (ShAmt1.getValueType() != MVT::i8)
11002 return SDValue();
11003 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
11004 ShAmt0 = ShAmt0.getOperand(0);
11005 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
11006 ShAmt1 = ShAmt1.getOperand(0);
11007
11008 DebugLoc DL = N->getDebugLoc();
11009 unsigned Opc = X86ISD::SHLD;
11010 SDValue Op0 = N0.getOperand(0);
11011 SDValue Op1 = N1.getOperand(0);
11012 if (ShAmt0.getOpcode() == ISD::SUB) {
11013 Opc = X86ISD::SHRD;
11014 std::swap(Op0, Op1);
11015 std::swap(ShAmt0, ShAmt1);
11016 }
11017
Evan Cheng8b1190a2010-04-28 01:18:01 +000011018 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000011019 if (ShAmt1.getOpcode() == ISD::SUB) {
11020 SDValue Sum = ShAmt1.getOperand(0);
11021 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000011022 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
11023 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
11024 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
11025 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000011026 return DAG.getNode(Opc, DL, VT,
11027 Op0, Op1,
11028 DAG.getNode(ISD::TRUNCATE, DL,
11029 MVT::i8, ShAmt0));
11030 }
11031 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
11032 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
11033 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000011034 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000011035 return DAG.getNode(Opc, DL, VT,
11036 N0.getOperand(0), N1.getOperand(0),
11037 DAG.getNode(ISD::TRUNCATE, DL,
11038 MVT::i8, ShAmt0));
11039 }
11040
11041 return SDValue();
11042}
11043
Chris Lattner149a4e52008-02-22 02:09:43 +000011044/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011045static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000011046 const X86Subtarget *Subtarget) {
Chris Lattner149a4e52008-02-22 02:09:43 +000011047 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
11048 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000011049 // A preferable solution to the general problem is to figure out the right
11050 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000011051
11052 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng7e2ff772008-05-08 00:57:18 +000011053 StoreSDNode *St = cast<StoreSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +000011054 EVT VT = St->getValue().getValueType();
Evan Cheng536e6672009-03-12 05:59:15 +000011055 if (VT.getSizeInBits() != 64)
11056 return SDValue();
11057
Devang Patel578efa92009-06-05 21:57:13 +000011058 const Function *F = DAG.getMachineFunction().getFunction();
11059 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000011060 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000011061 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000011062 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000011063 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000011064 isa<LoadSDNode>(St->getValue()) &&
11065 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
11066 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011067 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011068 LoadSDNode *Ld = 0;
11069 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000011070 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000011071 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011072 // Must be a store of a load. We currently handle two cases: the load
11073 // is a direct child, and it's under an intervening TokenFactor. It is
11074 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000011075 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000011076 Ld = cast<LoadSDNode>(St->getChain());
11077 else if (St->getValue().hasOneUse() &&
11078 ChainVal->getOpcode() == ISD::TokenFactor) {
11079 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011080 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000011081 TokenFactorIndex = i;
11082 Ld = cast<LoadSDNode>(St->getValue());
11083 } else
11084 Ops.push_back(ChainVal->getOperand(i));
11085 }
11086 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000011087
Evan Cheng536e6672009-03-12 05:59:15 +000011088 if (!Ld || !ISD::isNormalLoad(Ld))
11089 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011090
Evan Cheng536e6672009-03-12 05:59:15 +000011091 // If this is not the MMX case, i.e. we are just turning i64 load/store
11092 // into f64 load/store, avoid the transformation if there are multiple
11093 // uses of the loaded value.
11094 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
11095 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011096
Evan Cheng536e6672009-03-12 05:59:15 +000011097 DebugLoc LdDL = Ld->getDebugLoc();
11098 DebugLoc StDL = N->getDebugLoc();
11099 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
11100 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
11101 // pair instead.
11102 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011103 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000011104 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
11105 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000011106 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000011107 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000011108 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000011109 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000011110 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000011111 Ops.size());
11112 }
Evan Cheng536e6672009-03-12 05:59:15 +000011113 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000011114 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011115 St->isVolatile(), St->isNonTemporal(),
11116 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000011117 }
Evan Cheng536e6672009-03-12 05:59:15 +000011118
11119 // Otherwise, lower to two pairs of 32-bit loads / stores.
11120 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011121 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
11122 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011123
Owen Anderson825b72b2009-08-11 20:47:22 +000011124 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011125 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011126 Ld->isVolatile(), Ld->isNonTemporal(),
11127 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000011128 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011129 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000011130 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000011131 MinAlign(Ld->getAlignment(), 4));
11132
11133 SDValue NewChain = LoLd.getValue(1);
11134 if (TokenFactorIndex != -1) {
11135 Ops.push_back(LoLd);
11136 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000011137 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000011138 Ops.size());
11139 }
11140
11141 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011142 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
11143 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011144
11145 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011146 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011147 St->isVolatile(), St->isNonTemporal(),
11148 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000011149 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011150 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000011151 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000011152 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000011153 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000011154 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000011155 }
Dan Gohman475871a2008-07-27 21:46:04 +000011156 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000011157}
11158
Chris Lattner6cf73262008-01-25 06:14:17 +000011159/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
11160/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011161static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000011162 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
11163 // F[X]OR(0.0, x) -> x
11164 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000011165 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
11166 if (C->getValueAPF().isPosZero())
11167 return N->getOperand(1);
11168 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
11169 if (C->getValueAPF().isPosZero())
11170 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000011171 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000011172}
11173
11174/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011175static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000011176 // FAND(0.0, x) -> 0.0
11177 // FAND(x, 0.0) -> 0.0
11178 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
11179 if (C->getValueAPF().isPosZero())
11180 return N->getOperand(0);
11181 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
11182 if (C->getValueAPF().isPosZero())
11183 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000011184 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000011185}
11186
Dan Gohmane5af2d32009-01-29 01:59:02 +000011187static SDValue PerformBTCombine(SDNode *N,
11188 SelectionDAG &DAG,
11189 TargetLowering::DAGCombinerInfo &DCI) {
11190 // BT ignores high bits in the bit index operand.
11191 SDValue Op1 = N->getOperand(1);
11192 if (Op1.hasOneUse()) {
11193 unsigned BitWidth = Op1.getValueSizeInBits();
11194 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
11195 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011196 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
11197 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000011198 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000011199 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
11200 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
11201 DCI.CommitTargetLoweringOpt(TLO);
11202 }
11203 return SDValue();
11204}
Chris Lattner83e6c992006-10-04 06:57:07 +000011205
Eli Friedman7a5e5552009-06-07 06:52:44 +000011206static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
11207 SDValue Op = N->getOperand(0);
11208 if (Op.getOpcode() == ISD::BIT_CONVERT)
11209 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000011210 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000011211 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000011212 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000011213 OpVT.getVectorElementType().getSizeInBits()) {
11214 return DAG.getNode(ISD::BIT_CONVERT, N->getDebugLoc(), VT, Op);
11215 }
11216 return SDValue();
11217}
11218
Evan Cheng2e489c42009-12-16 00:53:11 +000011219static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
11220 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
11221 // (and (i32 x86isd::setcc_carry), 1)
11222 // This eliminates the zext. This transformation is necessary because
11223 // ISD::SETCC is always legalized to i8.
11224 DebugLoc dl = N->getDebugLoc();
11225 SDValue N0 = N->getOperand(0);
11226 EVT VT = N->getValueType(0);
11227 if (N0.getOpcode() == ISD::AND &&
11228 N0.hasOneUse() &&
11229 N0.getOperand(0).hasOneUse()) {
11230 SDValue N00 = N0.getOperand(0);
11231 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
11232 return SDValue();
11233 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
11234 if (!C || C->getZExtValue() != 1)
11235 return SDValue();
11236 return DAG.getNode(ISD::AND, dl, VT,
11237 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
11238 N00.getOperand(0), N00.getOperand(1)),
11239 DAG.getConstant(1, VT));
11240 }
11241
11242 return SDValue();
11243}
11244
Dan Gohman475871a2008-07-27 21:46:04 +000011245SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000011246 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000011247 SelectionDAG &DAG = DCI.DAG;
11248 switch (N->getOpcode()) {
11249 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011250 case ISD::EXTRACT_VECTOR_ELT:
11251 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000011252 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000011253 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000011254 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000011255 case ISD::SHL:
11256 case ISD::SRA:
11257 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000011258 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000011259 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000011260 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000011261 case X86ISD::FOR: return PerformFORCombine(N, DAG);
11262 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000011263 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000011264 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000011265 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011266 case X86ISD::SHUFPS: // Handle all target specific shuffles
11267 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000011268 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011269 case X86ISD::PUNPCKHBW:
11270 case X86ISD::PUNPCKHWD:
11271 case X86ISD::PUNPCKHDQ:
11272 case X86ISD::PUNPCKHQDQ:
11273 case X86ISD::UNPCKHPS:
11274 case X86ISD::UNPCKHPD:
11275 case X86ISD::PUNPCKLBW:
11276 case X86ISD::PUNPCKLWD:
11277 case X86ISD::PUNPCKLDQ:
11278 case X86ISD::PUNPCKLQDQ:
11279 case X86ISD::UNPCKLPS:
11280 case X86ISD::UNPCKLPD:
11281 case X86ISD::MOVHLPS:
11282 case X86ISD::MOVLHPS:
11283 case X86ISD::PSHUFD:
11284 case X86ISD::PSHUFHW:
11285 case X86ISD::PSHUFLW:
11286 case X86ISD::MOVSS:
11287 case X86ISD::MOVSD:
11288 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this);
Evan Cheng206ee9d2006-07-07 08:33:52 +000011289 }
11290
Dan Gohman475871a2008-07-27 21:46:04 +000011291 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000011292}
11293
Evan Chenge5b51ac2010-04-17 06:13:15 +000011294/// isTypeDesirableForOp - Return true if the target has native support for
11295/// the specified value type and it is 'desirable' to use the type for the
11296/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
11297/// instruction encodings are longer and some i16 instructions are slow.
11298bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
11299 if (!isTypeLegal(VT))
11300 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011301 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000011302 return true;
11303
11304 switch (Opc) {
11305 default:
11306 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000011307 case ISD::LOAD:
11308 case ISD::SIGN_EXTEND:
11309 case ISD::ZERO_EXTEND:
11310 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000011311 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000011312 case ISD::SRL:
11313 case ISD::SUB:
11314 case ISD::ADD:
11315 case ISD::MUL:
11316 case ISD::AND:
11317 case ISD::OR:
11318 case ISD::XOR:
11319 return false;
11320 }
11321}
11322
11323/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000011324/// beneficial for dag combiner to promote the specified node. If true, it
11325/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000011326bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000011327 EVT VT = Op.getValueType();
11328 if (VT != MVT::i16)
11329 return false;
11330
Evan Cheng4c26e932010-04-19 19:29:22 +000011331 bool Promote = false;
11332 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011333 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000011334 default: break;
11335 case ISD::LOAD: {
11336 LoadSDNode *LD = cast<LoadSDNode>(Op);
11337 // If the non-extending load has a single use and it's not live out, then it
11338 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011339 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
11340 Op.hasOneUse()*/) {
11341 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
11342 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
11343 // The only case where we'd want to promote LOAD (rather then it being
11344 // promoted as an operand is when it's only use is liveout.
11345 if (UI->getOpcode() != ISD::CopyToReg)
11346 return false;
11347 }
11348 }
Evan Cheng4c26e932010-04-19 19:29:22 +000011349 Promote = true;
11350 break;
11351 }
11352 case ISD::SIGN_EXTEND:
11353 case ISD::ZERO_EXTEND:
11354 case ISD::ANY_EXTEND:
11355 Promote = true;
11356 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011357 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011358 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000011359 SDValue N0 = Op.getOperand(0);
11360 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000011361 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000011362 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000011363 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011364 break;
11365 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000011366 case ISD::ADD:
11367 case ISD::MUL:
11368 case ISD::AND:
11369 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000011370 case ISD::XOR:
11371 Commute = true;
11372 // fallthrough
11373 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000011374 SDValue N0 = Op.getOperand(0);
11375 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000011376 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011377 return false;
11378 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000011379 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011380 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000011381 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011382 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000011383 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011384 }
11385 }
11386
11387 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000011388 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011389}
11390
Evan Cheng60c07e12006-07-05 22:17:51 +000011391//===----------------------------------------------------------------------===//
11392// X86 Inline Assembly Support
11393//===----------------------------------------------------------------------===//
11394
Chris Lattnerb8105652009-07-20 17:51:36 +000011395static bool LowerToBSwap(CallInst *CI) {
11396 // FIXME: this should verify that we are targetting a 486 or better. If not,
11397 // we will turn this bswap into something that will be lowered to logical ops
11398 // instead of emitting the bswap asm. For now, we don't support 486 or lower
11399 // so don't worry about this.
Eric Christopherfd179292009-08-27 18:07:15 +000011400
Chris Lattnerb8105652009-07-20 17:51:36 +000011401 // Verify this is a simple bswap.
Gabor Greife1c2b9c2010-06-30 13:03:37 +000011402 if (CI->getNumArgOperands() != 1 ||
Gabor Greif1cfe44a2010-06-26 11:51:52 +000011403 CI->getType() != CI->getArgOperand(0)->getType() ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011404 !CI->getType()->isIntegerTy())
Chris Lattnerb8105652009-07-20 17:51:36 +000011405 return false;
Eric Christopherfd179292009-08-27 18:07:15 +000011406
Chris Lattnerb8105652009-07-20 17:51:36 +000011407 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
11408 if (!Ty || Ty->getBitWidth() % 16 != 0)
11409 return false;
Eric Christopherfd179292009-08-27 18:07:15 +000011410
Chris Lattnerb8105652009-07-20 17:51:36 +000011411 // Okay, we can do this xform, do so now.
11412 const Type *Tys[] = { Ty };
11413 Module *M = CI->getParent()->getParent()->getParent();
11414 Constant *Int = Intrinsic::getDeclaration(M, Intrinsic::bswap, Tys, 1);
Eric Christopherfd179292009-08-27 18:07:15 +000011415
Gabor Greif1cfe44a2010-06-26 11:51:52 +000011416 Value *Op = CI->getArgOperand(0);
Chris Lattnerb8105652009-07-20 17:51:36 +000011417 Op = CallInst::Create(Int, Op, CI->getName(), CI);
Eric Christopherfd179292009-08-27 18:07:15 +000011418
Chris Lattnerb8105652009-07-20 17:51:36 +000011419 CI->replaceAllUsesWith(Op);
11420 CI->eraseFromParent();
11421 return true;
11422}
11423
11424bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
11425 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
11426 std::vector<InlineAsm::ConstraintInfo> Constraints = IA->ParseConstraints();
11427
11428 std::string AsmStr = IA->getAsmString();
11429
11430 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000011431 SmallVector<StringRef, 4> AsmPieces;
Chris Lattnerb8105652009-07-20 17:51:36 +000011432 SplitString(AsmStr, AsmPieces, "\n"); // ; as separator?
11433
11434 switch (AsmPieces.size()) {
11435 default: return false;
11436 case 1:
11437 AsmStr = AsmPieces[0];
11438 AsmPieces.clear();
11439 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
11440
11441 // bswap $0
11442 if (AsmPieces.size() == 2 &&
11443 (AsmPieces[0] == "bswap" ||
11444 AsmPieces[0] == "bswapq" ||
11445 AsmPieces[0] == "bswapl") &&
11446 (AsmPieces[1] == "$0" ||
11447 AsmPieces[1] == "${0:q}")) {
11448 // No need to check constraints, nothing other than the equivalent of
11449 // "=r,0" would be valid here.
11450 return LowerToBSwap(CI);
11451 }
11452 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011453 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011454 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000011455 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011456 AsmPieces[1] == "$$8," &&
11457 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000011458 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
11459 AsmPieces.clear();
Benjamin Kramer018cbd52010-03-12 13:54:59 +000011460 const std::string &Constraints = IA->getConstraintString();
11461 SplitString(StringRef(Constraints).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000011462 std::sort(AsmPieces.begin(), AsmPieces.end());
11463 if (AsmPieces.size() == 4 &&
11464 AsmPieces[0] == "~{cc}" &&
11465 AsmPieces[1] == "~{dirflag}" &&
11466 AsmPieces[2] == "~{flags}" &&
11467 AsmPieces[3] == "~{fpsr}") {
11468 return LowerToBSwap(CI);
11469 }
Chris Lattnerb8105652009-07-20 17:51:36 +000011470 }
11471 break;
11472 case 3:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011473 if (CI->getType()->isIntegerTy(64) &&
Owen Anderson1d0be152009-08-13 21:58:54 +000011474 Constraints.size() >= 2 &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011475 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
11476 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
11477 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
Benjamin Kramerd4f19592010-01-11 18:03:24 +000011478 SmallVector<StringRef, 4> Words;
Chris Lattnerb8105652009-07-20 17:51:36 +000011479 SplitString(AsmPieces[0], Words, " \t");
11480 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
11481 Words.clear();
11482 SplitString(AsmPieces[1], Words, " \t");
11483 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
11484 Words.clear();
11485 SplitString(AsmPieces[2], Words, " \t,");
11486 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
11487 Words[2] == "%edx") {
11488 return LowerToBSwap(CI);
11489 }
11490 }
11491 }
11492 }
11493 break;
11494 }
11495 return false;
11496}
11497
11498
11499
Chris Lattnerf4dff842006-07-11 02:54:03 +000011500/// getConstraintType - Given a constraint letter, return the type of
11501/// constraint it is for this target.
11502X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000011503X86TargetLowering::getConstraintType(const std::string &Constraint) const {
11504 if (Constraint.size() == 1) {
11505 switch (Constraint[0]) {
11506 case 'A':
Dale Johannesen330169f2008-11-13 21:52:36 +000011507 return C_Register;
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011508 case 'f':
Chris Lattner4234f572007-03-25 02:14:49 +000011509 case 'r':
11510 case 'R':
11511 case 'l':
11512 case 'q':
11513 case 'Q':
11514 case 'x':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000011515 case 'y':
Chris Lattner4234f572007-03-25 02:14:49 +000011516 case 'Y':
11517 return C_RegisterClass;
Dale Johannesen78e3e522009-02-12 20:58:09 +000011518 case 'e':
11519 case 'Z':
11520 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000011521 default:
11522 break;
11523 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000011524 }
Chris Lattner4234f572007-03-25 02:14:49 +000011525 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000011526}
11527
John Thompsoneac6e1d2010-09-13 18:15:37 +000011528/// Examine constraint type and operand type and determine a weight value,
11529/// where: -1 = invalid match, and 0 = so-so match to 3 = good match.
11530/// This object must already have been set up with the operand type
11531/// and the current alternative constraint selected.
11532int X86TargetLowering::getSingleConstraintMatchWeight(
11533 AsmOperandInfo &info, const char *constraint) const {
11534 int weight = -1;
11535 Value *CallOperandVal = info.CallOperandVal;
11536 // If we don't have a value, we can't do a match,
11537 // but allow it at the lowest weight.
11538 if (CallOperandVal == NULL)
11539 return 0;
11540 // Look at the constraint type.
11541 switch (*constraint) {
11542 default:
11543 return TargetLowering::getSingleConstraintMatchWeight(info, constraint);
11544 break;
11545 case 'I':
11546 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
11547 if (C->getZExtValue() <= 31)
11548 weight = 3;
11549 }
11550 break;
11551 // etc.
11552 }
11553 return weight;
11554}
11555
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011556/// LowerXConstraint - try to replace an X constraint, which matches anything,
11557/// with another that has more specific requirements based on the type of the
11558/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000011559const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000011560LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000011561 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
11562 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000011563 if (ConstraintVT.isFloatingPoint()) {
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011564 if (Subtarget->hasSSE2())
Chris Lattner5e764232008-04-26 23:02:14 +000011565 return "Y";
11566 if (Subtarget->hasSSE1())
11567 return "x";
11568 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011569
Chris Lattner5e764232008-04-26 23:02:14 +000011570 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011571}
11572
Chris Lattner48884cd2007-08-25 00:47:38 +000011573/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
11574/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000011575void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattner48884cd2007-08-25 00:47:38 +000011576 char Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000011577 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000011578 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000011579 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000011580
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011581 switch (Constraint) {
11582 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000011583 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000011584 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011585 if (C->getZExtValue() <= 31) {
11586 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000011587 break;
11588 }
Devang Patel84f7fd22007-03-17 00:13:28 +000011589 }
Chris Lattner48884cd2007-08-25 00:47:38 +000011590 return;
Evan Cheng364091e2008-09-22 23:57:37 +000011591 case 'J':
11592 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000011593 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000011594 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11595 break;
11596 }
11597 }
11598 return;
11599 case 'K':
11600 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000011601 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000011602 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11603 break;
11604 }
11605 }
11606 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000011607 case 'N':
11608 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011609 if (C->getZExtValue() <= 255) {
11610 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000011611 break;
11612 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000011613 }
Chris Lattner48884cd2007-08-25 00:47:38 +000011614 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000011615 case 'e': {
11616 // 32-bit signed value
11617 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000011618 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
11619 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011620 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000011621 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000011622 break;
11623 }
11624 // FIXME gcc accepts some relocatable values here too, but only in certain
11625 // memory models; it's complicated.
11626 }
11627 return;
11628 }
11629 case 'Z': {
11630 // 32-bit unsigned value
11631 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000011632 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
11633 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011634 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11635 break;
11636 }
11637 }
11638 // FIXME gcc accepts some relocatable values here too, but only in certain
11639 // memory models; it's complicated.
11640 return;
11641 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011642 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011643 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000011644 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011645 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000011646 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000011647 break;
11648 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011649
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000011650 // In any sort of PIC mode addresses need to be computed at runtime by
11651 // adding in a register or some sort of table lookup. These can't
11652 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000011653 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000011654 return;
11655
Chris Lattnerdc43a882007-05-03 16:52:29 +000011656 // If we are in non-pic codegen mode, we allow the address of a global (with
11657 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000011658 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000011659 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000011660
Chris Lattner49921962009-05-08 18:23:14 +000011661 // Match either (GA), (GA+C), (GA+C1+C2), etc.
11662 while (1) {
11663 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
11664 Offset += GA->getOffset();
11665 break;
11666 } else if (Op.getOpcode() == ISD::ADD) {
11667 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
11668 Offset += C->getZExtValue();
11669 Op = Op.getOperand(0);
11670 continue;
11671 }
11672 } else if (Op.getOpcode() == ISD::SUB) {
11673 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
11674 Offset += -C->getZExtValue();
11675 Op = Op.getOperand(0);
11676 continue;
11677 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011678 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011679
Chris Lattner49921962009-05-08 18:23:14 +000011680 // Otherwise, this isn't something we can handle, reject it.
11681 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000011682 }
Eric Christopherfd179292009-08-27 18:07:15 +000011683
Dan Gohman46510a72010-04-15 01:51:59 +000011684 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011685 // If we require an extra load to get this address, as in PIC mode, we
11686 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000011687 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
11688 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011689 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000011690
Devang Patel0d881da2010-07-06 22:08:15 +000011691 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
11692 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000011693 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011694 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011695 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011696
Gabor Greifba36cb52008-08-28 21:40:38 +000011697 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000011698 Ops.push_back(Result);
11699 return;
11700 }
Dale Johannesen1784d162010-06-25 21:55:36 +000011701 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011702}
11703
Chris Lattner259e97c2006-01-31 19:43:35 +000011704std::vector<unsigned> X86TargetLowering::
Chris Lattner1efa40f2006-02-22 00:56:39 +000011705getRegClassForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000011706 EVT VT) const {
Chris Lattner259e97c2006-01-31 19:43:35 +000011707 if (Constraint.size() == 1) {
11708 // FIXME: not handling fp-stack yet!
Chris Lattner259e97c2006-01-31 19:43:35 +000011709 switch (Constraint[0]) { // GCC X86 Constraint Letters
Chris Lattnerf4dff842006-07-11 02:54:03 +000011710 default: break; // Unknown constraint letter
Evan Cheng47e9fab2009-07-17 22:13:25 +000011711 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
11712 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011713 if (VT == MVT::i32)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011714 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX,
11715 X86::ESI, X86::EDI, X86::R8D, X86::R9D,
11716 X86::R10D,X86::R11D,X86::R12D,
11717 X86::R13D,X86::R14D,X86::R15D,
11718 X86::EBP, X86::ESP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011719 else if (VT == MVT::i16)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011720 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX,
11721 X86::SI, X86::DI, X86::R8W,X86::R9W,
11722 X86::R10W,X86::R11W,X86::R12W,
11723 X86::R13W,X86::R14W,X86::R15W,
11724 X86::BP, X86::SP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011725 else if (VT == MVT::i8)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011726 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL,
11727 X86::SIL, X86::DIL, X86::R8B,X86::R9B,
11728 X86::R10B,X86::R11B,X86::R12B,
11729 X86::R13B,X86::R14B,X86::R15B,
11730 X86::BPL, X86::SPL, 0);
11731
Owen Anderson825b72b2009-08-11 20:47:22 +000011732 else if (VT == MVT::i64)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011733 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX,
11734 X86::RSI, X86::RDI, X86::R8, X86::R9,
11735 X86::R10, X86::R11, X86::R12,
11736 X86::R13, X86::R14, X86::R15,
11737 X86::RBP, X86::RSP, 0);
11738
11739 break;
11740 }
Eric Christopherfd179292009-08-27 18:07:15 +000011741 // 32-bit fallthrough
Chris Lattner259e97c2006-01-31 19:43:35 +000011742 case 'Q': // Q_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000011743 if (VT == MVT::i32)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000011744 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011745 else if (VT == MVT::i16)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000011746 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011747 else if (VT == MVT::i8)
Evan Cheng12914382007-08-13 23:27:11 +000011748 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011749 else if (VT == MVT::i64)
Chris Lattner03e6c702007-11-04 06:51:12 +000011750 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
11751 break;
Chris Lattner259e97c2006-01-31 19:43:35 +000011752 }
11753 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011754
Chris Lattner1efa40f2006-02-22 00:56:39 +000011755 return std::vector<unsigned>();
Chris Lattner259e97c2006-01-31 19:43:35 +000011756}
Chris Lattnerf76d1802006-07-31 23:26:50 +000011757
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011758std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000011759X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000011760 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000011761 // First, see if this is a constraint that directly corresponds to an LLVM
11762 // register class.
11763 if (Constraint.size() == 1) {
11764 // GCC Constraint Letters
11765 switch (Constraint[0]) {
11766 default: break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000011767 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000011768 case 'l': // INDEX_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000011769 if (VT == MVT::i8)
Chris Lattner0f65cad2007-04-09 05:49:22 +000011770 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011771 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000011772 return std::make_pair(0U, X86::GR16RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011773 if (VT == MVT::i32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000011774 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000011775 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000011776 case 'R': // LEGACY_REGS
11777 if (VT == MVT::i8)
11778 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
11779 if (VT == MVT::i16)
11780 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
11781 if (VT == MVT::i32 || !Subtarget->is64Bit())
11782 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
11783 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011784 case 'f': // FP Stack registers.
11785 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
11786 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000011787 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011788 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011789 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011790 return std::make_pair(0U, X86::RFP64RegisterClass);
11791 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000011792 case 'y': // MMX_REGS if MMX allowed.
11793 if (!Subtarget->hasMMX()) break;
11794 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000011795 case 'Y': // SSE_REGS if SSE2 allowed
11796 if (!Subtarget->hasSSE2()) break;
11797 // FALL THROUGH.
11798 case 'x': // SSE_REGS if SSE1 allowed
11799 if (!Subtarget->hasSSE1()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000011800
Owen Anderson825b72b2009-08-11 20:47:22 +000011801 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000011802 default: break;
11803 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000011804 case MVT::f32:
11805 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000011806 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011807 case MVT::f64:
11808 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000011809 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000011810 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000011811 case MVT::v16i8:
11812 case MVT::v8i16:
11813 case MVT::v4i32:
11814 case MVT::v2i64:
11815 case MVT::v4f32:
11816 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000011817 return std::make_pair(0U, X86::VR128RegisterClass);
11818 }
Chris Lattnerad043e82007-04-09 05:11:28 +000011819 break;
11820 }
11821 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011822
Chris Lattnerf76d1802006-07-31 23:26:50 +000011823 // Use the default implementation in TargetLowering to convert the register
11824 // constraint into a member of a register class.
11825 std::pair<unsigned, const TargetRegisterClass*> Res;
11826 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000011827
11828 // Not found as a standard register?
11829 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000011830 // Map st(0) -> st(7) -> ST0
11831 if (Constraint.size() == 7 && Constraint[0] == '{' &&
11832 tolower(Constraint[1]) == 's' &&
11833 tolower(Constraint[2]) == 't' &&
11834 Constraint[3] == '(' &&
11835 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
11836 Constraint[5] == ')' &&
11837 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000011838
Chris Lattner56d77c72009-09-13 22:41:48 +000011839 Res.first = X86::ST0+Constraint[4]-'0';
11840 Res.second = X86::RFP80RegisterClass;
11841 return Res;
11842 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000011843
Chris Lattner56d77c72009-09-13 22:41:48 +000011844 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000011845 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000011846 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000011847 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000011848 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000011849 }
Chris Lattner56d77c72009-09-13 22:41:48 +000011850
11851 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000011852 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000011853 Res.first = X86::EFLAGS;
11854 Res.second = X86::CCRRegisterClass;
11855 return Res;
11856 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000011857
Dale Johannesen330169f2008-11-13 21:52:36 +000011858 // 'A' means EAX + EDX.
11859 if (Constraint == "A") {
11860 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000011861 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000011862 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000011863 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000011864 return Res;
11865 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011866
Chris Lattnerf76d1802006-07-31 23:26:50 +000011867 // Otherwise, check to see if this is a register class of the wrong value
11868 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
11869 // turn into {ax},{dx}.
11870 if (Res.second->hasType(VT))
11871 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011872
Chris Lattnerf76d1802006-07-31 23:26:50 +000011873 // All of the single-register GCC register classes map their values onto
11874 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
11875 // really want an 8-bit or 32-bit register, map to the appropriate register
11876 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000011877 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011878 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000011879 unsigned DestReg = 0;
11880 switch (Res.first) {
11881 default: break;
11882 case X86::AX: DestReg = X86::AL; break;
11883 case X86::DX: DestReg = X86::DL; break;
11884 case X86::CX: DestReg = X86::CL; break;
11885 case X86::BX: DestReg = X86::BL; break;
11886 }
11887 if (DestReg) {
11888 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000011889 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000011890 }
Owen Anderson825b72b2009-08-11 20:47:22 +000011891 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000011892 unsigned DestReg = 0;
11893 switch (Res.first) {
11894 default: break;
11895 case X86::AX: DestReg = X86::EAX; break;
11896 case X86::DX: DestReg = X86::EDX; break;
11897 case X86::CX: DestReg = X86::ECX; break;
11898 case X86::BX: DestReg = X86::EBX; break;
11899 case X86::SI: DestReg = X86::ESI; break;
11900 case X86::DI: DestReg = X86::EDI; break;
11901 case X86::BP: DestReg = X86::EBP; break;
11902 case X86::SP: DestReg = X86::ESP; break;
11903 }
11904 if (DestReg) {
11905 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000011906 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000011907 }
Owen Anderson825b72b2009-08-11 20:47:22 +000011908 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000011909 unsigned DestReg = 0;
11910 switch (Res.first) {
11911 default: break;
11912 case X86::AX: DestReg = X86::RAX; break;
11913 case X86::DX: DestReg = X86::RDX; break;
11914 case X86::CX: DestReg = X86::RCX; break;
11915 case X86::BX: DestReg = X86::RBX; break;
11916 case X86::SI: DestReg = X86::RSI; break;
11917 case X86::DI: DestReg = X86::RDI; break;
11918 case X86::BP: DestReg = X86::RBP; break;
11919 case X86::SP: DestReg = X86::RSP; break;
11920 }
11921 if (DestReg) {
11922 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000011923 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000011924 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000011925 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000011926 } else if (Res.second == X86::FR32RegisterClass ||
11927 Res.second == X86::FR64RegisterClass ||
11928 Res.second == X86::VR128RegisterClass) {
11929 // Handle references to XMM physical registers that got mapped into the
11930 // wrong class. This can happen with constraints like {xmm0} where the
11931 // target independent register mapper will just pick the first match it can
11932 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000011933 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000011934 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000011935 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000011936 Res.second = X86::FR64RegisterClass;
11937 else if (X86::VR128RegisterClass->hasType(VT))
11938 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000011939 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011940
Chris Lattnerf76d1802006-07-31 23:26:50 +000011941 return Res;
11942}