blob: 045bb933cbb4952fbf8214c2dd379da6132d63d0 [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>();
Nate Begeman2ea8ee72010-12-10 00:26:57 +000084 X86ScalarSSEf64 = Subtarget->hasXMMInt();
85 X86ScalarSSEf32 = Subtarget->hasXMM();
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);
Michael J. Spencer6dad10e2010-10-27 18:52:38 +0000107 setLibcallCallingConv(RTLIB::FPTOUINT_F64_I64, CallingConv::C);
108 setLibcallCallingConv(RTLIB::FPTOUINT_F32_I64, CallingConv::C);
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) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000229 setOperationAction(ISD::BITCAST , MVT::f32 , Expand);
230 setOperationAction(ISD::BITCAST , MVT::i32 , Expand);
Dale Johannesene39859a2010-05-21 18:40:15 +0000231 if (Subtarget->is64Bit()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000232 setOperationAction(ISD::BITCAST , MVT::f64 , Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000233 // Without SSE, i64->f64 goes through memory.
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000234 setOperationAction(ISD::BITCAST , 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::CTTZ , MVT::i8 , Custom);
289 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000290 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
291 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000292 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
293 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000294 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000295 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
296 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000297 }
298
Benjamin Kramer1292c222010-12-04 20:32:23 +0000299 if (Subtarget->hasPOPCNT()) {
300 setOperationAction(ISD::CTPOP , MVT::i8 , Promote);
301 } else {
302 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
303 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
304 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
305 if (Subtarget->is64Bit())
306 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
307 }
308
Owen Anderson825b72b2009-08-11 20:47:22 +0000309 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
310 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000311
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000312 // These should be promoted to a larger select which is supported.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000313 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000314 // X86 wants to expand cmov itself.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000315 setOperationAction(ISD::SELECT , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000316 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000317 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
318 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
319 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
320 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
321 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000322 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000323 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
324 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
325 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
326 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000327 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000328 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
329 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000330 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000331 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000332
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000333 // Darwin ABI issue.
Owen Anderson825b72b2009-08-11 20:47:22 +0000334 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
335 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
336 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
337 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000338 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000339 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
340 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000341 setOperationAction(ISD::BlockAddress , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000342 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000343 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
344 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
345 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
346 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000347 setOperationAction(ISD::BlockAddress , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000348 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000349 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Owen Anderson825b72b2009-08-11 20:47:22 +0000350 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
351 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
352 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000353 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000354 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
355 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
356 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000357 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000358
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000359 if (Subtarget->hasXMM())
Owen Anderson825b72b2009-08-11 20:47:22 +0000360 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000361
Eric Christopher9a9d2752010-07-22 02:48:34 +0000362 // We may not have a libcall for MEMBARRIER so we should lower this.
363 setOperationAction(ISD::MEMBARRIER , MVT::Other, Custom);
Michael J. Spencerec38de22010-10-10 22:04:20 +0000364
Jim Grosbachf1ab49e2010-06-23 16:25:07 +0000365 // On X86 and X86-64, atomic operations are lowered to locked instructions.
366 // Locked instructions, in turn, have implicit fence semantics (all memory
367 // operations are flushed before issuing the locked instruction, and they
368 // are not buffered), so we can fold away the common pattern of
369 // fence-atomic-fence.
370 setShouldFoldAtomicFences(true);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000371
Mon P Wang63307c32008-05-05 19:05:59 +0000372 // Expand certain atomics
Owen Anderson825b72b2009-08-11 20:47:22 +0000373 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i8, Custom);
374 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i16, Custom);
375 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Custom);
376 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i64, Custom);
Bill Wendling5bf1b4e2008-08-20 00:28:16 +0000377
Owen Anderson825b72b2009-08-11 20:47:22 +0000378 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i8, Custom);
379 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i16, Custom);
380 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Custom);
381 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000382
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000383 if (!Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000384 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
385 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
386 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
387 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
388 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
389 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
390 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000391 }
392
Evan Cheng3c992d22006-03-07 02:02:57 +0000393 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000394 if (!Subtarget->isTargetDarwin() &&
395 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000396 !Subtarget->isTargetCygMing()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000397 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohman44066042008-07-01 00:05:16 +0000398 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000399
Owen Anderson825b72b2009-08-11 20:47:22 +0000400 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
401 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
402 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
403 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000404 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000405 setExceptionPointerRegister(X86::RAX);
406 setExceptionSelectorRegister(X86::RDX);
407 } else {
408 setExceptionPointerRegister(X86::EAX);
409 setExceptionSelectorRegister(X86::EDX);
410 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000411 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
412 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000413
Owen Anderson825b72b2009-08-11 20:47:22 +0000414 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000415
Owen Anderson825b72b2009-08-11 20:47:22 +0000416 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000417
Nate Begemanacc398c2006-01-25 18:21:52 +0000418 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000419 setOperationAction(ISD::VASTART , MVT::Other, Custom);
420 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000421 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000422 setOperationAction(ISD::VAARG , MVT::Other, Custom);
423 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000424 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000425 setOperationAction(ISD::VAARG , MVT::Other, Expand);
426 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000427 }
Evan Chengae642192007-03-02 23:16:35 +0000428
Owen Anderson825b72b2009-08-11 20:47:22 +0000429 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
430 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000431 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000432 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
Michael J. Spencere9c253e2010-10-21 01:41:01 +0000433 if (Subtarget->isTargetCygMing() || Subtarget->isTargetWindows())
Owen Anderson825b72b2009-08-11 20:47:22 +0000434 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +0000435 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000436 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000437
Evan Chengc7ce29b2009-02-13 22:36:38 +0000438 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000439 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000440 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000441 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
442 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000443
Evan Cheng223547a2006-01-31 22:28:30 +0000444 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000445 setOperationAction(ISD::FABS , MVT::f64, Custom);
446 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000447
448 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000449 setOperationAction(ISD::FNEG , MVT::f64, Custom);
450 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000451
Evan Cheng68c47cb2007-01-05 07:55:56 +0000452 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000453 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
454 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000455
Evan Chengd25e9e82006-02-02 00:28:23 +0000456 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000457 setOperationAction(ISD::FSIN , MVT::f64, Expand);
458 setOperationAction(ISD::FCOS , MVT::f64, Expand);
459 setOperationAction(ISD::FSIN , MVT::f32, Expand);
460 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000461
Chris Lattnera54aa942006-01-29 06:26:08 +0000462 // Expand FP immediates into loads from the stack, except for the special
463 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000464 addLegalFPImmediate(APFloat(+0.0)); // xorpd
465 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Evan Chengc7ce29b2009-02-13 22:36:38 +0000466 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000467 // Use SSE for f32, x87 for f64.
468 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000469 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
470 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000471
472 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000473 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000474
475 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000476 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000477
Owen Anderson825b72b2009-08-11 20:47:22 +0000478 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000479
480 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000481 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
482 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000483
484 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000485 setOperationAction(ISD::FSIN , MVT::f32, Expand);
486 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000487
Nate Begemane1795842008-02-14 08:57:00 +0000488 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000489 addLegalFPImmediate(APFloat(+0.0f)); // xorps
490 addLegalFPImmediate(APFloat(+0.0)); // FLD0
491 addLegalFPImmediate(APFloat(+1.0)); // FLD1
492 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
493 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
494
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000495 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000496 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
497 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000498 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000499 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000500 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000501 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000502 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
503 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000504
Owen Anderson825b72b2009-08-11 20:47:22 +0000505 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
506 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
507 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
508 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000509
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000510 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000511 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
512 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000513 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000514 addLegalFPImmediate(APFloat(+0.0)); // FLD0
515 addLegalFPImmediate(APFloat(+1.0)); // FLD1
516 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
517 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000518 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
519 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
520 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
521 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000522 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000523
Dale Johannesen59a58732007-08-05 18:49:15 +0000524 // Long double always uses X87.
Evan Cheng92722532009-03-26 23:06:32 +0000525 if (!UseSoftFloat) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000526 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
527 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
528 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000529 {
Benjamin Kramer98383962010-12-04 14:22:24 +0000530 APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000531 addLegalFPImmediate(TmpFlt); // FLD0
532 TmpFlt.changeSign();
533 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
Benjamin Kramer98383962010-12-04 14:22:24 +0000534
535 bool ignored;
Evan Chengc7ce29b2009-02-13 22:36:38 +0000536 APFloat TmpFlt2(+1.0);
537 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
538 &ignored);
539 addLegalFPImmediate(TmpFlt2); // FLD1
540 TmpFlt2.changeSign();
541 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
542 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000543
Evan Chengc7ce29b2009-02-13 22:36:38 +0000544 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000545 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
546 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000547 }
Dale Johannesen2f429012007-09-26 21:10:55 +0000548 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000549
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000550 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000551 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
552 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
553 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000554
Owen Anderson825b72b2009-08-11 20:47:22 +0000555 setOperationAction(ISD::FLOG, MVT::f80, Expand);
556 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
557 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
558 setOperationAction(ISD::FEXP, MVT::f80, Expand);
559 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000560
Mon P Wangf007a8b2008-11-06 05:31:54 +0000561 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000562 // (for widening) or expand (for scalarization). Then we will selectively
563 // turn on ones that can be effectively codegen'd.
Owen Anderson825b72b2009-08-11 20:47:22 +0000564 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
565 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
566 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
567 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
568 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
569 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
570 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
571 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
572 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
573 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
574 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
575 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
576 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
577 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
578 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
579 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
580 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
581 setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
582 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
583 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
584 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
585 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
586 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
587 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
588 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
589 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
590 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
591 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
592 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
593 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
594 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
595 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
596 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
597 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
598 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
599 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
600 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
601 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
602 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
603 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
604 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
605 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
606 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
607 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
608 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
609 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
610 setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
611 setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
612 setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
613 setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
Dan Gohman87862e72009-12-11 21:31:27 +0000614 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
Dan Gohman2e141d72009-12-14 23:40:38 +0000615 setOperationAction(ISD::TRUNCATE, (MVT::SimpleValueType)VT, Expand);
616 setOperationAction(ISD::SIGN_EXTEND, (MVT::SimpleValueType)VT, Expand);
617 setOperationAction(ISD::ZERO_EXTEND, (MVT::SimpleValueType)VT, Expand);
618 setOperationAction(ISD::ANY_EXTEND, (MVT::SimpleValueType)VT, Expand);
619 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
620 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
621 setTruncStoreAction((MVT::SimpleValueType)VT,
622 (MVT::SimpleValueType)InnerVT, Expand);
623 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
624 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
625 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000626 }
627
Evan Chengc7ce29b2009-02-13 22:36:38 +0000628 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
629 // with -msoft-float, disable use of MMX as well.
Evan Cheng92722532009-03-26 23:06:32 +0000630 if (!UseSoftFloat && !DisableMMX && Subtarget->hasMMX()) {
Dale Johannesene93d99c2010-10-20 21:32:10 +0000631 addRegisterClass(MVT::x86mmx, X86::VR64RegisterClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000632 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000633 }
634
Dale Johannesen0488fb62010-09-30 23:57:10 +0000635 // MMX-sized vectors (other than x86mmx) are expected to be expanded
636 // into smaller operations.
637 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
638 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
639 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
640 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
641 setOperationAction(ISD::AND, MVT::v8i8, Expand);
642 setOperationAction(ISD::AND, MVT::v4i16, Expand);
643 setOperationAction(ISD::AND, MVT::v2i32, Expand);
644 setOperationAction(ISD::AND, MVT::v1i64, Expand);
645 setOperationAction(ISD::OR, MVT::v8i8, Expand);
646 setOperationAction(ISD::OR, MVT::v4i16, Expand);
647 setOperationAction(ISD::OR, MVT::v2i32, Expand);
648 setOperationAction(ISD::OR, MVT::v1i64, Expand);
649 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
650 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
651 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
652 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
653 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
654 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
655 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
656 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
657 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
658 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
659 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
660 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
661 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000662 setOperationAction(ISD::BITCAST, MVT::v8i8, Expand);
663 setOperationAction(ISD::BITCAST, MVT::v4i16, Expand);
664 setOperationAction(ISD::BITCAST, MVT::v2i32, Expand);
665 setOperationAction(ISD::BITCAST, MVT::v1i64, Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000666
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000667 if (!UseSoftFloat && Subtarget->hasXMM()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000668 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000669
Owen Anderson825b72b2009-08-11 20:47:22 +0000670 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
671 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
672 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
673 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
674 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
675 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
676 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
677 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
678 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
679 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
680 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
681 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000682 }
683
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000684 if (!UseSoftFloat && Subtarget->hasXMMInt()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000685 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000686
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000687 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
688 // registers cannot be used even for integer operations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000689 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
690 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
691 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
692 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000693
Owen Anderson825b72b2009-08-11 20:47:22 +0000694 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
695 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
696 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
697 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
698 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
699 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
700 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
701 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
702 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
703 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
704 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
705 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
706 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
707 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
708 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
709 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000710
Owen Anderson825b72b2009-08-11 20:47:22 +0000711 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
712 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
713 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
714 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000715
Owen Anderson825b72b2009-08-11 20:47:22 +0000716 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
717 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
718 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
719 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
720 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000721
Mon P Wangeb38ebf2010-01-24 00:05:03 +0000722 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2f64, Custom);
723 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2i64, Custom);
724 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i8, Custom);
725 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i16, Custom);
726 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
727
Evan Cheng2c3ae372006-04-12 21:21:57 +0000728 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Owen Anderson825b72b2009-08-11 20:47:22 +0000729 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
730 EVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000731 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000732 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000733 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000734 // Do not attempt to custom lower non-128-bit vectors
735 if (!VT.is128BitVector())
736 continue;
Owen Anderson825b72b2009-08-11 20:47:22 +0000737 setOperationAction(ISD::BUILD_VECTOR,
738 VT.getSimpleVT().SimpleTy, Custom);
739 setOperationAction(ISD::VECTOR_SHUFFLE,
740 VT.getSimpleVT().SimpleTy, Custom);
741 setOperationAction(ISD::EXTRACT_VECTOR_ELT,
742 VT.getSimpleVT().SimpleTy, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000743 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000744
Owen Anderson825b72b2009-08-11 20:47:22 +0000745 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
746 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
747 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
748 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
749 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
750 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000751
Nate Begemancdd1eec2008-02-12 22:51:28 +0000752 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000753 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
754 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000755 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000756
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000757 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Owen Anderson825b72b2009-08-11 20:47:22 +0000758 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) {
759 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
Owen Andersone50ed302009-08-10 22:56:29 +0000760 EVT VT = SVT;
David Greene9b9838d2009-06-29 16:47:10 +0000761
762 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000763 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000764 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +0000765
Owen Andersond6662ad2009-08-10 20:46:15 +0000766 setOperationAction(ISD::AND, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000767 AddPromotedToType (ISD::AND, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000768 setOperationAction(ISD::OR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000769 AddPromotedToType (ISD::OR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000770 setOperationAction(ISD::XOR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000771 AddPromotedToType (ISD::XOR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000772 setOperationAction(ISD::LOAD, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000773 AddPromotedToType (ISD::LOAD, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000774 setOperationAction(ISD::SELECT, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000775 AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000776 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000777
Owen Anderson825b72b2009-08-11 20:47:22 +0000778 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000779
Evan Cheng2c3ae372006-04-12 21:21:57 +0000780 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +0000781 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
782 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
783 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
784 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000785
Owen Anderson825b72b2009-08-11 20:47:22 +0000786 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
787 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000788 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000789
Nate Begeman14d12ca2008-02-11 04:19:36 +0000790 if (Subtarget->hasSSE41()) {
Dale Johannesen54feef22010-05-27 20:12:41 +0000791 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
792 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
793 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
794 setOperationAction(ISD::FRINT, MVT::f32, Legal);
795 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
796 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
797 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
798 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
799 setOperationAction(ISD::FRINT, MVT::f64, Legal);
800 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
801
Nate Begeman14d12ca2008-02-11 04:19:36 +0000802 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +0000803 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000804
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000805 // Can turn SHL into an integer multiply.
806 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
Nate Begeman51409212010-07-28 00:21:48 +0000807 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000808
Nate Begeman14d12ca2008-02-11 04:19:36 +0000809 // i8 and i16 vectors are custom , because the source register and source
810 // source memory operand types are not the same width. f32 vectors are
811 // custom since the immediate controlling the insert encodes additional
812 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +0000813 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
814 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
815 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
816 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000817
Owen Anderson825b72b2009-08-11 20:47:22 +0000818 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
819 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
820 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
821 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000822
823 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000824 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
825 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000826 }
827 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000828
Nate Begeman30a0de92008-07-17 16:51:19 +0000829 if (Subtarget->hasSSE42()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000830 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
Nate Begeman30a0de92008-07-17 16:51:19 +0000831 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000832
David Greene9b9838d2009-06-29 16:47:10 +0000833 if (!UseSoftFloat && Subtarget->hasAVX()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000834 addRegisterClass(MVT::v8f32, X86::VR256RegisterClass);
835 addRegisterClass(MVT::v4f64, X86::VR256RegisterClass);
836 addRegisterClass(MVT::v8i32, X86::VR256RegisterClass);
837 addRegisterClass(MVT::v4i64, X86::VR256RegisterClass);
Bruno Cardoso Lopes405f11b2010-08-10 01:43:16 +0000838 addRegisterClass(MVT::v32i8, X86::VR256RegisterClass);
David Greened94c1012009-06-29 22:50:51 +0000839
Owen Anderson825b72b2009-08-11 20:47:22 +0000840 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
841 setOperationAction(ISD::LOAD, MVT::v8i32, Legal);
842 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
843 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
844 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
845 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
846 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
847 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
848 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
849 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +0000850 setOperationAction(ISD::BUILD_VECTOR, MVT::v8f32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000851 //setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8f32, Custom);
852 //setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8f32, Custom);
853 //setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
854 //setOperationAction(ISD::VSETCC, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000855
856 // Operations to consider commented out -v16i16 v32i8
Owen Anderson825b72b2009-08-11 20:47:22 +0000857 //setOperationAction(ISD::ADD, MVT::v16i16, Legal);
858 setOperationAction(ISD::ADD, MVT::v8i32, Custom);
859 setOperationAction(ISD::ADD, MVT::v4i64, Custom);
860 //setOperationAction(ISD::SUB, MVT::v32i8, Legal);
861 //setOperationAction(ISD::SUB, MVT::v16i16, Legal);
862 setOperationAction(ISD::SUB, MVT::v8i32, Custom);
863 setOperationAction(ISD::SUB, MVT::v4i64, Custom);
864 //setOperationAction(ISD::MUL, MVT::v16i16, Legal);
865 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
866 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
867 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
868 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
869 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
870 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000871
Owen Anderson825b72b2009-08-11 20:47:22 +0000872 setOperationAction(ISD::VSETCC, MVT::v4f64, Custom);
873 // setOperationAction(ISD::VSETCC, MVT::v32i8, Custom);
874 // setOperationAction(ISD::VSETCC, MVT::v16i16, Custom);
875 setOperationAction(ISD::VSETCC, MVT::v8i32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000876
Owen Anderson825b72b2009-08-11 20:47:22 +0000877 // setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v32i8, Custom);
878 // setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i16, Custom);
879 // setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i16, Custom);
880 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i32, Custom);
881 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000882
Owen Anderson825b72b2009-08-11 20:47:22 +0000883 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f64, Custom);
884 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i64, Custom);
885 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f64, Custom);
886 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i64, Custom);
887 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f64, Custom);
888 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000889
890#if 0
891 // Not sure we want to do this since there are no 256-bit integer
892 // operations in AVX
893
894 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
895 // This includes 256-bit vectors
Owen Anderson825b72b2009-08-11 20:47:22 +0000896 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v4i64; ++i) {
897 EVT VT = (MVT::SimpleValueType)i;
David Greene9b9838d2009-06-29 16:47:10 +0000898
899 // Do not attempt to custom lower non-power-of-2 vectors
900 if (!isPowerOf2_32(VT.getVectorNumElements()))
901 continue;
902
903 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
904 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
905 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
906 }
907
908 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000909 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i64, Custom);
910 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i64, Custom);
Eric Christopherfd179292009-08-27 18:07:15 +0000911 }
David Greene9b9838d2009-06-29 16:47:10 +0000912#endif
913
914#if 0
915 // Not sure we want to do this since there are no 256-bit integer
916 // operations in AVX
917
918 // Promote v32i8, v16i16, v8i32 load, select, and, or, xor to v4i64.
919 // Including 256-bit vectors
Owen Anderson825b72b2009-08-11 20:47:22 +0000920 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v4i64; i++) {
921 EVT VT = (MVT::SimpleValueType)i;
David Greene9b9838d2009-06-29 16:47:10 +0000922
923 if (!VT.is256BitVector()) {
924 continue;
925 }
926 setOperationAction(ISD::AND, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000927 AddPromotedToType (ISD::AND, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000928 setOperationAction(ISD::OR, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000929 AddPromotedToType (ISD::OR, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000930 setOperationAction(ISD::XOR, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000931 AddPromotedToType (ISD::XOR, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000932 setOperationAction(ISD::LOAD, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000933 AddPromotedToType (ISD::LOAD, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000934 setOperationAction(ISD::SELECT, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000935 AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000936 }
937
Owen Anderson825b72b2009-08-11 20:47:22 +0000938 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
David Greene9b9838d2009-06-29 16:47:10 +0000939#endif
940 }
941
Evan Cheng6be2c582006-04-05 23:38:46 +0000942 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +0000943 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +0000944
Bill Wendling74c37652008-12-09 22:08:41 +0000945 // Add/Sub/Mul with overflow operations are custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000946 setOperationAction(ISD::SADDO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000947 setOperationAction(ISD::UADDO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000948 setOperationAction(ISD::SSUBO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000949 setOperationAction(ISD::USUBO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000950 setOperationAction(ISD::SMULO, MVT::i32, Custom);
Chris Lattnerb20e0b12010-12-05 07:30:36 +0000951 setOperationAction(ISD::UMULO, MVT::i32, Custom);
Dan Gohman71c62a22010-06-02 19:13:40 +0000952
Eli Friedman962f5492010-06-02 19:35:46 +0000953 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
954 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +0000955 //
Eli Friedman962f5492010-06-02 19:35:46 +0000956 // FIXME: We really should do custom legalization for addition and
957 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
958 // than generic legalization for 64-bit multiplication-with-overflow, though.
Eli Friedmana993f0a2010-06-02 00:27:18 +0000959 if (Subtarget->is64Bit()) {
960 setOperationAction(ISD::SADDO, MVT::i64, Custom);
961 setOperationAction(ISD::UADDO, MVT::i64, Custom);
962 setOperationAction(ISD::SSUBO, MVT::i64, Custom);
963 setOperationAction(ISD::USUBO, MVT::i64, Custom);
964 setOperationAction(ISD::SMULO, MVT::i64, Custom);
Chris Lattnerb20e0b12010-12-05 07:30:36 +0000965 setOperationAction(ISD::UMULO, MVT::i64, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +0000966 }
Bill Wendling41ea7e72008-11-24 19:21:46 +0000967
Evan Chengd54f2d52009-03-31 19:38:51 +0000968 if (!Subtarget->is64Bit()) {
969 // These libcalls are not available in 32-bit.
970 setLibcallName(RTLIB::SHL_I128, 0);
971 setLibcallName(RTLIB::SRL_I128, 0);
972 setLibcallName(RTLIB::SRA_I128, 0);
973 }
974
Evan Cheng206ee9d2006-07-07 08:33:52 +0000975 // We have target-specific dag combine patterns for the following nodes:
976 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +0000977 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +0000978 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +0000979 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +0000980 setTargetDAGCombine(ISD::SHL);
981 setTargetDAGCombine(ISD::SRA);
982 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +0000983 setTargetDAGCombine(ISD::OR);
Chris Lattner149a4e52008-02-22 02:09:43 +0000984 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +0000985 setTargetDAGCombine(ISD::ZERO_EXTEND);
Evan Cheng0b0cd912009-03-28 05:57:29 +0000986 if (Subtarget->is64Bit())
987 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +0000988
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000989 computeRegisterProperties();
990
Evan Cheng87ed7162006-02-14 08:25:08 +0000991 // FIXME: These should be based on subtarget info. Plus, the values should
992 // be smaller when we are in optimizing for size mode.
Dan Gohman87060f52008-06-30 21:00:56 +0000993 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng255f20f2010-04-01 06:04:33 +0000994 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Dan Gohman87060f52008-06-30 21:00:56 +0000995 maxStoresPerMemmove = 3; // For @llvm.memmove -> sequence of stores
Evan Chengfb8075d2008-02-28 00:43:03 +0000996 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +0000997 benefitFromCodePlacementOpt = true;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000998}
999
Scott Michel5b8f82e2008-03-10 15:42:14 +00001000
Owen Anderson825b72b2009-08-11 20:47:22 +00001001MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
1002 return MVT::i8;
Scott Michel5b8f82e2008-03-10 15:42:14 +00001003}
1004
1005
Evan Cheng29286502008-01-23 23:17:41 +00001006/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1007/// the desired ByVal argument alignment.
1008static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) {
1009 if (MaxAlign == 16)
1010 return;
1011 if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1012 if (VTy->getBitWidth() == 128)
1013 MaxAlign = 16;
Evan Cheng29286502008-01-23 23:17:41 +00001014 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1015 unsigned EltAlign = 0;
1016 getMaxByValAlign(ATy->getElementType(), EltAlign);
1017 if (EltAlign > MaxAlign)
1018 MaxAlign = EltAlign;
1019 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
1020 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1021 unsigned EltAlign = 0;
1022 getMaxByValAlign(STy->getElementType(i), EltAlign);
1023 if (EltAlign > MaxAlign)
1024 MaxAlign = EltAlign;
1025 if (MaxAlign == 16)
1026 break;
1027 }
1028 }
1029 return;
1030}
1031
1032/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1033/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001034/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1035/// are at 4-byte boundaries.
Evan Cheng29286502008-01-23 23:17:41 +00001036unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001037 if (Subtarget->is64Bit()) {
1038 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001039 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001040 if (TyAlign > 8)
1041 return TyAlign;
1042 return 8;
1043 }
1044
Evan Cheng29286502008-01-23 23:17:41 +00001045 unsigned Align = 4;
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001046 if (Subtarget->hasXMM())
Dale Johannesen0c191872008-02-08 19:48:20 +00001047 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001048 return Align;
1049}
Chris Lattner2b02a442007-02-25 08:29:00 +00001050
Evan Chengf0df0312008-05-15 08:39:06 +00001051/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001052/// and store operations as a result of memset, memcpy, and memmove
1053/// lowering. If DstAlign is zero that means it's safe to destination
1054/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1055/// means there isn't a need to check it against alignment requirement,
1056/// probably because the source does not need to be loaded. If
1057/// 'NonScalarIntSafe' is true, that means it's safe to return a
1058/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1059/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1060/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001061/// It returns EVT::Other if the type should be determined using generic
1062/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001063EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001064X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1065 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001066 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001067 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001068 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001069 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1070 // linux. This is because the stack realignment code can't handle certain
1071 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001072 const Function *F = MF.getFunction();
Evan Chengf28f8bc2010-04-02 19:36:14 +00001073 if (NonScalarIntSafe &&
1074 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001075 if (Size >= 16 &&
1076 (Subtarget->isUnalignedMemAccessFast() ||
Chandler Carruthae1d41c2010-04-02 01:31:24 +00001077 ((DstAlign == 0 || DstAlign >= 16) &&
1078 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001079 Subtarget->getStackAlignment() >= 16) {
1080 if (Subtarget->hasSSE2())
1081 return MVT::v4i32;
Evan Chengf28f8bc2010-04-02 19:36:14 +00001082 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001083 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001084 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001085 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001086 Subtarget->getStackAlignment() >= 8 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001087 Subtarget->hasXMMInt()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001088 // Do not use f64 to lower memcpy if source is string constant. It's
1089 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001090 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001091 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001092 }
Evan Chengf0df0312008-05-15 08:39:06 +00001093 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001094 return MVT::i64;
1095 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001096}
1097
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001098/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1099/// current function. The returned value is a member of the
1100/// MachineJumpTableInfo::JTEntryKind enum.
1101unsigned X86TargetLowering::getJumpTableEncoding() const {
1102 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1103 // symbol.
1104 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1105 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001106 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001107
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001108 // Otherwise, use the normal jump table encoding heuristics.
1109 return TargetLowering::getJumpTableEncoding();
1110}
1111
Chris Lattnerc64daab2010-01-26 05:02:42 +00001112const MCExpr *
1113X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1114 const MachineBasicBlock *MBB,
1115 unsigned uid,MCContext &Ctx) const{
1116 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1117 Subtarget->isPICStyleGOT());
1118 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1119 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001120 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1121 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001122}
1123
Evan Chengcc415862007-11-09 01:32:10 +00001124/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1125/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001126SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001127 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001128 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001129 // This doesn't have DebugLoc associated with it, but is not really the
1130 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001131 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001132 return Table;
1133}
1134
Chris Lattner589c6f62010-01-26 06:28:43 +00001135/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1136/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1137/// MCExpr.
1138const MCExpr *X86TargetLowering::
1139getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1140 MCContext &Ctx) const {
1141 // X86-64 uses RIP relative addressing based on the jump table label.
1142 if (Subtarget->isPICStyleRIPRel())
1143 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1144
1145 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001146 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001147}
1148
Bill Wendlingb4202b82009-07-01 18:50:55 +00001149/// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling20c568f2009-06-30 22:38:32 +00001150unsigned X86TargetLowering::getFunctionAlignment(const Function *F) const {
Dan Gohman25103a22009-08-18 00:20:06 +00001151 return F->hasFnAttr(Attribute::OptimizeForSize) ? 0 : 4;
Bill Wendling20c568f2009-06-30 22:38:32 +00001152}
1153
Evan Chengdee81012010-07-26 21:50:05 +00001154std::pair<const TargetRegisterClass*, uint8_t>
1155X86TargetLowering::findRepresentativeClass(EVT VT) const{
1156 const TargetRegisterClass *RRC = 0;
1157 uint8_t Cost = 1;
1158 switch (VT.getSimpleVT().SimpleTy) {
1159 default:
1160 return TargetLowering::findRepresentativeClass(VT);
1161 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1162 RRC = (Subtarget->is64Bit()
1163 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1164 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001165 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001166 RRC = X86::VR64RegisterClass;
1167 break;
1168 case MVT::f32: case MVT::f64:
1169 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1170 case MVT::v4f32: case MVT::v2f64:
1171 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1172 case MVT::v4f64:
1173 RRC = X86::VR128RegisterClass;
1174 break;
1175 }
1176 return std::make_pair(RRC, Cost);
1177}
1178
Evan Cheng70017e42010-07-24 00:39:05 +00001179unsigned
1180X86TargetLowering::getRegPressureLimit(const TargetRegisterClass *RC,
1181 MachineFunction &MF) const {
Anton Korobeynikovd0c38172010-11-18 21:19:35 +00001182 const TargetFrameInfo *TFI = MF.getTarget().getFrameInfo();
1183
1184 unsigned FPDiff = TFI->hasFP(MF) ? 1 : 0;
Evan Cheng70017e42010-07-24 00:39:05 +00001185 switch (RC->getID()) {
1186 default:
1187 return 0;
1188 case X86::GR32RegClassID:
1189 return 4 - FPDiff;
1190 case X86::GR64RegClassID:
1191 return 8 - FPDiff;
1192 case X86::VR128RegClassID:
1193 return Subtarget->is64Bit() ? 10 : 4;
1194 case X86::VR64RegClassID:
1195 return 4;
1196 }
1197}
1198
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001199bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1200 unsigned &Offset) const {
1201 if (!Subtarget->isTargetLinux())
1202 return false;
1203
1204 if (Subtarget->is64Bit()) {
1205 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1206 Offset = 0x28;
1207 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1208 AddressSpace = 256;
1209 else
1210 AddressSpace = 257;
1211 } else {
1212 // %gs:0x14 on i386
1213 Offset = 0x14;
1214 AddressSpace = 256;
1215 }
1216 return true;
1217}
1218
1219
Chris Lattner2b02a442007-02-25 08:29:00 +00001220//===----------------------------------------------------------------------===//
1221// Return Value Calling Convention Implementation
1222//===----------------------------------------------------------------------===//
1223
Chris Lattner59ed56b2007-02-28 04:55:35 +00001224#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001225
Michael J. Spencerec38de22010-10-10 22:04:20 +00001226bool
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001227X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001228 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001229 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001230 SmallVector<CCValAssign, 16> RVLocs;
1231 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001232 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001233 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001234}
1235
Dan Gohman98ca4f22009-08-05 01:29:28 +00001236SDValue
1237X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001238 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001239 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001240 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001241 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001242 MachineFunction &MF = DAG.getMachineFunction();
1243 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001244
Chris Lattner9774c912007-02-27 05:28:59 +00001245 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001246 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1247 RVLocs, *DAG.getContext());
1248 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001249
Evan Chengdcea1632010-02-04 02:40:39 +00001250 // Add the regs to the liveout set for the function.
1251 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1252 for (unsigned i = 0; i != RVLocs.size(); ++i)
1253 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1254 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001255
Dan Gohman475871a2008-07-27 21:46:04 +00001256 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001257
Dan Gohman475871a2008-07-27 21:46:04 +00001258 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001259 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1260 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001261 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1262 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001263
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001264 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001265 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1266 CCValAssign &VA = RVLocs[i];
1267 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001268 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001269 EVT ValVT = ValToCopy.getValueType();
1270
Dale Johannesenc4510512010-09-24 19:05:48 +00001271 // If this is x86-64, and we disabled SSE, we can't return FP values,
1272 // or SSE or MMX vectors.
1273 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1274 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001275 (Subtarget->is64Bit() && !Subtarget->hasXMM())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001276 report_fatal_error("SSE register return with SSE disabled");
1277 }
1278 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1279 // llvm-gcc has never done it right and no one has noticed, so this
1280 // should be OK for now.
1281 if (ValVT == MVT::f64 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001282 (Subtarget->is64Bit() && !Subtarget->hasXMMInt()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001283 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001284
Chris Lattner447ff682008-03-11 03:23:40 +00001285 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1286 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001287 if (VA.getLocReg() == X86::ST0 ||
1288 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001289 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1290 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001291 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001292 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001293 RetOps.push_back(ValToCopy);
1294 // Don't emit a copytoreg.
1295 continue;
1296 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001297
Evan Cheng242b38b2009-02-23 09:03:22 +00001298 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1299 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001300 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001301 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001302 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001303 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001304 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1305 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001306 // If we don't have SSE2 available, convert to v4f32 so the generated
1307 // register is legal.
1308 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001309 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001310 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001311 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001312 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001313
Dale Johannesendd64c412009-02-04 00:33:20 +00001314 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001315 Flag = Chain.getValue(1);
1316 }
Dan Gohman61a92132008-04-21 23:59:07 +00001317
1318 // The x86-64 ABI for returning structs by value requires that we copy
1319 // the sret argument into %rax for the return. We saved the argument into
1320 // a virtual register in the entry block, so now we copy the value out
1321 // and into %rax.
1322 if (Subtarget->is64Bit() &&
1323 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1324 MachineFunction &MF = DAG.getMachineFunction();
1325 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1326 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001327 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001328 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001329 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001330
Dale Johannesendd64c412009-02-04 00:33:20 +00001331 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001332 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001333
1334 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001335 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001336 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001337
Chris Lattner447ff682008-03-11 03:23:40 +00001338 RetOps[0] = Chain; // Update chain.
1339
1340 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001341 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001342 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001343
1344 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001345 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001346}
1347
Evan Cheng3d2125c2010-11-30 23:55:39 +00001348bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1349 if (N->getNumValues() != 1)
1350 return false;
1351 if (!N->hasNUsesOfValue(1, 0))
1352 return false;
1353
1354 SDNode *Copy = *N->use_begin();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001355 if (Copy->getOpcode() != ISD::CopyToReg &&
1356 Copy->getOpcode() != ISD::FP_EXTEND)
Evan Cheng3d2125c2010-11-30 23:55:39 +00001357 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001358
1359 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001360 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001361 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001362 if (UI->getOpcode() != X86ISD::RET_FLAG)
1363 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001364 HasRet = true;
1365 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001366
Evan Cheng1bf891a2010-12-01 22:59:46 +00001367 return HasRet;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001368}
1369
Dan Gohman98ca4f22009-08-05 01:29:28 +00001370/// LowerCallResult - Lower the result values of a call into the
1371/// appropriate copies out of appropriate physical registers.
1372///
1373SDValue
1374X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001375 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001376 const SmallVectorImpl<ISD::InputArg> &Ins,
1377 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001378 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001379
Chris Lattnere32bbf62007-02-28 07:09:55 +00001380 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001381 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001382 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001383 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Owen Andersone922c022009-07-22 00:24:57 +00001384 RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001385 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001386
Chris Lattner3085e152007-02-25 08:59:22 +00001387 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001388 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001389 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001390 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001391
Torok Edwin3f142c32009-02-01 18:15:56 +00001392 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001393 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001394 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasXMM())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001395 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001396 }
1397
Evan Cheng79fb3b42009-02-20 20:43:02 +00001398 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001399
1400 // If this is a call to a function that returns an fp value on the floating
1401 // point stack, we must guarantee the the value is popped from the stack, so
1402 // a CopyFromReg is not good enough - the copy instruction may be eliminated
1403 // if the return value is not used. We use the FpGET_ST0 instructions
1404 // instead.
1405 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1406 // If we prefer to use the value in xmm registers, copy it out as f80 and
1407 // use a truncate to move it from fp stack reg to xmm reg.
1408 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1409 bool isST0 = VA.getLocReg() == X86::ST0;
1410 unsigned Opc = 0;
1411 if (CopyVT == MVT::f32) Opc = isST0 ? X86::FpGET_ST0_32:X86::FpGET_ST1_32;
1412 if (CopyVT == MVT::f64) Opc = isST0 ? X86::FpGET_ST0_64:X86::FpGET_ST1_64;
1413 if (CopyVT == MVT::f80) Opc = isST0 ? X86::FpGET_ST0_80:X86::FpGET_ST1_80;
1414 SDValue Ops[] = { Chain, InFlag };
1415 Chain = SDValue(DAG.getMachineNode(Opc, dl, CopyVT, MVT::Other, MVT::Flag,
1416 Ops, 2), 1);
1417 Val = Chain.getValue(0);
1418
1419 // Round the f80 to the right size, which also moves it to the appropriate
1420 // xmm register.
1421 if (CopyVT != VA.getValVT())
1422 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1423 // This truncation won't change the value.
1424 DAG.getIntPtrConstant(1));
1425 } else if (Is64Bit && CopyVT.isVector() && CopyVT.getSizeInBits() == 64) {
Evan Cheng242b38b2009-02-23 09:03:22 +00001426 // For x86-64, MMX values are returned in XMM0 / XMM1 except for v1i64.
1427 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1428 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001429 MVT::v2i64, InFlag).getValue(1);
Evan Cheng242b38b2009-02-23 09:03:22 +00001430 Val = Chain.getValue(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001431 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1432 Val, DAG.getConstant(0, MVT::i64));
Evan Cheng242b38b2009-02-23 09:03:22 +00001433 } else {
1434 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001435 MVT::i64, InFlag).getValue(1);
Evan Cheng242b38b2009-02-23 09:03:22 +00001436 Val = Chain.getValue(0);
1437 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001438 Val = DAG.getNode(ISD::BITCAST, dl, CopyVT, Val);
Evan Cheng79fb3b42009-02-20 20:43:02 +00001439 } else {
1440 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1441 CopyVT, InFlag).getValue(1);
1442 Val = Chain.getValue(0);
1443 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001444 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001445 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001446 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001447
Dan Gohman98ca4f22009-08-05 01:29:28 +00001448 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001449}
1450
1451
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001452//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001453// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001454//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001455// StdCall calling convention seems to be standard for many Windows' API
1456// routines and around. It differs from C calling convention just a little:
1457// callee should clean up the stack, not caller. Symbols should be also
1458// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001459// For info on fast calling convention see Fast Calling Convention (tail call)
1460// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001461
Dan Gohman98ca4f22009-08-05 01:29:28 +00001462/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001463/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001464static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1465 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001466 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001467
Dan Gohman98ca4f22009-08-05 01:29:28 +00001468 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001469}
1470
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001471/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001472/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001473static bool
1474ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1475 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001476 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001477
Dan Gohman98ca4f22009-08-05 01:29:28 +00001478 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001479}
1480
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001481/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1482/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001483/// the specific parameter attribute. The copy will be passed as a byval
1484/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001485static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001486CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001487 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1488 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001489 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001490
Dale Johannesendd64c412009-02-04 00:33:20 +00001491 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Mon P Wang20adc9d2010-04-04 03:10:48 +00001492 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001493 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001494}
1495
Chris Lattner29689432010-03-11 00:22:57 +00001496/// IsTailCallConvention - Return true if the calling convention is one that
1497/// supports tail call optimization.
1498static bool IsTailCallConvention(CallingConv::ID CC) {
1499 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1500}
1501
Evan Cheng0c439eb2010-01-27 00:07:07 +00001502/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1503/// a tailcall target by changing its ABI.
1504static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001505 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001506}
1507
Dan Gohman98ca4f22009-08-05 01:29:28 +00001508SDValue
1509X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001510 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001511 const SmallVectorImpl<ISD::InputArg> &Ins,
1512 DebugLoc dl, SelectionDAG &DAG,
1513 const CCValAssign &VA,
1514 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001515 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001516 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001517 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001518 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001519 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001520 EVT ValVT;
1521
1522 // If value is passed by pointer we have address passed instead of the value
1523 // itself.
1524 if (VA.getLocInfo() == CCValAssign::Indirect)
1525 ValVT = VA.getLocVT();
1526 else
1527 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001528
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001529 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001530 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001531 // In case of tail call optimization mark all arguments mutable. Since they
1532 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001533 if (Flags.isByVal()) {
1534 int FI = MFI->CreateFixedObject(Flags.getByValSize(),
Evan Chenged2ae132010-07-03 00:40:23 +00001535 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001536 return DAG.getFrameIndex(FI, getPointerTy());
1537 } else {
1538 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001539 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001540 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1541 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001542 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001543 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001544 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001545}
1546
Dan Gohman475871a2008-07-27 21:46:04 +00001547SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001548X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001549 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001550 bool isVarArg,
1551 const SmallVectorImpl<ISD::InputArg> &Ins,
1552 DebugLoc dl,
1553 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001554 SmallVectorImpl<SDValue> &InVals)
1555 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001556 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001557 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001558
Gordon Henriksen86737662008-01-05 16:56:59 +00001559 const Function* Fn = MF.getFunction();
1560 if (Fn->hasExternalLinkage() &&
1561 Subtarget->isTargetCygMing() &&
1562 Fn->getName() == "main")
1563 FuncInfo->setForceFramePointer(true);
1564
Evan Cheng1bc78042006-04-26 01:20:17 +00001565 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001566 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001567 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001568
Chris Lattner29689432010-03-11 00:22:57 +00001569 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1570 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001571
Chris Lattner638402b2007-02-28 07:00:42 +00001572 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001573 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001574 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1575 ArgLocs, *DAG.getContext());
Duncan Sands45907662010-10-31 13:21:44 +00001576 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001577
Chris Lattnerf39f7712007-02-28 05:46:49 +00001578 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001579 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001580 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1581 CCValAssign &VA = ArgLocs[i];
1582 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1583 // places.
1584 assert(VA.getValNo() != LastVal &&
1585 "Don't support value assigned to multiple locs yet");
1586 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001587
Chris Lattnerf39f7712007-02-28 05:46:49 +00001588 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001589 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001590 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001591 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001592 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001593 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001594 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001595 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001596 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001597 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001598 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001599 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1600 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001601 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001602 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001603 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001604 RC = X86::VR64RegisterClass;
1605 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001606 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001607
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001608 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001609 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001610
Chris Lattnerf39f7712007-02-28 05:46:49 +00001611 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1612 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1613 // right size.
1614 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001615 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001616 DAG.getValueType(VA.getValVT()));
1617 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001618 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001619 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001620 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001621 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001622
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001623 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001624 // Handle MMX values passed in XMM regs.
1625 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001626 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1627 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001628 } else
1629 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001630 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001631 } else {
1632 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001633 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001634 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001635
1636 // If value is passed via pointer - do a load.
1637 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001638 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1639 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001640
Dan Gohman98ca4f22009-08-05 01:29:28 +00001641 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001642 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001643
Dan Gohman61a92132008-04-21 23:59:07 +00001644 // The x86-64 ABI for returning structs by value requires that we copy
1645 // the sret argument into %rax for the return. Save the argument into
1646 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001647 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001648 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1649 unsigned Reg = FuncInfo->getSRetReturnReg();
1650 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001651 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001652 FuncInfo->setSRetReturnReg(Reg);
1653 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001654 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001655 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001656 }
1657
Chris Lattnerf39f7712007-02-28 05:46:49 +00001658 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001659 // Align stack specially for tail calls.
1660 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001661 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001662
Evan Cheng1bc78042006-04-26 01:20:17 +00001663 // If the function takes variable number of arguments, make a frame index for
1664 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001665 if (isVarArg) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001666 if (!IsWin64 && (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1667 CallConv != CallingConv::X86_ThisCall))) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001668 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001669 }
1670 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001671 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1672
1673 // FIXME: We should really autogenerate these arrays
1674 static const unsigned GPR64ArgRegsWin64[] = {
1675 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001676 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001677 static const unsigned GPR64ArgRegs64Bit[] = {
1678 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1679 };
1680 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001681 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1682 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1683 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001684 const unsigned *GPR64ArgRegs;
1685 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001686
1687 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001688 // The XMM registers which might contain var arg parameters are shadowed
1689 // in their paired GPR. So we only need to save the GPR to their home
1690 // slots.
1691 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001692 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001693 } else {
1694 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1695 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001696
1697 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001698 }
1699 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1700 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001701
Devang Patel578efa92009-06-05 21:57:13 +00001702 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001703 assert(!(NumXMMRegs && !Subtarget->hasXMM()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001704 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001705 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001706 "SSE register cannot be used when SSE is disabled!");
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001707 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasXMM())
Torok Edwin3f142c32009-02-01 18:15:56 +00001708 // Kernel mode asks for SSE to be disabled, so don't push them
1709 // on the stack.
1710 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001711
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001712 if (IsWin64) {
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001713 const TargetFrameInfo &TFI = *getTargetMachine().getFrameInfo();
1714 // Get to the caller-allocated home save location. Add 8 to account
1715 // for the return address.
1716 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001717 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001718 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001719 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
1720 } else {
1721 // For X86-64, if there are vararg parameters that are passed via
1722 // registers, then we must store them to their spots on the stack so they
1723 // may be loaded by deferencing the result of va_next.
1724 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1725 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1726 FuncInfo->setRegSaveFrameIndex(
1727 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001728 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001729 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001730
Gordon Henriksen86737662008-01-05 16:56:59 +00001731 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001732 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001733 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1734 getPointerTy());
1735 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001736 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001737 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1738 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001739 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
1740 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001741 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001742 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001743 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001744 MachinePointerInfo::getFixedStack(
1745 FuncInfo->getRegSaveFrameIndex(), Offset),
1746 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001747 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001748 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001749 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001750
Dan Gohmanface41a2009-08-16 21:24:25 +00001751 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1752 // Now store the XMM (fp + vector) parameter registers.
1753 SmallVector<SDValue, 11> SaveXMMOps;
1754 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001755
Dan Gohmanface41a2009-08-16 21:24:25 +00001756 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
1757 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1758 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001759
Dan Gohman1e93df62010-04-17 14:41:14 +00001760 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1761 FuncInfo->getRegSaveFrameIndex()));
1762 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1763 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001764
Dan Gohmanface41a2009-08-16 21:24:25 +00001765 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001766 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Dan Gohmanface41a2009-08-16 21:24:25 +00001767 X86::VR128RegisterClass);
1768 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1769 SaveXMMOps.push_back(Val);
1770 }
1771 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1772 MVT::Other,
1773 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001774 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001775
1776 if (!MemOps.empty())
1777 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1778 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001779 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001780 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001781
Gordon Henriksen86737662008-01-05 16:56:59 +00001782 // Some CCs need callee pop.
Dan Gohman4d3d6e12010-05-27 18:43:40 +00001783 if (Subtarget->IsCalleePop(isVarArg, CallConv)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001784 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001785 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001786 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001787 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001788 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001789 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001790 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001791
Gordon Henriksen86737662008-01-05 16:56:59 +00001792 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001793 // RegSaveFrameIndex is X86-64 only.
1794 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001795 if (CallConv == CallingConv::X86_FastCall ||
1796 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001797 // fastcc functions can't have varargs.
1798 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001799 }
Evan Cheng25caf632006-05-23 21:06:34 +00001800
Dan Gohman98ca4f22009-08-05 01:29:28 +00001801 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001802}
1803
Dan Gohman475871a2008-07-27 21:46:04 +00001804SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001805X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1806 SDValue StackPtr, SDValue Arg,
1807 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001808 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001809 ISD::ArgFlagsTy Flags) const {
Anton Korobeynikovc7c62bb2010-09-02 22:31:32 +00001810 const unsigned FirstStackArgOffset = (Subtarget->isTargetWin64() ? 32 : 0);
1811 unsigned LocMemOffset = FirstStackArgOffset + VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001812 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001813 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001814 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001815 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001816
1817 return DAG.getStore(Chain, dl, Arg, PtrOff,
1818 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001819 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001820}
1821
Bill Wendling64e87322009-01-16 19:25:27 +00001822/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001823/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001824SDValue
1825X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001826 SDValue &OutRetAddr, SDValue Chain,
1827 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001828 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001829 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001830 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001831 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001832
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001833 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001834 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1835 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001836 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001837}
1838
1839/// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1840/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001841static SDValue
1842EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001843 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001844 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001845 // Store the return address to the appropriate stack slot.
1846 if (!FPDiff) return Chain;
1847 // Calculate the new stack slot for the return address.
1848 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001849 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001850 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001851 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001852 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001853 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001854 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001855 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001856 return Chain;
1857}
1858
Dan Gohman98ca4f22009-08-05 01:29:28 +00001859SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001860X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001861 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001862 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001863 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001864 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001865 const SmallVectorImpl<ISD::InputArg> &Ins,
1866 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001867 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001868 MachineFunction &MF = DAG.getMachineFunction();
1869 bool Is64Bit = Subtarget->is64Bit();
1870 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00001871 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001872
Evan Cheng5f941932010-02-05 02:21:12 +00001873 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00001874 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00001875 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1876 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001877 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00001878
1879 // Sibcalls are automatically detected tailcalls which do not require
1880 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00001881 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00001882 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00001883
1884 if (isTailCall)
1885 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00001886 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00001887
Chris Lattner29689432010-03-11 00:22:57 +00001888 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1889 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001890
Chris Lattner638402b2007-02-28 07:00:42 +00001891 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00001892 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001893 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1894 ArgLocs, *DAG.getContext());
Duncan Sands45907662010-10-31 13:21:44 +00001895 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001896
Chris Lattner423c5f42007-02-28 05:31:48 +00001897 // Get a count of how many bytes are to be pushed on the stack.
1898 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00001899 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00001900 // This is a sibcall. The memory operands are available in caller's
1901 // own caller's stack.
1902 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00001903 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00001904 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001905
Gordon Henriksen86737662008-01-05 16:56:59 +00001906 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00001907 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001908 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00001909 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00001910 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1911 FPDiff = NumBytesCallerPushed - NumBytes;
1912
1913 // Set the delta of movement of the returnaddr stackslot.
1914 // But only set if delta is greater than previous delta.
1915 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1916 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
1917 }
1918
Evan Chengf22f9b32010-02-06 03:28:46 +00001919 if (!IsSibcall)
1920 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001921
Dan Gohman475871a2008-07-27 21:46:04 +00001922 SDValue RetAddrFrIdx;
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001923 // Load return adress for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00001924 if (isTailCall && FPDiff)
1925 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
1926 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00001927
Dan Gohman475871a2008-07-27 21:46:04 +00001928 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1929 SmallVector<SDValue, 8> MemOpChains;
1930 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00001931
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001932 // Walk the register/memloc assignments, inserting copies/loads. In the case
1933 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00001934 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1935 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001936 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00001937 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00001938 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00001939 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00001940
Chris Lattner423c5f42007-02-28 05:31:48 +00001941 // Promote the value if needed.
1942 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001943 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00001944 case CCValAssign::Full: break;
1945 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001946 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001947 break;
1948 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001949 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001950 break;
1951 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001952 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
1953 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001954 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00001955 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
1956 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001957 } else
1958 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
1959 break;
1960 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001961 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001962 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001963 case CCValAssign::Indirect: {
1964 // Store the argument.
1965 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00001966 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001967 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00001968 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001969 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001970 Arg = SpillSlot;
1971 break;
1972 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00001973 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001974
Chris Lattner423c5f42007-02-28 05:31:48 +00001975 if (VA.isRegLoc()) {
1976 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00001977 if (isVarArg && Subtarget->isTargetWin64()) {
1978 // Win64 ABI requires argument XMM reg to be copied to the corresponding
1979 // shadow reg if callee is a varargs function.
1980 unsigned ShadowReg = 0;
1981 switch (VA.getLocReg()) {
1982 case X86::XMM0: ShadowReg = X86::RCX; break;
1983 case X86::XMM1: ShadowReg = X86::RDX; break;
1984 case X86::XMM2: ShadowReg = X86::R8; break;
1985 case X86::XMM3: ShadowReg = X86::R9; break;
1986 }
1987 if (ShadowReg)
1988 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
1989 }
Evan Chengf22f9b32010-02-06 03:28:46 +00001990 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00001991 assert(VA.isMemLoc());
1992 if (StackPtr.getNode() == 0)
1993 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
1994 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
1995 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001996 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001997 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001998
Evan Cheng32fe1032006-05-25 00:59:30 +00001999 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002000 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002001 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002002
Evan Cheng347d5f72006-04-28 21:29:37 +00002003 // Build a sequence of copy-to-reg nodes chained together with token chain
2004 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002005 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002006 // Tail call byval lowering might overwrite argument registers so in case of
2007 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002008 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002009 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002010 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002011 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002012 InFlag = Chain.getValue(1);
2013 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002014
Chris Lattner88e1fd52009-07-09 04:24:46 +00002015 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002016 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2017 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002018 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002019 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2020 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002021 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002022 InFlag);
2023 InFlag = Chain.getValue(1);
2024 } else {
2025 // If we are tail calling and generating PIC/GOT style code load the
2026 // address of the callee into ECX. The value in ecx is used as target of
2027 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2028 // for tail calls on PIC/GOT architectures. Normally we would just put the
2029 // address of GOT into ebx and then call target@PLT. But for tail calls
2030 // ebx would be restored (since ebx is callee saved) before jumping to the
2031 // target@PLT.
2032
2033 // Note: The actual moving to ECX is done further down.
2034 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2035 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2036 !G->getGlobal()->hasProtectedVisibility())
2037 Callee = LowerGlobalAddress(Callee, DAG);
2038 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002039 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002040 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002041 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002042
Nate Begemanc8ea6732010-07-21 20:49:52 +00002043 if (Is64Bit && isVarArg && !Subtarget->isTargetWin64()) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002044 // From AMD64 ABI document:
2045 // For calls that may call functions that use varargs or stdargs
2046 // (prototype-less calls or calls to functions containing ellipsis (...) in
2047 // the declaration) %al is used as hidden argument to specify the number
2048 // of SSE registers used. The contents of %al do not need to match exactly
2049 // the number of registers, but must be an ubound on the number of SSE
2050 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002051
Gordon Henriksen86737662008-01-05 16:56:59 +00002052 // Count the number of XMM registers allocated.
2053 static const unsigned XMMArgRegs[] = {
2054 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2055 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2056 };
2057 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00002058 assert((Subtarget->hasXMM() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002059 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002060
Dale Johannesendd64c412009-02-04 00:33:20 +00002061 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002062 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002063 InFlag = Chain.getValue(1);
2064 }
2065
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002066
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002067 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002068 if (isTailCall) {
2069 // Force all the incoming stack arguments to be loaded from the stack
2070 // before any new outgoing arguments are stored to the stack, because the
2071 // outgoing stack slots may alias the incoming argument stack slots, and
2072 // the alias isn't otherwise explicit. This is slightly more conservative
2073 // than necessary, because it means that each store effectively depends
2074 // on every argument instead of just those arguments it would clobber.
2075 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2076
Dan Gohman475871a2008-07-27 21:46:04 +00002077 SmallVector<SDValue, 8> MemOpChains2;
2078 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002079 int FI = 0;
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002080 // Do not flag preceeding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002081 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002082 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002083 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2084 CCValAssign &VA = ArgLocs[i];
2085 if (VA.isRegLoc())
2086 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002087 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002088 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002089 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002090 // Create frame index.
2091 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002092 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002093 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002094 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002095
Duncan Sands276dcbd2008-03-21 09:14:45 +00002096 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002097 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002098 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002099 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002100 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002101 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002102 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002103
Dan Gohman98ca4f22009-08-05 01:29:28 +00002104 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2105 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002106 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002107 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002108 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002109 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002110 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002111 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002112 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002113 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002114 }
2115 }
2116
2117 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002118 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002119 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002120
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002121 // Copy arguments to their registers.
2122 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002123 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002124 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002125 InFlag = Chain.getValue(1);
2126 }
Dan Gohman475871a2008-07-27 21:46:04 +00002127 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002128
Gordon Henriksen86737662008-01-05 16:56:59 +00002129 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002130 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002131 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002132 }
2133
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002134 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2135 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2136 // In the 64-bit large code model, we have to make all calls
2137 // through a register, since the call instruction's 32-bit
2138 // pc-relative offset may not be large enough to hold the whole
2139 // address.
2140 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002141 // If the callee is a GlobalAddress node (quite common, every direct call
2142 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2143 // it.
2144
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002145 // We should use extra load for direct calls to dllimported functions in
2146 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002147 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002148 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002149 unsigned char OpFlags = 0;
Eric Christopherfd179292009-08-27 18:07:15 +00002150
Chris Lattner48a7d022009-07-09 05:02:21 +00002151 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2152 // external symbols most go through the PLT in PIC mode. If the symbol
2153 // has hidden or protected visibility, or if it is static or local, then
2154 // we don't need to use the PLT - we can directly call it.
2155 if (Subtarget->isTargetELF() &&
2156 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002157 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002158 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002159 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002160 (GV->isDeclaration() || GV->isWeakForLinker()) &&
2161 Subtarget->getDarwinVers() < 9) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002162 // PC-relative references to external symbols should go through $stub,
2163 // unless we're building with the leopard linker or later, which
2164 // automatically synthesizes these stubs.
2165 OpFlags = X86II::MO_DARWIN_STUB;
2166 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002167
Devang Patel0d881da2010-07-06 22:08:15 +00002168 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002169 G->getOffset(), OpFlags);
2170 }
Bill Wendling056292f2008-09-16 21:48:12 +00002171 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002172 unsigned char OpFlags = 0;
2173
Evan Cheng1bf891a2010-12-01 22:59:46 +00002174 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2175 // external symbols should go through the PLT.
2176 if (Subtarget->isTargetELF() &&
2177 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2178 OpFlags = X86II::MO_PLT;
2179 } else if (Subtarget->isPICStyleStubAny() &&
2180 Subtarget->getDarwinVers() < 9) {
2181 // PC-relative references to external symbols should go through $stub,
2182 // unless we're building with the leopard linker or later, which
2183 // automatically synthesizes these stubs.
2184 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002185 }
Eric Christopherfd179292009-08-27 18:07:15 +00002186
Chris Lattner48a7d022009-07-09 05:02:21 +00002187 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2188 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002189 }
2190
Chris Lattnerd96d0722007-02-25 06:40:16 +00002191 // Returns a chain & a flag for retval copy to use.
Owen Anderson825b72b2009-08-11 20:47:22 +00002192 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00002193 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002194
Evan Chengf22f9b32010-02-06 03:28:46 +00002195 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002196 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2197 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002198 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002199 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002200
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002201 Ops.push_back(Chain);
2202 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002203
Dan Gohman98ca4f22009-08-05 01:29:28 +00002204 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002205 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002206
Gordon Henriksen86737662008-01-05 16:56:59 +00002207 // Add argument registers to the end of the list so that they are known live
2208 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002209 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2210 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2211 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002212
Evan Cheng586ccac2008-03-18 23:36:35 +00002213 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002214 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002215 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2216
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002217 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
2218 if (Is64Bit && isVarArg && !Subtarget->isTargetWin64())
Owen Anderson825b72b2009-08-11 20:47:22 +00002219 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002220
Gabor Greifba36cb52008-08-28 21:40:38 +00002221 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002222 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002223
Dan Gohman98ca4f22009-08-05 01:29:28 +00002224 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002225 // We used to do:
2226 //// If this is the first return lowered for this function, add the regs
2227 //// to the liveout set for the function.
2228 // This isn't right, although it's probably harmless on x86; liveouts
2229 // should be computed from returns not tail calls. Consider a void
2230 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002231 return DAG.getNode(X86ISD::TC_RETURN, dl,
2232 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002233 }
2234
Dale Johannesenace16102009-02-03 19:33:06 +00002235 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002236 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002237
Chris Lattner2d297092006-05-23 18:50:38 +00002238 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002239 unsigned NumBytesForCalleeToPush;
Dan Gohman4d3d6e12010-05-27 18:43:40 +00002240 if (Subtarget->IsCalleePop(isVarArg, CallConv))
Gordon Henriksen86737662008-01-05 16:56:59 +00002241 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002242 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002243 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002244 // pops the hidden struct pointer, so we have to push it back.
2245 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002246 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002247 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002248 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002249
Gordon Henriksenae636f82008-01-03 16:47:34 +00002250 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002251 if (!IsSibcall) {
2252 Chain = DAG.getCALLSEQ_END(Chain,
2253 DAG.getIntPtrConstant(NumBytes, true),
2254 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2255 true),
2256 InFlag);
2257 InFlag = Chain.getValue(1);
2258 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002259
Chris Lattner3085e152007-02-25 08:59:22 +00002260 // Handle result values, copying them out of physregs into vregs that we
2261 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002262 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2263 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002264}
2265
Evan Cheng25ab6902006-09-08 06:48:29 +00002266
2267//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002268// Fast Calling Convention (tail call) implementation
2269//===----------------------------------------------------------------------===//
2270
2271// Like std call, callee cleans arguments, convention except that ECX is
2272// reserved for storing the tail called function address. Only 2 registers are
2273// free for argument passing (inreg). Tail call optimization is performed
2274// provided:
2275// * tailcallopt is enabled
2276// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002277// On X86_64 architecture with GOT-style position independent code only local
2278// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002279// To keep the stack aligned according to platform abi the function
2280// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2281// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002282// If a tail called function callee has more arguments than the caller the
2283// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002284// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002285// original REtADDR, but before the saved framepointer or the spilled registers
2286// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2287// stack layout:
2288// arg1
2289// arg2
2290// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002291// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002292// move area ]
2293// (possible EBP)
2294// ESI
2295// EDI
2296// local1 ..
2297
2298/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2299/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002300unsigned
2301X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2302 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002303 MachineFunction &MF = DAG.getMachineFunction();
2304 const TargetMachine &TM = MF.getTarget();
2305 const TargetFrameInfo &TFI = *TM.getFrameInfo();
2306 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002307 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002308 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002309 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002310 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2311 // Number smaller than 12 so just add the difference.
2312 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2313 } else {
2314 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002315 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002316 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002317 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002318 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002319}
2320
Evan Cheng5f941932010-02-05 02:21:12 +00002321/// MatchingStackOffset - Return true if the given stack call argument is
2322/// already available in the same position (relatively) of the caller's
2323/// incoming argument stack.
2324static
2325bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2326 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2327 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002328 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2329 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002330 if (Arg.getOpcode() == ISD::CopyFromReg) {
2331 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
2332 if (!VR || TargetRegisterInfo::isPhysicalRegister(VR))
2333 return false;
2334 MachineInstr *Def = MRI->getVRegDef(VR);
2335 if (!Def)
2336 return false;
2337 if (!Flags.isByVal()) {
2338 if (!TII->isLoadFromStackSlot(Def, FI))
2339 return false;
2340 } else {
2341 unsigned Opcode = Def->getOpcode();
2342 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2343 Def->getOperand(1).isFI()) {
2344 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002345 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002346 } else
2347 return false;
2348 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002349 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2350 if (Flags.isByVal())
2351 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002352 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002353 // define @foo(%struct.X* %A) {
2354 // tail call @bar(%struct.X* byval %A)
2355 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002356 return false;
2357 SDValue Ptr = Ld->getBasePtr();
2358 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2359 if (!FINode)
2360 return false;
2361 FI = FINode->getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002362 } else
2363 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002364
Evan Cheng4cae1332010-03-05 08:38:04 +00002365 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002366 if (!MFI->isFixedObjectIndex(FI))
2367 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002368 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002369}
2370
Dan Gohman98ca4f22009-08-05 01:29:28 +00002371/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2372/// for tail call optimization. Targets which want to do tail call
2373/// optimization should implement this function.
2374bool
2375X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002376 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002377 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002378 bool isCalleeStructRet,
2379 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002380 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002381 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002382 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002383 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002384 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002385 CalleeCC != CallingConv::C)
2386 return false;
2387
Evan Cheng7096ae42010-01-29 06:45:59 +00002388 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002389 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002390 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002391 CallingConv::ID CallerCC = CallerF->getCallingConv();
2392 bool CCMatch = CallerCC == CalleeCC;
2393
Dan Gohman1797ed52010-02-08 20:27:50 +00002394 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002395 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002396 return true;
2397 return false;
2398 }
2399
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002400 // Look for obvious safe cases to perform tail call optimization that do not
2401 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002402
Evan Cheng2c12cb42010-03-26 16:26:03 +00002403 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2404 // emit a special epilogue.
2405 if (RegInfo->needsStackRealignment(MF))
2406 return false;
2407
Eric Christopher90eb4022010-07-22 00:26:08 +00002408 // Do not sibcall optimize vararg calls unless the call site is not passing
2409 // any arguments.
Evan Cheng3c262ee2010-03-26 02:13:13 +00002410 if (isVarArg && !Outs.empty())
Evan Cheng843bd692010-01-31 06:44:49 +00002411 return false;
2412
Evan Chenga375d472010-03-15 18:54:48 +00002413 // Also avoid sibcall optimization if either caller or callee uses struct
2414 // return semantics.
2415 if (isCalleeStructRet || isCallerStructRet)
2416 return false;
2417
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002418 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2419 // Therefore if it's not used by the call it is not safe to optimize this into
2420 // a sibcall.
2421 bool Unused = false;
2422 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2423 if (!Ins[i].Used) {
2424 Unused = true;
2425 break;
2426 }
2427 }
2428 if (Unused) {
2429 SmallVector<CCValAssign, 16> RVLocs;
2430 CCState CCInfo(CalleeCC, false, getTargetMachine(),
2431 RVLocs, *DAG.getContext());
2432 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002433 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002434 CCValAssign &VA = RVLocs[i];
2435 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2436 return false;
2437 }
2438 }
2439
Evan Cheng13617962010-04-30 01:12:32 +00002440 // If the calling conventions do not match, then we'd better make sure the
2441 // results are returned in the same way as what the caller expects.
2442 if (!CCMatch) {
2443 SmallVector<CCValAssign, 16> RVLocs1;
2444 CCState CCInfo1(CalleeCC, false, getTargetMachine(),
2445 RVLocs1, *DAG.getContext());
2446 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2447
2448 SmallVector<CCValAssign, 16> RVLocs2;
2449 CCState CCInfo2(CallerCC, false, getTargetMachine(),
2450 RVLocs2, *DAG.getContext());
2451 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2452
2453 if (RVLocs1.size() != RVLocs2.size())
2454 return false;
2455 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2456 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2457 return false;
2458 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2459 return false;
2460 if (RVLocs1[i].isRegLoc()) {
2461 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2462 return false;
2463 } else {
2464 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2465 return false;
2466 }
2467 }
2468 }
2469
Evan Chenga6bff982010-01-30 01:22:00 +00002470 // If the callee takes no arguments then go on to check the results of the
2471 // call.
2472 if (!Outs.empty()) {
2473 // Check if stack adjustment is needed. For now, do not do this if any
2474 // argument is passed on the stack.
2475 SmallVector<CCValAssign, 16> ArgLocs;
2476 CCState CCInfo(CalleeCC, isVarArg, getTargetMachine(),
2477 ArgLocs, *DAG.getContext());
Duncan Sands45907662010-10-31 13:21:44 +00002478 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Evan Chengb2c92902010-02-02 02:22:50 +00002479 if (CCInfo.getNextStackOffset()) {
2480 MachineFunction &MF = DAG.getMachineFunction();
2481 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2482 return false;
2483 if (Subtarget->isTargetWin64())
2484 // Win64 ABI has additional complications.
2485 return false;
2486
2487 // Check if the arguments are already laid out in the right way as
2488 // the caller's fixed stack objects.
2489 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002490 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2491 const X86InstrInfo *TII =
2492 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002493 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2494 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002495 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002496 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002497 if (VA.getLocInfo() == CCValAssign::Indirect)
2498 return false;
2499 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002500 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2501 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002502 return false;
2503 }
2504 }
2505 }
Evan Cheng9c044672010-05-29 01:35:22 +00002506
2507 // If the tailcall address may be in a register, then make sure it's
2508 // possible to register allocate for it. In 32-bit, the call address can
2509 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002510 // callee-saved registers are restored. These happen to be the same
2511 // registers used to pass 'inreg' arguments so watch out for those.
2512 if (!Subtarget->is64Bit() &&
2513 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002514 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002515 unsigned NumInRegs = 0;
2516 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2517 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002518 if (!VA.isRegLoc())
2519 continue;
2520 unsigned Reg = VA.getLocReg();
2521 switch (Reg) {
2522 default: break;
2523 case X86::EAX: case X86::EDX: case X86::ECX:
2524 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002525 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002526 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002527 }
2528 }
2529 }
Evan Chenga6bff982010-01-30 01:22:00 +00002530 }
Evan Chengb1712452010-01-27 06:25:16 +00002531
Dale Johannesend155d7e2010-10-25 22:17:05 +00002532 // An stdcall caller is expected to clean up its arguments; the callee
Dale Johannesen0e034562010-11-12 00:43:18 +00002533 // isn't going to do that.
Dale Johannesend155d7e2010-10-25 22:17:05 +00002534 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2535 return false;
2536
Evan Cheng86809cc2010-02-03 03:28:02 +00002537 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002538}
2539
Dan Gohman3df24e62008-09-03 23:12:08 +00002540FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002541X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2542 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002543}
2544
2545
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002546//===----------------------------------------------------------------------===//
2547// Other Lowering Hooks
2548//===----------------------------------------------------------------------===//
2549
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002550static bool MayFoldLoad(SDValue Op) {
2551 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2552}
2553
2554static bool MayFoldIntoStore(SDValue Op) {
2555 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2556}
2557
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002558static bool isTargetShuffle(unsigned Opcode) {
2559 switch(Opcode) {
2560 default: return false;
2561 case X86ISD::PSHUFD:
2562 case X86ISD::PSHUFHW:
2563 case X86ISD::PSHUFLW:
2564 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002565 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002566 case X86ISD::SHUFPS:
2567 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002568 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002569 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002570 case X86ISD::MOVLPS:
2571 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002572 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002573 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002574 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002575 case X86ISD::MOVSS:
2576 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002577 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002578 case X86ISD::UNPCKLPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002579 case X86ISD::PUNPCKLWD:
2580 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002581 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002582 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002583 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002584 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002585 case X86ISD::PUNPCKHWD:
2586 case X86ISD::PUNPCKHBW:
2587 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002588 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002589 return true;
2590 }
2591 return false;
2592}
2593
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002594static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002595 SDValue V1, SelectionDAG &DAG) {
2596 switch(Opc) {
2597 default: llvm_unreachable("Unknown x86 shuffle node");
2598 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002599 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002600 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002601 return DAG.getNode(Opc, dl, VT, V1);
2602 }
2603
2604 return SDValue();
2605}
2606
2607static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002608 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002609 switch(Opc) {
2610 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002611 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002612 case X86ISD::PSHUFHW:
2613 case X86ISD::PSHUFLW:
2614 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2615 }
2616
2617 return SDValue();
2618}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002619
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002620static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2621 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2622 switch(Opc) {
2623 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002624 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002625 case X86ISD::SHUFPD:
2626 case X86ISD::SHUFPS:
2627 return DAG.getNode(Opc, dl, VT, V1, V2,
2628 DAG.getConstant(TargetMask, MVT::i8));
2629 }
2630 return SDValue();
2631}
2632
2633static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2634 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2635 switch(Opc) {
2636 default: llvm_unreachable("Unknown x86 shuffle node");
2637 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002638 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002639 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002640 case X86ISD::MOVLPS:
2641 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002642 case X86ISD::MOVSS:
2643 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002644 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002645 case X86ISD::UNPCKLPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002646 case X86ISD::PUNPCKLWD:
2647 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002648 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002649 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002650 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002651 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002652 case X86ISD::PUNPCKHWD:
2653 case X86ISD::PUNPCKHBW:
2654 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002655 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002656 return DAG.getNode(Opc, dl, VT, V1, V2);
2657 }
2658 return SDValue();
2659}
2660
Dan Gohmand858e902010-04-17 15:26:15 +00002661SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002662 MachineFunction &MF = DAG.getMachineFunction();
2663 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2664 int ReturnAddrIndex = FuncInfo->getRAIndex();
2665
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002666 if (ReturnAddrIndex == 0) {
2667 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002668 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002669 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002670 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002671 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002672 }
2673
Evan Cheng25ab6902006-09-08 06:48:29 +00002674 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002675}
2676
2677
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002678bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2679 bool hasSymbolicDisplacement) {
2680 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002681 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002682 return false;
2683
2684 // If we don't have a symbolic displacement - we don't have any extra
2685 // restrictions.
2686 if (!hasSymbolicDisplacement)
2687 return true;
2688
2689 // FIXME: Some tweaks might be needed for medium code model.
2690 if (M != CodeModel::Small && M != CodeModel::Kernel)
2691 return false;
2692
2693 // For small code model we assume that latest object is 16MB before end of 31
2694 // bits boundary. We may also accept pretty large negative constants knowing
2695 // that all objects are in the positive half of address space.
2696 if (M == CodeModel::Small && Offset < 16*1024*1024)
2697 return true;
2698
2699 // For kernel code model we know that all object resist in the negative half
2700 // of 32bits address space. We may not accept negative offsets, since they may
2701 // be just off and we may accept pretty large positive ones.
2702 if (M == CodeModel::Kernel && Offset > 0)
2703 return true;
2704
2705 return false;
2706}
2707
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002708/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2709/// specific condition code, returning the condition code and the LHS/RHS of the
2710/// comparison to make.
2711static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2712 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002713 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002714 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2715 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2716 // X > -1 -> X == 0, jump !sign.
2717 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002718 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002719 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2720 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002721 return X86::COND_S;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002722 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002723 // X < 1 -> X <= 0
2724 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002725 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002726 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002727 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002728
Evan Chengd9558e02006-01-06 00:43:03 +00002729 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002730 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002731 case ISD::SETEQ: return X86::COND_E;
2732 case ISD::SETGT: return X86::COND_G;
2733 case ISD::SETGE: return X86::COND_GE;
2734 case ISD::SETLT: return X86::COND_L;
2735 case ISD::SETLE: return X86::COND_LE;
2736 case ISD::SETNE: return X86::COND_NE;
2737 case ISD::SETULT: return X86::COND_B;
2738 case ISD::SETUGT: return X86::COND_A;
2739 case ISD::SETULE: return X86::COND_BE;
2740 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002741 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002742 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002743
Chris Lattner4c78e022008-12-23 23:42:27 +00002744 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002745
Chris Lattner4c78e022008-12-23 23:42:27 +00002746 // If LHS is a foldable load, but RHS is not, flip the condition.
2747 if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) &&
2748 !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) {
2749 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2750 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002751 }
2752
Chris Lattner4c78e022008-12-23 23:42:27 +00002753 switch (SetCCOpcode) {
2754 default: break;
2755 case ISD::SETOLT:
2756 case ISD::SETOLE:
2757 case ISD::SETUGT:
2758 case ISD::SETUGE:
2759 std::swap(LHS, RHS);
2760 break;
2761 }
2762
2763 // On a floating point condition, the flags are set as follows:
2764 // ZF PF CF op
2765 // 0 | 0 | 0 | X > Y
2766 // 0 | 0 | 1 | X < Y
2767 // 1 | 0 | 0 | X == Y
2768 // 1 | 1 | 1 | unordered
2769 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002770 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002771 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002772 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002773 case ISD::SETOLT: // flipped
2774 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002775 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002776 case ISD::SETOLE: // flipped
2777 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002778 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002779 case ISD::SETUGT: // flipped
2780 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002781 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002782 case ISD::SETUGE: // flipped
2783 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002784 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002785 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002786 case ISD::SETNE: return X86::COND_NE;
2787 case ISD::SETUO: return X86::COND_P;
2788 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00002789 case ISD::SETOEQ:
2790 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00002791 }
Evan Chengd9558e02006-01-06 00:43:03 +00002792}
2793
Evan Cheng4a460802006-01-11 00:33:36 +00002794/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2795/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002796/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002797static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002798 switch (X86CC) {
2799 default:
2800 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00002801 case X86::COND_B:
2802 case X86::COND_BE:
2803 case X86::COND_E:
2804 case X86::COND_P:
2805 case X86::COND_A:
2806 case X86::COND_AE:
2807 case X86::COND_NE:
2808 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00002809 return true;
2810 }
2811}
2812
Evan Chengeb2f9692009-10-27 19:56:55 +00002813/// isFPImmLegal - Returns true if the target can instruction select the
2814/// specified FP immediate natively. If false, the legalizer will
2815/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00002816bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00002817 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
2818 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
2819 return true;
2820 }
2821 return false;
2822}
2823
Nate Begeman9008ca62009-04-27 18:41:29 +00002824/// isUndefOrInRange - Return true if Val is undef or if its value falls within
2825/// the specified range (L, H].
2826static bool isUndefOrInRange(int Val, int Low, int Hi) {
2827 return (Val < 0) || (Val >= Low && Val < Hi);
2828}
2829
2830/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
2831/// specified value.
2832static bool isUndefOrEqual(int Val, int CmpVal) {
2833 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00002834 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00002835 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00002836}
2837
Nate Begeman9008ca62009-04-27 18:41:29 +00002838/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
2839/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
2840/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00002841static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00002842 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00002843 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00002844 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00002845 return (Mask[0] < 2 && Mask[1] < 2);
2846 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002847}
2848
Nate Begeman9008ca62009-04-27 18:41:29 +00002849bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002850 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002851 N->getMask(M);
2852 return ::isPSHUFDMask(M, N->getValueType(0));
2853}
Evan Cheng0188ecb2006-03-22 18:59:22 +00002854
Nate Begeman9008ca62009-04-27 18:41:29 +00002855/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
2856/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00002857static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002858 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00002859 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002860
Nate Begeman9008ca62009-04-27 18:41:29 +00002861 // Lower quadword copied in order or undef.
2862 for (int i = 0; i != 4; ++i)
2863 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00002864 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002865
Evan Cheng506d3df2006-03-29 23:07:14 +00002866 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00002867 for (int i = 4; i != 8; ++i)
2868 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00002869 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002870
Evan Cheng506d3df2006-03-29 23:07:14 +00002871 return true;
2872}
2873
Nate Begeman9008ca62009-04-27 18:41:29 +00002874bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002875 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002876 N->getMask(M);
2877 return ::isPSHUFHWMask(M, N->getValueType(0));
2878}
Evan Cheng506d3df2006-03-29 23:07:14 +00002879
Nate Begeman9008ca62009-04-27 18:41:29 +00002880/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
2881/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00002882static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002883 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00002884 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002885
Rafael Espindola15684b22009-04-24 12:40:33 +00002886 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00002887 for (int i = 4; i != 8; ++i)
2888 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00002889 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002890
Rafael Espindola15684b22009-04-24 12:40:33 +00002891 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00002892 for (int i = 0; i != 4; ++i)
2893 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00002894 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002895
Rafael Espindola15684b22009-04-24 12:40:33 +00002896 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00002897}
2898
Nate Begeman9008ca62009-04-27 18:41:29 +00002899bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002900 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002901 N->getMask(M);
2902 return ::isPSHUFLWMask(M, N->getValueType(0));
2903}
2904
Nate Begemana09008b2009-10-19 02:17:23 +00002905/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
2906/// is suitable for input to PALIGNR.
2907static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
2908 bool hasSSSE3) {
2909 int i, e = VT.getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00002910
Nate Begemana09008b2009-10-19 02:17:23 +00002911 // Do not handle v2i64 / v2f64 shuffles with palignr.
2912 if (e < 4 || !hasSSSE3)
2913 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002914
Nate Begemana09008b2009-10-19 02:17:23 +00002915 for (i = 0; i != e; ++i)
2916 if (Mask[i] >= 0)
2917 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002918
Nate Begemana09008b2009-10-19 02:17:23 +00002919 // All undef, not a palignr.
2920 if (i == e)
2921 return false;
2922
2923 // Determine if it's ok to perform a palignr with only the LHS, since we
2924 // don't have access to the actual shuffle elements to see if RHS is undef.
2925 bool Unary = Mask[i] < (int)e;
2926 bool NeedsUnary = false;
2927
2928 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002929
Nate Begemana09008b2009-10-19 02:17:23 +00002930 // Check the rest of the elements to see if they are consecutive.
2931 for (++i; i != e; ++i) {
2932 int m = Mask[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00002933 if (m < 0)
Nate Begemana09008b2009-10-19 02:17:23 +00002934 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002935
Nate Begemana09008b2009-10-19 02:17:23 +00002936 Unary = Unary && (m < (int)e);
2937 NeedsUnary = NeedsUnary || (m < s);
2938
2939 if (NeedsUnary && !Unary)
2940 return false;
2941 if (Unary && m != ((s+i) & (e-1)))
2942 return false;
2943 if (!Unary && m != (s+i))
2944 return false;
2945 }
2946 return true;
2947}
2948
2949bool X86::isPALIGNRMask(ShuffleVectorSDNode *N) {
2950 SmallVector<int, 8> M;
2951 N->getMask(M);
2952 return ::isPALIGNRMask(M, N->getValueType(0), true);
2953}
2954
Evan Cheng14aed5e2006-03-24 01:18:28 +00002955/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
2956/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersone50ed302009-08-10 22:56:29 +00002957static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002958 int NumElems = VT.getVectorNumElements();
2959 if (NumElems != 2 && NumElems != 4)
2960 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002961
Nate Begeman9008ca62009-04-27 18:41:29 +00002962 int Half = NumElems / 2;
2963 for (int i = 0; i < Half; ++i)
2964 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002965 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002966 for (int i = Half; i < NumElems; ++i)
2967 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002968 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002969
Evan Cheng14aed5e2006-03-24 01:18:28 +00002970 return true;
2971}
2972
Nate Begeman9008ca62009-04-27 18:41:29 +00002973bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
2974 SmallVector<int, 8> M;
2975 N->getMask(M);
2976 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00002977}
2978
Evan Cheng213d2cf2007-05-17 18:45:50 +00002979/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00002980/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
2981/// half elements to come from vector 1 (which would equal the dest.) and
2982/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00002983static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002984 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00002985
2986 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00002987 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002988
Nate Begeman9008ca62009-04-27 18:41:29 +00002989 int Half = NumElems / 2;
2990 for (int i = 0; i < Half; ++i)
2991 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002992 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002993 for (int i = Half; i < NumElems; ++i)
2994 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002995 return false;
2996 return true;
2997}
2998
Nate Begeman9008ca62009-04-27 18:41:29 +00002999static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
3000 SmallVector<int, 8> M;
3001 N->getMask(M);
3002 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003003}
3004
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003005/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3006/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003007bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
3008 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003009 return false;
3010
Evan Cheng2064a2b2006-03-28 06:50:32 +00003011 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003012 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3013 isUndefOrEqual(N->getMaskElt(1), 7) &&
3014 isUndefOrEqual(N->getMaskElt(2), 2) &&
3015 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003016}
3017
Nate Begeman0b10b912009-11-07 23:17:15 +00003018/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3019/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3020/// <2, 3, 2, 3>
3021bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
3022 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00003023
Nate Begeman0b10b912009-11-07 23:17:15 +00003024 if (NumElems != 4)
3025 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003026
Nate Begeman0b10b912009-11-07 23:17:15 +00003027 return isUndefOrEqual(N->getMaskElt(0), 2) &&
3028 isUndefOrEqual(N->getMaskElt(1), 3) &&
3029 isUndefOrEqual(N->getMaskElt(2), 2) &&
3030 isUndefOrEqual(N->getMaskElt(3), 3);
3031}
3032
Evan Cheng5ced1d82006-04-06 23:23:56 +00003033/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3034/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003035bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3036 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003037
Evan Cheng5ced1d82006-04-06 23:23:56 +00003038 if (NumElems != 2 && NumElems != 4)
3039 return false;
3040
Evan Chengc5cdff22006-04-07 21:53:05 +00003041 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003042 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003043 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003044
Evan Chengc5cdff22006-04-07 21:53:05 +00003045 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003046 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003047 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003048
3049 return true;
3050}
3051
Nate Begeman0b10b912009-11-07 23:17:15 +00003052/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3053/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3054bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003055 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003056
Evan Cheng5ced1d82006-04-06 23:23:56 +00003057 if (NumElems != 2 && NumElems != 4)
3058 return false;
3059
Evan Chengc5cdff22006-04-07 21:53:05 +00003060 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003061 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003062 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003063
Nate Begeman9008ca62009-04-27 18:41:29 +00003064 for (unsigned i = 0; i < NumElems/2; ++i)
3065 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003066 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003067
3068 return true;
3069}
3070
Evan Cheng0038e592006-03-28 00:39:58 +00003071/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3072/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003073static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003074 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003075 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003076 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng0038e592006-03-28 00:39:58 +00003077 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003078
Nate Begeman9008ca62009-04-27 18:41:29 +00003079 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3080 int BitI = Mask[i];
3081 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00003082 if (!isUndefOrEqual(BitI, j))
3083 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003084 if (V2IsSplat) {
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003085 if (!isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003086 return false;
3087 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003088 if (!isUndefOrEqual(BitI1, j + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003089 return false;
3090 }
Evan Cheng0038e592006-03-28 00:39:58 +00003091 }
Evan Cheng0038e592006-03-28 00:39:58 +00003092 return true;
3093}
3094
Nate Begeman9008ca62009-04-27 18:41:29 +00003095bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3096 SmallVector<int, 8> M;
3097 N->getMask(M);
3098 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003099}
3100
Evan Cheng4fcb9222006-03-28 02:43:26 +00003101/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3102/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003103static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003104 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003105 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003106 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003107 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003108
Nate Begeman9008ca62009-04-27 18:41:29 +00003109 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3110 int BitI = Mask[i];
3111 int BitI1 = Mask[i+1];
Chris Lattner5a88b832007-02-25 07:10:00 +00003112 if (!isUndefOrEqual(BitI, j + NumElts/2))
Evan Chengc5cdff22006-04-07 21:53:05 +00003113 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003114 if (V2IsSplat) {
Chris Lattner5a88b832007-02-25 07:10:00 +00003115 if (isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003116 return false;
3117 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003118 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003119 return false;
3120 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003121 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003122 return true;
3123}
3124
Nate Begeman9008ca62009-04-27 18:41:29 +00003125bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3126 SmallVector<int, 8> M;
3127 N->getMask(M);
3128 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003129}
3130
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003131/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3132/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3133/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003134static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003135 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003136 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003137 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003138
Nate Begeman9008ca62009-04-27 18:41:29 +00003139 for (int i = 0, j = 0; i != NumElems; i += 2, ++j) {
3140 int BitI = Mask[i];
3141 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00003142 if (!isUndefOrEqual(BitI, j))
3143 return false;
3144 if (!isUndefOrEqual(BitI1, j))
3145 return false;
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003146 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003147 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003148}
3149
Nate Begeman9008ca62009-04-27 18:41:29 +00003150bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3151 SmallVector<int, 8> M;
3152 N->getMask(M);
3153 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3154}
3155
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003156/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3157/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3158/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003159static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003160 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003161 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3162 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003163
Nate Begeman9008ca62009-04-27 18:41:29 +00003164 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3165 int BitI = Mask[i];
3166 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003167 if (!isUndefOrEqual(BitI, j))
3168 return false;
3169 if (!isUndefOrEqual(BitI1, j))
3170 return false;
3171 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003172 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003173}
3174
Nate Begeman9008ca62009-04-27 18:41:29 +00003175bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3176 SmallVector<int, 8> M;
3177 N->getMask(M);
3178 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3179}
3180
Evan Cheng017dcc62006-04-21 01:05:10 +00003181/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3182/// specifies a shuffle of elements that is suitable for input to MOVSS,
3183/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003184static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003185 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003186 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003187
3188 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003189
Nate Begeman9008ca62009-04-27 18:41:29 +00003190 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003191 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003192
Nate Begeman9008ca62009-04-27 18:41:29 +00003193 for (int i = 1; i < NumElts; ++i)
3194 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003195 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003196
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003197 return true;
3198}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003199
Nate Begeman9008ca62009-04-27 18:41:29 +00003200bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3201 SmallVector<int, 8> M;
3202 N->getMask(M);
3203 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003204}
3205
Evan Cheng017dcc62006-04-21 01:05:10 +00003206/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3207/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003208/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003209static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003210 bool V2IsSplat = false, bool V2IsUndef = false) {
3211 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003212 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003213 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003214
Nate Begeman9008ca62009-04-27 18:41:29 +00003215 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003216 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003217
Nate Begeman9008ca62009-04-27 18:41:29 +00003218 for (int i = 1; i < NumOps; ++i)
3219 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3220 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3221 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003222 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003223
Evan Cheng39623da2006-04-20 08:58:49 +00003224 return true;
3225}
3226
Nate Begeman9008ca62009-04-27 18:41:29 +00003227static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003228 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003229 SmallVector<int, 8> M;
3230 N->getMask(M);
3231 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003232}
3233
Evan Chengd9539472006-04-14 21:59:03 +00003234/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3235/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003236bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N) {
3237 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003238 return false;
3239
3240 // Expect 1, 1, 3, 3
Rafael Espindola15684b22009-04-24 12:40:33 +00003241 for (unsigned i = 0; i < 2; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003242 int Elt = N->getMaskElt(i);
3243 if (Elt >= 0 && Elt != 1)
3244 return false;
Rafael Espindola15684b22009-04-24 12:40:33 +00003245 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003246
3247 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003248 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003249 int Elt = N->getMaskElt(i);
3250 if (Elt >= 0 && Elt != 3)
3251 return false;
3252 if (Elt == 3)
3253 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003254 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003255 // Don't use movshdup if it can be done with a shufps.
Nate Begeman9008ca62009-04-27 18:41:29 +00003256 // FIXME: verify that matching u, u, 3, 3 is what we want.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003257 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003258}
3259
3260/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3261/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003262bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N) {
3263 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003264 return false;
3265
3266 // Expect 0, 0, 2, 2
Nate Begeman9008ca62009-04-27 18:41:29 +00003267 for (unsigned i = 0; i < 2; ++i)
3268 if (N->getMaskElt(i) > 0)
3269 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003270
3271 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003272 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003273 int Elt = N->getMaskElt(i);
3274 if (Elt >= 0 && Elt != 2)
3275 return false;
3276 if (Elt == 2)
3277 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003278 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003279 // Don't use movsldup if it can be done with a shufps.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003280 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003281}
3282
Evan Cheng0b457f02008-09-25 20:50:48 +00003283/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3284/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003285bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3286 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopherfd179292009-08-27 18:07:15 +00003287
Nate Begeman9008ca62009-04-27 18:41:29 +00003288 for (int i = 0; i < e; ++i)
3289 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003290 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003291 for (int i = 0; i < e; ++i)
3292 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003293 return false;
3294 return true;
3295}
3296
Evan Cheng63d33002006-03-22 08:01:21 +00003297/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003298/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003299unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003300 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3301 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3302
Evan Chengb9df0ca2006-03-22 02:53:00 +00003303 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3304 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003305 for (int i = 0; i < NumOperands; ++i) {
3306 int Val = SVOp->getMaskElt(NumOperands-i-1);
3307 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003308 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003309 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003310 if (i != NumOperands - 1)
3311 Mask <<= Shift;
3312 }
Evan Cheng63d33002006-03-22 08:01:21 +00003313 return Mask;
3314}
3315
Evan Cheng506d3df2006-03-29 23:07:14 +00003316/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003317/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003318unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003319 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003320 unsigned Mask = 0;
3321 // 8 nodes, but we only care about the last 4.
3322 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003323 int Val = SVOp->getMaskElt(i);
3324 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003325 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003326 if (i != 4)
3327 Mask <<= 2;
3328 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003329 return Mask;
3330}
3331
3332/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003333/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003334unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003335 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003336 unsigned Mask = 0;
3337 // 8 nodes, but we only care about the first 4.
3338 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003339 int Val = SVOp->getMaskElt(i);
3340 if (Val >= 0)
3341 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00003342 if (i != 0)
3343 Mask <<= 2;
3344 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003345 return Mask;
3346}
3347
Nate Begemana09008b2009-10-19 02:17:23 +00003348/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3349/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3350unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3351 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3352 EVT VVT = N->getValueType(0);
3353 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3354 int Val = 0;
3355
3356 unsigned i, e;
3357 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3358 Val = SVOp->getMaskElt(i);
3359 if (Val >= 0)
3360 break;
3361 }
3362 return (Val - i) * EltSize;
3363}
3364
Evan Cheng37b73872009-07-30 08:33:02 +00003365/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3366/// constant +0.0.
3367bool X86::isZeroNode(SDValue Elt) {
3368 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00003369 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00003370 (isa<ConstantFPSDNode>(Elt) &&
3371 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3372}
3373
Nate Begeman9008ca62009-04-27 18:41:29 +00003374/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3375/// their permute mask.
3376static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3377 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003378 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003379 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00003380 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00003381
Nate Begeman5a5ca152009-04-29 05:20:52 +00003382 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003383 int idx = SVOp->getMaskElt(i);
3384 if (idx < 0)
3385 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003386 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003387 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003388 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003389 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003390 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003391 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3392 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003393}
3394
Evan Cheng779ccea2007-12-07 21:30:01 +00003395/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3396/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00003397static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00003398 unsigned NumElems = VT.getVectorNumElements();
3399 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003400 int idx = Mask[i];
3401 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003402 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003403 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003404 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003405 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003406 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003407 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003408}
3409
Evan Cheng533a0aa2006-04-19 20:35:22 +00003410/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3411/// match movhlps. The lower half elements should come from upper half of
3412/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003413/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00003414static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
3415 if (Op->getValueType(0).getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00003416 return false;
3417 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003418 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003419 return false;
3420 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003421 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003422 return false;
3423 return true;
3424}
3425
Evan Cheng5ced1d82006-04-06 23:23:56 +00003426/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00003427/// is promoted to a vector. It also returns the LoadSDNode by reference if
3428/// required.
3429static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00003430 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3431 return false;
3432 N = N->getOperand(0).getNode();
3433 if (!ISD::isNON_EXTLoad(N))
3434 return false;
3435 if (LD)
3436 *LD = cast<LoadSDNode>(N);
3437 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003438}
3439
Evan Cheng533a0aa2006-04-19 20:35:22 +00003440/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3441/// match movlp{s|d}. The lower half elements should come from lower half of
3442/// V1 (and in order), and the upper half elements should come from the upper
3443/// half of V2 (and in order). And since V1 will become the source of the
3444/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003445static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3446 ShuffleVectorSDNode *Op) {
Evan Cheng466685d2006-10-09 20:57:25 +00003447 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003448 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00003449 // Is V2 is a vector load, don't do this transformation. We will try to use
3450 // load folding shufps op.
3451 if (ISD::isNON_EXTLoad(V2))
3452 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003453
Nate Begeman5a5ca152009-04-29 05:20:52 +00003454 unsigned NumElems = Op->getValueType(0).getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003455
Evan Cheng533a0aa2006-04-19 20:35:22 +00003456 if (NumElems != 2 && NumElems != 4)
3457 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003458 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003459 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003460 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003461 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003462 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003463 return false;
3464 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003465}
3466
Evan Cheng39623da2006-04-20 08:58:49 +00003467/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
3468/// all the same.
3469static bool isSplatVector(SDNode *N) {
3470 if (N->getOpcode() != ISD::BUILD_VECTOR)
3471 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003472
Dan Gohman475871a2008-07-27 21:46:04 +00003473 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00003474 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
3475 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003476 return false;
3477 return true;
3478}
3479
Evan Cheng213d2cf2007-05-17 18:45:50 +00003480/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00003481/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00003482/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00003483static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00003484 SDValue V1 = N->getOperand(0);
3485 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003486 unsigned NumElems = N->getValueType(0).getVectorNumElements();
3487 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003488 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003489 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003490 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00003491 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
3492 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003493 if (Opc != ISD::BUILD_VECTOR ||
3494 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00003495 return false;
3496 } else if (Idx >= 0) {
3497 unsigned Opc = V1.getOpcode();
3498 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
3499 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003500 if (Opc != ISD::BUILD_VECTOR ||
3501 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00003502 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00003503 }
3504 }
3505 return true;
3506}
3507
3508/// getZeroVector - Returns a vector of specified type with all zero elements.
3509///
Owen Andersone50ed302009-08-10 22:56:29 +00003510static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003511 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003512 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003513
Dale Johannesen0488fb62010-09-30 23:57:10 +00003514 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003515 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00003516 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003517 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003518 if (HasSSE2) { // SSE2
3519 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3520 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
3521 } else { // SSE1
3522 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
3523 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
3524 }
3525 } else if (VT.getSizeInBits() == 256) { // AVX
3526 // 256-bit logic and arithmetic instructions in AVX are
3527 // all floating-point, no support for integer ops. Default
3528 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00003529 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003530 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
3531 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00003532 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003533 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00003534}
3535
Chris Lattner8a594482007-11-25 00:24:49 +00003536/// getOnesVector - Returns a vector of specified type with all bits set.
3537///
Owen Andersone50ed302009-08-10 22:56:29 +00003538static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003539 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003540
Chris Lattner8a594482007-11-25 00:24:49 +00003541 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
3542 // type. This ensures they get CSE'd.
Owen Anderson825b72b2009-08-11 20:47:22 +00003543 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +00003544 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003545 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003546 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00003547}
3548
3549
Evan Cheng39623da2006-04-20 08:58:49 +00003550/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
3551/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00003552static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003553 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003554 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003555
Evan Cheng39623da2006-04-20 08:58:49 +00003556 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003557 SmallVector<int, 8> MaskVec;
3558 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00003559
Nate Begeman5a5ca152009-04-29 05:20:52 +00003560 for (unsigned i = 0; i != NumElems; ++i) {
3561 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003562 MaskVec[i] = NumElems;
3563 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00003564 }
Evan Cheng39623da2006-04-20 08:58:49 +00003565 }
Evan Cheng39623da2006-04-20 08:58:49 +00003566 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00003567 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
3568 SVOp->getOperand(1), &MaskVec[0]);
3569 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00003570}
3571
Evan Cheng017dcc62006-04-21 01:05:10 +00003572/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
3573/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00003574static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003575 SDValue V2) {
3576 unsigned NumElems = VT.getVectorNumElements();
3577 SmallVector<int, 8> Mask;
3578 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00003579 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003580 Mask.push_back(i);
3581 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00003582}
3583
Nate Begeman9008ca62009-04-27 18:41:29 +00003584/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003585static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003586 SDValue V2) {
3587 unsigned NumElems = VT.getVectorNumElements();
3588 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00003589 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003590 Mask.push_back(i);
3591 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00003592 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003593 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00003594}
3595
Nate Begeman9008ca62009-04-27 18:41:29 +00003596/// getUnpackhMask - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003597static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003598 SDValue V2) {
3599 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00003600 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00003601 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00003602 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003603 Mask.push_back(i + Half);
3604 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00003605 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003606 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00003607}
3608
Bruno Cardoso Lopesbb0a9482010-08-13 17:50:47 +00003609/// PromoteSplat - Promote a splat of v4i32, v8i16 or v16i8 to v4f32.
3610static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003611 EVT PVT = MVT::v4f32;
Owen Andersone50ed302009-08-10 22:56:29 +00003612 EVT VT = SV->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00003613 DebugLoc dl = SV->getDebugLoc();
3614 SDValue V1 = SV->getOperand(0);
3615 int NumElems = VT.getVectorNumElements();
3616 int EltNo = SV->getSplatIndex();
Rafael Espindola15684b22009-04-24 12:40:33 +00003617
Nate Begeman9008ca62009-04-27 18:41:29 +00003618 // unpack elements to the correct location
3619 while (NumElems > 4) {
3620 if (EltNo < NumElems/2) {
3621 V1 = getUnpackl(DAG, dl, VT, V1, V1);
3622 } else {
3623 V1 = getUnpackh(DAG, dl, VT, V1, V1);
3624 EltNo -= NumElems/2;
3625 }
3626 NumElems >>= 1;
3627 }
Eric Christopherfd179292009-08-27 18:07:15 +00003628
Nate Begeman9008ca62009-04-27 18:41:29 +00003629 // Perform the splat.
3630 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003631 V1 = DAG.getNode(ISD::BITCAST, dl, PVT, V1);
Nate Begeman9008ca62009-04-27 18:41:29 +00003632 V1 = DAG.getVectorShuffle(PVT, dl, V1, DAG.getUNDEF(PVT), &SplatMask[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003633 return DAG.getNode(ISD::BITCAST, dl, VT, V1);
Evan Chengc575ca22006-04-17 20:43:08 +00003634}
3635
Evan Chengba05f722006-04-21 23:03:30 +00003636/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00003637/// vector of zero or undef vector. This produces a shuffle where the low
3638/// element of V2 is swizzled into the zero/undef vector, landing at element
3639/// 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 +00003640static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00003641 bool isZero, bool HasSSE2,
3642 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003643 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003644 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00003645 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
3646 unsigned NumElems = VT.getVectorNumElements();
3647 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00003648 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003649 // If this is the insertion idx, put the low elt of V2 here.
3650 MaskVec.push_back(i == Idx ? NumElems : i);
3651 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00003652}
3653
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003654/// getShuffleScalarElt - Returns the scalar element that will make up the ith
3655/// element of the result of the vector shuffle.
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003656SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
3657 unsigned Depth) {
3658 if (Depth == 6)
3659 return SDValue(); // Limit search depth.
3660
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003661 SDValue V = SDValue(N, 0);
3662 EVT VT = V.getValueType();
3663 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003664
3665 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
3666 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
3667 Index = SV->getMaskElt(Index);
3668
3669 if (Index < 0)
3670 return DAG.getUNDEF(VT.getVectorElementType());
3671
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003672 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003673 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003674 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00003675 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003676
3677 // Recurse into target specific vector shuffles to find scalars.
3678 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003679 int NumElems = VT.getVectorNumElements();
3680 SmallVector<unsigned, 16> ShuffleMask;
3681 SDValue ImmN;
3682
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003683 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003684 case X86ISD::SHUFPS:
3685 case X86ISD::SHUFPD:
3686 ImmN = N->getOperand(N->getNumOperands()-1);
3687 DecodeSHUFPSMask(NumElems,
3688 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3689 ShuffleMask);
3690 break;
3691 case X86ISD::PUNPCKHBW:
3692 case X86ISD::PUNPCKHWD:
3693 case X86ISD::PUNPCKHDQ:
3694 case X86ISD::PUNPCKHQDQ:
3695 DecodePUNPCKHMask(NumElems, ShuffleMask);
3696 break;
3697 case X86ISD::UNPCKHPS:
3698 case X86ISD::UNPCKHPD:
3699 DecodeUNPCKHPMask(NumElems, ShuffleMask);
3700 break;
3701 case X86ISD::PUNPCKLBW:
3702 case X86ISD::PUNPCKLWD:
3703 case X86ISD::PUNPCKLDQ:
3704 case X86ISD::PUNPCKLQDQ:
3705 DecodePUNPCKLMask(NumElems, ShuffleMask);
3706 break;
3707 case X86ISD::UNPCKLPS:
3708 case X86ISD::UNPCKLPD:
3709 DecodeUNPCKLPMask(NumElems, ShuffleMask);
3710 break;
3711 case X86ISD::MOVHLPS:
3712 DecodeMOVHLPSMask(NumElems, ShuffleMask);
3713 break;
3714 case X86ISD::MOVLHPS:
3715 DecodeMOVLHPSMask(NumElems, ShuffleMask);
3716 break;
3717 case X86ISD::PSHUFD:
3718 ImmN = N->getOperand(N->getNumOperands()-1);
3719 DecodePSHUFMask(NumElems,
3720 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3721 ShuffleMask);
3722 break;
3723 case X86ISD::PSHUFHW:
3724 ImmN = N->getOperand(N->getNumOperands()-1);
3725 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3726 ShuffleMask);
3727 break;
3728 case X86ISD::PSHUFLW:
3729 ImmN = N->getOperand(N->getNumOperands()-1);
3730 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3731 ShuffleMask);
3732 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003733 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003734 case X86ISD::MOVSD: {
3735 // The index 0 always comes from the first element of the second source,
3736 // this is why MOVSS and MOVSD are used in the first place. The other
3737 // elements come from the other positions of the first source vector.
3738 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003739 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
3740 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003741 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003742 default:
3743 assert("not implemented for target shuffle node");
3744 return SDValue();
3745 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003746
3747 Index = ShuffleMask[Index];
3748 if (Index < 0)
3749 return DAG.getUNDEF(VT.getVectorElementType());
3750
3751 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
3752 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
3753 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003754 }
3755
3756 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003757 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003758 V = V.getOperand(0);
3759 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003760 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003761
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003762 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003763 return SDValue();
3764 }
3765
3766 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
3767 return (Index == 0) ? V.getOperand(0)
3768 : DAG.getUNDEF(VT.getVectorElementType());
3769
3770 if (V.getOpcode() == ISD::BUILD_VECTOR)
3771 return V.getOperand(Index);
3772
3773 return SDValue();
3774}
3775
3776/// getNumOfConsecutiveZeros - Return the number of elements of a vector
3777/// shuffle operation which come from a consecutively from a zero. The
3778/// search can start in two diferent directions, from left or right.
3779static
3780unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
3781 bool ZerosFromLeft, SelectionDAG &DAG) {
3782 int i = 0;
3783
3784 while (i < NumElems) {
3785 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003786 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003787 if (!(Elt.getNode() &&
3788 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
3789 break;
3790 ++i;
3791 }
3792
3793 return i;
3794}
3795
3796/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
3797/// MaskE correspond consecutively to elements from one of the vector operands,
3798/// starting from its index OpIdx. Also tell OpNum which source vector operand.
3799static
3800bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
3801 int OpIdx, int NumElems, unsigned &OpNum) {
3802 bool SeenV1 = false;
3803 bool SeenV2 = false;
3804
3805 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
3806 int Idx = SVOp->getMaskElt(i);
3807 // Ignore undef indicies
3808 if (Idx < 0)
3809 continue;
3810
3811 if (Idx < NumElems)
3812 SeenV1 = true;
3813 else
3814 SeenV2 = true;
3815
3816 // Only accept consecutive elements from the same vector
3817 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
3818 return false;
3819 }
3820
3821 OpNum = SeenV1 ? 0 : 1;
3822 return true;
3823}
3824
3825/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
3826/// logical left shift of a vector.
3827static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
3828 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
3829 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
3830 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
3831 false /* check zeros from right */, DAG);
3832 unsigned OpSrc;
3833
3834 if (!NumZeros)
3835 return false;
3836
3837 // Considering the elements in the mask that are not consecutive zeros,
3838 // check if they consecutively come from only one of the source vectors.
3839 //
3840 // V1 = {X, A, B, C} 0
3841 // \ \ \ /
3842 // vector_shuffle V1, V2 <1, 2, 3, X>
3843 //
3844 if (!isShuffleMaskConsecutive(SVOp,
3845 0, // Mask Start Index
3846 NumElems-NumZeros-1, // Mask End Index
3847 NumZeros, // Where to start looking in the src vector
3848 NumElems, // Number of elements in vector
3849 OpSrc)) // Which source operand ?
3850 return false;
3851
3852 isLeft = false;
3853 ShAmt = NumZeros;
3854 ShVal = SVOp->getOperand(OpSrc);
3855 return true;
3856}
3857
3858/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
3859/// logical left shift of a vector.
3860static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
3861 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
3862 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
3863 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
3864 true /* check zeros from left */, DAG);
3865 unsigned OpSrc;
3866
3867 if (!NumZeros)
3868 return false;
3869
3870 // Considering the elements in the mask that are not consecutive zeros,
3871 // check if they consecutively come from only one of the source vectors.
3872 //
3873 // 0 { A, B, X, X } = V2
3874 // / \ / /
3875 // vector_shuffle V1, V2 <X, X, 4, 5>
3876 //
3877 if (!isShuffleMaskConsecutive(SVOp,
3878 NumZeros, // Mask Start Index
3879 NumElems-1, // Mask End Index
3880 0, // Where to start looking in the src vector
3881 NumElems, // Number of elements in vector
3882 OpSrc)) // Which source operand ?
3883 return false;
3884
3885 isLeft = true;
3886 ShAmt = NumZeros;
3887 ShVal = SVOp->getOperand(OpSrc);
3888 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00003889}
3890
3891/// isVectorShift - Returns true if the shuffle can be implemented as a
3892/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003893static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00003894 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003895 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
3896 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
3897 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00003898
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003899 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00003900}
3901
Evan Chengc78d3b42006-04-24 18:01:45 +00003902/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
3903///
Dan Gohman475871a2008-07-27 21:46:04 +00003904static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00003905 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00003906 SelectionDAG &DAG,
3907 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003908 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00003909 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003910
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003911 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003912 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003913 bool First = true;
3914 for (unsigned i = 0; i < 16; ++i) {
3915 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
3916 if (ThisIsNonZero && First) {
3917 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003918 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003919 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003920 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003921 First = false;
3922 }
3923
3924 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00003925 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003926 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
3927 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003928 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003929 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00003930 }
3931 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003932 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
3933 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
3934 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00003935 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003936 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00003937 } else
3938 ThisElt = LastElt;
3939
Gabor Greifba36cb52008-08-28 21:40:38 +00003940 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00003941 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00003942 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00003943 }
3944 }
3945
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003946 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00003947}
3948
Bill Wendlinga348c562007-03-22 18:42:45 +00003949/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00003950///
Dan Gohman475871a2008-07-27 21:46:04 +00003951static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00003952 unsigned NumNonZero, unsigned NumZero,
3953 SelectionDAG &DAG,
3954 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003955 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00003956 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003957
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003958 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003959 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003960 bool First = true;
3961 for (unsigned i = 0; i < 8; ++i) {
3962 bool isNonZero = (NonZeros & (1 << i)) != 0;
3963 if (isNonZero) {
3964 if (First) {
3965 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003966 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003967 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003968 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003969 First = false;
3970 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003971 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003972 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00003973 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00003974 }
3975 }
3976
3977 return V;
3978}
3979
Evan Chengf26ffe92008-05-29 08:22:04 +00003980/// getVShift - Return a vector logical shift node.
3981///
Owen Andersone50ed302009-08-10 22:56:29 +00003982static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00003983 unsigned NumBits, SelectionDAG &DAG,
3984 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003985 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00003986 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003987 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
3988 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00003989 DAG.getNode(Opc, dl, ShVT, SrcOp,
Gabor Greif327ef032008-08-28 23:19:51 +00003990 DAG.getConstant(NumBits, TLI.getShiftAmountTy())));
Evan Chengf26ffe92008-05-29 08:22:04 +00003991}
3992
Dan Gohman475871a2008-07-27 21:46:04 +00003993SDValue
Evan Chengc3630942009-12-09 21:00:30 +00003994X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00003995 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00003996
Evan Chengc3630942009-12-09 21:00:30 +00003997 // Check if the scalar load can be widened into a vector load. And if
3998 // the address is "base + cst" see if the cst can be "absorbed" into
3999 // the shuffle mask.
4000 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4001 SDValue Ptr = LD->getBasePtr();
4002 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4003 return SDValue();
4004 EVT PVT = LD->getValueType(0);
4005 if (PVT != MVT::i32 && PVT != MVT::f32)
4006 return SDValue();
4007
4008 int FI = -1;
4009 int64_t Offset = 0;
4010 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4011 FI = FINode->getIndex();
4012 Offset = 0;
4013 } else if (Ptr.getOpcode() == ISD::ADD &&
4014 isa<ConstantSDNode>(Ptr.getOperand(1)) &&
4015 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4016 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4017 Offset = Ptr.getConstantOperandVal(1);
4018 Ptr = Ptr.getOperand(0);
4019 } else {
4020 return SDValue();
4021 }
4022
4023 SDValue Chain = LD->getChain();
4024 // Make sure the stack object alignment is at least 16.
4025 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
4026 if (DAG.InferPtrAlignment(Ptr) < 16) {
4027 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004028 // Can't change the alignment. FIXME: It's possible to compute
4029 // the exact stack offset and reference FI + adjust offset instead.
4030 // If someone *really* cares about this. That's the way to implement it.
4031 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004032 } else {
4033 MFI->setObjectAlignment(FI, 16);
4034 }
4035 }
4036
4037 // (Offset % 16) must be multiple of 4. Then address is then
4038 // Ptr + (Offset & ~15).
4039 if (Offset < 0)
4040 return SDValue();
4041 if ((Offset % 16) & 3)
4042 return SDValue();
4043 int64_t StartOffset = Offset & ~15;
4044 if (StartOffset)
4045 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4046 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4047
4048 int EltNo = (Offset - StartOffset) >> 2;
4049 int Mask[4] = { EltNo, EltNo, EltNo, EltNo };
4050 EVT VT = (PVT == MVT::i32) ? MVT::v4i32 : MVT::v4f32;
Chris Lattner51abfe42010-09-21 06:02:19 +00004051 SDValue V1 = DAG.getLoad(VT, dl, Chain, Ptr,
4052 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004053 false, false, 0);
Evan Chengc3630942009-12-09 21:00:30 +00004054 // Canonicalize it to a v4i32 shuffle.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004055 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, V1);
4056 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Chengc3630942009-12-09 21:00:30 +00004057 DAG.getVectorShuffle(MVT::v4i32, dl, V1,
Chris Lattner51abfe42010-09-21 06:02:19 +00004058 DAG.getUNDEF(MVT::v4i32),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004059 }
4060
4061 return SDValue();
4062}
4063
Michael J. Spencerec38de22010-10-10 22:04:20 +00004064/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4065/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004066/// load which has the same value as a build_vector whose operands are 'elts'.
4067///
4068/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004069///
Nate Begeman1449f292010-03-24 22:19:06 +00004070/// FIXME: we'd also like to handle the case where the last elements are zero
4071/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4072/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004073static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004074 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004075 EVT EltVT = VT.getVectorElementType();
4076 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004077
Nate Begemanfdea31a2010-03-24 20:49:50 +00004078 LoadSDNode *LDBase = NULL;
4079 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004080
Nate Begeman1449f292010-03-24 22:19:06 +00004081 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004082 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004083 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004084 for (unsigned i = 0; i < NumElems; ++i) {
4085 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004086
Nate Begemanfdea31a2010-03-24 20:49:50 +00004087 if (!Elt.getNode() ||
4088 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4089 return SDValue();
4090 if (!LDBase) {
4091 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4092 return SDValue();
4093 LDBase = cast<LoadSDNode>(Elt.getNode());
4094 LastLoadedElt = i;
4095 continue;
4096 }
4097 if (Elt.getOpcode() == ISD::UNDEF)
4098 continue;
4099
4100 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4101 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4102 return SDValue();
4103 LastLoadedElt = i;
4104 }
Nate Begeman1449f292010-03-24 22:19:06 +00004105
4106 // If we have found an entire vector of loads and undefs, then return a large
4107 // load of the entire vector width starting at the base pointer. If we found
4108 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004109 if (LastLoadedElt == NumElems - 1) {
4110 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004111 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004112 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004113 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004114 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004115 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004116 LDBase->isVolatile(), LDBase->isNonTemporal(),
4117 LDBase->getAlignment());
4118 } else if (NumElems == 4 && LastLoadedElt == 1) {
4119 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4120 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004121 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4122 Ops, 2, MVT::i32,
4123 LDBase->getMemOperand());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004124 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004125 }
4126 return SDValue();
4127}
4128
Evan Chengc3630942009-12-09 21:00:30 +00004129SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004130X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004131 DebugLoc dl = Op.getDebugLoc();
Chris Lattner6e80e442010-08-28 17:15:43 +00004132 // All zero's are handled with pxor in SSE2 and above, xorps in SSE1.
4133 // All one's are handled with pcmpeqd. In AVX, zero's are handled with
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004134 // vpxor in 128-bit and xor{pd,ps} in 256-bit, but no 256 version of pcmpeqd
4135 // is present, so AllOnes is ignored.
4136 if (ISD::isBuildVectorAllZeros(Op.getNode()) ||
4137 (Op.getValueType().getSizeInBits() != 256 &&
4138 ISD::isBuildVectorAllOnes(Op.getNode()))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004139 // Canonicalize this to <4 x i32> (SSE) to
Chris Lattner8a594482007-11-25 00:24:49 +00004140 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
4141 // eliminated on x86-32 hosts.
Dale Johannesen0488fb62010-09-30 23:57:10 +00004142 if (Op.getValueType() == MVT::v4i32)
Chris Lattner8a594482007-11-25 00:24:49 +00004143 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004144
Gabor Greifba36cb52008-08-28 21:40:38 +00004145 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00004146 return getOnesVector(Op.getValueType(), DAG, dl);
4147 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00004148 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004149
Owen Andersone50ed302009-08-10 22:56:29 +00004150 EVT VT = Op.getValueType();
4151 EVT ExtVT = VT.getVectorElementType();
4152 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004153
4154 unsigned NumElems = Op.getNumOperands();
4155 unsigned NumZero = 0;
4156 unsigned NumNonZero = 0;
4157 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004158 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004159 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004160 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004161 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00004162 if (Elt.getOpcode() == ISD::UNDEF)
4163 continue;
4164 Values.insert(Elt);
4165 if (Elt.getOpcode() != ISD::Constant &&
4166 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004167 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00004168 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00004169 NumZero++;
4170 else {
4171 NonZeros |= (1 << i);
4172 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004173 }
4174 }
4175
Chris Lattner97a2a562010-08-26 05:24:29 +00004176 // All undef vector. Return an UNDEF. All zero vectors were handled above.
4177 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00004178 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004179
Chris Lattner67f453a2008-03-09 05:42:06 +00004180 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00004181 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004182 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00004183 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00004184
Chris Lattner62098042008-03-09 01:05:04 +00004185 // If this is an insertion of an i64 value on x86-32, and if the top bits of
4186 // the value are obviously zero, truncate the value to i32 and do the
4187 // insertion that way. Only do this if the value is non-constant or if the
4188 // value is a constant being inserted into element 0. It is cheaper to do
4189 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00004190 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00004191 (!IsAllConstants || Idx == 0)) {
4192 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004193 // Handle SSE only.
4194 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4195 EVT VecVT = MVT::v4i32;
4196 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004197
Chris Lattner62098042008-03-09 01:05:04 +00004198 // Truncate the value (which may itself be a constant) to i32, and
4199 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00004200 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00004201 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00004202 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4203 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004204
Chris Lattner62098042008-03-09 01:05:04 +00004205 // Now we have our 32-bit value zero extended in the low element of
4206 // a vector. If Idx != 0, swizzle it into place.
4207 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004208 SmallVector<int, 4> Mask;
4209 Mask.push_back(Idx);
4210 for (unsigned i = 1; i != VecElts; ++i)
4211 Mask.push_back(i);
4212 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00004213 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00004214 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004215 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004216 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00004217 }
4218 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004219
Chris Lattner19f79692008-03-08 22:59:52 +00004220 // If we have a constant or non-constant insertion into the low element of
4221 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4222 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00004223 // depending on what the source datatype is.
4224 if (Idx == 0) {
4225 if (NumZero == 0) {
4226 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00004227 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4228 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00004229 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4230 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4231 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4232 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00004233 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4234 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00004235 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4236 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00004237 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4238 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4239 Subtarget->hasSSE2(), DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004240 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00004241 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004242 }
Evan Chengf26ffe92008-05-29 08:22:04 +00004243
4244 // Is it a vector logical left shift?
4245 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00004246 X86::isZeroNode(Op.getOperand(0)) &&
4247 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004248 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004249 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004250 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004251 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00004252 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004253 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004254
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004255 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00004256 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004257
Chris Lattner19f79692008-03-08 22:59:52 +00004258 // Otherwise, if this is a vector with i32 or f32 elements, and the element
4259 // is a non-constant being inserted into an element other than the low one,
4260 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
4261 // movd/movss) to move this into the low element, then shuffle it into
4262 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004263 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00004264 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00004265
Evan Cheng0db9fe62006-04-25 20:13:52 +00004266 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00004267 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4268 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00004269 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004270 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00004271 MaskVec.push_back(i == Idx ? 0 : 1);
4272 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004273 }
4274 }
4275
Chris Lattner67f453a2008-03-09 05:42:06 +00004276 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00004277 if (Values.size() == 1) {
4278 if (EVTBits == 32) {
4279 // Instead of a shuffle like this:
4280 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4281 // Check if it's possible to issue this instead.
4282 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4283 unsigned Idx = CountTrailingZeros_32(NonZeros);
4284 SDValue Item = Op.getOperand(Idx);
4285 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4286 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4287 }
Dan Gohman475871a2008-07-27 21:46:04 +00004288 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004289 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004290
Dan Gohmana3941172007-07-24 22:55:08 +00004291 // A vector full of immediates; various special cases are already
4292 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004293 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00004294 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00004295
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004296 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004297 if (EVTBits == 64) {
4298 if (NumNonZero == 1) {
4299 // One half is zero or undef.
4300 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00004301 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004302 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00004303 return getShuffleVectorZeroOrUndef(V2, Idx, true,
4304 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00004305 }
Dan Gohman475871a2008-07-27 21:46:04 +00004306 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00004307 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004308
4309 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00004310 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004311 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00004312 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004313 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004314 }
4315
Bill Wendling826f36f2007-03-28 00:57:11 +00004316 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004317 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00004318 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004319 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004320 }
4321
4322 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004323 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00004324 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004325 if (NumElems == 4 && NumZero > 0) {
4326 for (unsigned i = 0; i < 4; ++i) {
4327 bool isZero = !(NonZeros & (1 << i));
4328 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00004329 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004330 else
Dale Johannesenace16102009-02-03 19:33:06 +00004331 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004332 }
4333
4334 for (unsigned i = 0; i < 2; ++i) {
4335 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
4336 default: break;
4337 case 0:
4338 V[i] = V[i*2]; // Must be a zero vector.
4339 break;
4340 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00004341 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004342 break;
4343 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00004344 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004345 break;
4346 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00004347 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004348 break;
4349 }
4350 }
4351
Nate Begeman9008ca62009-04-27 18:41:29 +00004352 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004353 bool Reverse = (NonZeros & 0x3) == 2;
4354 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004355 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004356 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
4357 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004358 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
4359 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004360 }
4361
Nate Begemanfdea31a2010-03-24 20:49:50 +00004362 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
4363 // Check for a build vector of consecutive loads.
4364 for (unsigned i = 0; i < NumElems; ++i)
4365 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004366
Nate Begemanfdea31a2010-03-24 20:49:50 +00004367 // Check for elements which are consecutive loads.
4368 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
4369 if (LD.getNode())
4370 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004371
4372 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004373 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00004374 SDValue Result;
4375 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
4376 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
4377 else
4378 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004379
Chris Lattner24faf612010-08-28 17:59:08 +00004380 for (unsigned i = 1; i < NumElems; ++i) {
4381 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
4382 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00004383 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00004384 }
4385 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00004386 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00004387
Chris Lattner6e80e442010-08-28 17:15:43 +00004388 // Otherwise, expand into a number of unpckl*, start by extending each of
4389 // our (non-undef) elements to the full vector width with the element in the
4390 // bottom slot of the vector (which generates no code for SSE).
4391 for (unsigned i = 0; i < NumElems; ++i) {
4392 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
4393 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
4394 else
4395 V[i] = DAG.getUNDEF(VT);
4396 }
4397
4398 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004399 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
4400 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
4401 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00004402 unsigned EltStride = NumElems >> 1;
4403 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00004404 for (unsigned i = 0; i < EltStride; ++i) {
4405 // If V[i+EltStride] is undef and this is the first round of mixing,
4406 // then it is safe to just drop this shuffle: V[i] is already in the
4407 // right place, the one element (since it's the first round) being
4408 // inserted as undef can be dropped. This isn't safe for successive
4409 // rounds because they will permute elements within both vectors.
4410 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
4411 EltStride == NumElems/2)
4412 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004413
Chris Lattner6e80e442010-08-28 17:15:43 +00004414 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00004415 }
Chris Lattner6e80e442010-08-28 17:15:43 +00004416 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004417 }
4418 return V[0];
4419 }
Dan Gohman475871a2008-07-27 21:46:04 +00004420 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004421}
4422
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004423SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004424X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004425 // We support concatenate two MMX registers and place them in a MMX
4426 // register. This is better than doing a stack convert.
4427 DebugLoc dl = Op.getDebugLoc();
4428 EVT ResVT = Op.getValueType();
4429 assert(Op.getNumOperands() == 2);
4430 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
4431 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
4432 int Mask[2];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004433 SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004434 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4435 InVec = Op.getOperand(1);
4436 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
4437 unsigned NumElts = ResVT.getVectorNumElements();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004438 VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004439 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
4440 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
4441 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004442 InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004443 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4444 Mask[0] = 0; Mask[1] = 2;
4445 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
4446 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004447 return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004448}
4449
Nate Begemanb9a47b82009-02-23 08:49:38 +00004450// v8i16 shuffles - Prefer shuffles in the following order:
4451// 1. [all] pshuflw, pshufhw, optional move
4452// 2. [ssse3] 1 x pshufb
4453// 3. [ssse3] 2 x pshufb + 1 x por
4454// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004455SDValue
4456X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
4457 SelectionDAG &DAG) const {
4458 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00004459 SDValue V1 = SVOp->getOperand(0);
4460 SDValue V2 = SVOp->getOperand(1);
4461 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004462 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00004463
Nate Begemanb9a47b82009-02-23 08:49:38 +00004464 // Determine if more than 1 of the words in each of the low and high quadwords
4465 // of the result come from the same quadword of one of the two inputs. Undef
4466 // mask values count as coming from any quadword, for better codegen.
4467 SmallVector<unsigned, 4> LoQuad(4);
4468 SmallVector<unsigned, 4> HiQuad(4);
4469 BitVector InputQuads(4);
4470 for (unsigned i = 0; i < 8; ++i) {
4471 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00004472 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004473 MaskVals.push_back(EltIdx);
4474 if (EltIdx < 0) {
4475 ++Quad[0];
4476 ++Quad[1];
4477 ++Quad[2];
4478 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00004479 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004480 }
4481 ++Quad[EltIdx / 4];
4482 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00004483 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004484
Nate Begemanb9a47b82009-02-23 08:49:38 +00004485 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004486 unsigned MaxQuad = 1;
4487 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004488 if (LoQuad[i] > MaxQuad) {
4489 BestLoQuad = i;
4490 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004491 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004492 }
4493
Nate Begemanb9a47b82009-02-23 08:49:38 +00004494 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004495 MaxQuad = 1;
4496 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004497 if (HiQuad[i] > MaxQuad) {
4498 BestHiQuad = i;
4499 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004500 }
4501 }
4502
Nate Begemanb9a47b82009-02-23 08:49:38 +00004503 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00004504 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00004505 // single pshufb instruction is necessary. If There are more than 2 input
4506 // quads, disable the next transformation since it does not help SSSE3.
4507 bool V1Used = InputQuads[0] || InputQuads[1];
4508 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004509 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004510 if (InputQuads.count() == 2 && V1Used && V2Used) {
4511 BestLoQuad = InputQuads.find_first();
4512 BestHiQuad = InputQuads.find_next(BestLoQuad);
4513 }
4514 if (InputQuads.count() > 2) {
4515 BestLoQuad = -1;
4516 BestHiQuad = -1;
4517 }
4518 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004519
Nate Begemanb9a47b82009-02-23 08:49:38 +00004520 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
4521 // the shuffle mask. If a quad is scored as -1, that means that it contains
4522 // words from all 4 input quadwords.
4523 SDValue NewV;
4524 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004525 SmallVector<int, 8> MaskV;
4526 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
4527 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00004528 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004529 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
4530 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
4531 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004532
Nate Begemanb9a47b82009-02-23 08:49:38 +00004533 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
4534 // source words for the shuffle, to aid later transformations.
4535 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00004536 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00004537 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004538 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00004539 if (idx != (int)i)
4540 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004541 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00004542 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004543 AllWordsInNewV = false;
4544 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00004545 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004546
Nate Begemanb9a47b82009-02-23 08:49:38 +00004547 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
4548 if (AllWordsInNewV) {
4549 for (int i = 0; i != 8; ++i) {
4550 int idx = MaskVals[i];
4551 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004552 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004553 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004554 if ((idx != i) && idx < 4)
4555 pshufhw = false;
4556 if ((idx != i) && idx > 3)
4557 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00004558 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00004559 V1 = NewV;
4560 V2Used = false;
4561 BestLoQuad = 0;
4562 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004563 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004564
Nate Begemanb9a47b82009-02-23 08:49:38 +00004565 // If we've eliminated the use of V2, and the new mask is a pshuflw or
4566 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00004567 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004568 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
4569 unsigned TargetMask = 0;
4570 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00004571 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004572 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
4573 X86::getShufflePSHUFLWImmediate(NewV.getNode());
4574 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004575 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00004576 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004577 }
Eric Christopherfd179292009-08-27 18:07:15 +00004578
Nate Begemanb9a47b82009-02-23 08:49:38 +00004579 // If we have SSSE3, and all words of the result are from 1 input vector,
4580 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
4581 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004582 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004583 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004584
Nate Begemanb9a47b82009-02-23 08:49:38 +00004585 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00004586 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00004587 // mask, and elements that come from V1 in the V2 mask, so that the two
4588 // results can be OR'd together.
4589 bool TwoInputs = V1Used && V2Used;
4590 for (unsigned i = 0; i != 8; ++i) {
4591 int EltIdx = MaskVals[i] * 2;
4592 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004593 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4594 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004595 continue;
4596 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004597 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
4598 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004599 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004600 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004601 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004602 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004603 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004604 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004605 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004606
Nate Begemanb9a47b82009-02-23 08:49:38 +00004607 // Calculate the shuffle mask for the second input, shuffle it, and
4608 // OR it with the first shuffled input.
4609 pshufbMask.clear();
4610 for (unsigned i = 0; i != 8; ++i) {
4611 int EltIdx = MaskVals[i] * 2;
4612 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004613 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4614 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004615 continue;
4616 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004617 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
4618 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004619 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004620 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00004621 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004622 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004623 MVT::v16i8, &pshufbMask[0], 16));
4624 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004625 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004626 }
4627
4628 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
4629 // and update MaskVals with new element order.
4630 BitVector InOrder(8);
4631 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004632 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004633 for (int i = 0; i != 4; ++i) {
4634 int idx = MaskVals[i];
4635 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004636 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004637 InOrder.set(i);
4638 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004639 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004640 InOrder.set(i);
4641 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004642 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004643 }
4644 }
4645 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004646 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00004647 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004648 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004649
4650 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4651 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
4652 NewV.getOperand(0),
4653 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
4654 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004655 }
Eric Christopherfd179292009-08-27 18:07:15 +00004656
Nate Begemanb9a47b82009-02-23 08:49:38 +00004657 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
4658 // and update MaskVals with the new element order.
4659 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004660 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004661 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004662 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004663 for (unsigned i = 4; i != 8; ++i) {
4664 int idx = MaskVals[i];
4665 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004666 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004667 InOrder.set(i);
4668 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004669 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004670 InOrder.set(i);
4671 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004672 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004673 }
4674 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004675 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004676 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004677
4678 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4679 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
4680 NewV.getOperand(0),
4681 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
4682 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004683 }
Eric Christopherfd179292009-08-27 18:07:15 +00004684
Nate Begemanb9a47b82009-02-23 08:49:38 +00004685 // In case BestHi & BestLo were both -1, which means each quadword has a word
4686 // from each of the four input quadwords, calculate the InOrder bitvector now
4687 // before falling through to the insert/extract cleanup.
4688 if (BestLoQuad == -1 && BestHiQuad == -1) {
4689 NewV = V1;
4690 for (int i = 0; i != 8; ++i)
4691 if (MaskVals[i] < 0 || MaskVals[i] == i)
4692 InOrder.set(i);
4693 }
Eric Christopherfd179292009-08-27 18:07:15 +00004694
Nate Begemanb9a47b82009-02-23 08:49:38 +00004695 // The other elements are put in the right place using pextrw and pinsrw.
4696 for (unsigned i = 0; i != 8; ++i) {
4697 if (InOrder[i])
4698 continue;
4699 int EltIdx = MaskVals[i];
4700 if (EltIdx < 0)
4701 continue;
4702 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00004703 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004704 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00004705 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004706 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00004707 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004708 DAG.getIntPtrConstant(i));
4709 }
4710 return NewV;
4711}
4712
4713// v16i8 shuffles - Prefer shuffles in the following order:
4714// 1. [ssse3] 1 x pshufb
4715// 2. [ssse3] 2 x pshufb + 1 x por
4716// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
4717static
Nate Begeman9008ca62009-04-27 18:41:29 +00004718SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00004719 SelectionDAG &DAG,
4720 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004721 SDValue V1 = SVOp->getOperand(0);
4722 SDValue V2 = SVOp->getOperand(1);
4723 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004724 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00004725 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00004726
Nate Begemanb9a47b82009-02-23 08:49:38 +00004727 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00004728 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00004729 // present, fall back to case 3.
4730 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
4731 bool V1Only = true;
4732 bool V2Only = true;
4733 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004734 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00004735 if (EltIdx < 0)
4736 continue;
4737 if (EltIdx < 16)
4738 V2Only = false;
4739 else
4740 V1Only = false;
4741 }
Eric Christopherfd179292009-08-27 18:07:15 +00004742
Nate Begemanb9a47b82009-02-23 08:49:38 +00004743 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
4744 if (TLI.getSubtarget()->hasSSSE3()) {
4745 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004746
Nate Begemanb9a47b82009-02-23 08:49:38 +00004747 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00004748 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00004749 //
4750 // Otherwise, we have elements from both input vectors, and must zero out
4751 // elements that come from V2 in the first mask, and V1 in the second mask
4752 // so that we can OR them together.
4753 bool TwoInputs = !(V1Only || V2Only);
4754 for (unsigned i = 0; i != 16; ++i) {
4755 int EltIdx = MaskVals[i];
4756 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004757 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004758 continue;
4759 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004760 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004761 }
4762 // If all the elements are from V2, assign it to V1 and return after
4763 // building the first pshufb.
4764 if (V2Only)
4765 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00004766 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004767 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004768 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004769 if (!TwoInputs)
4770 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00004771
Nate Begemanb9a47b82009-02-23 08:49:38 +00004772 // Calculate the shuffle mask for the second input, shuffle it, and
4773 // OR it with the first shuffled input.
4774 pshufbMask.clear();
4775 for (unsigned i = 0; i != 16; ++i) {
4776 int EltIdx = MaskVals[i];
4777 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004778 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004779 continue;
4780 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004781 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004782 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004783 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004784 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004785 MVT::v16i8, &pshufbMask[0], 16));
4786 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004787 }
Eric Christopherfd179292009-08-27 18:07:15 +00004788
Nate Begemanb9a47b82009-02-23 08:49:38 +00004789 // No SSSE3 - Calculate in place words and then fix all out of place words
4790 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
4791 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004792 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
4793 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004794 SDValue NewV = V2Only ? V2 : V1;
4795 for (int i = 0; i != 8; ++i) {
4796 int Elt0 = MaskVals[i*2];
4797 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00004798
Nate Begemanb9a47b82009-02-23 08:49:38 +00004799 // This word of the result is all undef, skip it.
4800 if (Elt0 < 0 && Elt1 < 0)
4801 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004802
Nate Begemanb9a47b82009-02-23 08:49:38 +00004803 // This word of the result is already in the correct place, skip it.
4804 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
4805 continue;
4806 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
4807 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004808
Nate Begemanb9a47b82009-02-23 08:49:38 +00004809 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
4810 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
4811 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00004812
4813 // If Elt0 and Elt1 are defined, are consecutive, and can be load
4814 // using a single extract together, load it and store it.
4815 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004816 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00004817 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00004818 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00004819 DAG.getIntPtrConstant(i));
4820 continue;
4821 }
4822
Nate Begemanb9a47b82009-02-23 08:49:38 +00004823 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00004824 // source byte is not also odd, shift the extracted word left 8 bits
4825 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00004826 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004827 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004828 DAG.getIntPtrConstant(Elt1 / 2));
4829 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004830 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004831 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00004832 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004833 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
4834 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004835 }
4836 // If Elt0 is defined, extract it from the appropriate source. If the
4837 // source byte is not also even, shift the extracted word right 8 bits. If
4838 // Elt1 was also defined, OR the extracted values together before
4839 // inserting them in the result.
4840 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004841 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004842 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
4843 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004844 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004845 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00004846 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004847 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
4848 DAG.getConstant(0x00FF, MVT::i16));
4849 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00004850 : InsElt0;
4851 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004852 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004853 DAG.getIntPtrConstant(i));
4854 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004855 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004856}
4857
Evan Cheng7a831ce2007-12-15 03:00:47 +00004858/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004859/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00004860/// done when every pair / quad of shuffle mask elements point to elements in
4861/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004862/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00004863static
Nate Begeman9008ca62009-04-27 18:41:29 +00004864SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00004865 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00004866 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00004867 SDValue V1 = SVOp->getOperand(0);
4868 SDValue V2 = SVOp->getOperand(1);
4869 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00004870 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004871 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00004872 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004873 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00004874 case MVT::v4f32: NewVT = MVT::v2f64; break;
4875 case MVT::v4i32: NewVT = MVT::v2i64; break;
4876 case MVT::v8i16: NewVT = MVT::v4i32; break;
4877 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00004878 }
4879
Nate Begeman9008ca62009-04-27 18:41:29 +00004880 int Scale = NumElems / NewWidth;
4881 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00004882 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004883 int StartIdx = -1;
4884 for (int j = 0; j < Scale; ++j) {
4885 int EltIdx = SVOp->getMaskElt(i+j);
4886 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004887 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00004888 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00004889 StartIdx = EltIdx - (EltIdx % Scale);
4890 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00004891 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00004892 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004893 if (StartIdx == -1)
4894 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00004895 else
Nate Begeman9008ca62009-04-27 18:41:29 +00004896 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004897 }
4898
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004899 V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
4900 V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00004901 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004902}
4903
Evan Chengd880b972008-05-09 21:53:03 +00004904/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004905///
Owen Andersone50ed302009-08-10 22:56:29 +00004906static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00004907 SDValue SrcOp, SelectionDAG &DAG,
4908 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004909 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004910 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00004911 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00004912 LD = dyn_cast<LoadSDNode>(SrcOp);
4913 if (!LD) {
4914 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
4915 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00004916 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00004917 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00004918 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004919 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00004920 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004921 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00004922 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004923 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004924 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
4925 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
4926 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00004927 SrcOp.getOperand(0)
4928 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00004929 }
4930 }
4931 }
4932
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004933 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004934 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004935 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00004936 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00004937}
4938
Evan Chengace3c172008-07-22 21:13:36 +00004939/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
4940/// shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004941static SDValue
Nate Begeman9008ca62009-04-27 18:41:29 +00004942LowerVECTOR_SHUFFLE_4wide(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
4943 SDValue V1 = SVOp->getOperand(0);
4944 SDValue V2 = SVOp->getOperand(1);
4945 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00004946 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00004947
Evan Chengace3c172008-07-22 21:13:36 +00004948 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00004949 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00004950 SmallVector<int, 8> Mask1(4U, -1);
4951 SmallVector<int, 8> PermMask;
4952 SVOp->getMask(PermMask);
4953
Evan Chengace3c172008-07-22 21:13:36 +00004954 unsigned NumHi = 0;
4955 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00004956 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004957 int Idx = PermMask[i];
4958 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00004959 Locs[i] = std::make_pair(-1, -1);
4960 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004961 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
4962 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00004963 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00004964 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004965 NumLo++;
4966 } else {
4967 Locs[i] = std::make_pair(1, NumHi);
4968 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00004969 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004970 NumHi++;
4971 }
4972 }
4973 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004974
Evan Chengace3c172008-07-22 21:13:36 +00004975 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004976 // If no more than two elements come from either vector. This can be
4977 // implemented with two shuffles. First shuffle gather the elements.
4978 // The second shuffle, which takes the first shuffle as both of its
4979 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00004980 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004981
Nate Begeman9008ca62009-04-27 18:41:29 +00004982 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00004983
Evan Chengace3c172008-07-22 21:13:36 +00004984 for (unsigned i = 0; i != 4; ++i) {
4985 if (Locs[i].first == -1)
4986 continue;
4987 else {
4988 unsigned Idx = (i < 2) ? 0 : 4;
4989 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00004990 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004991 }
4992 }
4993
Nate Begeman9008ca62009-04-27 18:41:29 +00004994 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004995 } else if (NumLo == 3 || NumHi == 3) {
4996 // Otherwise, we must have three elements from one vector, call it X, and
4997 // one element from the other, call it Y. First, use a shufps to build an
4998 // intermediate vector with the one element from Y and the element from X
4999 // that will be in the same half in the final destination (the indexes don't
5000 // matter). Then, use a shufps to build the final vector, taking the half
5001 // containing the element from Y from the intermediate, and the other half
5002 // from X.
5003 if (NumHi == 3) {
5004 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00005005 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005006 std::swap(V1, V2);
5007 }
5008
5009 // Find the element from V2.
5010 unsigned HiIndex;
5011 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005012 int Val = PermMask[HiIndex];
5013 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005014 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005015 if (Val >= 4)
5016 break;
5017 }
5018
Nate Begeman9008ca62009-04-27 18:41:29 +00005019 Mask1[0] = PermMask[HiIndex];
5020 Mask1[1] = -1;
5021 Mask1[2] = PermMask[HiIndex^1];
5022 Mask1[3] = -1;
5023 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005024
5025 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005026 Mask1[0] = PermMask[0];
5027 Mask1[1] = PermMask[1];
5028 Mask1[2] = HiIndex & 1 ? 6 : 4;
5029 Mask1[3] = HiIndex & 1 ? 4 : 6;
5030 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005031 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005032 Mask1[0] = HiIndex & 1 ? 2 : 0;
5033 Mask1[1] = HiIndex & 1 ? 0 : 2;
5034 Mask1[2] = PermMask[2];
5035 Mask1[3] = PermMask[3];
5036 if (Mask1[2] >= 0)
5037 Mask1[2] += 4;
5038 if (Mask1[3] >= 0)
5039 Mask1[3] += 4;
5040 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005041 }
Evan Chengace3c172008-07-22 21:13:36 +00005042 }
5043
5044 // Break it into (shuffle shuffle_hi, shuffle_lo).
5045 Locs.clear();
Nate Begeman9008ca62009-04-27 18:41:29 +00005046 SmallVector<int,8> LoMask(4U, -1);
5047 SmallVector<int,8> HiMask(4U, -1);
5048
5049 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00005050 unsigned MaskIdx = 0;
5051 unsigned LoIdx = 0;
5052 unsigned HiIdx = 2;
5053 for (unsigned i = 0; i != 4; ++i) {
5054 if (i == 2) {
5055 MaskPtr = &HiMask;
5056 MaskIdx = 1;
5057 LoIdx = 0;
5058 HiIdx = 2;
5059 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005060 int Idx = PermMask[i];
5061 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005062 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005063 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005064 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005065 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005066 LoIdx++;
5067 } else {
5068 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005069 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005070 HiIdx++;
5071 }
5072 }
5073
Nate Begeman9008ca62009-04-27 18:41:29 +00005074 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5075 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5076 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00005077 for (unsigned i = 0; i != 4; ++i) {
5078 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005079 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00005080 } else {
5081 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005082 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00005083 }
5084 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005085 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00005086}
5087
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005088static bool MayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005089 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005090 V = V.getOperand(0);
5091 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5092 V = V.getOperand(0);
5093 if (MayFoldLoad(V))
5094 return true;
5095 return false;
5096}
5097
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005098// FIXME: the version above should always be used. Since there's
5099// a bug where several vector shuffles can't be folded because the
5100// DAG is not updated during lowering and a node claims to have two
5101// uses while it only has one, use this version, and let isel match
5102// another instruction if the load really happens to have more than
5103// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00005104// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005105static bool RelaxedMayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005106 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005107 V = V.getOperand(0);
5108 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5109 V = V.getOperand(0);
5110 if (ISD::isNormalLoad(V.getNode()))
5111 return true;
5112 return false;
5113}
5114
5115/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5116/// a vector extract, and if both can be later optimized into a single load.
5117/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5118/// here because otherwise a target specific shuffle node is going to be
5119/// emitted for this shuffle, and the optimization not done.
5120/// FIXME: This is probably not the best approach, but fix the problem
5121/// until the right path is decided.
5122static
5123bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5124 const TargetLowering &TLI) {
5125 EVT VT = V.getValueType();
5126 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5127
5128 // Be sure that the vector shuffle is present in a pattern like this:
5129 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5130 if (!V.hasOneUse())
5131 return false;
5132
5133 SDNode *N = *V.getNode()->use_begin();
5134 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5135 return false;
5136
5137 SDValue EltNo = N->getOperand(1);
5138 if (!isa<ConstantSDNode>(EltNo))
5139 return false;
5140
5141 // If the bit convert changed the number of elements, it is unsafe
5142 // to examine the mask.
5143 bool HasShuffleIntoBitcast = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005144 if (V.getOpcode() == ISD::BITCAST) {
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005145 EVT SrcVT = V.getOperand(0).getValueType();
5146 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5147 return false;
5148 V = V.getOperand(0);
5149 HasShuffleIntoBitcast = true;
5150 }
5151
5152 // Select the input vector, guarding against out of range extract vector.
5153 unsigned NumElems = VT.getVectorNumElements();
5154 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5155 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5156 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5157
5158 // Skip one more bit_convert if necessary
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005159 if (V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005160 V = V.getOperand(0);
5161
5162 if (ISD::isNormalLoad(V.getNode())) {
5163 // Is the original load suitable?
5164 LoadSDNode *LN0 = cast<LoadSDNode>(V);
5165
5166 // FIXME: avoid the multi-use bug that is preventing lots of
5167 // of foldings to be detected, this is still wrong of course, but
5168 // give the temporary desired behavior, and if it happens that
5169 // the load has real more uses, during isel it will not fold, and
5170 // will generate poor code.
5171 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
5172 return false;
5173
5174 if (!HasShuffleIntoBitcast)
5175 return true;
5176
5177 // If there's a bitcast before the shuffle, check if the load type and
5178 // alignment is valid.
5179 unsigned Align = LN0->getAlignment();
5180 unsigned NewAlign =
5181 TLI.getTargetData()->getABITypeAlignment(
5182 VT.getTypeForEVT(*DAG.getContext()));
5183
5184 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
5185 return false;
5186 }
5187
5188 return true;
5189}
5190
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005191static
Evan Cheng835580f2010-10-07 20:50:20 +00005192SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
5193 EVT VT = Op.getValueType();
5194
5195 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005196 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
5197 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00005198 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
5199 V1, DAG));
5200}
5201
5202static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005203SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
5204 bool HasSSE2) {
5205 SDValue V1 = Op.getOperand(0);
5206 SDValue V2 = Op.getOperand(1);
5207 EVT VT = Op.getValueType();
5208
5209 assert(VT != MVT::v2i64 && "unsupported shuffle type");
5210
5211 if (HasSSE2 && VT == MVT::v2f64)
5212 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
5213
5214 // v4f32 or v4i32
5215 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
5216}
5217
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005218static
5219SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
5220 SDValue V1 = Op.getOperand(0);
5221 SDValue V2 = Op.getOperand(1);
5222 EVT VT = Op.getValueType();
5223
5224 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
5225 "unsupported shuffle type");
5226
5227 if (V2.getOpcode() == ISD::UNDEF)
5228 V2 = V1;
5229
5230 // v4i32 or v4f32
5231 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
5232}
5233
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005234static
5235SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
5236 SDValue V1 = Op.getOperand(0);
5237 SDValue V2 = Op.getOperand(1);
5238 EVT VT = Op.getValueType();
5239 unsigned NumElems = VT.getVectorNumElements();
5240
5241 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
5242 // operand of these instructions is only memory, so check if there's a
5243 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
5244 // same masks.
5245 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005246
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00005247 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005248 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005249 CanFoldLoad = true;
5250
5251 // When V1 is a load, it can be folded later into a store in isel, example:
5252 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
5253 // turns into:
5254 // (MOVLPSmr addr:$src1, VR128:$src2)
5255 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005256 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005257 CanFoldLoad = true;
5258
5259 if (CanFoldLoad) {
5260 if (HasSSE2 && NumElems == 2)
5261 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
5262
5263 if (NumElems == 4)
5264 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
5265 }
5266
5267 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5268 // movl and movlp will both match v2i64, but v2i64 is never matched by
5269 // movl earlier because we make it strict to avoid messing with the movlp load
5270 // folding logic (see the code above getMOVLP call). Match it here then,
5271 // this is horrible, but will stay like this until we move all shuffle
5272 // matching to x86 specific nodes. Note that for the 1st condition all
5273 // types are matched with movsd.
5274 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
5275 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5276 else if (HasSSE2)
5277 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5278
5279
5280 assert(VT != MVT::v4i32 && "unsupported shuffle type");
5281
5282 // Invert the operand order and use SHUFPS to match it.
5283 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
5284 X86::getShuffleSHUFImmediate(SVOp), DAG);
5285}
5286
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005287static inline unsigned getUNPCKLOpcode(EVT VT) {
5288 switch(VT.getSimpleVT().SimpleTy) {
5289 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
5290 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
5291 case MVT::v4f32: return X86ISD::UNPCKLPS;
5292 case MVT::v2f64: return X86ISD::UNPCKLPD;
5293 case MVT::v16i8: return X86ISD::PUNPCKLBW;
5294 case MVT::v8i16: return X86ISD::PUNPCKLWD;
5295 default:
5296 llvm_unreachable("Unknow type for unpckl");
5297 }
5298 return 0;
5299}
5300
5301static inline unsigned getUNPCKHOpcode(EVT VT) {
5302 switch(VT.getSimpleVT().SimpleTy) {
5303 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
5304 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
5305 case MVT::v4f32: return X86ISD::UNPCKHPS;
5306 case MVT::v2f64: return X86ISD::UNPCKHPD;
5307 case MVT::v16i8: return X86ISD::PUNPCKHBW;
5308 case MVT::v8i16: return X86ISD::PUNPCKHWD;
5309 default:
5310 llvm_unreachable("Unknow type for unpckh");
5311 }
5312 return 0;
5313}
5314
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005315static
5316SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005317 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005318 const X86Subtarget *Subtarget) {
5319 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5320 EVT VT = Op.getValueType();
5321 DebugLoc dl = Op.getDebugLoc();
5322 SDValue V1 = Op.getOperand(0);
5323 SDValue V2 = Op.getOperand(1);
5324
5325 if (isZeroShuffle(SVOp))
5326 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
5327
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005328 // Handle splat operations
5329 if (SVOp->isSplat()) {
5330 // Special case, this is the only place now where it's
5331 // allowed to return a vector_shuffle operation without
5332 // using a target specific node, because *hopefully* it
5333 // will be optimized away by the dag combiner.
5334 if (VT.getVectorNumElements() <= 4 &&
5335 CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
5336 return Op;
5337
5338 // Handle splats by matching through known masks
5339 if (VT.getVectorNumElements() <= 4)
5340 return SDValue();
5341
Evan Cheng835580f2010-10-07 20:50:20 +00005342 // Canonicalize all of the remaining to v4f32.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005343 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005344 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005345
5346 // If the shuffle can be profitably rewritten as a narrower shuffle, then
5347 // do it!
5348 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
5349 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5350 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005351 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005352 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
5353 // FIXME: Figure out a cleaner way to do this.
5354 // Try to make use of movq to zero out the top part.
5355 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
5356 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5357 if (NewOp.getNode()) {
5358 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
5359 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
5360 DAG, Subtarget, dl);
5361 }
5362 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
5363 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5364 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
5365 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
5366 DAG, Subtarget, dl);
5367 }
5368 }
5369 return SDValue();
5370}
5371
Dan Gohman475871a2008-07-27 21:46:04 +00005372SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005373X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00005374 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005375 SDValue V1 = Op.getOperand(0);
5376 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005377 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005378 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00005379 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005380 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005381 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
5382 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00005383 bool V1IsSplat = false;
5384 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005385 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005386 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005387 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005388 MachineFunction &MF = DAG.getMachineFunction();
5389 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005390
Dale Johannesen0488fb62010-09-30 23:57:10 +00005391 // Shuffle operations on MMX not supported.
5392 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00005393 return Op;
5394
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005395 // Vector shuffle lowering takes 3 steps:
5396 //
5397 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
5398 // narrowing and commutation of operands should be handled.
5399 // 2) Matching of shuffles with known shuffle masks to x86 target specific
5400 // shuffle nodes.
5401 // 3) Rewriting of unmatched masks into new generic shuffle operations,
5402 // so the shuffle can be broken into other shuffles and the legalizer can
5403 // try the lowering again.
5404 //
5405 // The general ideia is that no vector_shuffle operation should be left to
5406 // be matched during isel, all of them must be converted to a target specific
5407 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00005408
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005409 // Normalize the input vectors. Here splats, zeroed vectors, profitable
5410 // narrowing and commutation of operands should be handled. The actual code
5411 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005412 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005413 if (NewOp.getNode())
5414 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00005415
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005416 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
5417 // unpckh_undef). Only use pshufd if speed is more important than size.
5418 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
5419 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5420 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
5421 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
5422 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5423 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00005424
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005425 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00005426 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00005427 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005428
Dale Johannesen0488fb62010-09-30 23:57:10 +00005429 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005430 return getMOVHighToLow(Op, dl, DAG);
5431
5432 // Use to match splats
5433 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
5434 (VT == MVT::v2f64 || VT == MVT::v2i64))
5435 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5436
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005437 if (X86::isPSHUFDMask(SVOp)) {
5438 // The actual implementation will match the mask in the if above and then
5439 // during isel it can match several different instructions, not only pshufd
5440 // as its name says, sad but true, emulate the behavior for now...
5441 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
5442 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
5443
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005444 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5445
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005446 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005447 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
5448
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005449 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005450 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
5451 TargetMask, DAG);
5452
5453 if (VT == MVT::v4f32)
5454 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
5455 TargetMask, DAG);
5456 }
Eric Christopherfd179292009-08-27 18:07:15 +00005457
Evan Chengf26ffe92008-05-29 08:22:04 +00005458 // Check if this can be converted into a logical shift.
5459 bool isLeft = false;
5460 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00005461 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00005462 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00005463 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00005464 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005465 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00005466 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005467 EVT EltVT = VT.getVectorElementType();
5468 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005469 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005470 }
Eric Christopherfd179292009-08-27 18:07:15 +00005471
Nate Begeman9008ca62009-04-27 18:41:29 +00005472 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005473 if (V1IsUndef)
5474 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00005475 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00005476 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00005477 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005478 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005479 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5480
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005481 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005482 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5483 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00005484 }
Eric Christopherfd179292009-08-27 18:07:15 +00005485
Nate Begeman9008ca62009-04-27 18:41:29 +00005486 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00005487 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
5488 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005489
Dale Johannesen0488fb62010-09-30 23:57:10 +00005490 if (X86::isMOVHLPSMask(SVOp))
5491 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005492
Dale Johannesen0488fb62010-09-30 23:57:10 +00005493 if (X86::isMOVSHDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5494 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005495
Dale Johannesen0488fb62010-09-30 23:57:10 +00005496 if (X86::isMOVSLDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5497 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00005498
Dale Johannesen0488fb62010-09-30 23:57:10 +00005499 if (X86::isMOVLPMask(SVOp))
5500 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005501
Nate Begeman9008ca62009-04-27 18:41:29 +00005502 if (ShouldXformToMOVHLPS(SVOp) ||
5503 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
5504 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005505
Evan Chengf26ffe92008-05-29 08:22:04 +00005506 if (isShift) {
5507 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005508 EVT EltVT = VT.getVectorElementType();
5509 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005510 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005511 }
Eric Christopherfd179292009-08-27 18:07:15 +00005512
Evan Cheng9eca5e82006-10-25 21:49:50 +00005513 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00005514 // FIXME: This should also accept a bitcast of a splat? Be careful, not
5515 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00005516 V1IsSplat = isSplatVector(V1.getNode());
5517 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005518
Chris Lattner8a594482007-11-25 00:24:49 +00005519 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00005520 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005521 Op = CommuteVectorShuffle(SVOp, DAG);
5522 SVOp = cast<ShuffleVectorSDNode>(Op);
5523 V1 = SVOp->getOperand(0);
5524 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00005525 std::swap(V1IsSplat, V2IsSplat);
5526 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005527 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00005528 }
5529
Nate Begeman9008ca62009-04-27 18:41:29 +00005530 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
5531 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00005532 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00005533 return V1;
5534 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
5535 // the instruction selector will not match, so get a canonical MOVL with
5536 // swapped operands to undo the commute.
5537 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00005538 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005539
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005540 if (X86::isUNPCKLMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005541 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005542
5543 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005544 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00005545
Evan Cheng9bbbb982006-10-25 20:48:19 +00005546 if (V2IsSplat) {
5547 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00005548 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00005549 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00005550 SDValue NewMask = NormalizeMask(SVOp, DAG);
5551 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
5552 if (NSVOp != SVOp) {
5553 if (X86::isUNPCKLMask(NSVOp, true)) {
5554 return NewMask;
5555 } else if (X86::isUNPCKHMask(NSVOp, true)) {
5556 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005557 }
5558 }
5559 }
5560
Evan Cheng9eca5e82006-10-25 21:49:50 +00005561 if (Commuted) {
5562 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00005563 // FIXME: this seems wrong.
5564 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
5565 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005566
5567 if (X86::isUNPCKLMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005568 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005569
5570 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005571 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005572 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005573
Nate Begeman9008ca62009-04-27 18:41:29 +00005574 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00005575 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00005576 return CommuteVectorShuffle(SVOp, DAG);
5577
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00005578 // The checks below are all present in isShuffleMaskLegal, but they are
5579 // inlined here right now to enable us to directly emit target specific
5580 // nodes, and remove one by one until they don't return Op anymore.
5581 SmallVector<int, 16> M;
5582 SVOp->getMask(M);
5583
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005584 if (isPALIGNRMask(M, VT, HasSSSE3))
5585 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
5586 X86::getShufflePALIGNRImmediate(SVOp),
5587 DAG);
5588
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00005589 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
5590 SVOp->getSplatIndex() == 0 && V2IsUndef) {
5591 if (VT == MVT::v2f64)
5592 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
5593 if (VT == MVT::v2i64)
5594 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
5595 }
5596
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00005597 if (isPSHUFHWMask(M, VT))
5598 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
5599 X86::getShufflePSHUFHWImmediate(SVOp),
5600 DAG);
5601
5602 if (isPSHUFLWMask(M, VT))
5603 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
5604 X86::getShufflePSHUFLWImmediate(SVOp),
5605 DAG);
5606
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00005607 if (isSHUFPMask(M, VT)) {
5608 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5609 if (VT == MVT::v4f32 || VT == MVT::v4i32)
5610 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
5611 TargetMask, DAG);
5612 if (VT == MVT::v2f64 || VT == MVT::v2i64)
5613 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
5614 TargetMask, DAG);
5615 }
5616
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005617 if (X86::isUNPCKL_v_undef_Mask(SVOp))
5618 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5619 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
5620 if (X86::isUNPCKH_v_undef_Mask(SVOp))
5621 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5622 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5623
Evan Cheng14b32e12007-12-11 01:46:18 +00005624 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
Owen Anderson825b72b2009-08-11 20:47:22 +00005625 if (VT == MVT::v8i16) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005626 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005627 if (NewOp.getNode())
Evan Cheng14b32e12007-12-11 01:46:18 +00005628 return NewOp;
5629 }
5630
Owen Anderson825b72b2009-08-11 20:47:22 +00005631 if (VT == MVT::v16i8) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005632 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005633 if (NewOp.getNode())
5634 return NewOp;
5635 }
Eric Christopherfd179292009-08-27 18:07:15 +00005636
Dale Johannesen0488fb62010-09-30 23:57:10 +00005637 // Handle all 4 wide cases with a number of shuffles.
5638 if (NumElems == 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005639 return LowerVECTOR_SHUFFLE_4wide(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005640
Dan Gohman475871a2008-07-27 21:46:04 +00005641 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005642}
5643
Dan Gohman475871a2008-07-27 21:46:04 +00005644SDValue
5645X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00005646 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005647 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005648 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005649 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005650 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005651 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005652 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005653 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005654 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005655 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00005656 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
5657 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
5658 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005659 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
5660 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005661 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005662 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00005663 Op.getOperand(0)),
5664 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00005665 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005666 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005667 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005668 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005669 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00005670 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00005671 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
5672 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005673 // result has a single use which is a store or a bitcast to i32. And in
5674 // the case of a store, it's not worth it if the index is a constant 0,
5675 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00005676 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00005677 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00005678 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005679 if ((User->getOpcode() != ISD::STORE ||
5680 (isa<ConstantSDNode>(Op.getOperand(1)) &&
5681 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005682 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00005683 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00005684 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00005685 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005686 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00005687 Op.getOperand(0)),
5688 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005689 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Owen Anderson825b72b2009-08-11 20:47:22 +00005690 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00005691 // ExtractPS works with constant index.
5692 if (isa<ConstantSDNode>(Op.getOperand(1)))
5693 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00005694 }
Dan Gohman475871a2008-07-27 21:46:04 +00005695 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005696}
5697
5698
Dan Gohman475871a2008-07-27 21:46:04 +00005699SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005700X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
5701 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005702 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00005703 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005704
Evan Cheng62a3f152008-03-24 21:52:23 +00005705 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005706 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005707 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00005708 return Res;
5709 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00005710
Owen Andersone50ed302009-08-10 22:56:29 +00005711 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005712 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005713 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005714 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005715 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005716 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005717 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005718 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
5719 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005720 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005721 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00005722 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005723 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00005724 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00005725 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00005726 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00005727 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00005728 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005729 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005730 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005731 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005732 if (Idx == 0)
5733 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00005734
Evan Cheng0db9fe62006-04-25 20:13:52 +00005735 // SHUFPS the element to the lowest double word, then movss.
Nate Begeman9008ca62009-04-27 18:41:29 +00005736 int Mask[4] = { Idx, -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00005737 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00005738 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00005739 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00005740 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00005741 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00005742 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00005743 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
5744 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
5745 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005746 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005747 if (Idx == 0)
5748 return Op;
5749
5750 // UNPCKHPD the element to the lowest double word, then movsd.
5751 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
5752 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00005753 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00005754 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00005755 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00005756 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00005757 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00005758 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005759 }
5760
Dan Gohman475871a2008-07-27 21:46:04 +00005761 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005762}
5763
Dan Gohman475871a2008-07-27 21:46:04 +00005764SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005765X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
5766 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005767 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00005768 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005769 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005770
Dan Gohman475871a2008-07-27 21:46:04 +00005771 SDValue N0 = Op.getOperand(0);
5772 SDValue N1 = Op.getOperand(1);
5773 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00005774
Dan Gohman8a55ce42009-09-23 21:02:20 +00005775 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00005776 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00005777 unsigned Opc;
5778 if (VT == MVT::v8i16)
5779 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00005780 else if (VT == MVT::v16i8)
5781 Opc = X86ISD::PINSRB;
5782 else
5783 Opc = X86ISD::PINSRB;
5784
Nate Begeman14d12ca2008-02-11 04:19:36 +00005785 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
5786 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00005787 if (N1.getValueType() != MVT::i32)
5788 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
5789 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005790 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00005791 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00005792 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00005793 // Bits [7:6] of the constant are the source select. This will always be
5794 // zero here. The DAG Combiner may combine an extract_elt index into these
5795 // bits. For example (insert (extract, 3), 2) could be matched by putting
5796 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00005797 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00005798 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00005799 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00005800 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005801 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00005802 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00005803 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00005804 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00005805 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00005806 // PINSR* works with constant index.
5807 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00005808 }
Dan Gohman475871a2008-07-27 21:46:04 +00005809 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005810}
5811
Dan Gohman475871a2008-07-27 21:46:04 +00005812SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005813X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005814 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00005815 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005816
5817 if (Subtarget->hasSSE41())
5818 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
5819
Dan Gohman8a55ce42009-09-23 21:02:20 +00005820 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00005821 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00005822
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005823 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00005824 SDValue N0 = Op.getOperand(0);
5825 SDValue N1 = Op.getOperand(1);
5826 SDValue N2 = Op.getOperand(2);
Evan Cheng794405e2007-12-12 07:55:34 +00005827
Dan Gohman8a55ce42009-09-23 21:02:20 +00005828 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00005829 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
5830 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00005831 if (N1.getValueType() != MVT::i32)
5832 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
5833 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005834 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00005835 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005836 }
Dan Gohman475871a2008-07-27 21:46:04 +00005837 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005838}
5839
Dan Gohman475871a2008-07-27 21:46:04 +00005840SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005841X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005842 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00005843
Chris Lattnerf172ecd2010-07-04 23:07:25 +00005844 if (Op.getValueType() == MVT::v1i64 &&
5845 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00005846 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00005847
Owen Anderson825b72b2009-08-11 20:47:22 +00005848 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00005849 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
5850 "Expected an SSE type!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005851 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00005852 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005853}
5854
Bill Wendling056292f2008-09-16 21:48:12 +00005855// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
5856// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
5857// one of the above mentioned nodes. It has to be wrapped because otherwise
5858// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
5859// be used to form addressing mode. These wrapped nodes will be selected
5860// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00005861SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005862X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005863 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00005864
Chris Lattner41621a22009-06-26 19:22:52 +00005865 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5866 // global base reg.
5867 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00005868 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005869 CodeModel::Model M = getTargetMachine().getCodeModel();
5870
Chris Lattner4f066492009-07-11 20:29:19 +00005871 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005872 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005873 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005874 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005875 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005876 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005877 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005878
Evan Cheng1606e8e2009-03-13 07:51:59 +00005879 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00005880 CP->getAlignment(),
5881 CP->getOffset(), OpFlag);
5882 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00005883 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005884 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00005885 if (OpFlag) {
5886 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005887 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005888 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005889 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005890 }
5891
5892 return Result;
5893}
5894
Dan Gohmand858e902010-04-17 15:26:15 +00005895SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00005896 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00005897
Chris Lattner18c59872009-06-27 04:16:01 +00005898 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5899 // global base reg.
5900 unsigned char OpFlag = 0;
5901 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005902 CodeModel::Model M = getTargetMachine().getCodeModel();
5903
Chris Lattner4f066492009-07-11 20:29:19 +00005904 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005905 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005906 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005907 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005908 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005909 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005910 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005911
Chris Lattner18c59872009-06-27 04:16:01 +00005912 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
5913 OpFlag);
5914 DebugLoc DL = JT->getDebugLoc();
5915 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005916
Chris Lattner18c59872009-06-27 04:16:01 +00005917 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00005918 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00005919 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
5920 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005921 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00005922 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005923
Chris Lattner18c59872009-06-27 04:16:01 +00005924 return Result;
5925}
5926
5927SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005928X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00005929 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00005930
Chris Lattner18c59872009-06-27 04:16:01 +00005931 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5932 // global base reg.
5933 unsigned char OpFlag = 0;
5934 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005935 CodeModel::Model M = getTargetMachine().getCodeModel();
5936
Chris Lattner4f066492009-07-11 20:29:19 +00005937 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005938 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005939 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005940 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005941 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005942 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005943 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005944
Chris Lattner18c59872009-06-27 04:16:01 +00005945 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00005946
Chris Lattner18c59872009-06-27 04:16:01 +00005947 DebugLoc DL = Op.getDebugLoc();
5948 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005949
5950
Chris Lattner18c59872009-06-27 04:16:01 +00005951 // With PIC, the address is actually $g + Offset.
5952 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00005953 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00005954 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
5955 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005956 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00005957 Result);
5958 }
Eric Christopherfd179292009-08-27 18:07:15 +00005959
Chris Lattner18c59872009-06-27 04:16:01 +00005960 return Result;
5961}
5962
Dan Gohman475871a2008-07-27 21:46:04 +00005963SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005964X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00005965 // Create the TargetBlockAddressAddress node.
5966 unsigned char OpFlags =
5967 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00005968 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00005969 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00005970 DebugLoc dl = Op.getDebugLoc();
5971 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
5972 /*isTarget=*/true, OpFlags);
5973
Dan Gohmanf705adb2009-10-30 01:28:02 +00005974 if (Subtarget->isPICStyleRIPRel() &&
5975 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00005976 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
5977 else
5978 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00005979
Dan Gohman29cbade2009-11-20 23:18:13 +00005980 // With PIC, the address is actually $g + Offset.
5981 if (isGlobalRelativeToPICBase(OpFlags)) {
5982 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
5983 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
5984 Result);
5985 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00005986
5987 return Result;
5988}
5989
5990SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00005991X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00005992 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00005993 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00005994 // Create the TargetGlobalAddress node, folding in the constant
5995 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00005996 unsigned char OpFlags =
5997 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005998 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00005999 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006000 if (OpFlags == X86II::MO_NO_FLAG &&
6001 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00006002 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00006003 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00006004 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006005 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00006006 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006007 }
Eric Christopherfd179292009-08-27 18:07:15 +00006008
Chris Lattner4f066492009-07-11 20:29:19 +00006009 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006010 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00006011 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6012 else
6013 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00006014
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006015 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00006016 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006017 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6018 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006019 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006020 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006021
Chris Lattner36c25012009-07-10 07:34:39 +00006022 // For globals that require a load from a stub to get the address, emit the
6023 // load.
6024 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00006025 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006026 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006027
Dan Gohman6520e202008-10-18 02:06:02 +00006028 // If there was a non-zero offset that we didn't fold, create an explicit
6029 // addition for it.
6030 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006031 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00006032 DAG.getConstant(Offset, getPointerTy()));
6033
Evan Cheng0db9fe62006-04-25 20:13:52 +00006034 return Result;
6035}
6036
Evan Chengda43bcf2008-09-24 00:05:32 +00006037SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006038X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00006039 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00006040 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006041 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00006042}
6043
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006044static SDValue
6045GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00006046 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00006047 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006048 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Owen Anderson825b72b2009-08-11 20:47:22 +00006049 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006050 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006051 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006052 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006053 GA->getOffset(),
6054 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006055 if (InFlag) {
6056 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006057 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006058 } else {
6059 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006060 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006061 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006062
6063 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00006064 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006065
Rafael Espindola15f1b662009-04-24 12:59:40 +00006066 SDValue Flag = Chain.getValue(1);
6067 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006068}
6069
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006070// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006071static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006072LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006073 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00006074 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00006075 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
6076 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006077 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006078 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006079 InFlag = Chain.getValue(1);
6080
Chris Lattnerb903bed2009-06-26 21:20:29 +00006081 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006082}
6083
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006084// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006085static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006086LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006087 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006088 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
6089 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006090}
6091
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006092// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
6093// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00006094static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006095 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00006096 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006097 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00006098
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006099 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
6100 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
6101 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00006102
Michael J. Spencerec38de22010-10-10 22:04:20 +00006103 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006104 DAG.getIntPtrConstant(0),
6105 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00006106
Chris Lattnerb903bed2009-06-26 21:20:29 +00006107 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006108 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
6109 // initialexec.
6110 unsigned WrapperKind = X86ISD::Wrapper;
6111 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006112 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00006113 } else if (is64Bit) {
6114 assert(model == TLSModel::InitialExec);
6115 OperandFlags = X86II::MO_GOTTPOFF;
6116 WrapperKind = X86ISD::WrapperRIP;
6117 } else {
6118 assert(model == TLSModel::InitialExec);
6119 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00006120 }
Eric Christopherfd179292009-08-27 18:07:15 +00006121
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006122 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
6123 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00006124 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00006125 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006126 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006127 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006128
Rafael Espindola9a580232009-02-27 13:37:18 +00006129 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006130 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006131 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006132
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006133 // The address of the thread local variable is the add of the thread
6134 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00006135 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006136}
6137
Dan Gohman475871a2008-07-27 21:46:04 +00006138SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006139X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00006140
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006141 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00006142 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00006143
Eric Christopher30ef0e52010-06-03 04:07:48 +00006144 if (Subtarget->isTargetELF()) {
6145 // TODO: implement the "local dynamic" model
6146 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00006147
Eric Christopher30ef0e52010-06-03 04:07:48 +00006148 // If GV is an alias then use the aliasee for determining
6149 // thread-localness.
6150 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
6151 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006152
6153 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00006154 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006155
Eric Christopher30ef0e52010-06-03 04:07:48 +00006156 switch (model) {
6157 case TLSModel::GeneralDynamic:
6158 case TLSModel::LocalDynamic: // not implemented
6159 if (Subtarget->is64Bit())
6160 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
6161 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006162
Eric Christopher30ef0e52010-06-03 04:07:48 +00006163 case TLSModel::InitialExec:
6164 case TLSModel::LocalExec:
6165 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
6166 Subtarget->is64Bit());
6167 }
6168 } else if (Subtarget->isTargetDarwin()) {
6169 // Darwin only has one model of TLS. Lower to that.
6170 unsigned char OpFlag = 0;
6171 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
6172 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006173
Eric Christopher30ef0e52010-06-03 04:07:48 +00006174 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6175 // global base reg.
6176 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
6177 !Subtarget->is64Bit();
6178 if (PIC32)
6179 OpFlag = X86II::MO_TLVP_PIC_BASE;
6180 else
6181 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006182 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006183 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00006184 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00006185 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00006186 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006187
Eric Christopher30ef0e52010-06-03 04:07:48 +00006188 // With PIC32, the address is actually $g + Offset.
6189 if (PIC32)
6190 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6191 DAG.getNode(X86ISD::GlobalBaseReg,
6192 DebugLoc(), getPointerTy()),
6193 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006194
Eric Christopher30ef0e52010-06-03 04:07:48 +00006195 // Lowering the machine isd will make sure everything is in the right
6196 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00006197 SDValue Chain = DAG.getEntryNode();
6198 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
6199 SDValue Args[] = { Chain, Offset };
6200 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006201
Eric Christopher30ef0e52010-06-03 04:07:48 +00006202 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
6203 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6204 MFI->setAdjustsStack(true);
Eric Christopher8bce7cc2010-12-09 00:27:58 +00006205
Eric Christopher30ef0e52010-06-03 04:07:48 +00006206 // And our return value (tls address) is in the standard call return value
6207 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00006208 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
6209 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006210 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006211
Eric Christopher30ef0e52010-06-03 04:07:48 +00006212 assert(false &&
6213 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00006214
Torok Edwinc23197a2009-07-14 16:55:14 +00006215 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00006216 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006217}
6218
Evan Cheng0db9fe62006-04-25 20:13:52 +00006219
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006220/// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00006221/// take a 2 x i32 value to shift plus a shift amount.
Dan Gohmand858e902010-04-17 15:26:15 +00006222SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00006223 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00006224 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006225 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006226 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006227 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00006228 SDValue ShOpLo = Op.getOperand(0);
6229 SDValue ShOpHi = Op.getOperand(1);
6230 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00006231 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00006232 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00006233 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00006234
Dan Gohman475871a2008-07-27 21:46:04 +00006235 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006236 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006237 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
6238 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006239 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006240 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
6241 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006242 }
Evan Chenge3413162006-01-09 18:33:28 +00006243
Owen Anderson825b72b2009-08-11 20:47:22 +00006244 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
6245 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00006246 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00006247 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00006248
Dan Gohman475871a2008-07-27 21:46:04 +00006249 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00006250 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00006251 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
6252 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00006253
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006254 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006255 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6256 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006257 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006258 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6259 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006260 }
6261
Dan Gohman475871a2008-07-27 21:46:04 +00006262 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00006263 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006264}
Evan Chenga3195e82006-01-12 22:54:21 +00006265
Dan Gohmand858e902010-04-17 15:26:15 +00006266SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
6267 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006268 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00006269
Dale Johannesen0488fb62010-09-30 23:57:10 +00006270 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006271 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006272
Owen Anderson825b72b2009-08-11 20:47:22 +00006273 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00006274 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00006275
Eli Friedman36df4992009-05-27 00:47:34 +00006276 // These are really Legal; return the operand so the caller accepts it as
6277 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006278 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00006279 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00006280 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00006281 Subtarget->is64Bit()) {
6282 return Op;
6283 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006284
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006285 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006286 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006287 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00006288 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006289 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00006290 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00006291 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006292 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006293 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006294 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
6295}
Evan Cheng0db9fe62006-04-25 20:13:52 +00006296
Owen Andersone50ed302009-08-10 22:56:29 +00006297SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00006298 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00006299 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006300 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00006301 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00006302 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00006303 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006304 if (useSSE)
Owen Anderson825b72b2009-08-11 20:47:22 +00006305 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
Chris Lattner5a88b832007-02-25 07:10:00 +00006306 else
Owen Anderson825b72b2009-08-11 20:47:22 +00006307 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006308
Chris Lattner492a43e2010-09-22 01:28:21 +00006309 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006310
Chris Lattner492a43e2010-09-22 01:28:21 +00006311 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6312 MachineMemOperand *MMO =
6313 DAG.getMachineFunction()
6314 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6315 MachineMemOperand::MOLoad, ByteSize, ByteSize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006316
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006317 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006318 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
6319 X86ISD::FILD, DL,
6320 Tys, Ops, array_lengthof(Ops),
6321 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006322
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006323 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006324 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00006325 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006326
6327 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
6328 // shouldn't be necessary except that RFP cannot be live across
6329 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006330 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006331 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
6332 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006333 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00006334 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006335 SDValue Ops[] = {
6336 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
6337 };
Chris Lattner492a43e2010-09-22 01:28:21 +00006338 MachineMemOperand *MMO =
6339 DAG.getMachineFunction()
6340 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006341 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006342
Chris Lattner492a43e2010-09-22 01:28:21 +00006343 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
6344 Ops, array_lengthof(Ops),
6345 Op.getValueType(), MMO);
6346 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006347 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006348 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006349 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006350
Evan Cheng0db9fe62006-04-25 20:13:52 +00006351 return Result;
6352}
6353
Bill Wendling8b8a6362009-01-17 03:56:04 +00006354// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006355SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
6356 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00006357 // This algorithm is not obvious. Here it is in C code, more or less:
6358 /*
6359 double uint64_to_double( uint32_t hi, uint32_t lo ) {
6360 static const __m128i exp = { 0x4330000045300000ULL, 0 };
6361 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00006362
Bill Wendling8b8a6362009-01-17 03:56:04 +00006363 // Copy ints to xmm registers.
6364 __m128i xh = _mm_cvtsi32_si128( hi );
6365 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00006366
Bill Wendling8b8a6362009-01-17 03:56:04 +00006367 // Combine into low half of a single xmm register.
6368 __m128i x = _mm_unpacklo_epi32( xh, xl );
6369 __m128d d;
6370 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00006371
Bill Wendling8b8a6362009-01-17 03:56:04 +00006372 // Merge in appropriate exponents to give the integer bits the right
6373 // magnitude.
6374 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00006375
Bill Wendling8b8a6362009-01-17 03:56:04 +00006376 // Subtract away the biases to deal with the IEEE-754 double precision
6377 // implicit 1.
6378 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00006379
Bill Wendling8b8a6362009-01-17 03:56:04 +00006380 // All conversions up to here are exact. The correctly rounded result is
6381 // calculated using the current rounding mode using the following
6382 // horizontal add.
6383 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
6384 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
6385 // store doesn't really need to be here (except
6386 // maybe to zero the other double)
6387 return sd;
6388 }
6389 */
Dale Johannesen040225f2008-10-21 23:07:49 +00006390
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006391 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00006392 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00006393
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006394 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00006395 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00006396 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
6397 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
6398 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
6399 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006400 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006401 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006402
Bill Wendling8b8a6362009-01-17 03:56:04 +00006403 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00006404 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006405 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00006406 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006407 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006408 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006409 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006410
Owen Anderson825b72b2009-08-11 20:47:22 +00006411 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6412 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006413 Op.getOperand(0),
6414 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006415 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6416 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006417 Op.getOperand(0),
6418 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006419 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
6420 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00006421 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006422 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006423 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006424 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
Owen Anderson825b72b2009-08-11 20:47:22 +00006425 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00006426 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006427 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006428 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006429
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006430 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00006431 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00006432 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
6433 DAG.getUNDEF(MVT::v2f64), ShufMask);
6434 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
6435 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006436 DAG.getIntPtrConstant(0));
6437}
6438
Bill Wendling8b8a6362009-01-17 03:56:04 +00006439// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006440SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
6441 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006442 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006443 // FP constant to bias correct the final result.
6444 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00006445 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006446
6447 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00006448 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6449 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling8b8a6362009-01-17 03:56:04 +00006450 Op.getOperand(0),
6451 DAG.getIntPtrConstant(0)));
6452
Owen Anderson825b72b2009-08-11 20:47:22 +00006453 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006454 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006455 DAG.getIntPtrConstant(0));
6456
6457 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006458 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006459 DAG.getNode(ISD::BITCAST, 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, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006462 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006463 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006464 MVT::v2f64, Bias)));
6465 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006466 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006467 DAG.getIntPtrConstant(0));
6468
6469 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006470 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006471
6472 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00006473 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00006474
Owen Anderson825b72b2009-08-11 20:47:22 +00006475 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006476 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00006477 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00006478 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006479 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00006480 }
6481
6482 // Handle final rounding.
6483 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00006484}
6485
Dan Gohmand858e902010-04-17 15:26:15 +00006486SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
6487 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00006488 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006489 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006490
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006491 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00006492 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
6493 // the optimization here.
6494 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00006495 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00006496
Owen Andersone50ed302009-08-10 22:56:29 +00006497 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006498 EVT DstVT = Op.getValueType();
6499 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006500 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006501 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006502 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00006503
6504 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00006505 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006506 if (SrcVT == MVT::i32) {
6507 SDValue WordOff = DAG.getConstant(4, getPointerTy());
6508 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
6509 getPointerTy(), StackSlot, WordOff);
6510 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006511 StackSlot, MachinePointerInfo(),
6512 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006513 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006514 OffsetSlot, MachinePointerInfo(),
6515 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006516 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
6517 return Fild;
6518 }
6519
6520 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
6521 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006522 StackSlot, MachinePointerInfo(),
6523 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006524 // For i64 source, we need to add the appropriate power of 2 if the input
6525 // was negative. This is the same as the optimization in
6526 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
6527 // we must be careful to do the computation in x87 extended precision, not
6528 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00006529 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6530 MachineMemOperand *MMO =
6531 DAG.getMachineFunction()
6532 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6533 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006534
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006535 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
6536 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006537 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
6538 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006539
6540 APInt FF(32, 0x5F800000ULL);
6541
6542 // Check whether the sign bit is set.
6543 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
6544 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
6545 ISD::SETLT);
6546
6547 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
6548 SDValue FudgePtr = DAG.getConstantPool(
6549 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
6550 getPointerTy());
6551
6552 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
6553 SDValue Zero = DAG.getIntPtrConstant(0);
6554 SDValue Four = DAG.getIntPtrConstant(4);
6555 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
6556 Zero, Four);
6557 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
6558
6559 // Load the value out, extending it from f32 to f80.
6560 // FIXME: Avoid the extend by constructing the right constant pool?
Evan Chengbcc80172010-07-07 22:15:37 +00006561 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, MVT::f80, dl, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00006562 FudgePtr, MachinePointerInfo::getConstantPool(),
6563 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006564 // Extend everything to 80 bits to force it to be done on x87.
6565 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
6566 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00006567}
6568
Dan Gohman475871a2008-07-27 21:46:04 +00006569std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00006570FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00006571 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00006572
Owen Andersone50ed302009-08-10 22:56:29 +00006573 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00006574
6575 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006576 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
6577 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00006578 }
6579
Owen Anderson825b72b2009-08-11 20:47:22 +00006580 assert(DstTy.getSimpleVT() <= MVT::i64 &&
6581 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00006582 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00006583
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006584 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006585 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00006586 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00006587 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00006588 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00006589 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00006590 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00006591 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006592
Evan Cheng87c89352007-10-15 20:11:21 +00006593 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
6594 // stack slot.
6595 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00006596 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00006597 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006598 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00006599
Michael J. Spencerec38de22010-10-10 22:04:20 +00006600
6601
Evan Cheng0db9fe62006-04-25 20:13:52 +00006602 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00006603 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00006604 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00006605 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
6606 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
6607 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006608 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006609
Dan Gohman475871a2008-07-27 21:46:04 +00006610 SDValue Chain = DAG.getEntryNode();
6611 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00006612 EVT TheVT = Op.getOperand(0).getValueType();
6613 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006614 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00006615 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006616 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006617 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00006618 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00006619 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00006620 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00006621 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00006622
Chris Lattner492a43e2010-09-22 01:28:21 +00006623 MachineMemOperand *MMO =
6624 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6625 MachineMemOperand::MOLoad, MemSize, MemSize);
6626 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
6627 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006628 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00006629 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006630 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
6631 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006632
Chris Lattner07290932010-09-22 01:05:16 +00006633 MachineMemOperand *MMO =
6634 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6635 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006636
Evan Cheng0db9fe62006-04-25 20:13:52 +00006637 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00006638 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00006639 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
6640 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00006641
Chris Lattner27a6c732007-11-24 07:07:01 +00006642 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006643}
6644
Dan Gohmand858e902010-04-17 15:26:15 +00006645SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
6646 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00006647 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006648 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006649
Eli Friedman948e95a2009-05-23 09:59:16 +00006650 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00006651 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00006652 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
6653 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00006654
Chris Lattner27a6c732007-11-24 07:07:01 +00006655 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006656 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00006657 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00006658}
6659
Dan Gohmand858e902010-04-17 15:26:15 +00006660SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
6661 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00006662 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
6663 SDValue FIST = Vals.first, StackSlot = Vals.second;
6664 assert(FIST.getNode() && "Unexpected failure");
6665
6666 // Load the result.
6667 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00006668 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006669}
6670
Dan Gohmand858e902010-04-17 15:26:15 +00006671SDValue X86TargetLowering::LowerFABS(SDValue Op,
6672 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006673 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006674 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006675 EVT VT = Op.getValueType();
6676 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006677 if (VT.isVector())
6678 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006679 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006680 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006681 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00006682 CV.push_back(C);
6683 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006684 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006685 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00006686 CV.push_back(C);
6687 CV.push_back(C);
6688 CV.push_back(C);
6689 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006690 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006691 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006692 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006693 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006694 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006695 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006696 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006697}
6698
Dan Gohmand858e902010-04-17 15:26:15 +00006699SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006700 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006701 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006702 EVT VT = Op.getValueType();
6703 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00006704 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00006705 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006706 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006707 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006708 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00006709 CV.push_back(C);
6710 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006711 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006712 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00006713 CV.push_back(C);
6714 CV.push_back(C);
6715 CV.push_back(C);
6716 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006717 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006718 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006719 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006720 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006721 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006722 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006723 if (VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006724 return DAG.getNode(ISD::BITCAST, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00006725 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006726 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006727 Op.getOperand(0)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006728 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00006729 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006730 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00006731 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006732}
6733
Dan Gohmand858e902010-04-17 15:26:15 +00006734SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006735 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00006736 SDValue Op0 = Op.getOperand(0);
6737 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006738 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006739 EVT VT = Op.getValueType();
6740 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00006741
6742 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006743 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006744 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00006745 SrcVT = VT;
6746 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006747 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006748 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006749 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006750 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006751 }
6752
6753 // At this point the operands and the result should have the same
6754 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00006755
Evan Cheng68c47cb2007-01-05 07:55:56 +00006756 // First get the sign bit of second operand.
6757 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006758 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006759 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
6760 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006761 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006762 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
6763 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6764 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6765 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006766 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006767 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006768 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006769 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006770 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006771 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006772 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006773
6774 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006775 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006776 // Op0 is MVT::f32, Op1 is MVT::f64.
6777 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
6778 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
6779 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006780 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00006781 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00006782 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006783 }
6784
Evan Cheng73d6cf12007-01-05 21:37:56 +00006785 // Clear first operand sign bit.
6786 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00006787 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006788 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
6789 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00006790 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006791 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
6792 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6793 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6794 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00006795 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006796 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006797 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006798 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006799 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006800 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006801 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00006802
6803 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00006804 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006805}
6806
Dan Gohman076aee32009-03-04 19:44:21 +00006807/// Emit nodes that will be selected as "test Op0,Op0", or something
6808/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00006809SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00006810 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00006811 DebugLoc dl = Op.getDebugLoc();
6812
Dan Gohman31125812009-03-07 01:58:32 +00006813 // CF and OF aren't always set the way we want. Determine which
6814 // of these we need.
6815 bool NeedCF = false;
6816 bool NeedOF = false;
6817 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006818 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00006819 case X86::COND_A: case X86::COND_AE:
6820 case X86::COND_B: case X86::COND_BE:
6821 NeedCF = true;
6822 break;
6823 case X86::COND_G: case X86::COND_GE:
6824 case X86::COND_L: case X86::COND_LE:
6825 case X86::COND_O: case X86::COND_NO:
6826 NeedOF = true;
6827 break;
Dan Gohman31125812009-03-07 01:58:32 +00006828 }
6829
Dan Gohman076aee32009-03-04 19:44:21 +00006830 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00006831 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
6832 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006833 if (Op.getResNo() != 0 || NeedOF || NeedCF)
6834 // Emit a CMP with 0, which is the TEST pattern.
6835 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
6836 DAG.getConstant(0, Op.getValueType()));
6837
6838 unsigned Opcode = 0;
6839 unsigned NumOperands = 0;
6840 switch (Op.getNode()->getOpcode()) {
6841 case ISD::ADD:
6842 // Due to an isel shortcoming, be conservative if this add is likely to be
6843 // selected as part of a load-modify-store instruction. When the root node
6844 // in a match is a store, isel doesn't know how to remap non-chain non-flag
6845 // uses of other nodes in the match, such as the ADD in this case. This
6846 // leads to the ADD being left around and reselected, with the result being
6847 // two adds in the output. Alas, even if none our users are stores, that
6848 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
6849 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
6850 // climbing the DAG back to the root, and it doesn't seem to be worth the
6851 // effort.
6852 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00006853 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006854 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
6855 goto default_case;
6856
6857 if (ConstantSDNode *C =
6858 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
6859 // An add of one will be selected as an INC.
6860 if (C->getAPIntValue() == 1) {
6861 Opcode = X86ISD::INC;
6862 NumOperands = 1;
6863 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00006864 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006865
6866 // An add of negative one (subtract of one) will be selected as a DEC.
6867 if (C->getAPIntValue().isAllOnesValue()) {
6868 Opcode = X86ISD::DEC;
6869 NumOperands = 1;
6870 break;
6871 }
Dan Gohman076aee32009-03-04 19:44:21 +00006872 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006873
6874 // Otherwise use a regular EFLAGS-setting add.
6875 Opcode = X86ISD::ADD;
6876 NumOperands = 2;
6877 break;
6878 case ISD::AND: {
6879 // If the primary and result isn't used, don't bother using X86ISD::AND,
6880 // because a TEST instruction will be better.
6881 bool NonFlagUse = false;
6882 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
6883 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
6884 SDNode *User = *UI;
6885 unsigned UOpNo = UI.getOperandNo();
6886 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
6887 // Look pass truncate.
6888 UOpNo = User->use_begin().getOperandNo();
6889 User = *User->use_begin();
6890 }
6891
6892 if (User->getOpcode() != ISD::BRCOND &&
6893 User->getOpcode() != ISD::SETCC &&
6894 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
6895 NonFlagUse = true;
6896 break;
6897 }
Dan Gohman076aee32009-03-04 19:44:21 +00006898 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006899
6900 if (!NonFlagUse)
6901 break;
6902 }
6903 // FALL THROUGH
6904 case ISD::SUB:
6905 case ISD::OR:
6906 case ISD::XOR:
6907 // Due to the ISEL shortcoming noted above, be conservative if this op is
6908 // likely to be selected as part of a load-modify-store instruction.
6909 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
6910 UE = Op.getNode()->use_end(); UI != UE; ++UI)
6911 if (UI->getOpcode() == ISD::STORE)
6912 goto default_case;
6913
6914 // Otherwise use a regular EFLAGS-setting instruction.
6915 switch (Op.getNode()->getOpcode()) {
6916 default: llvm_unreachable("unexpected operator!");
6917 case ISD::SUB: Opcode = X86ISD::SUB; break;
6918 case ISD::OR: Opcode = X86ISD::OR; break;
6919 case ISD::XOR: Opcode = X86ISD::XOR; break;
6920 case ISD::AND: Opcode = X86ISD::AND; break;
6921 }
6922
6923 NumOperands = 2;
6924 break;
6925 case X86ISD::ADD:
6926 case X86ISD::SUB:
6927 case X86ISD::INC:
6928 case X86ISD::DEC:
6929 case X86ISD::OR:
6930 case X86ISD::XOR:
6931 case X86ISD::AND:
6932 return SDValue(Op.getNode(), 1);
6933 default:
6934 default_case:
6935 break;
Dan Gohman076aee32009-03-04 19:44:21 +00006936 }
6937
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006938 if (Opcode == 0)
6939 // Emit a CMP with 0, which is the TEST pattern.
6940 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
6941 DAG.getConstant(0, Op.getValueType()));
6942
6943 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
6944 SmallVector<SDValue, 4> Ops;
6945 for (unsigned i = 0; i != NumOperands; ++i)
6946 Ops.push_back(Op.getOperand(i));
6947
6948 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
6949 DAG.ReplaceAllUsesWith(Op, New);
6950 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00006951}
6952
6953/// Emit nodes that will be selected as "cmp Op0,Op1", or something
6954/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00006955SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00006956 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00006957 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
6958 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00006959 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00006960
6961 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00006962 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00006963}
6964
Evan Chengd40d03e2010-01-06 19:38:29 +00006965/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
6966/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00006967SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
6968 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006969 SDValue Op0 = And.getOperand(0);
6970 SDValue Op1 = And.getOperand(1);
6971 if (Op0.getOpcode() == ISD::TRUNCATE)
6972 Op0 = Op0.getOperand(0);
6973 if (Op1.getOpcode() == ISD::TRUNCATE)
6974 Op1 = Op1.getOperand(0);
6975
Evan Chengd40d03e2010-01-06 19:38:29 +00006976 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00006977 if (Op1.getOpcode() == ISD::SHL)
6978 std::swap(Op0, Op1);
6979 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006980 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
6981 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00006982 // If we looked past a truncate, check that it's only truncating away
6983 // known zeros.
6984 unsigned BitWidth = Op0.getValueSizeInBits();
6985 unsigned AndBitWidth = And.getValueSizeInBits();
6986 if (BitWidth > AndBitWidth) {
6987 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
6988 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
6989 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
6990 return SDValue();
6991 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00006992 LHS = Op1;
6993 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00006994 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00006995 } else if (Op1.getOpcode() == ISD::Constant) {
6996 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
6997 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00006998 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
6999 LHS = AndLHS.getOperand(0);
7000 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007001 }
Evan Chengd40d03e2010-01-06 19:38:29 +00007002 }
Evan Cheng0488db92007-09-25 01:57:46 +00007003
Evan Chengd40d03e2010-01-06 19:38:29 +00007004 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00007005 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00007006 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00007007 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00007008 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00007009 // Also promote i16 to i32 for performance / code size reason.
7010 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00007011 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00007012 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00007013
Evan Chengd40d03e2010-01-06 19:38:29 +00007014 // If the operand types disagree, extend the shift amount to match. Since
7015 // BT ignores high bits (like shifts) we can use anyextend.
7016 if (LHS.getValueType() != RHS.getValueType())
7017 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007018
Evan Chengd40d03e2010-01-06 19:38:29 +00007019 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
7020 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
7021 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7022 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00007023 }
7024
Evan Cheng54de3ea2010-01-05 06:52:31 +00007025 return SDValue();
7026}
7027
Dan Gohmand858e902010-04-17 15:26:15 +00007028SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00007029 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
7030 SDValue Op0 = Op.getOperand(0);
7031 SDValue Op1 = Op.getOperand(1);
7032 DebugLoc dl = Op.getDebugLoc();
7033 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7034
7035 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00007036 // Lower (X & (1 << N)) == 0 to BT(X, N).
7037 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
7038 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
7039 if (Op0.getOpcode() == ISD::AND &&
7040 Op0.hasOneUse() &&
7041 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00007042 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007043 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7044 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
7045 if (NewSetCC.getNode())
7046 return NewSetCC;
7047 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00007048
Chris Lattnerb20e0b12010-12-05 07:30:36 +00007049 // Look for "(setcc) == / != 1" to avoid unnecessary setcc.
Evan Cheng2c755ba2010-02-27 07:36:59 +00007050 if (Op0.getOpcode() == X86ISD::SETCC &&
7051 Op1.getOpcode() == ISD::Constant &&
7052 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
7053 cast<ConstantSDNode>(Op1)->isNullValue()) &&
7054 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7055 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
7056 bool Invert = (CC == ISD::SETNE) ^
7057 cast<ConstantSDNode>(Op1)->isNullValue();
7058 if (Invert)
7059 CCode = X86::GetOppositeBranchCondition(CCode);
7060 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7061 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
7062 }
7063
Evan Chenge5b51ac2010-04-17 06:13:15 +00007064 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00007065 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007066 if (X86CC == X86::COND_INVALID)
7067 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007068
Evan Cheng552f09a2010-04-26 19:06:11 +00007069 SDValue Cond = EmitCmp(Op0, Op1, X86CC, DAG);
Evan Chengad9c0a32009-12-15 00:53:42 +00007070
7071 // Use sbb x, x to materialize carry bit into a GPR.
Evan Cheng2e489c42009-12-16 00:53:11 +00007072 if (X86CC == X86::COND_B)
Evan Chengad9c0a32009-12-15 00:53:42 +00007073 return DAG.getNode(ISD::AND, dl, MVT::i8,
7074 DAG.getNode(X86ISD::SETCC_CARRY, dl, MVT::i8,
7075 DAG.getConstant(X86CC, MVT::i8), Cond),
7076 DAG.getConstant(1, MVT::i8));
Evan Chengad9c0a32009-12-15 00:53:42 +00007077
Owen Anderson825b72b2009-08-11 20:47:22 +00007078 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7079 DAG.getConstant(X86CC, MVT::i8), Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00007080}
7081
Dan Gohmand858e902010-04-17 15:26:15 +00007082SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007083 SDValue Cond;
7084 SDValue Op0 = Op.getOperand(0);
7085 SDValue Op1 = Op.getOperand(1);
7086 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00007087 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00007088 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
7089 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007090 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00007091
7092 if (isFP) {
7093 unsigned SSECC = 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007094 EVT VT0 = Op0.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00007095 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
7096 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00007097 bool Swap = false;
7098
7099 switch (SetCCOpcode) {
7100 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007101 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00007102 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007103 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00007104 case ISD::SETGT: Swap = true; // Fallthrough
7105 case ISD::SETLT:
7106 case ISD::SETOLT: SSECC = 1; break;
7107 case ISD::SETOGE:
7108 case ISD::SETGE: Swap = true; // Fallthrough
7109 case ISD::SETLE:
7110 case ISD::SETOLE: SSECC = 2; break;
7111 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007112 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00007113 case ISD::SETNE: SSECC = 4; break;
7114 case ISD::SETULE: Swap = true;
7115 case ISD::SETUGE: SSECC = 5; break;
7116 case ISD::SETULT: Swap = true;
7117 case ISD::SETUGT: SSECC = 6; break;
7118 case ISD::SETO: SSECC = 7; break;
7119 }
7120 if (Swap)
7121 std::swap(Op0, Op1);
7122
Nate Begemanfb8ead02008-07-25 19:05:58 +00007123 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00007124 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00007125 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00007126 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007127 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
7128 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007129 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007130 }
7131 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00007132 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007133 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
7134 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007135 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007136 }
Torok Edwinc23197a2009-07-14 16:55:14 +00007137 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00007138 }
7139 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00007140 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00007141 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007142
Nate Begeman30a0de92008-07-17 16:51:19 +00007143 // We are handling one of the integer comparisons here. Since SSE only has
7144 // GT and EQ comparisons for integer, swapping operands and multiple
7145 // operations may be required for some comparisons.
7146 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
7147 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007148
Owen Anderson825b72b2009-08-11 20:47:22 +00007149 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00007150 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007151 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007152 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007153 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
7154 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00007155 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007156
Nate Begeman30a0de92008-07-17 16:51:19 +00007157 switch (SetCCOpcode) {
7158 default: break;
7159 case ISD::SETNE: Invert = true;
7160 case ISD::SETEQ: Opc = EQOpc; break;
7161 case ISD::SETLT: Swap = true;
7162 case ISD::SETGT: Opc = GTOpc; break;
7163 case ISD::SETGE: Swap = true;
7164 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
7165 case ISD::SETULT: Swap = true;
7166 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
7167 case ISD::SETUGE: Swap = true;
7168 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
7169 }
7170 if (Swap)
7171 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007172
Nate Begeman30a0de92008-07-17 16:51:19 +00007173 // Since SSE has no unsigned integer comparisons, we need to flip the sign
7174 // bits of the inputs before performing those operations.
7175 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00007176 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00007177 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
7178 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00007179 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00007180 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
7181 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00007182 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
7183 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00007184 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007185
Dale Johannesenace16102009-02-03 19:33:06 +00007186 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00007187
7188 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00007189 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00007190 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00007191
Nate Begeman30a0de92008-07-17 16:51:19 +00007192 return Result;
7193}
Evan Cheng0488db92007-09-25 01:57:46 +00007194
Evan Cheng370e5342008-12-03 08:38:43 +00007195// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00007196static bool isX86LogicalCmp(SDValue Op) {
7197 unsigned Opc = Op.getNode()->getOpcode();
7198 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
7199 return true;
7200 if (Op.getResNo() == 1 &&
7201 (Opc == X86ISD::ADD ||
7202 Opc == X86ISD::SUB ||
7203 Opc == X86ISD::SMUL ||
7204 Opc == X86ISD::UMUL ||
7205 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00007206 Opc == X86ISD::DEC ||
7207 Opc == X86ISD::OR ||
7208 Opc == X86ISD::XOR ||
7209 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00007210 return true;
7211
Chris Lattner9637d5b2010-12-05 07:49:54 +00007212 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
7213 return true;
7214
Dan Gohman076aee32009-03-04 19:44:21 +00007215 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00007216}
7217
Chris Lattnera2b56002010-12-05 01:23:24 +00007218static bool isZero(SDValue V) {
7219 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
7220 return C && C->isNullValue();
7221}
7222
Chris Lattner96908b12010-12-05 02:00:51 +00007223static bool isAllOnes(SDValue V) {
7224 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
7225 return C && C->isAllOnesValue();
7226}
7227
Dan Gohmand858e902010-04-17 15:26:15 +00007228SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007229 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007230 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +00007231 SDValue Op1 = Op.getOperand(1);
7232 SDValue Op2 = Op.getOperand(2);
7233 DebugLoc DL = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007234 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00007235
Dan Gohman1a492952009-10-20 16:22:37 +00007236 if (Cond.getOpcode() == ISD::SETCC) {
7237 SDValue NewCond = LowerSETCC(Cond, DAG);
7238 if (NewCond.getNode())
7239 Cond = NewCond;
7240 }
Evan Cheng734503b2006-09-11 02:19:56 +00007241
Chris Lattnera2b56002010-12-05 01:23:24 +00007242 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00007243 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +00007244 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00007245 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007246 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +00007247 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
7248 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007249 SDValue Cmp = Cond.getOperand(1);
Chris Lattnera2b56002010-12-05 01:23:24 +00007250
7251 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
7252
Chris Lattner96908b12010-12-05 02:00:51 +00007253 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
7254 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
7255 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +00007256
7257 SDValue CmpOp0 = Cmp.getOperand(0);
7258 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
7259 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
7260
Chris Lattner96908b12010-12-05 02:00:51 +00007261 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +00007262 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
7263 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
Chris Lattner96908b12010-12-05 02:00:51 +00007264
7265 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
7266 Res = DAG.getNOT(DL, Res, Res.getValueType());
7267
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007268 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +00007269 if (N2C == 0 || !N2C->isNullValue())
7270 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
7271 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007272 }
7273 }
7274
Chris Lattnera2b56002010-12-05 01:23:24 +00007275 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +00007276 if (Cond.getOpcode() == ISD::AND &&
7277 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7278 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007279 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007280 Cond = Cond.getOperand(0);
7281 }
7282
Evan Cheng3f41d662007-10-08 22:16:29 +00007283 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7284 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007285 if (Cond.getOpcode() == X86ISD::SETCC ||
7286 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007287 CC = Cond.getOperand(0);
7288
Dan Gohman475871a2008-07-27 21:46:04 +00007289 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007290 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00007291 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00007292
Evan Cheng3f41d662007-10-08 22:16:29 +00007293 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007294 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00007295 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00007296 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00007297
Chris Lattnerd1980a52009-03-12 06:52:53 +00007298 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
7299 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00007300 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007301 addTest = false;
7302 }
7303 }
7304
7305 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007306 // Look pass the truncate.
7307 if (Cond.getOpcode() == ISD::TRUNCATE)
7308 Cond = Cond.getOperand(0);
7309
7310 // We know the result of AND is compared against zero. Try to match
7311 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007312 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +00007313 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +00007314 if (NewSetCC.getNode()) {
7315 CC = NewSetCC.getOperand(0);
7316 Cond = NewSetCC.getOperand(1);
7317 addTest = false;
7318 }
7319 }
7320 }
7321
7322 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007323 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007324 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007325 }
7326
Evan Cheng0488db92007-09-25 01:57:46 +00007327 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
7328 // condition is true.
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007329 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Flag);
7330 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +00007331 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00007332}
7333
Evan Cheng370e5342008-12-03 08:38:43 +00007334// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
7335// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
7336// from the AND / OR.
7337static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
7338 Opc = Op.getOpcode();
7339 if (Opc != ISD::OR && Opc != ISD::AND)
7340 return false;
7341 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7342 Op.getOperand(0).hasOneUse() &&
7343 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
7344 Op.getOperand(1).hasOneUse());
7345}
7346
Evan Cheng961d6d42009-02-02 08:19:07 +00007347// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
7348// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00007349static bool isXor1OfSetCC(SDValue Op) {
7350 if (Op.getOpcode() != ISD::XOR)
7351 return false;
7352 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7353 if (N1C && N1C->getAPIntValue() == 1) {
7354 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7355 Op.getOperand(0).hasOneUse();
7356 }
7357 return false;
7358}
7359
Dan Gohmand858e902010-04-17 15:26:15 +00007360SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007361 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007362 SDValue Chain = Op.getOperand(0);
7363 SDValue Cond = Op.getOperand(1);
7364 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007365 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007366 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00007367
Dan Gohman1a492952009-10-20 16:22:37 +00007368 if (Cond.getOpcode() == ISD::SETCC) {
7369 SDValue NewCond = LowerSETCC(Cond, DAG);
7370 if (NewCond.getNode())
7371 Cond = NewCond;
7372 }
Chris Lattnere55484e2008-12-25 05:34:37 +00007373#if 0
7374 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00007375 else if (Cond.getOpcode() == X86ISD::ADD ||
7376 Cond.getOpcode() == X86ISD::SUB ||
7377 Cond.getOpcode() == X86ISD::SMUL ||
7378 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00007379 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00007380#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00007381
Evan Chengad9c0a32009-12-15 00:53:42 +00007382 // Look pass (and (setcc_carry (cmp ...)), 1).
7383 if (Cond.getOpcode() == ISD::AND &&
7384 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7385 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007386 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007387 Cond = Cond.getOperand(0);
7388 }
7389
Evan Cheng3f41d662007-10-08 22:16:29 +00007390 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7391 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007392 if (Cond.getOpcode() == X86ISD::SETCC ||
7393 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007394 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007395
Dan Gohman475871a2008-07-27 21:46:04 +00007396 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007397 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00007398 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00007399 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00007400 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007401 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00007402 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00007403 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007404 default: break;
7405 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00007406 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00007407 // These can only come from an arithmetic instruction with overflow,
7408 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007409 Cond = Cond.getNode()->getOperand(1);
7410 addTest = false;
7411 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00007412 }
Evan Cheng0488db92007-09-25 01:57:46 +00007413 }
Evan Cheng370e5342008-12-03 08:38:43 +00007414 } else {
7415 unsigned CondOpc;
7416 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
7417 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00007418 if (CondOpc == ISD::OR) {
7419 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
7420 // two branches instead of an explicit OR instruction with a
7421 // separate test.
7422 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007423 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00007424 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007425 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007426 Chain, Dest, CC, Cmp);
7427 CC = Cond.getOperand(1).getOperand(0);
7428 Cond = Cmp;
7429 addTest = false;
7430 }
7431 } else { // ISD::AND
7432 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
7433 // two branches instead of an explicit AND instruction with a
7434 // separate test. However, we only do this if this block doesn't
7435 // have a fall-through edge, because this requires an explicit
7436 // jmp when the condition is false.
7437 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007438 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00007439 Op.getNode()->hasOneUse()) {
7440 X86::CondCode CCode =
7441 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7442 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007443 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00007444 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00007445 // Look for an unconditional branch following this conditional branch.
7446 // We need this because we need to reverse the successors in order
7447 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00007448 if (User->getOpcode() == ISD::BR) {
7449 SDValue FalseBB = User->getOperand(1);
7450 SDNode *NewBR =
7451 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00007452 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00007453 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00007454 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00007455
Dale Johannesene4d209d2009-02-03 20:21:25 +00007456 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007457 Chain, Dest, CC, Cmp);
7458 X86::CondCode CCode =
7459 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
7460 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007461 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00007462 Cond = Cmp;
7463 addTest = false;
7464 }
7465 }
Dan Gohman279c22e2008-10-21 03:29:32 +00007466 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00007467 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
7468 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
7469 // It should be transformed during dag combiner except when the condition
7470 // is set by a arithmetics with overflow node.
7471 X86::CondCode CCode =
7472 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7473 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007474 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00007475 Cond = Cond.getOperand(0).getOperand(1);
7476 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00007477 }
Evan Cheng0488db92007-09-25 01:57:46 +00007478 }
7479
7480 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007481 // Look pass the truncate.
7482 if (Cond.getOpcode() == ISD::TRUNCATE)
7483 Cond = Cond.getOperand(0);
7484
7485 // We know the result of AND is compared against zero. Try to match
7486 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007487 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007488 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
7489 if (NewSetCC.getNode()) {
7490 CC = NewSetCC.getOperand(0);
7491 Cond = NewSetCC.getOperand(1);
7492 addTest = false;
7493 }
7494 }
7495 }
7496
7497 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007498 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007499 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007500 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00007501 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00007502 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00007503}
7504
Anton Korobeynikove060b532007-04-17 19:34:00 +00007505
7506// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
7507// Calls to _alloca is needed to probe the stack when allocating more than 4k
7508// bytes in one go. Touching the stack at 4K increments is necessary to ensure
7509// that the guard pages used by the OS virtual memory manager are allocated in
7510// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00007511SDValue
7512X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007513 SelectionDAG &DAG) const {
Duncan Sands1e1ca0b2010-10-21 16:02:12 +00007514 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) &&
Michael J. Spencere9c253e2010-10-21 01:41:01 +00007515 "This should be used only on Windows targets");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007516 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007517
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007518 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00007519 SDValue Chain = Op.getOperand(0);
7520 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007521 // FIXME: Ensure alignment here
7522
Dan Gohman475871a2008-07-27 21:46:04 +00007523 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007524
Owen Anderson825b72b2009-08-11 20:47:22 +00007525 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007526
Dale Johannesendd64c412009-02-04 00:33:20 +00007527 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007528 Flag = Chain.getValue(1);
7529
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00007530 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007531
Michael J. Spencere9c253e2010-10-21 01:41:01 +00007532 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00007533 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007534
Dale Johannesendd64c412009-02-04 00:33:20 +00007535 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007536
Dan Gohman475871a2008-07-27 21:46:04 +00007537 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00007538 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007539}
7540
Dan Gohmand858e902010-04-17 15:26:15 +00007541SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00007542 MachineFunction &MF = DAG.getMachineFunction();
7543 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
7544
Dan Gohman69de1932008-02-06 22:27:42 +00007545 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00007546 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00007547
Anton Korobeynikove7beda12010-10-03 22:52:07 +00007548 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00007549 // vastart just stores the address of the VarArgsFrameIndex slot into the
7550 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00007551 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
7552 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007553 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
7554 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007555 }
7556
7557 // __va_list_tag:
7558 // gp_offset (0 - 6 * 8)
7559 // fp_offset (48 - 48 + 8 * 16)
7560 // overflow_arg_area (point to parameters coming in memory).
7561 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00007562 SmallVector<SDValue, 8> MemOps;
7563 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00007564 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00007565 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00007566 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
7567 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007568 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007569 MemOps.push_back(Store);
7570
7571 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00007572 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007573 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00007574 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00007575 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
7576 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007577 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007578 MemOps.push_back(Store);
7579
7580 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00007581 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007582 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00007583 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
7584 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007585 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
7586 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00007587 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007588 MemOps.push_back(Store);
7589
7590 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00007591 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007592 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00007593 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
7594 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007595 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
7596 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007597 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00007598 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00007599 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00007600}
7601
Dan Gohmand858e902010-04-17 15:26:15 +00007602SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00007603 assert(Subtarget->is64Bit() &&
7604 "LowerVAARG only handles 64-bit va_arg!");
7605 assert((Subtarget->isTargetLinux() ||
7606 Subtarget->isTargetDarwin()) &&
7607 "Unhandled target in LowerVAARG");
7608 assert(Op.getNode()->getNumOperands() == 4);
7609 SDValue Chain = Op.getOperand(0);
7610 SDValue SrcPtr = Op.getOperand(1);
7611 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
7612 unsigned Align = Op.getConstantOperandVal(3);
7613 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00007614
Dan Gohman320afb82010-10-12 18:00:49 +00007615 EVT ArgVT = Op.getNode()->getValueType(0);
7616 const Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
7617 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
7618 uint8_t ArgMode;
7619
7620 // Decide which area this value should be read from.
7621 // TODO: Implement the AMD64 ABI in its entirety. This simple
7622 // selection mechanism works only for the basic types.
7623 if (ArgVT == MVT::f80) {
7624 llvm_unreachable("va_arg for f80 not yet implemented");
7625 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
7626 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
7627 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
7628 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
7629 } else {
7630 llvm_unreachable("Unhandled argument type in LowerVAARG");
7631 }
7632
7633 if (ArgMode == 2) {
7634 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00007635 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00007636 !(DAG.getMachineFunction()
7637 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00007638 Subtarget->hasXMM());
Dan Gohman320afb82010-10-12 18:00:49 +00007639 }
7640
7641 // Insert VAARG_64 node into the DAG
7642 // VAARG_64 returns two values: Variable Argument Address, Chain
7643 SmallVector<SDValue, 11> InstOps;
7644 InstOps.push_back(Chain);
7645 InstOps.push_back(SrcPtr);
7646 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
7647 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
7648 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
7649 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
7650 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
7651 VTs, &InstOps[0], InstOps.size(),
7652 MVT::i64,
7653 MachinePointerInfo(SV),
7654 /*Align=*/0,
7655 /*Volatile=*/false,
7656 /*ReadMem=*/true,
7657 /*WriteMem=*/true);
7658 Chain = VAARG.getValue(1);
7659
7660 // Load the next argument and return it
7661 return DAG.getLoad(ArgVT, dl,
7662 Chain,
7663 VAARG,
7664 MachinePointerInfo(),
7665 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00007666}
7667
Dan Gohmand858e902010-04-17 15:26:15 +00007668SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00007669 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00007670 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00007671 SDValue Chain = Op.getOperand(0);
7672 SDValue DstPtr = Op.getOperand(1);
7673 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00007674 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
7675 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00007676 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00007677
Chris Lattnere72f2022010-09-21 05:40:29 +00007678 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00007679 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00007680 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00007681 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00007682}
7683
Dan Gohman475871a2008-07-27 21:46:04 +00007684SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007685X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007686 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007687 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007688 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00007689 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00007690 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00007691 case Intrinsic::x86_sse_comieq_ss:
7692 case Intrinsic::x86_sse_comilt_ss:
7693 case Intrinsic::x86_sse_comile_ss:
7694 case Intrinsic::x86_sse_comigt_ss:
7695 case Intrinsic::x86_sse_comige_ss:
7696 case Intrinsic::x86_sse_comineq_ss:
7697 case Intrinsic::x86_sse_ucomieq_ss:
7698 case Intrinsic::x86_sse_ucomilt_ss:
7699 case Intrinsic::x86_sse_ucomile_ss:
7700 case Intrinsic::x86_sse_ucomigt_ss:
7701 case Intrinsic::x86_sse_ucomige_ss:
7702 case Intrinsic::x86_sse_ucomineq_ss:
7703 case Intrinsic::x86_sse2_comieq_sd:
7704 case Intrinsic::x86_sse2_comilt_sd:
7705 case Intrinsic::x86_sse2_comile_sd:
7706 case Intrinsic::x86_sse2_comigt_sd:
7707 case Intrinsic::x86_sse2_comige_sd:
7708 case Intrinsic::x86_sse2_comineq_sd:
7709 case Intrinsic::x86_sse2_ucomieq_sd:
7710 case Intrinsic::x86_sse2_ucomilt_sd:
7711 case Intrinsic::x86_sse2_ucomile_sd:
7712 case Intrinsic::x86_sse2_ucomigt_sd:
7713 case Intrinsic::x86_sse2_ucomige_sd:
7714 case Intrinsic::x86_sse2_ucomineq_sd: {
7715 unsigned Opc = 0;
7716 ISD::CondCode CC = ISD::SETCC_INVALID;
7717 switch (IntNo) {
7718 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007719 case Intrinsic::x86_sse_comieq_ss:
7720 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007721 Opc = X86ISD::COMI;
7722 CC = ISD::SETEQ;
7723 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00007724 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007725 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007726 Opc = X86ISD::COMI;
7727 CC = ISD::SETLT;
7728 break;
7729 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007730 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007731 Opc = X86ISD::COMI;
7732 CC = ISD::SETLE;
7733 break;
7734 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007735 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007736 Opc = X86ISD::COMI;
7737 CC = ISD::SETGT;
7738 break;
7739 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007740 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007741 Opc = X86ISD::COMI;
7742 CC = ISD::SETGE;
7743 break;
7744 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007745 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007746 Opc = X86ISD::COMI;
7747 CC = ISD::SETNE;
7748 break;
7749 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007750 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007751 Opc = X86ISD::UCOMI;
7752 CC = ISD::SETEQ;
7753 break;
7754 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007755 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007756 Opc = X86ISD::UCOMI;
7757 CC = ISD::SETLT;
7758 break;
7759 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007760 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007761 Opc = X86ISD::UCOMI;
7762 CC = ISD::SETLE;
7763 break;
7764 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007765 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007766 Opc = X86ISD::UCOMI;
7767 CC = ISD::SETGT;
7768 break;
7769 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007770 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007771 Opc = X86ISD::UCOMI;
7772 CC = ISD::SETGE;
7773 break;
7774 case Intrinsic::x86_sse_ucomineq_ss:
7775 case Intrinsic::x86_sse2_ucomineq_sd:
7776 Opc = X86ISD::UCOMI;
7777 CC = ISD::SETNE;
7778 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00007779 }
Evan Cheng734503b2006-09-11 02:19:56 +00007780
Dan Gohman475871a2008-07-27 21:46:04 +00007781 SDValue LHS = Op.getOperand(1);
7782 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00007783 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007784 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007785 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
7786 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7787 DAG.getConstant(X86CC, MVT::i8), Cond);
7788 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00007789 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007790 // ptest and testp intrinsics. The intrinsic these come from are designed to
7791 // return an integer value, not just an instruction so lower it to the ptest
7792 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00007793 case Intrinsic::x86_sse41_ptestz:
7794 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007795 case Intrinsic::x86_sse41_ptestnzc:
7796 case Intrinsic::x86_avx_ptestz_256:
7797 case Intrinsic::x86_avx_ptestc_256:
7798 case Intrinsic::x86_avx_ptestnzc_256:
7799 case Intrinsic::x86_avx_vtestz_ps:
7800 case Intrinsic::x86_avx_vtestc_ps:
7801 case Intrinsic::x86_avx_vtestnzc_ps:
7802 case Intrinsic::x86_avx_vtestz_pd:
7803 case Intrinsic::x86_avx_vtestc_pd:
7804 case Intrinsic::x86_avx_vtestnzc_pd:
7805 case Intrinsic::x86_avx_vtestz_ps_256:
7806 case Intrinsic::x86_avx_vtestc_ps_256:
7807 case Intrinsic::x86_avx_vtestnzc_ps_256:
7808 case Intrinsic::x86_avx_vtestz_pd_256:
7809 case Intrinsic::x86_avx_vtestc_pd_256:
7810 case Intrinsic::x86_avx_vtestnzc_pd_256: {
7811 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00007812 unsigned X86CC = 0;
7813 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00007814 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007815 case Intrinsic::x86_avx_vtestz_ps:
7816 case Intrinsic::x86_avx_vtestz_pd:
7817 case Intrinsic::x86_avx_vtestz_ps_256:
7818 case Intrinsic::x86_avx_vtestz_pd_256:
7819 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00007820 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007821 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007822 // ZF = 1
7823 X86CC = X86::COND_E;
7824 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007825 case Intrinsic::x86_avx_vtestc_ps:
7826 case Intrinsic::x86_avx_vtestc_pd:
7827 case Intrinsic::x86_avx_vtestc_ps_256:
7828 case Intrinsic::x86_avx_vtestc_pd_256:
7829 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00007830 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007831 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007832 // CF = 1
7833 X86CC = X86::COND_B;
7834 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007835 case Intrinsic::x86_avx_vtestnzc_ps:
7836 case Intrinsic::x86_avx_vtestnzc_pd:
7837 case Intrinsic::x86_avx_vtestnzc_ps_256:
7838 case Intrinsic::x86_avx_vtestnzc_pd_256:
7839 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00007840 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007841 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007842 // ZF and CF = 0
7843 X86CC = X86::COND_A;
7844 break;
7845 }
Eric Christopherfd179292009-08-27 18:07:15 +00007846
Eric Christopher71c67532009-07-29 00:28:05 +00007847 SDValue LHS = Op.getOperand(1);
7848 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007849 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
7850 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00007851 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
7852 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
7853 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00007854 }
Evan Cheng5759f972008-05-04 09:15:50 +00007855
7856 // Fix vector shift instructions where the last operand is a non-immediate
7857 // i32 value.
7858 case Intrinsic::x86_sse2_pslli_w:
7859 case Intrinsic::x86_sse2_pslli_d:
7860 case Intrinsic::x86_sse2_pslli_q:
7861 case Intrinsic::x86_sse2_psrli_w:
7862 case Intrinsic::x86_sse2_psrli_d:
7863 case Intrinsic::x86_sse2_psrli_q:
7864 case Intrinsic::x86_sse2_psrai_w:
7865 case Intrinsic::x86_sse2_psrai_d:
7866 case Intrinsic::x86_mmx_pslli_w:
7867 case Intrinsic::x86_mmx_pslli_d:
7868 case Intrinsic::x86_mmx_pslli_q:
7869 case Intrinsic::x86_mmx_psrli_w:
7870 case Intrinsic::x86_mmx_psrli_d:
7871 case Intrinsic::x86_mmx_psrli_q:
7872 case Intrinsic::x86_mmx_psrai_w:
7873 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00007874 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00007875 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00007876 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00007877
7878 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00007879 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00007880 switch (IntNo) {
7881 case Intrinsic::x86_sse2_pslli_w:
7882 NewIntNo = Intrinsic::x86_sse2_psll_w;
7883 break;
7884 case Intrinsic::x86_sse2_pslli_d:
7885 NewIntNo = Intrinsic::x86_sse2_psll_d;
7886 break;
7887 case Intrinsic::x86_sse2_pslli_q:
7888 NewIntNo = Intrinsic::x86_sse2_psll_q;
7889 break;
7890 case Intrinsic::x86_sse2_psrli_w:
7891 NewIntNo = Intrinsic::x86_sse2_psrl_w;
7892 break;
7893 case Intrinsic::x86_sse2_psrli_d:
7894 NewIntNo = Intrinsic::x86_sse2_psrl_d;
7895 break;
7896 case Intrinsic::x86_sse2_psrli_q:
7897 NewIntNo = Intrinsic::x86_sse2_psrl_q;
7898 break;
7899 case Intrinsic::x86_sse2_psrai_w:
7900 NewIntNo = Intrinsic::x86_sse2_psra_w;
7901 break;
7902 case Intrinsic::x86_sse2_psrai_d:
7903 NewIntNo = Intrinsic::x86_sse2_psra_d;
7904 break;
7905 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00007906 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00007907 switch (IntNo) {
7908 case Intrinsic::x86_mmx_pslli_w:
7909 NewIntNo = Intrinsic::x86_mmx_psll_w;
7910 break;
7911 case Intrinsic::x86_mmx_pslli_d:
7912 NewIntNo = Intrinsic::x86_mmx_psll_d;
7913 break;
7914 case Intrinsic::x86_mmx_pslli_q:
7915 NewIntNo = Intrinsic::x86_mmx_psll_q;
7916 break;
7917 case Intrinsic::x86_mmx_psrli_w:
7918 NewIntNo = Intrinsic::x86_mmx_psrl_w;
7919 break;
7920 case Intrinsic::x86_mmx_psrli_d:
7921 NewIntNo = Intrinsic::x86_mmx_psrl_d;
7922 break;
7923 case Intrinsic::x86_mmx_psrli_q:
7924 NewIntNo = Intrinsic::x86_mmx_psrl_q;
7925 break;
7926 case Intrinsic::x86_mmx_psrai_w:
7927 NewIntNo = Intrinsic::x86_mmx_psra_w;
7928 break;
7929 case Intrinsic::x86_mmx_psrai_d:
7930 NewIntNo = Intrinsic::x86_mmx_psra_d;
7931 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00007932 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00007933 }
7934 break;
7935 }
7936 }
Mon P Wangefa42202009-09-03 19:56:25 +00007937
7938 // The vector shift intrinsics with scalars uses 32b shift amounts but
7939 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
7940 // to be zero.
7941 SDValue ShOps[4];
7942 ShOps[0] = ShAmt;
7943 ShOps[1] = DAG.getConstant(0, MVT::i32);
7944 if (ShAmtVT == MVT::v4i32) {
7945 ShOps[2] = DAG.getUNDEF(MVT::i32);
7946 ShOps[3] = DAG.getUNDEF(MVT::i32);
7947 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
7948 } else {
7949 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00007950// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00007951 }
7952
Owen Andersone50ed302009-08-10 22:56:29 +00007953 EVT VT = Op.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007954 ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007955 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007956 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00007957 Op.getOperand(1), ShAmt);
7958 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00007959 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007960}
Evan Cheng72261582005-12-20 06:22:03 +00007961
Dan Gohmand858e902010-04-17 15:26:15 +00007962SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
7963 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00007964 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7965 MFI->setReturnAddressIsTaken(true);
7966
Bill Wendling64e87322009-01-16 19:25:27 +00007967 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007968 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00007969
7970 if (Depth > 0) {
7971 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
7972 SDValue Offset =
7973 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007974 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007975 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007976 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007977 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00007978 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00007979 }
7980
7981 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00007982 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00007983 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007984 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00007985}
7986
Dan Gohmand858e902010-04-17 15:26:15 +00007987SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00007988 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7989 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00007990
Owen Andersone50ed302009-08-10 22:56:29 +00007991 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007992 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00007993 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
7994 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00007995 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00007996 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00007997 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
7998 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00007999 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00008000 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00008001}
8002
Dan Gohman475871a2008-07-27 21:46:04 +00008003SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008004 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008005 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008006}
8007
Dan Gohmand858e902010-04-17 15:26:15 +00008008SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008009 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00008010 SDValue Chain = Op.getOperand(0);
8011 SDValue Offset = Op.getOperand(1);
8012 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008013 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008014
Dan Gohmand8816272010-08-11 18:14:00 +00008015 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
8016 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
8017 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008018 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008019
Dan Gohmand8816272010-08-11 18:14:00 +00008020 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
8021 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008022 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008023 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
8024 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00008025 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008026 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008027
Dale Johannesene4d209d2009-02-03 20:21:25 +00008028 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008029 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008030 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008031}
8032
Dan Gohman475871a2008-07-27 21:46:04 +00008033SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008034 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008035 SDValue Root = Op.getOperand(0);
8036 SDValue Trmp = Op.getOperand(1); // trampoline
8037 SDValue FPtr = Op.getOperand(2); // nested function
8038 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008039 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008040
Dan Gohman69de1932008-02-06 22:27:42 +00008041 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008042
8043 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008044 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00008045
8046 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00008047 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
8048 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00008049
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008050 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
8051 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00008052
8053 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
8054
8055 // Load the pointer to the nested function into R11.
8056 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00008057 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00008058 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008059 Addr, MachinePointerInfo(TrmpAddr),
8060 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008061
Owen Anderson825b72b2009-08-11 20:47:22 +00008062 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8063 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008064 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
8065 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00008066 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008067
8068 // Load the 'nest' parameter value into R10.
8069 // R10 is specified in X86CallingConv.td
8070 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00008071 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8072 DAG.getConstant(10, MVT::i64));
8073 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008074 Addr, MachinePointerInfo(TrmpAddr, 10),
8075 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008076
Owen Anderson825b72b2009-08-11 20:47:22 +00008077 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8078 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008079 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
8080 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00008081 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008082
8083 // Jump to the nested function.
8084 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00008085 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8086 DAG.getConstant(20, MVT::i64));
8087 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008088 Addr, MachinePointerInfo(TrmpAddr, 20),
8089 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008090
8091 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00008092 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8093 DAG.getConstant(22, MVT::i64));
8094 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008095 MachinePointerInfo(TrmpAddr, 22),
8096 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008097
Dan Gohman475871a2008-07-27 21:46:04 +00008098 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008099 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008100 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008101 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00008102 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00008103 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00008104 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00008105 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008106
8107 switch (CC) {
8108 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00008109 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008110 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008111 case CallingConv::X86_StdCall: {
8112 // Pass 'nest' parameter in ECX.
8113 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008114 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008115
8116 // Check that ECX wasn't needed by an 'inreg' parameter.
8117 const FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00008118 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008119
Chris Lattner58d74912008-03-12 17:45:29 +00008120 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00008121 unsigned InRegCount = 0;
8122 unsigned Idx = 1;
8123
8124 for (FunctionType::param_iterator I = FTy->param_begin(),
8125 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00008126 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00008127 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008128 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008129
8130 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00008131 report_fatal_error("Nest register in use - reduce number of inreg"
8132 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008133 }
8134 }
8135 break;
8136 }
8137 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00008138 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00008139 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008140 // Pass 'nest' parameter in EAX.
8141 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008142 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008143 break;
8144 }
8145
Dan Gohman475871a2008-07-27 21:46:04 +00008146 SDValue OutChains[4];
8147 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008148
Owen Anderson825b72b2009-08-11 20:47:22 +00008149 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8150 DAG.getConstant(10, MVT::i32));
8151 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008152
Chris Lattnera62fe662010-02-05 19:20:30 +00008153 // This is storing the opcode for MOV32ri.
8154 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008155 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00008156 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008157 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008158 Trmp, MachinePointerInfo(TrmpAddr),
8159 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008160
Owen Anderson825b72b2009-08-11 20:47:22 +00008161 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8162 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008163 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
8164 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00008165 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008166
Chris Lattnera62fe662010-02-05 19:20:30 +00008167 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00008168 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8169 DAG.getConstant(5, MVT::i32));
8170 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008171 MachinePointerInfo(TrmpAddr, 5),
8172 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008173
Owen Anderson825b72b2009-08-11 20:47:22 +00008174 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8175 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008176 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
8177 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00008178 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008179
Dan Gohman475871a2008-07-27 21:46:04 +00008180 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008181 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008182 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008183 }
8184}
8185
Dan Gohmand858e902010-04-17 15:26:15 +00008186SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
8187 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008188 /*
8189 The rounding mode is in bits 11:10 of FPSR, and has the following
8190 settings:
8191 00 Round to nearest
8192 01 Round to -inf
8193 10 Round to +inf
8194 11 Round to 0
8195
8196 FLT_ROUNDS, on the other hand, expects the following:
8197 -1 Undefined
8198 0 Round to 0
8199 1 Round to nearest
8200 2 Round to +inf
8201 3 Round to -inf
8202
8203 To perform the conversion, we do:
8204 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
8205 */
8206
8207 MachineFunction &MF = DAG.getMachineFunction();
8208 const TargetMachine &TM = MF.getTarget();
8209 const TargetFrameInfo &TFI = *TM.getFrameInfo();
8210 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00008211 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00008212 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008213
8214 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00008215 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008216 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008217
Michael J. Spencerec38de22010-10-10 22:04:20 +00008218
Chris Lattner2156b792010-09-22 01:11:26 +00008219 MachineMemOperand *MMO =
8220 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8221 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008222
Chris Lattner2156b792010-09-22 01:11:26 +00008223 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
8224 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
8225 DAG.getVTList(MVT::Other),
8226 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008227
8228 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00008229 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00008230 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008231
8232 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00008233 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00008234 DAG.getNode(ISD::SRL, DL, MVT::i16,
8235 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008236 CWD, DAG.getConstant(0x800, MVT::i16)),
8237 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00008238 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00008239 DAG.getNode(ISD::SRL, DL, MVT::i16,
8240 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008241 CWD, DAG.getConstant(0x400, MVT::i16)),
8242 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008243
Dan Gohman475871a2008-07-27 21:46:04 +00008244 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00008245 DAG.getNode(ISD::AND, DL, MVT::i16,
8246 DAG.getNode(ISD::ADD, DL, MVT::i16,
8247 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00008248 DAG.getConstant(1, MVT::i16)),
8249 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008250
8251
Duncan Sands83ec4b62008-06-06 12:08:01 +00008252 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00008253 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008254}
8255
Dan Gohmand858e902010-04-17 15:26:15 +00008256SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008257 EVT VT = Op.getValueType();
8258 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008259 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008260 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008261
8262 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008263 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00008264 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00008265 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008266 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008267 }
Evan Cheng18efe262007-12-14 02:13:44 +00008268
Evan Cheng152804e2007-12-14 08:30:15 +00008269 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008270 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008271 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008272
8273 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008274 SDValue Ops[] = {
8275 Op,
8276 DAG.getConstant(NumBits+NumBits-1, OpVT),
8277 DAG.getConstant(X86::COND_E, MVT::i8),
8278 Op.getValue(1)
8279 };
8280 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008281
8282 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00008283 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00008284
Owen Anderson825b72b2009-08-11 20:47:22 +00008285 if (VT == MVT::i8)
8286 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008287 return Op;
8288}
8289
Dan Gohmand858e902010-04-17 15:26:15 +00008290SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008291 EVT VT = Op.getValueType();
8292 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008293 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008294 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008295
8296 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008297 if (VT == MVT::i8) {
8298 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008299 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008300 }
Evan Cheng152804e2007-12-14 08:30:15 +00008301
8302 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008303 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008304 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008305
8306 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008307 SDValue Ops[] = {
8308 Op,
8309 DAG.getConstant(NumBits, OpVT),
8310 DAG.getConstant(X86::COND_E, MVT::i8),
8311 Op.getValue(1)
8312 };
8313 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008314
Owen Anderson825b72b2009-08-11 20:47:22 +00008315 if (VT == MVT::i8)
8316 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008317 return Op;
8318}
8319
Dan Gohmand858e902010-04-17 15:26:15 +00008320SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008321 EVT VT = Op.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00008322 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008323 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00008324
Mon P Wangaf9b9522008-12-18 21:42:19 +00008325 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
8326 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
8327 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
8328 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
8329 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
8330 //
8331 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
8332 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
8333 // return AloBlo + AloBhi + AhiBlo;
8334
8335 SDValue A = Op.getOperand(0);
8336 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008337
Dale Johannesene4d209d2009-02-03 20:21:25 +00008338 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008339 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8340 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008341 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008342 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8343 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008344 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008345 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008346 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008347 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008348 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008349 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008350 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008351 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008352 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008353 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008354 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8355 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008356 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008357 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8358 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008359 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
8360 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008361 return Res;
8362}
8363
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008364SDValue X86TargetLowering::LowerSHL(SDValue Op, SelectionDAG &DAG) const {
8365 EVT VT = Op.getValueType();
8366 DebugLoc dl = Op.getDebugLoc();
8367 SDValue R = Op.getOperand(0);
8368
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008369 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008370
Nate Begeman51409212010-07-28 00:21:48 +00008371 assert(Subtarget->hasSSE41() && "Cannot lower SHL without SSE4.1 or later");
8372
8373 if (VT == MVT::v4i32) {
8374 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8375 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8376 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
8377
8378 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008379
Nate Begeman51409212010-07-28 00:21:48 +00008380 std::vector<Constant*> CV(4, CI);
8381 Constant *C = ConstantVector::get(CV);
8382 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8383 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008384 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008385 false, false, 16);
8386
8387 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008388 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +00008389 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
8390 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
8391 }
8392 if (VT == MVT::v16i8) {
8393 // a = a << 5;
8394 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8395 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
8396 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
8397
8398 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
8399 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
8400
8401 std::vector<Constant*> CVM1(16, CM1);
8402 std::vector<Constant*> CVM2(16, CM2);
8403 Constant *C = ConstantVector::get(CVM1);
8404 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8405 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008406 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008407 false, false, 16);
8408
8409 // r = pblendv(r, psllw(r & (char16)15, 4), a);
8410 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8411 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8412 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8413 DAG.getConstant(4, MVT::i32));
8414 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8415 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8416 R, M, Op);
8417 // a += a
8418 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008419
Nate Begeman51409212010-07-28 00:21:48 +00008420 C = ConstantVector::get(CVM2);
8421 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8422 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008423 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00008424 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008425
Nate Begeman51409212010-07-28 00:21:48 +00008426 // r = pblendv(r, psllw(r & (char16)63, 2), a);
8427 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8428 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8429 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8430 DAG.getConstant(2, MVT::i32));
8431 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8432 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8433 R, M, Op);
8434 // a += a
8435 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008436
Nate Begeman51409212010-07-28 00:21:48 +00008437 // return pblendv(r, r+r, a);
8438 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8439 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8440 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
8441 return R;
8442 }
8443 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008444}
Mon P Wangaf9b9522008-12-18 21:42:19 +00008445
Dan Gohmand858e902010-04-17 15:26:15 +00008446SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00008447 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
8448 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00008449 // looks for this combo and may remove the "setcc" instruction if the "setcc"
8450 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00008451 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00008452 SDValue LHS = N->getOperand(0);
8453 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00008454 unsigned BaseOp = 0;
8455 unsigned Cond = 0;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00008456 DebugLoc DL = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00008457 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008458 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00008459 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00008460 // A subtract of one will be selected as a INC. Note that INC doesn't
8461 // set CF, so we can't do this for UADDO.
8462 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
8463 if (C->getAPIntValue() == 1) {
8464 BaseOp = X86ISD::INC;
8465 Cond = X86::COND_O;
8466 break;
8467 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008468 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00008469 Cond = X86::COND_O;
8470 break;
8471 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008472 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00008473 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008474 break;
8475 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00008476 // A subtract of one will be selected as a DEC. Note that DEC doesn't
8477 // set CF, so we can't do this for USUBO.
8478 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
8479 if (C->getAPIntValue() == 1) {
8480 BaseOp = X86ISD::DEC;
8481 Cond = X86::COND_O;
8482 break;
8483 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008484 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00008485 Cond = X86::COND_O;
8486 break;
8487 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008488 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00008489 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008490 break;
8491 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00008492 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00008493 Cond = X86::COND_O;
8494 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00008495 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
8496 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
8497 MVT::i32);
8498 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
8499
8500 SDValue SetCC =
8501 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
8502 DAG.getConstant(X86::COND_O, MVT::i32),
8503 SDValue(Sum.getNode(), 2));
8504
8505 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
8506 return Sum;
8507 }
Bill Wendling74c37652008-12-09 22:08:41 +00008508 }
Bill Wendling3fafd932008-11-26 22:37:40 +00008509
Bill Wendling61edeb52008-12-02 01:06:39 +00008510 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008511 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00008512 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00008513
Bill Wendling61edeb52008-12-02 01:06:39 +00008514 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +00008515 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
8516 DAG.getConstant(Cond, MVT::i32),
8517 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00008518
Bill Wendling61edeb52008-12-02 01:06:39 +00008519 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
8520 return Sum;
Bill Wendling41ea7e72008-11-24 19:21:46 +00008521}
8522
Eric Christopher9a9d2752010-07-22 02:48:34 +00008523SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
8524 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008525
Eric Christopherb6729dc2010-08-04 23:03:04 +00008526 if (!Subtarget->hasSSE2()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +00008527 SDValue Chain = Op.getOperand(0);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008528 SDValue Zero = DAG.getConstant(0,
Eric Christopherb6729dc2010-08-04 23:03:04 +00008529 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +00008530 SDValue Ops[] = {
8531 DAG.getRegister(X86::ESP, MVT::i32), // Base
8532 DAG.getTargetConstant(1, MVT::i8), // Scale
8533 DAG.getRegister(0, MVT::i32), // Index
8534 DAG.getTargetConstant(0, MVT::i32), // Disp
8535 DAG.getRegister(0, MVT::i32), // Segment.
8536 Zero,
8537 Chain
8538 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00008539 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +00008540 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
8541 array_lengthof(Ops));
8542 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +00008543 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008544
Eric Christopher9a9d2752010-07-22 02:48:34 +00008545 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +00008546 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +00008547 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008548
Chris Lattner132929a2010-08-14 17:26:09 +00008549 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
8550 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
8551 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
8552 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008553
Chris Lattner132929a2010-08-14 17:26:09 +00008554 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
8555 if (!Op1 && !Op2 && !Op3 && Op4)
8556 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008557
Chris Lattner132929a2010-08-14 17:26:09 +00008558 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
8559 if (Op1 && !Op2 && !Op3 && !Op4)
8560 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008561
8562 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +00008563 // (MFENCE)>;
8564 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +00008565}
8566
Dan Gohmand858e902010-04-17 15:26:15 +00008567SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008568 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008569 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00008570 unsigned Reg = 0;
8571 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00008572 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00008573 default:
8574 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008575 case MVT::i8: Reg = X86::AL; size = 1; break;
8576 case MVT::i16: Reg = X86::AX; size = 2; break;
8577 case MVT::i32: Reg = X86::EAX; size = 4; break;
8578 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00008579 assert(Subtarget->is64Bit() && "Node not type legal!");
8580 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00008581 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008582 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008583 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00008584 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00008585 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00008586 Op.getOperand(1),
8587 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +00008588 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +00008589 cpIn.getValue(1) };
Owen Anderson825b72b2009-08-11 20:47:22 +00008590 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008591 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
8592 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
8593 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +00008594 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008595 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00008596 return cpOut;
8597}
8598
Duncan Sands1607f052008-12-01 11:39:25 +00008599SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008600 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +00008601 assert(Subtarget->is64Bit() && "Result not type legalized?");
Owen Anderson825b72b2009-08-11 20:47:22 +00008602 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00008603 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008604 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008605 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008606 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
8607 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00008608 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +00008609 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
8610 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +00008611 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +00008612 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00008613 rdx.getValue(1)
8614 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008615 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00008616}
8617
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008618SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
Dale Johannesen7d07b482010-05-21 00:52:33 +00008619 SelectionDAG &DAG) const {
8620 EVT SrcVT = Op.getOperand(0).getValueType();
8621 EVT DstVT = Op.getValueType();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008622 assert((Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
Dale Johannesen7d07b482010-05-21 00:52:33 +00008623 Subtarget->hasMMX() && !DisableMMX) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008624 "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +00008625 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +00008626 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008627 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +00008628 // i64 <=> MMX conversions are Legal.
8629 if (SrcVT==MVT::i64 && DstVT.isVector())
8630 return Op;
8631 if (DstVT==MVT::i64 && SrcVT.isVector())
8632 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +00008633 // MMX <=> MMX conversions are Legal.
8634 if (SrcVT.isVector() && DstVT.isVector())
8635 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +00008636 // All other conversions need to be expanded.
8637 return SDValue();
8638}
Dan Gohmand858e902010-04-17 15:26:15 +00008639SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +00008640 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008641 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00008642 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008643 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00008644 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008645 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008646 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00008647 Node->getOperand(0),
8648 Node->getOperand(1), negOp,
8649 cast<AtomicSDNode>(Node)->getSrcValue(),
8650 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang63307c32008-05-05 19:05:59 +00008651}
8652
Evan Cheng0db9fe62006-04-25 20:13:52 +00008653/// LowerOperation - Provide custom lowering hooks for some operations.
8654///
Dan Gohmand858e902010-04-17 15:26:15 +00008655SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008656 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008657 default: llvm_unreachable("Should not custom lower this!");
Eric Christopher9a9d2752010-07-22 02:48:34 +00008658 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008659 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
8660 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008661 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00008662 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008663 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
8664 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
8665 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
8666 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
8667 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
8668 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008669 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00008670 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +00008671 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008672 case ISD::SHL_PARTS:
8673 case ISD::SRA_PARTS:
8674 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
8675 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008676 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008677 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00008678 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008679 case ISD::FABS: return LowerFABS(Op, DAG);
8680 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00008681 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00008682 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00008683 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00008684 case ISD::SELECT: return LowerSELECT(Op, DAG);
8685 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008686 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008687 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00008688 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00008689 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008690 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00008691 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
8692 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008693 case ISD::FRAME_TO_ARGS_OFFSET:
8694 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008695 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008696 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008697 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00008698 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00008699 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
8700 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008701 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008702 case ISD::SHL: return LowerSHL(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00008703 case ISD::SADDO:
8704 case ISD::UADDO:
8705 case ISD::SSUBO:
8706 case ISD::USUBO:
8707 case ISD::SMULO:
8708 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00008709 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008710 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008711 }
Chris Lattner27a6c732007-11-24 07:07:01 +00008712}
8713
Duncan Sands1607f052008-12-01 11:39:25 +00008714void X86TargetLowering::
8715ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00008716 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008717 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008718 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00008719 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +00008720
8721 SDValue Chain = Node->getOperand(0);
8722 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008723 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008724 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00008725 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008726 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +00008727 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +00008728 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +00008729 SDValue Result =
8730 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
8731 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +00008732 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +00008733 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008734 Results.push_back(Result.getValue(2));
8735}
8736
Duncan Sands126d9072008-07-04 11:47:58 +00008737/// ReplaceNodeResults - Replace a node with an illegal result type
8738/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00008739void X86TargetLowering::ReplaceNodeResults(SDNode *N,
8740 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00008741 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +00008742 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +00008743 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00008744 default:
Duncan Sands1607f052008-12-01 11:39:25 +00008745 assert(false && "Do not know how to custom type legalize this operation!");
8746 return;
8747 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +00008748 std::pair<SDValue,SDValue> Vals =
8749 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +00008750 SDValue FIST = Vals.first, StackSlot = Vals.second;
8751 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +00008752 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +00008753 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +00008754 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
8755 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +00008756 }
8757 return;
8758 }
8759 case ISD::READCYCLECOUNTER: {
Owen Anderson825b72b2009-08-11 20:47:22 +00008760 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00008761 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008762 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008763 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +00008764 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00008765 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008766 eax.getValue(2));
8767 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
8768 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +00008769 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008770 Results.push_back(edx.getValue(1));
8771 return;
8772 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008773 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +00008774 EVT T = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008775 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands1607f052008-12-01 11:39:25 +00008776 SDValue cpInL, cpInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00008777 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
8778 DAG.getConstant(0, MVT::i32));
8779 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
8780 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00008781 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
8782 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +00008783 cpInL.getValue(1));
8784 SDValue swapInL, swapInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00008785 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
8786 DAG.getConstant(0, MVT::i32));
8787 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
8788 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00008789 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +00008790 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00008791 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +00008792 swapInL.getValue(1));
8793 SDValue Ops[] = { swapInH.getValue(0),
8794 N->getOperand(1),
8795 swapInH.getValue(1) };
Owen Anderson825b72b2009-08-11 20:47:22 +00008796 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +00008797 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
8798 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys,
8799 Ops, 3, T, MMO);
Dale Johannesendd64c412009-02-04 00:33:20 +00008800 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson825b72b2009-08-11 20:47:22 +00008801 MVT::i32, Result.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00008802 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson825b72b2009-08-11 20:47:22 +00008803 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +00008804 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson825b72b2009-08-11 20:47:22 +00008805 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008806 Results.push_back(cpOutH.getValue(1));
8807 return;
8808 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008809 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00008810 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
8811 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008812 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00008813 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
8814 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008815 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00008816 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
8817 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008818 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00008819 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
8820 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008821 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00008822 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
8823 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008824 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00008825 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
8826 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008827 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00008828 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
8829 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00008830 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00008831}
8832
Evan Cheng72261582005-12-20 06:22:03 +00008833const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
8834 switch (Opcode) {
8835 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00008836 case X86ISD::BSF: return "X86ISD::BSF";
8837 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00008838 case X86ISD::SHLD: return "X86ISD::SHLD";
8839 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00008840 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00008841 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00008842 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00008843 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00008844 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00008845 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00008846 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
8847 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
8848 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00008849 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00008850 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00008851 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +00008852 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00008853 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00008854 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00008855 case X86ISD::COMI: return "X86ISD::COMI";
8856 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00008857 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +00008858 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Evan Cheng72261582005-12-20 06:22:03 +00008859 case X86ISD::CMOV: return "X86ISD::CMOV";
8860 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00008861 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00008862 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
8863 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00008864 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00008865 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +00008866 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +00008867 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00008868 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00008869 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
8870 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00008871 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +00008872 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Evan Cheng8ca29322006-11-10 21:43:37 +00008873 case X86ISD::FMAX: return "X86ISD::FMAX";
8874 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00008875 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
8876 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008877 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +00008878 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008879 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00008880 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008881 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00008882 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
8883 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00008884 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
8885 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
8886 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
8887 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
8888 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
8889 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00008890 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
8891 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00008892 case X86ISD::VSHL: return "X86ISD::VSHL";
8893 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00008894 case X86ISD::CMPPD: return "X86ISD::CMPPD";
8895 case X86ISD::CMPPS: return "X86ISD::CMPPS";
8896 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
8897 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
8898 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
8899 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
8900 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
8901 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
8902 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
8903 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008904 case X86ISD::ADD: return "X86ISD::ADD";
8905 case X86ISD::SUB: return "X86ISD::SUB";
Bill Wendlingd350e022008-12-12 21:15:41 +00008906 case X86ISD::SMUL: return "X86ISD::SMUL";
8907 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +00008908 case X86ISD::INC: return "X86ISD::INC";
8909 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +00008910 case X86ISD::OR: return "X86ISD::OR";
8911 case X86ISD::XOR: return "X86ISD::XOR";
8912 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +00008913 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +00008914 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008915 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008916 case X86ISD::PALIGN: return "X86ISD::PALIGN";
8917 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
8918 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
8919 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
8920 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
8921 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
8922 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
8923 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
8924 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008925 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00008926 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008927 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00008928 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
8929 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008930 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
8931 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
8932 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
8933 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
8934 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
8935 case X86ISD::MOVSD: return "X86ISD::MOVSD";
8936 case X86ISD::MOVSS: return "X86ISD::MOVSS";
8937 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
8938 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
8939 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
8940 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
8941 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
8942 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
8943 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
8944 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
8945 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
8946 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
8947 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
8948 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Dan Gohmand6708ea2009-08-15 01:38:56 +00008949 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +00008950 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008951 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Evan Cheng72261582005-12-20 06:22:03 +00008952 }
8953}
Evan Cheng3a03ebb2005-12-21 23:05:39 +00008954
Chris Lattnerc9addb72007-03-30 23:15:24 +00008955// isLegalAddressingMode - Return true if the addressing mode represented
8956// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00008957bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerc9addb72007-03-30 23:15:24 +00008958 const Type *Ty) const {
8959 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008960 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +00008961 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +00008962
Chris Lattnerc9addb72007-03-30 23:15:24 +00008963 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008964 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +00008965 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00008966
Chris Lattnerc9addb72007-03-30 23:15:24 +00008967 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +00008968 unsigned GVFlags =
8969 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008970
Chris Lattnerdfed4132009-07-10 07:38:24 +00008971 // If a reference to this global requires an extra load, we can't fold it.
8972 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +00008973 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008974
Chris Lattnerdfed4132009-07-10 07:38:24 +00008975 // If BaseGV requires a register for the PIC base, we cannot also have a
8976 // BaseReg specified.
8977 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +00008978 return false;
Evan Cheng52787842007-08-01 23:46:47 +00008979
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008980 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +00008981 if ((M != CodeModel::Small || R != Reloc::Static) &&
8982 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008983 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +00008984 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008985
Chris Lattnerc9addb72007-03-30 23:15:24 +00008986 switch (AM.Scale) {
8987 case 0:
8988 case 1:
8989 case 2:
8990 case 4:
8991 case 8:
8992 // These scales always work.
8993 break;
8994 case 3:
8995 case 5:
8996 case 9:
8997 // These scales are formed with basereg+scalereg. Only accept if there is
8998 // no basereg yet.
8999 if (AM.HasBaseReg)
9000 return false;
9001 break;
9002 default: // Other stuff never works.
9003 return false;
9004 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009005
Chris Lattnerc9addb72007-03-30 23:15:24 +00009006 return true;
9007}
9008
9009
Evan Cheng2bd122c2007-10-26 01:56:11 +00009010bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00009011 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +00009012 return false;
Evan Chenge127a732007-10-29 07:57:50 +00009013 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
9014 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00009015 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +00009016 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00009017 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +00009018}
9019
Owen Andersone50ed302009-08-10 22:56:29 +00009020bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009021 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009022 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009023 unsigned NumBits1 = VT1.getSizeInBits();
9024 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00009025 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009026 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00009027 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009028}
Evan Cheng2bd122c2007-10-26 01:56:11 +00009029
Dan Gohman97121ba2009-04-08 00:15:30 +00009030bool X86TargetLowering::isZExtFree(const Type *Ty1, const Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00009031 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00009032 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00009033}
9034
Owen Andersone50ed302009-08-10 22:56:29 +00009035bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00009036 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +00009037 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00009038}
9039
Owen Andersone50ed302009-08-10 22:56:29 +00009040bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +00009041 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +00009042 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +00009043}
9044
Evan Cheng60c07e12006-07-05 22:17:51 +00009045/// isShuffleMaskLegal - Targets can use this to indicate that they only
9046/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
9047/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
9048/// are assumed to be legal.
9049bool
Eric Christopherfd179292009-08-27 18:07:15 +00009050X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +00009051 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +00009052 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +00009053 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +00009054 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +00009055
Nate Begemana09008b2009-10-19 02:17:23 +00009056 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +00009057 return (VT.getVectorNumElements() == 2 ||
9058 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
9059 isMOVLMask(M, VT) ||
9060 isSHUFPMask(M, VT) ||
9061 isPSHUFDMask(M, VT) ||
9062 isPSHUFHWMask(M, VT) ||
9063 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +00009064 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +00009065 isUNPCKLMask(M, VT) ||
9066 isUNPCKHMask(M, VT) ||
9067 isUNPCKL_v_undef_Mask(M, VT) ||
9068 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009069}
9070
Dan Gohman7d8143f2008-04-09 20:09:42 +00009071bool
Nate Begeman5a5ca152009-04-29 05:20:52 +00009072X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +00009073 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00009074 unsigned NumElts = VT.getVectorNumElements();
9075 // FIXME: This collection of masks seems suspect.
9076 if (NumElts == 2)
9077 return true;
9078 if (NumElts == 4 && VT.getSizeInBits() == 128) {
9079 return (isMOVLMask(Mask, VT) ||
9080 isCommutedMOVLMask(Mask, VT, true) ||
9081 isSHUFPMask(Mask, VT) ||
9082 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009083 }
9084 return false;
9085}
9086
9087//===----------------------------------------------------------------------===//
9088// X86 Scheduler Hooks
9089//===----------------------------------------------------------------------===//
9090
Mon P Wang63307c32008-05-05 19:05:59 +00009091// private utility function
9092MachineBasicBlock *
9093X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
9094 MachineBasicBlock *MBB,
9095 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009096 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009097 unsigned LoadOpc,
9098 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009099 unsigned notOpc,
9100 unsigned EAXreg,
9101 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009102 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009103 // For the atomic bitwise operator, we generate
9104 // thisMBB:
9105 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009106 // ld t1 = [bitinstr.addr]
9107 // op t2 = t1, [bitinstr.val]
9108 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009109 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9110 // bz newMBB
9111 // fallthrough -->nextMBB
9112 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9113 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009114 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009115 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009116
Mon P Wang63307c32008-05-05 19:05:59 +00009117 /// First build the CFG
9118 MachineFunction *F = MBB->getParent();
9119 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009120 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9121 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9122 F->insert(MBBIter, newMBB);
9123 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009124
Dan Gohman14152b42010-07-06 20:24:04 +00009125 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9126 nextMBB->splice(nextMBB->begin(), thisMBB,
9127 llvm::next(MachineBasicBlock::iterator(bInstr)),
9128 thisMBB->end());
9129 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009130
Mon P Wang63307c32008-05-05 19:05:59 +00009131 // Update thisMBB to fall through to newMBB
9132 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009133
Mon P Wang63307c32008-05-05 19:05:59 +00009134 // newMBB jumps to itself and fall through to nextMBB
9135 newMBB->addSuccessor(nextMBB);
9136 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009137
Mon P Wang63307c32008-05-05 19:05:59 +00009138 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009139 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009140 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +00009141 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009142 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009143 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009144 int numArgs = bInstr->getNumOperands() - 1;
9145 for (int i=0; i < numArgs; ++i)
9146 argOpers[i] = &bInstr->getOperand(i+1);
9147
9148 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009149 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009150 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009151
Dale Johannesen140be2d2008-08-19 18:47:28 +00009152 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009153 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009154 for (int i=0; i <= lastAddrIndx; ++i)
9155 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009156
Dale Johannesen140be2d2008-08-19 18:47:28 +00009157 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009158 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009159 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009160 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009161 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009162 tt = t1;
9163
Dale Johannesen140be2d2008-08-19 18:47:28 +00009164 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +00009165 assert((argOpers[valArgIndx]->isReg() ||
9166 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009167 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +00009168 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009169 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009170 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009171 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009172 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +00009173 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009174
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009175 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +00009176 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009177
Dale Johannesene4d209d2009-02-03 20:21:25 +00009178 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +00009179 for (int i=0; i <= lastAddrIndx; ++i)
9180 (*MIB).addOperand(*argOpers[i]);
9181 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +00009182 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009183 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9184 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +00009185
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009186 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +00009187 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009188
Mon P Wang63307c32008-05-05 19:05:59 +00009189 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009190 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009191
Dan Gohman14152b42010-07-06 20:24:04 +00009192 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009193 return nextMBB;
9194}
9195
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00009196// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +00009197MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009198X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
9199 MachineBasicBlock *MBB,
9200 unsigned regOpcL,
9201 unsigned regOpcH,
9202 unsigned immOpcL,
9203 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009204 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009205 // For the atomic bitwise operator, we generate
9206 // thisMBB (instructions are in pairs, except cmpxchg8b)
9207 // ld t1,t2 = [bitinstr.addr]
9208 // newMBB:
9209 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
9210 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +00009211 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009212 // mov ECX, EBX <- t5, t6
9213 // mov EAX, EDX <- t1, t2
9214 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
9215 // mov t3, t4 <- EAX, EDX
9216 // bz newMBB
9217 // result in out1, out2
9218 // fallthrough -->nextMBB
9219
9220 const TargetRegisterClass *RC = X86::GR32RegisterClass;
9221 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009222 const unsigned NotOpc = X86::NOT32r;
9223 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9224 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9225 MachineFunction::iterator MBBIter = MBB;
9226 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009227
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009228 /// First build the CFG
9229 MachineFunction *F = MBB->getParent();
9230 MachineBasicBlock *thisMBB = MBB;
9231 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9232 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9233 F->insert(MBBIter, newMBB);
9234 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009235
Dan Gohman14152b42010-07-06 20:24:04 +00009236 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9237 nextMBB->splice(nextMBB->begin(), thisMBB,
9238 llvm::next(MachineBasicBlock::iterator(bInstr)),
9239 thisMBB->end());
9240 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009241
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009242 // Update thisMBB to fall through to newMBB
9243 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009244
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009245 // newMBB jumps to itself and fall through to nextMBB
9246 newMBB->addSuccessor(nextMBB);
9247 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009248
Dale Johannesene4d209d2009-02-03 20:21:25 +00009249 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009250 // Insert instructions into newMBB based on incoming instruction
9251 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009252 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009253 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009254 MachineOperand& dest1Oper = bInstr->getOperand(0);
9255 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009256 MachineOperand* argOpers[2 + X86::AddrNumOperands];
9257 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009258 argOpers[i] = &bInstr->getOperand(i+2);
9259
Dan Gohman71ea4e52010-05-14 21:01:44 +00009260 // We use some of the operands multiple times, so conservatively just
9261 // clear any kill flags that might be present.
9262 if (argOpers[i]->isReg() && argOpers[i]->isUse())
9263 argOpers[i]->setIsKill(false);
9264 }
9265
Evan Chengad5b52f2010-01-08 19:14:57 +00009266 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009267 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +00009268
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009269 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009270 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009271 for (int i=0; i <= lastAddrIndx; ++i)
9272 (*MIB).addOperand(*argOpers[i]);
9273 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009274 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +00009275 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +00009276 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009277 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +00009278 MachineOperand newOp3 = *(argOpers[3]);
9279 if (newOp3.isImm())
9280 newOp3.setImm(newOp3.getImm()+4);
9281 else
9282 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009283 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +00009284 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009285
9286 // t3/4 are defined later, at the bottom of the loop
9287 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
9288 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009289 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009290 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009291 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009292 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
9293
Evan Cheng306b4ca2010-01-08 23:41:50 +00009294 // The subsequent operations should be using the destination registers of
9295 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +00009296 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009297 t1 = F->getRegInfo().createVirtualRegister(RC);
9298 t2 = F->getRegInfo().createVirtualRegister(RC);
9299 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
9300 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009301 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009302 t1 = dest1Oper.getReg();
9303 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009304 }
9305
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009306 int valArgIndx = lastAddrIndx + 1;
9307 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +00009308 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009309 "invalid operand");
9310 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
9311 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009312 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009313 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009314 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009315 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +00009316 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009317 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009318 (*MIB).addOperand(*argOpers[valArgIndx]);
9319 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009320 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009321 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009322 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009323 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009324 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009325 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009326 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +00009327 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009328 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009329 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009330
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009331 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009332 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009333 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009334 MIB.addReg(t2);
9335
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009336 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009337 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009338 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009339 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +00009340
Dale Johannesene4d209d2009-02-03 20:21:25 +00009341 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009342 for (int i=0; i <= lastAddrIndx; ++i)
9343 (*MIB).addOperand(*argOpers[i]);
9344
9345 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009346 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9347 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009348
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009349 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009350 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009351 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009352 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009353
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009354 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009355 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009356
Dan Gohman14152b42010-07-06 20:24:04 +00009357 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009358 return nextMBB;
9359}
9360
9361// private utility function
9362MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +00009363X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
9364 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009365 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009366 // For the atomic min/max operator, we generate
9367 // thisMBB:
9368 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009369 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +00009370 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +00009371 // cmp t1, t2
9372 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +00009373 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009374 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9375 // bz newMBB
9376 // fallthrough -->nextMBB
9377 //
9378 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9379 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009380 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009381 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009382
Mon P Wang63307c32008-05-05 19:05:59 +00009383 /// First build the CFG
9384 MachineFunction *F = MBB->getParent();
9385 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009386 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9387 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9388 F->insert(MBBIter, newMBB);
9389 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009390
Dan Gohman14152b42010-07-06 20:24:04 +00009391 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9392 nextMBB->splice(nextMBB->begin(), thisMBB,
9393 llvm::next(MachineBasicBlock::iterator(mInstr)),
9394 thisMBB->end());
9395 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009396
Mon P Wang63307c32008-05-05 19:05:59 +00009397 // Update thisMBB to fall through to newMBB
9398 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009399
Mon P Wang63307c32008-05-05 19:05:59 +00009400 // newMBB jumps to newMBB and fall through to nextMBB
9401 newMBB->addSuccessor(nextMBB);
9402 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009403
Dale Johannesene4d209d2009-02-03 20:21:25 +00009404 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009405 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009406 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009407 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +00009408 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009409 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009410 int numArgs = mInstr->getNumOperands() - 1;
9411 for (int i=0; i < numArgs; ++i)
9412 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009413
Mon P Wang63307c32008-05-05 19:05:59 +00009414 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009415 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009416 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009417
Mon P Wangab3e7472008-05-05 22:56:23 +00009418 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009419 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009420 for (int i=0; i <= lastAddrIndx; ++i)
9421 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +00009422
Mon P Wang63307c32008-05-05 19:05:59 +00009423 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +00009424 assert((argOpers[valArgIndx]->isReg() ||
9425 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009426 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +00009427
9428 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +00009429 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009430 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +00009431 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009432 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009433 (*MIB).addOperand(*argOpers[valArgIndx]);
9434
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009435 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +00009436 MIB.addReg(t1);
9437
Dale Johannesene4d209d2009-02-03 20:21:25 +00009438 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +00009439 MIB.addReg(t1);
9440 MIB.addReg(t2);
9441
9442 // Generate movc
9443 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009444 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +00009445 MIB.addReg(t2);
9446 MIB.addReg(t1);
9447
9448 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +00009449 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +00009450 for (int i=0; i <= lastAddrIndx; ++i)
9451 (*MIB).addOperand(*argOpers[i]);
9452 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +00009453 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009454 (*MIB).setMemRefs(mInstr->memoperands_begin(),
9455 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +00009456
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009457 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +00009458 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009459
Mon P Wang63307c32008-05-05 19:05:59 +00009460 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009461 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009462
Dan Gohman14152b42010-07-06 20:24:04 +00009463 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009464 return nextMBB;
9465}
9466
Eric Christopherf83a5de2009-08-27 18:08:16 +00009467// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009468// or XMM0_V32I8 in AVX all of this code can be replaced with that
9469// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +00009470MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +00009471X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +00009472 unsigned numArgs, bool memArg) const {
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009473 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
9474 "Target must have SSE4.2 or AVX features enabled");
9475
Eric Christopherb120ab42009-08-18 22:50:32 +00009476 DebugLoc dl = MI->getDebugLoc();
9477 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Eric Christopherb120ab42009-08-18 22:50:32 +00009478 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009479 if (!Subtarget->hasAVX()) {
9480 if (memArg)
9481 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
9482 else
9483 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
9484 } else {
9485 if (memArg)
9486 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
9487 else
9488 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
9489 }
Eric Christopherb120ab42009-08-18 22:50:32 +00009490
Eric Christopher41c902f2010-11-30 08:20:21 +00009491 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Eric Christopherb120ab42009-08-18 22:50:32 +00009492 for (unsigned i = 0; i < numArgs; ++i) {
9493 MachineOperand &Op = MI->getOperand(i+1);
Eric Christopherb120ab42009-08-18 22:50:32 +00009494 if (!(Op.isReg() && Op.isImplicit()))
9495 MIB.addOperand(Op);
9496 }
Eric Christopher41c902f2010-11-30 08:20:21 +00009497 BuildMI(*BB, MI, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +00009498 .addReg(X86::XMM0);
9499
Dan Gohman14152b42010-07-06 20:24:04 +00009500 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +00009501 return BB;
9502}
9503
9504MachineBasicBlock *
Eric Christopher228232b2010-11-30 07:20:12 +00009505X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +00009506 DebugLoc dl = MI->getDebugLoc();
9507 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9508
9509 // Address into RAX/EAX, other two args into ECX, EDX.
9510 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
9511 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
9512 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
9513 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +00009514 MIB.addOperand(MI->getOperand(i));
Eric Christopher228232b2010-11-30 07:20:12 +00009515
9516 unsigned ValOps = X86::AddrNumOperands;
9517 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
9518 .addReg(MI->getOperand(ValOps).getReg());
9519 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
9520 .addReg(MI->getOperand(ValOps+1).getReg());
9521
9522 // The instruction doesn't actually take any operands though.
9523 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
9524
9525 MI->eraseFromParent(); // The pseudo is gone now.
9526 return BB;
9527}
9528
9529MachineBasicBlock *
9530X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +00009531 DebugLoc dl = MI->getDebugLoc();
9532 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9533
9534 // First arg in ECX, the second in EAX.
9535 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
9536 .addReg(MI->getOperand(0).getReg());
9537 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
9538 .addReg(MI->getOperand(1).getReg());
9539
9540 // The instruction doesn't actually take any operands though.
9541 BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
9542
9543 MI->eraseFromParent(); // The pseudo is gone now.
9544 return BB;
9545}
9546
9547MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +00009548X86TargetLowering::EmitVAARG64WithCustomInserter(
9549 MachineInstr *MI,
9550 MachineBasicBlock *MBB) const {
9551 // Emit va_arg instruction on X86-64.
9552
9553 // Operands to this pseudo-instruction:
9554 // 0 ) Output : destination address (reg)
9555 // 1-5) Input : va_list address (addr, i64mem)
9556 // 6 ) ArgSize : Size (in bytes) of vararg type
9557 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
9558 // 8 ) Align : Alignment of type
9559 // 9 ) EFLAGS (implicit-def)
9560
9561 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
9562 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
9563
9564 unsigned DestReg = MI->getOperand(0).getReg();
9565 MachineOperand &Base = MI->getOperand(1);
9566 MachineOperand &Scale = MI->getOperand(2);
9567 MachineOperand &Index = MI->getOperand(3);
9568 MachineOperand &Disp = MI->getOperand(4);
9569 MachineOperand &Segment = MI->getOperand(5);
9570 unsigned ArgSize = MI->getOperand(6).getImm();
9571 unsigned ArgMode = MI->getOperand(7).getImm();
9572 unsigned Align = MI->getOperand(8).getImm();
9573
9574 // Memory Reference
9575 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
9576 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
9577 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
9578
9579 // Machine Information
9580 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9581 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
9582 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
9583 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
9584 DebugLoc DL = MI->getDebugLoc();
9585
9586 // struct va_list {
9587 // i32 gp_offset
9588 // i32 fp_offset
9589 // i64 overflow_area (address)
9590 // i64 reg_save_area (address)
9591 // }
9592 // sizeof(va_list) = 24
9593 // alignment(va_list) = 8
9594
9595 unsigned TotalNumIntRegs = 6;
9596 unsigned TotalNumXMMRegs = 8;
9597 bool UseGPOffset = (ArgMode == 1);
9598 bool UseFPOffset = (ArgMode == 2);
9599 unsigned MaxOffset = TotalNumIntRegs * 8 +
9600 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
9601
9602 /* Align ArgSize to a multiple of 8 */
9603 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
9604 bool NeedsAlign = (Align > 8);
9605
9606 MachineBasicBlock *thisMBB = MBB;
9607 MachineBasicBlock *overflowMBB;
9608 MachineBasicBlock *offsetMBB;
9609 MachineBasicBlock *endMBB;
9610
9611 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
9612 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
9613 unsigned OffsetReg = 0;
9614
9615 if (!UseGPOffset && !UseFPOffset) {
9616 // If we only pull from the overflow region, we don't create a branch.
9617 // We don't need to alter control flow.
9618 OffsetDestReg = 0; // unused
9619 OverflowDestReg = DestReg;
9620
9621 offsetMBB = NULL;
9622 overflowMBB = thisMBB;
9623 endMBB = thisMBB;
9624 } else {
9625 // First emit code to check if gp_offset (or fp_offset) is below the bound.
9626 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
9627 // If not, pull from overflow_area. (branch to overflowMBB)
9628 //
9629 // thisMBB
9630 // | .
9631 // | .
9632 // offsetMBB overflowMBB
9633 // | .
9634 // | .
9635 // endMBB
9636
9637 // Registers for the PHI in endMBB
9638 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
9639 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
9640
9641 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9642 MachineFunction *MF = MBB->getParent();
9643 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9644 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9645 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9646
9647 MachineFunction::iterator MBBIter = MBB;
9648 ++MBBIter;
9649
9650 // Insert the new basic blocks
9651 MF->insert(MBBIter, offsetMBB);
9652 MF->insert(MBBIter, overflowMBB);
9653 MF->insert(MBBIter, endMBB);
9654
9655 // Transfer the remainder of MBB and its successor edges to endMBB.
9656 endMBB->splice(endMBB->begin(), thisMBB,
9657 llvm::next(MachineBasicBlock::iterator(MI)),
9658 thisMBB->end());
9659 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
9660
9661 // Make offsetMBB and overflowMBB successors of thisMBB
9662 thisMBB->addSuccessor(offsetMBB);
9663 thisMBB->addSuccessor(overflowMBB);
9664
9665 // endMBB is a successor of both offsetMBB and overflowMBB
9666 offsetMBB->addSuccessor(endMBB);
9667 overflowMBB->addSuccessor(endMBB);
9668
9669 // Load the offset value into a register
9670 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
9671 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
9672 .addOperand(Base)
9673 .addOperand(Scale)
9674 .addOperand(Index)
9675 .addDisp(Disp, UseFPOffset ? 4 : 0)
9676 .addOperand(Segment)
9677 .setMemRefs(MMOBegin, MMOEnd);
9678
9679 // Check if there is enough room left to pull this argument.
9680 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
9681 .addReg(OffsetReg)
9682 .addImm(MaxOffset + 8 - ArgSizeA8);
9683
9684 // Branch to "overflowMBB" if offset >= max
9685 // Fall through to "offsetMBB" otherwise
9686 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
9687 .addMBB(overflowMBB);
9688 }
9689
9690 // In offsetMBB, emit code to use the reg_save_area.
9691 if (offsetMBB) {
9692 assert(OffsetReg != 0);
9693
9694 // Read the reg_save_area address.
9695 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
9696 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
9697 .addOperand(Base)
9698 .addOperand(Scale)
9699 .addOperand(Index)
9700 .addDisp(Disp, 16)
9701 .addOperand(Segment)
9702 .setMemRefs(MMOBegin, MMOEnd);
9703
9704 // Zero-extend the offset
9705 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
9706 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
9707 .addImm(0)
9708 .addReg(OffsetReg)
9709 .addImm(X86::sub_32bit);
9710
9711 // Add the offset to the reg_save_area to get the final address.
9712 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
9713 .addReg(OffsetReg64)
9714 .addReg(RegSaveReg);
9715
9716 // Compute the offset for the next argument
9717 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
9718 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
9719 .addReg(OffsetReg)
9720 .addImm(UseFPOffset ? 16 : 8);
9721
9722 // Store it back into the va_list.
9723 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
9724 .addOperand(Base)
9725 .addOperand(Scale)
9726 .addOperand(Index)
9727 .addDisp(Disp, UseFPOffset ? 4 : 0)
9728 .addOperand(Segment)
9729 .addReg(NextOffsetReg)
9730 .setMemRefs(MMOBegin, MMOEnd);
9731
9732 // Jump to endMBB
9733 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
9734 .addMBB(endMBB);
9735 }
9736
9737 //
9738 // Emit code to use overflow area
9739 //
9740
9741 // Load the overflow_area address into a register.
9742 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
9743 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
9744 .addOperand(Base)
9745 .addOperand(Scale)
9746 .addOperand(Index)
9747 .addDisp(Disp, 8)
9748 .addOperand(Segment)
9749 .setMemRefs(MMOBegin, MMOEnd);
9750
9751 // If we need to align it, do so. Otherwise, just copy the address
9752 // to OverflowDestReg.
9753 if (NeedsAlign) {
9754 // Align the overflow address
9755 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
9756 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
9757
9758 // aligned_addr = (addr + (align-1)) & ~(align-1)
9759 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
9760 .addReg(OverflowAddrReg)
9761 .addImm(Align-1);
9762
9763 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
9764 .addReg(TmpReg)
9765 .addImm(~(uint64_t)(Align-1));
9766 } else {
9767 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
9768 .addReg(OverflowAddrReg);
9769 }
9770
9771 // Compute the next overflow address after this argument.
9772 // (the overflow address should be kept 8-byte aligned)
9773 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
9774 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
9775 .addReg(OverflowDestReg)
9776 .addImm(ArgSizeA8);
9777
9778 // Store the new overflow address.
9779 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
9780 .addOperand(Base)
9781 .addOperand(Scale)
9782 .addOperand(Index)
9783 .addDisp(Disp, 8)
9784 .addOperand(Segment)
9785 .addReg(NextAddrReg)
9786 .setMemRefs(MMOBegin, MMOEnd);
9787
9788 // If we branched, emit the PHI to the front of endMBB.
9789 if (offsetMBB) {
9790 BuildMI(*endMBB, endMBB->begin(), DL,
9791 TII->get(X86::PHI), DestReg)
9792 .addReg(OffsetDestReg).addMBB(offsetMBB)
9793 .addReg(OverflowDestReg).addMBB(overflowMBB);
9794 }
9795
9796 // Erase the pseudo instruction
9797 MI->eraseFromParent();
9798
9799 return endMBB;
9800}
9801
9802MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +00009803X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
9804 MachineInstr *MI,
9805 MachineBasicBlock *MBB) const {
9806 // Emit code to save XMM registers to the stack. The ABI says that the
9807 // number of registers to save is given in %al, so it's theoretically
9808 // possible to do an indirect jump trick to avoid saving all of them,
9809 // however this code takes a simpler approach and just executes all
9810 // of the stores if %al is non-zero. It's less code, and it's probably
9811 // easier on the hardware branch predictor, and stores aren't all that
9812 // expensive anyway.
9813
9814 // Create the new basic blocks. One block contains all the XMM stores,
9815 // and one block is the final destination regardless of whether any
9816 // stores were performed.
9817 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9818 MachineFunction *F = MBB->getParent();
9819 MachineFunction::iterator MBBIter = MBB;
9820 ++MBBIter;
9821 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
9822 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
9823 F->insert(MBBIter, XMMSaveMBB);
9824 F->insert(MBBIter, EndMBB);
9825
Dan Gohman14152b42010-07-06 20:24:04 +00009826 // Transfer the remainder of MBB and its successor edges to EndMBB.
9827 EndMBB->splice(EndMBB->begin(), MBB,
9828 llvm::next(MachineBasicBlock::iterator(MI)),
9829 MBB->end());
9830 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
9831
Dan Gohmand6708ea2009-08-15 01:38:56 +00009832 // The original block will now fall through to the XMM save block.
9833 MBB->addSuccessor(XMMSaveMBB);
9834 // The XMMSaveMBB will fall through to the end block.
9835 XMMSaveMBB->addSuccessor(EndMBB);
9836
9837 // Now add the instructions.
9838 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9839 DebugLoc DL = MI->getDebugLoc();
9840
9841 unsigned CountReg = MI->getOperand(0).getReg();
9842 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
9843 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
9844
9845 if (!Subtarget->isTargetWin64()) {
9846 // If %al is 0, branch around the XMM save block.
9847 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009848 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009849 MBB->addSuccessor(EndMBB);
9850 }
9851
9852 // In the XMM save block, save all the XMM argument registers.
9853 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
9854 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +00009855 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +00009856 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +00009857 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +00009858 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +00009859 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009860 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
9861 .addFrameIndex(RegSaveFrameIndex)
9862 .addImm(/*Scale=*/1)
9863 .addReg(/*IndexReg=*/0)
9864 .addImm(/*Disp=*/Offset)
9865 .addReg(/*Segment=*/0)
9866 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +00009867 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009868 }
9869
Dan Gohman14152b42010-07-06 20:24:04 +00009870 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +00009871
9872 return EndMBB;
9873}
Mon P Wang63307c32008-05-05 19:05:59 +00009874
Evan Cheng60c07e12006-07-05 22:17:51 +00009875MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +00009876X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009877 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +00009878 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9879 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00009880
Chris Lattner52600972009-09-02 05:57:00 +00009881 // To "insert" a SELECT_CC instruction, we actually have to insert the
9882 // diamond control-flow pattern. The incoming instruction knows the
9883 // destination vreg to set, the condition code register to branch on, the
9884 // true/false values to select between, and a branch opcode to use.
9885 const BasicBlock *LLVM_BB = BB->getBasicBlock();
9886 MachineFunction::iterator It = BB;
9887 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +00009888
Chris Lattner52600972009-09-02 05:57:00 +00009889 // thisMBB:
9890 // ...
9891 // TrueVal = ...
9892 // cmpTY ccX, r1, r2
9893 // bCC copy1MBB
9894 // fallthrough --> copy0MBB
9895 MachineBasicBlock *thisMBB = BB;
9896 MachineFunction *F = BB->getParent();
9897 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
9898 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +00009899 F->insert(It, copy0MBB);
9900 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +00009901
Bill Wendling730c07e2010-06-25 20:48:10 +00009902 // If the EFLAGS register isn't dead in the terminator, then claim that it's
9903 // live into the sink and copy blocks.
9904 const MachineFunction *MF = BB->getParent();
9905 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
9906 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +00009907
Dan Gohman14152b42010-07-06 20:24:04 +00009908 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
9909 const MachineOperand &MO = MI->getOperand(I);
9910 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +00009911 unsigned Reg = MO.getReg();
9912 if (Reg != X86::EFLAGS) continue;
9913 copy0MBB->addLiveIn(Reg);
9914 sinkMBB->addLiveIn(Reg);
9915 }
9916
Dan Gohman14152b42010-07-06 20:24:04 +00009917 // Transfer the remainder of BB and its successor edges to sinkMBB.
9918 sinkMBB->splice(sinkMBB->begin(), BB,
9919 llvm::next(MachineBasicBlock::iterator(MI)),
9920 BB->end());
9921 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
9922
9923 // Add the true and fallthrough blocks as its successors.
9924 BB->addSuccessor(copy0MBB);
9925 BB->addSuccessor(sinkMBB);
9926
9927 // Create the conditional branch instruction.
9928 unsigned Opc =
9929 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
9930 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
9931
Chris Lattner52600972009-09-02 05:57:00 +00009932 // copy0MBB:
9933 // %FalseValue = ...
9934 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +00009935 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00009936
Chris Lattner52600972009-09-02 05:57:00 +00009937 // sinkMBB:
9938 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
9939 // ...
Dan Gohman14152b42010-07-06 20:24:04 +00009940 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
9941 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +00009942 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
9943 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
9944
Dan Gohman14152b42010-07-06 20:24:04 +00009945 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +00009946 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +00009947}
9948
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009949MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009950X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009951 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009952 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9953 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009954
9955 // The lowering is pretty easy: we're just emitting the call to _alloca. The
9956 // non-trivial part is impdef of ESP.
9957 // FIXME: The code should be tweaked as soon as we'll try to do codegen for
9958 // mingw-w64.
9959
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009960 const char *StackProbeSymbol =
9961 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
9962
Dan Gohman14152b42010-07-06 20:24:04 +00009963 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009964 .addExternalSymbol(StackProbeSymbol)
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009965 .addReg(X86::EAX, RegState::Implicit)
9966 .addReg(X86::ESP, RegState::Implicit)
9967 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
Anton Korobeynikov9f7f83b2010-08-25 07:50:11 +00009968 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
9969 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009970
Dan Gohman14152b42010-07-06 20:24:04 +00009971 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009972 return BB;
9973}
Chris Lattner52600972009-09-02 05:57:00 +00009974
9975MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +00009976X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
9977 MachineBasicBlock *BB) const {
9978 // This is pretty easy. We're taking the value that we received from
9979 // our load from the relocation, sticking it in either RDI (x86-64)
9980 // or EAX and doing an indirect call. The return value will then
9981 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +00009982 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +00009983 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +00009984 DebugLoc DL = MI->getDebugLoc();
9985 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +00009986
9987 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +00009988 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +00009989
Eric Christopher30ef0e52010-06-03 04:07:48 +00009990 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +00009991 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9992 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +00009993 .addReg(X86::RIP)
9994 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009995 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +00009996 MI->getOperand(3).getTargetFlags())
9997 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +00009998 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +00009999 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +000010000 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000010001 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
10002 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000010003 .addReg(0)
10004 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000010005 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000010006 MI->getOperand(3).getTargetFlags())
10007 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000010008 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000010009 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010010 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000010011 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
10012 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000010013 .addReg(TII->getGlobalBaseReg(F))
10014 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000010015 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000010016 MI->getOperand(3).getTargetFlags())
10017 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000010018 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000010019 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010020 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000010021
Dan Gohman14152b42010-07-06 20:24:04 +000010022 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000010023 return BB;
10024}
10025
10026MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000010027X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010028 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000010029 switch (MI->getOpcode()) {
10030 default: assert(false && "Unexpected instr type to insert");
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010031 case X86::WIN_ALLOCA:
10032 return EmitLoweredWinAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010033 case X86::TLSCall_32:
10034 case X86::TLSCall_64:
10035 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000010036 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000010037 case X86::CMOV_FR32:
10038 case X86::CMOV_FR64:
10039 case X86::CMOV_V4F32:
10040 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000010041 case X86::CMOV_V2I64:
Chris Lattner314a1132010-03-14 18:31:44 +000010042 case X86::CMOV_GR16:
10043 case X86::CMOV_GR32:
10044 case X86::CMOV_RFP32:
10045 case X86::CMOV_RFP64:
10046 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010047 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000010048
Dale Johannesen849f2142007-07-03 00:53:03 +000010049 case X86::FP32_TO_INT16_IN_MEM:
10050 case X86::FP32_TO_INT32_IN_MEM:
10051 case X86::FP32_TO_INT64_IN_MEM:
10052 case X86::FP64_TO_INT16_IN_MEM:
10053 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000010054 case X86::FP64_TO_INT64_IN_MEM:
10055 case X86::FP80_TO_INT16_IN_MEM:
10056 case X86::FP80_TO_INT32_IN_MEM:
10057 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000010058 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10059 DebugLoc DL = MI->getDebugLoc();
10060
Evan Cheng60c07e12006-07-05 22:17:51 +000010061 // Change the floating point control register to use "round towards zero"
10062 // mode when truncating to an integer value.
10063 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000010064 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000010065 addFrameReference(BuildMI(*BB, MI, DL,
10066 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010067
10068 // Load the old value of the high byte of the control word...
10069 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +000010070 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +000010071 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010072 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010073
10074 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000010075 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010076 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000010077
10078 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000010079 addFrameReference(BuildMI(*BB, MI, DL,
10080 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010081
10082 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000010083 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010084 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000010085
10086 // Get the X86 opcode to use.
10087 unsigned Opc;
10088 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000010089 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000010090 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
10091 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
10092 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
10093 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
10094 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
10095 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000010096 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
10097 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
10098 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000010099 }
10100
10101 X86AddressMode AM;
10102 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000010103 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010104 AM.BaseType = X86AddressMode::RegBase;
10105 AM.Base.Reg = Op.getReg();
10106 } else {
10107 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000010108 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000010109 }
10110 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000010111 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010112 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010113 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000010114 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010115 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010116 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000010117 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010118 AM.GV = Op.getGlobal();
10119 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000010120 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010121 }
Dan Gohman14152b42010-07-06 20:24:04 +000010122 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010123 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000010124
10125 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000010126 addFrameReference(BuildMI(*BB, MI, DL,
10127 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010128
Dan Gohman14152b42010-07-06 20:24:04 +000010129 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000010130 return BB;
10131 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010132 // String/text processing lowering.
10133 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010134 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010135 return EmitPCMP(MI, BB, 3, false /* in-mem */);
10136 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010137 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010138 return EmitPCMP(MI, BB, 3, true /* in-mem */);
10139 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010140 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010141 return EmitPCMP(MI, BB, 5, false /* in mem */);
10142 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010143 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010144 return EmitPCMP(MI, BB, 5, true /* in mem */);
10145
Eric Christopher228232b2010-11-30 07:20:12 +000010146 // Thread synchronization.
10147 case X86::MONITOR:
10148 return EmitMonitor(MI, BB);
10149 case X86::MWAIT:
10150 return EmitMwait(MI, BB);
10151
Eric Christopherb120ab42009-08-18 22:50:32 +000010152 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000010153 case X86::ATOMAND32:
10154 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010155 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010156 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010157 X86::NOT32r, X86::EAX,
10158 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010159 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000010160 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
10161 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010162 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010163 X86::NOT32r, X86::EAX,
10164 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010165 case X86::ATOMXOR32:
10166 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010167 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010168 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010169 X86::NOT32r, X86::EAX,
10170 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010171 case X86::ATOMNAND32:
10172 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010173 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010174 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010175 X86::NOT32r, X86::EAX,
10176 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000010177 case X86::ATOMMIN32:
10178 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
10179 case X86::ATOMMAX32:
10180 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
10181 case X86::ATOMUMIN32:
10182 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
10183 case X86::ATOMUMAX32:
10184 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000010185
10186 case X86::ATOMAND16:
10187 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10188 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010189 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010190 X86::NOT16r, X86::AX,
10191 X86::GR16RegisterClass);
10192 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000010193 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010194 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010195 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010196 X86::NOT16r, X86::AX,
10197 X86::GR16RegisterClass);
10198 case X86::ATOMXOR16:
10199 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
10200 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010201 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010202 X86::NOT16r, X86::AX,
10203 X86::GR16RegisterClass);
10204 case X86::ATOMNAND16:
10205 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10206 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010207 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010208 X86::NOT16r, X86::AX,
10209 X86::GR16RegisterClass, true);
10210 case X86::ATOMMIN16:
10211 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
10212 case X86::ATOMMAX16:
10213 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
10214 case X86::ATOMUMIN16:
10215 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
10216 case X86::ATOMUMAX16:
10217 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
10218
10219 case X86::ATOMAND8:
10220 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10221 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010222 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010223 X86::NOT8r, X86::AL,
10224 X86::GR8RegisterClass);
10225 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000010226 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010227 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010228 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010229 X86::NOT8r, X86::AL,
10230 X86::GR8RegisterClass);
10231 case X86::ATOMXOR8:
10232 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
10233 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010234 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010235 X86::NOT8r, X86::AL,
10236 X86::GR8RegisterClass);
10237 case X86::ATOMNAND8:
10238 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10239 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010240 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010241 X86::NOT8r, X86::AL,
10242 X86::GR8RegisterClass, true);
10243 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010244 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000010245 case X86::ATOMAND64:
10246 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010247 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010248 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010249 X86::NOT64r, X86::RAX,
10250 X86::GR64RegisterClass);
10251 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000010252 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
10253 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010254 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010255 X86::NOT64r, X86::RAX,
10256 X86::GR64RegisterClass);
10257 case X86::ATOMXOR64:
10258 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010259 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010260 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010261 X86::NOT64r, X86::RAX,
10262 X86::GR64RegisterClass);
10263 case X86::ATOMNAND64:
10264 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
10265 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010266 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010267 X86::NOT64r, X86::RAX,
10268 X86::GR64RegisterClass, true);
10269 case X86::ATOMMIN64:
10270 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
10271 case X86::ATOMMAX64:
10272 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
10273 case X86::ATOMUMIN64:
10274 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
10275 case X86::ATOMUMAX64:
10276 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010277
10278 // This group does 64-bit operations on a 32-bit host.
10279 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010280 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010281 X86::AND32rr, X86::AND32rr,
10282 X86::AND32ri, X86::AND32ri,
10283 false);
10284 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010285 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010286 X86::OR32rr, X86::OR32rr,
10287 X86::OR32ri, X86::OR32ri,
10288 false);
10289 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010290 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010291 X86::XOR32rr, X86::XOR32rr,
10292 X86::XOR32ri, X86::XOR32ri,
10293 false);
10294 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010295 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010296 X86::AND32rr, X86::AND32rr,
10297 X86::AND32ri, X86::AND32ri,
10298 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010299 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010300 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010301 X86::ADD32rr, X86::ADC32rr,
10302 X86::ADD32ri, X86::ADC32ri,
10303 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010304 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010305 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010306 X86::SUB32rr, X86::SBB32rr,
10307 X86::SUB32ri, X86::SBB32ri,
10308 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000010309 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010310 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000010311 X86::MOV32rr, X86::MOV32rr,
10312 X86::MOV32ri, X86::MOV32ri,
10313 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010314 case X86::VASTART_SAVE_XMM_REGS:
10315 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000010316
10317 case X86::VAARG_64:
10318 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000010319 }
10320}
10321
10322//===----------------------------------------------------------------------===//
10323// X86 Optimization Hooks
10324//===----------------------------------------------------------------------===//
10325
Dan Gohman475871a2008-07-27 21:46:04 +000010326void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000010327 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010328 APInt &KnownZero,
10329 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000010330 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000010331 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010332 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000010333 assert((Opc >= ISD::BUILTIN_OP_END ||
10334 Opc == ISD::INTRINSIC_WO_CHAIN ||
10335 Opc == ISD::INTRINSIC_W_CHAIN ||
10336 Opc == ISD::INTRINSIC_VOID) &&
10337 "Should use MaskedValueIsZero if you don't know whether Op"
10338 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010339
Dan Gohmanf4f92f52008-02-13 23:07:24 +000010340 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010341 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000010342 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010343 case X86ISD::ADD:
10344 case X86ISD::SUB:
10345 case X86ISD::SMUL:
10346 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000010347 case X86ISD::INC:
10348 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000010349 case X86ISD::OR:
10350 case X86ISD::XOR:
10351 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010352 // These nodes' second result is a boolean.
10353 if (Op.getResNo() == 0)
10354 break;
10355 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010356 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010357 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
10358 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000010359 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010360 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010361}
Chris Lattner259e97c2006-01-31 19:43:35 +000010362
Owen Andersonbc146b02010-09-21 20:42:50 +000010363unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
10364 unsigned Depth) const {
10365 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
10366 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
10367 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000010368
Owen Andersonbc146b02010-09-21 20:42:50 +000010369 // Fallback case.
10370 return 1;
10371}
10372
Evan Cheng206ee9d2006-07-07 08:33:52 +000010373/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000010374/// node is a GlobalAddress + offset.
10375bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000010376 const GlobalValue* &GA,
10377 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000010378 if (N->getOpcode() == X86ISD::Wrapper) {
10379 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000010380 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000010381 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000010382 return true;
10383 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000010384 }
Evan Chengad4196b2008-05-12 19:56:52 +000010385 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000010386}
10387
Evan Cheng206ee9d2006-07-07 08:33:52 +000010388/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
10389/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
10390/// if the load addresses are consecutive, non-overlapping, and in the right
Nate Begemanfdea31a2010-03-24 20:49:50 +000010391/// order.
Dan Gohman475871a2008-07-27 21:46:04 +000010392static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Nate Begeman9008ca62009-04-27 18:41:29 +000010393 const TargetLowering &TLI) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010394 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000010395 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000010396
Eli Friedman7a5e5552009-06-07 06:52:44 +000010397 if (VT.getSizeInBits() != 128)
10398 return SDValue();
10399
Nate Begemanfdea31a2010-03-24 20:49:50 +000010400 SmallVector<SDValue, 16> Elts;
10401 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000010402 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000010403
Nate Begemanfdea31a2010-03-24 20:49:50 +000010404 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000010405}
Evan Chengd880b972008-05-09 21:53:03 +000010406
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000010407/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
10408/// generation and convert it from being a bunch of shuffles and extracts
10409/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010410static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
10411 const TargetLowering &TLI) {
10412 SDValue InputVector = N->getOperand(0);
10413
10414 // Only operate on vectors of 4 elements, where the alternative shuffling
10415 // gets to be more expensive.
10416 if (InputVector.getValueType() != MVT::v4i32)
10417 return SDValue();
10418
10419 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
10420 // single use which is a sign-extend or zero-extend, and all elements are
10421 // used.
10422 SmallVector<SDNode *, 4> Uses;
10423 unsigned ExtractedElements = 0;
10424 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
10425 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
10426 if (UI.getUse().getResNo() != InputVector.getResNo())
10427 return SDValue();
10428
10429 SDNode *Extract = *UI;
10430 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
10431 return SDValue();
10432
10433 if (Extract->getValueType(0) != MVT::i32)
10434 return SDValue();
10435 if (!Extract->hasOneUse())
10436 return SDValue();
10437 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
10438 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
10439 return SDValue();
10440 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
10441 return SDValue();
10442
10443 // Record which element was extracted.
10444 ExtractedElements |=
10445 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
10446
10447 Uses.push_back(Extract);
10448 }
10449
10450 // If not all the elements were used, this may not be worthwhile.
10451 if (ExtractedElements != 15)
10452 return SDValue();
10453
10454 // Ok, we've now decided to do the transformation.
10455 DebugLoc dl = InputVector.getDebugLoc();
10456
10457 // Store the value to a temporary stack slot.
10458 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010459 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
10460 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010461
10462 // Replace each use (extract) with a load of the appropriate element.
10463 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
10464 UE = Uses.end(); UI != UE; ++UI) {
10465 SDNode *Extract = *UI;
10466
10467 // Compute the element's address.
10468 SDValue Idx = Extract->getOperand(1);
10469 unsigned EltSize =
10470 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
10471 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
10472 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
10473
Eric Christopher90eb4022010-07-22 00:26:08 +000010474 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(),
Chris Lattner51abfe42010-09-21 06:02:19 +000010475 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010476
10477 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000010478 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000010479 ScalarAddr, MachinePointerInfo(),
10480 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010481
10482 // Replace the exact with the load.
10483 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
10484 }
10485
10486 // The replacement was made in place; don't return anything.
10487 return SDValue();
10488}
10489
Chris Lattner83e6c992006-10-04 06:57:07 +000010490/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000010491static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000010492 const X86Subtarget *Subtarget) {
10493 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000010494 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000010495 // Get the LHS/RHS of the select.
10496 SDValue LHS = N->getOperand(1);
10497 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000010498
Dan Gohman670e5392009-09-21 18:03:22 +000010499 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000010500 // instructions match the semantics of the common C idiom x<y?x:y but not
10501 // x<=y?x:y, because of how they handle negative zero (which can be
10502 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000010503 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000010504 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000010505 Cond.getOpcode() == ISD::SETCC) {
10506 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010507
Chris Lattner47b4ce82009-03-11 05:48:52 +000010508 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000010509 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000010510 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
10511 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000010512 switch (CC) {
10513 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000010514 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000010515 // Converting this to a min would handle NaNs incorrectly, and swapping
10516 // the operands would cause it to handle comparisons between positive
10517 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010518 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000010519 if (!UnsafeFPMath &&
10520 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10521 break;
10522 std::swap(LHS, RHS);
10523 }
Dan Gohman670e5392009-09-21 18:03:22 +000010524 Opcode = X86ISD::FMIN;
10525 break;
10526 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000010527 // Converting this to a min would handle comparisons between positive
10528 // and negative zero incorrectly.
10529 if (!UnsafeFPMath &&
10530 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
10531 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010532 Opcode = X86ISD::FMIN;
10533 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000010534 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000010535 // Converting this to a min would handle both negative zeros and NaNs
10536 // incorrectly, but we can swap the operands to fix both.
10537 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010538 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010539 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000010540 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010541 Opcode = X86ISD::FMIN;
10542 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010543
Dan Gohman670e5392009-09-21 18:03:22 +000010544 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010545 // Converting this to a max would handle comparisons between positive
10546 // and negative zero incorrectly.
10547 if (!UnsafeFPMath &&
10548 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(LHS))
10549 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010550 Opcode = X86ISD::FMAX;
10551 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000010552 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000010553 // Converting this to a max would handle NaNs incorrectly, and swapping
10554 // the operands would cause it to handle comparisons between positive
10555 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010556 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000010557 if (!UnsafeFPMath &&
10558 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10559 break;
10560 std::swap(LHS, RHS);
10561 }
Dan Gohman670e5392009-09-21 18:03:22 +000010562 Opcode = X86ISD::FMAX;
10563 break;
10564 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010565 // Converting this to a max would handle both negative zeros and NaNs
10566 // incorrectly, but we can swap the operands to fix both.
10567 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010568 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010569 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010570 case ISD::SETGE:
10571 Opcode = X86ISD::FMAX;
10572 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000010573 }
Dan Gohman670e5392009-09-21 18:03:22 +000010574 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000010575 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
10576 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000010577 switch (CC) {
10578 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000010579 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010580 // Converting this to a min would handle comparisons between positive
10581 // and negative zero incorrectly, and swapping the operands would
10582 // cause it to handle NaNs incorrectly.
10583 if (!UnsafeFPMath &&
10584 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000010585 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010586 break;
10587 std::swap(LHS, RHS);
10588 }
Dan Gohman670e5392009-09-21 18:03:22 +000010589 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000010590 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010591 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000010592 // Converting this to a min would handle NaNs incorrectly.
10593 if (!UnsafeFPMath &&
10594 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
10595 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010596 Opcode = X86ISD::FMIN;
10597 break;
10598 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010599 // Converting this to a min would handle both negative zeros and NaNs
10600 // incorrectly, but we can swap the operands to fix both.
10601 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010602 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010603 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010604 case ISD::SETGE:
10605 Opcode = X86ISD::FMIN;
10606 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010607
Dan Gohman670e5392009-09-21 18:03:22 +000010608 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000010609 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010610 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010611 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010612 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000010613 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010614 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000010615 // Converting this to a max would handle comparisons between positive
10616 // and negative zero incorrectly, and swapping the operands would
10617 // cause it to handle NaNs incorrectly.
10618 if (!UnsafeFPMath &&
10619 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000010620 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010621 break;
10622 std::swap(LHS, RHS);
10623 }
Dan Gohman670e5392009-09-21 18:03:22 +000010624 Opcode = X86ISD::FMAX;
10625 break;
10626 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000010627 // Converting this to a max would handle both negative zeros and NaNs
10628 // incorrectly, but we can swap the operands to fix both.
10629 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010630 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010631 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000010632 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010633 Opcode = X86ISD::FMAX;
10634 break;
10635 }
Chris Lattner83e6c992006-10-04 06:57:07 +000010636 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010637
Chris Lattner47b4ce82009-03-11 05:48:52 +000010638 if (Opcode)
10639 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000010640 }
Eric Christopherfd179292009-08-27 18:07:15 +000010641
Chris Lattnerd1980a52009-03-12 06:52:53 +000010642 // If this is a select between two integer constants, try to do some
10643 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000010644 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
10645 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000010646 // Don't do this for crazy integer types.
10647 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
10648 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000010649 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000010650 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000010651
Chris Lattnercee56e72009-03-13 05:53:31 +000010652 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000010653 // Efficiently invertible.
10654 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
10655 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
10656 isa<ConstantSDNode>(Cond.getOperand(1))))) {
10657 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000010658 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000010659 }
Eric Christopherfd179292009-08-27 18:07:15 +000010660
Chris Lattnerd1980a52009-03-12 06:52:53 +000010661 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000010662 if (FalseC->getAPIntValue() == 0 &&
10663 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000010664 if (NeedsCondInvert) // Invert the condition if needed.
10665 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10666 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010667
Chris Lattnerd1980a52009-03-12 06:52:53 +000010668 // Zero extend the condition if needed.
10669 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010670
Chris Lattnercee56e72009-03-13 05:53:31 +000010671 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000010672 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000010673 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000010674 }
Eric Christopherfd179292009-08-27 18:07:15 +000010675
Chris Lattner97a29a52009-03-13 05:22:11 +000010676 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000010677 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000010678 if (NeedsCondInvert) // Invert the condition if needed.
10679 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10680 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010681
Chris Lattner97a29a52009-03-13 05:22:11 +000010682 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000010683 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
10684 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000010685 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000010686 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000010687 }
Eric Christopherfd179292009-08-27 18:07:15 +000010688
Chris Lattnercee56e72009-03-13 05:53:31 +000010689 // Optimize cases that will turn into an LEA instruction. This requires
10690 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000010691 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000010692 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000010693 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000010694
Chris Lattnercee56e72009-03-13 05:53:31 +000010695 bool isFastMultiplier = false;
10696 if (Diff < 10) {
10697 switch ((unsigned char)Diff) {
10698 default: break;
10699 case 1: // result = add base, cond
10700 case 2: // result = lea base( , cond*2)
10701 case 3: // result = lea base(cond, cond*2)
10702 case 4: // result = lea base( , cond*4)
10703 case 5: // result = lea base(cond, cond*4)
10704 case 8: // result = lea base( , cond*8)
10705 case 9: // result = lea base(cond, cond*8)
10706 isFastMultiplier = true;
10707 break;
10708 }
10709 }
Eric Christopherfd179292009-08-27 18:07:15 +000010710
Chris Lattnercee56e72009-03-13 05:53:31 +000010711 if (isFastMultiplier) {
10712 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
10713 if (NeedsCondInvert) // Invert the condition if needed.
10714 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10715 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010716
Chris Lattnercee56e72009-03-13 05:53:31 +000010717 // Zero extend the condition if needed.
10718 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
10719 Cond);
10720 // Scale the condition by the difference.
10721 if (Diff != 1)
10722 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
10723 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010724
Chris Lattnercee56e72009-03-13 05:53:31 +000010725 // Add the base if non-zero.
10726 if (FalseC->getAPIntValue() != 0)
10727 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10728 SDValue(FalseC, 0));
10729 return Cond;
10730 }
Eric Christopherfd179292009-08-27 18:07:15 +000010731 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000010732 }
10733 }
Eric Christopherfd179292009-08-27 18:07:15 +000010734
Dan Gohman475871a2008-07-27 21:46:04 +000010735 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000010736}
10737
Chris Lattnerd1980a52009-03-12 06:52:53 +000010738/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
10739static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
10740 TargetLowering::DAGCombinerInfo &DCI) {
10741 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000010742
Chris Lattnerd1980a52009-03-12 06:52:53 +000010743 // If the flag operand isn't dead, don't touch this CMOV.
10744 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
10745 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000010746
Chris Lattnerd1980a52009-03-12 06:52:53 +000010747 // If this is a select between two integer constants, try to do some
10748 // optimizations. Note that the operands are ordered the opposite of SELECT
10749 // operands.
10750 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
10751 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
10752 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
10753 // larger than FalseC (the false value).
10754 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
Eric Christopherfd179292009-08-27 18:07:15 +000010755
Chris Lattnerd1980a52009-03-12 06:52:53 +000010756 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
10757 CC = X86::GetOppositeBranchCondition(CC);
10758 std::swap(TrueC, FalseC);
10759 }
Eric Christopherfd179292009-08-27 18:07:15 +000010760
Chris Lattnerd1980a52009-03-12 06:52:53 +000010761 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000010762 // This is efficient for any integer data type (including i8/i16) and
10763 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000010764 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
10765 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010766 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10767 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010768
Chris Lattnerd1980a52009-03-12 06:52:53 +000010769 // Zero extend the condition if needed.
10770 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010771
Chris Lattnerd1980a52009-03-12 06:52:53 +000010772 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
10773 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000010774 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000010775 if (N->getNumValues() == 2) // Dead flag value?
10776 return DCI.CombineTo(N, Cond, SDValue());
10777 return Cond;
10778 }
Eric Christopherfd179292009-08-27 18:07:15 +000010779
Chris Lattnercee56e72009-03-13 05:53:31 +000010780 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
10781 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000010782 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
10783 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010784 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10785 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010786
Chris Lattner97a29a52009-03-13 05:22:11 +000010787 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000010788 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
10789 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000010790 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10791 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000010792
Chris Lattner97a29a52009-03-13 05:22:11 +000010793 if (N->getNumValues() == 2) // Dead flag value?
10794 return DCI.CombineTo(N, Cond, SDValue());
10795 return Cond;
10796 }
Eric Christopherfd179292009-08-27 18:07:15 +000010797
Chris Lattnercee56e72009-03-13 05:53:31 +000010798 // Optimize cases that will turn into an LEA instruction. This requires
10799 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000010800 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000010801 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000010802 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000010803
Chris Lattnercee56e72009-03-13 05:53:31 +000010804 bool isFastMultiplier = false;
10805 if (Diff < 10) {
10806 switch ((unsigned char)Diff) {
10807 default: break;
10808 case 1: // result = add base, cond
10809 case 2: // result = lea base( , cond*2)
10810 case 3: // result = lea base(cond, cond*2)
10811 case 4: // result = lea base( , cond*4)
10812 case 5: // result = lea base(cond, cond*4)
10813 case 8: // result = lea base( , cond*8)
10814 case 9: // result = lea base(cond, cond*8)
10815 isFastMultiplier = true;
10816 break;
10817 }
10818 }
Eric Christopherfd179292009-08-27 18:07:15 +000010819
Chris Lattnercee56e72009-03-13 05:53:31 +000010820 if (isFastMultiplier) {
10821 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
10822 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010823 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10824 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000010825 // Zero extend the condition if needed.
10826 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
10827 Cond);
10828 // Scale the condition by the difference.
10829 if (Diff != 1)
10830 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
10831 DAG.getConstant(Diff, Cond.getValueType()));
10832
10833 // Add the base if non-zero.
10834 if (FalseC->getAPIntValue() != 0)
10835 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10836 SDValue(FalseC, 0));
10837 if (N->getNumValues() == 2) // Dead flag value?
10838 return DCI.CombineTo(N, Cond, SDValue());
10839 return Cond;
10840 }
Eric Christopherfd179292009-08-27 18:07:15 +000010841 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000010842 }
10843 }
10844 return SDValue();
10845}
10846
10847
Evan Cheng0b0cd912009-03-28 05:57:29 +000010848/// PerformMulCombine - Optimize a single multiply with constant into two
10849/// in order to implement it with two cheaper instructions, e.g.
10850/// LEA + SHL, LEA + LEA.
10851static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
10852 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000010853 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
10854 return SDValue();
10855
Owen Andersone50ed302009-08-10 22:56:29 +000010856 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000010857 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000010858 return SDValue();
10859
10860 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
10861 if (!C)
10862 return SDValue();
10863 uint64_t MulAmt = C->getZExtValue();
10864 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
10865 return SDValue();
10866
10867 uint64_t MulAmt1 = 0;
10868 uint64_t MulAmt2 = 0;
10869 if ((MulAmt % 9) == 0) {
10870 MulAmt1 = 9;
10871 MulAmt2 = MulAmt / 9;
10872 } else if ((MulAmt % 5) == 0) {
10873 MulAmt1 = 5;
10874 MulAmt2 = MulAmt / 5;
10875 } else if ((MulAmt % 3) == 0) {
10876 MulAmt1 = 3;
10877 MulAmt2 = MulAmt / 3;
10878 }
10879 if (MulAmt2 &&
10880 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
10881 DebugLoc DL = N->getDebugLoc();
10882
10883 if (isPowerOf2_64(MulAmt2) &&
10884 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
10885 // If second multiplifer is pow2, issue it first. We want the multiply by
10886 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
10887 // is an add.
10888 std::swap(MulAmt1, MulAmt2);
10889
10890 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000010891 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000010892 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000010893 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000010894 else
Evan Cheng73f24c92009-03-30 21:36:47 +000010895 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000010896 DAG.getConstant(MulAmt1, VT));
10897
Eric Christopherfd179292009-08-27 18:07:15 +000010898 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000010899 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000010900 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000010901 else
Evan Cheng73f24c92009-03-30 21:36:47 +000010902 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000010903 DAG.getConstant(MulAmt2, VT));
10904
10905 // Do not add new nodes to DAG combiner worklist.
10906 DCI.CombineTo(N, NewMul, false);
10907 }
10908 return SDValue();
10909}
10910
Evan Chengad9c0a32009-12-15 00:53:42 +000010911static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
10912 SDValue N0 = N->getOperand(0);
10913 SDValue N1 = N->getOperand(1);
10914 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
10915 EVT VT = N0.getValueType();
10916
10917 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
10918 // since the result of setcc_c is all zero's or all ones.
10919 if (N1C && N0.getOpcode() == ISD::AND &&
10920 N0.getOperand(1).getOpcode() == ISD::Constant) {
10921 SDValue N00 = N0.getOperand(0);
10922 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
10923 ((N00.getOpcode() == ISD::ANY_EXTEND ||
10924 N00.getOpcode() == ISD::ZERO_EXTEND) &&
10925 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
10926 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
10927 APInt ShAmt = N1C->getAPIntValue();
10928 Mask = Mask.shl(ShAmt);
10929 if (Mask != 0)
10930 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
10931 N00, DAG.getConstant(Mask, VT));
10932 }
10933 }
10934
10935 return SDValue();
10936}
Evan Cheng0b0cd912009-03-28 05:57:29 +000010937
Nate Begeman740ab032009-01-26 00:52:55 +000010938/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
10939/// when possible.
10940static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
10941 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000010942 EVT VT = N->getValueType(0);
10943 if (!VT.isVector() && VT.isInteger() &&
10944 N->getOpcode() == ISD::SHL)
10945 return PerformSHLCombine(N, DAG);
10946
Nate Begeman740ab032009-01-26 00:52:55 +000010947 // On X86 with SSE2 support, we can transform this to a vector shift if
10948 // all elements are shifted by the same amount. We can't do this in legalize
10949 // because the a constant vector is typically transformed to a constant pool
10950 // so we have no knowledge of the shift amount.
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010951 if (!Subtarget->hasSSE2())
10952 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000010953
Owen Anderson825b72b2009-08-11 20:47:22 +000010954 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010955 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000010956
Mon P Wang3becd092009-01-28 08:12:05 +000010957 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000010958 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000010959 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000010960 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000010961 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
10962 unsigned NumElts = VT.getVectorNumElements();
10963 unsigned i = 0;
10964 for (; i != NumElts; ++i) {
10965 SDValue Arg = ShAmtOp.getOperand(i);
10966 if (Arg.getOpcode() == ISD::UNDEF) continue;
10967 BaseShAmt = Arg;
10968 break;
10969 }
10970 for (; i != NumElts; ++i) {
10971 SDValue Arg = ShAmtOp.getOperand(i);
10972 if (Arg.getOpcode() == ISD::UNDEF) continue;
10973 if (Arg != BaseShAmt) {
10974 return SDValue();
10975 }
10976 }
10977 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000010978 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000010979 SDValue InVec = ShAmtOp.getOperand(0);
10980 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
10981 unsigned NumElts = InVec.getValueType().getVectorNumElements();
10982 unsigned i = 0;
10983 for (; i != NumElts; ++i) {
10984 SDValue Arg = InVec.getOperand(i);
10985 if (Arg.getOpcode() == ISD::UNDEF) continue;
10986 BaseShAmt = Arg;
10987 break;
10988 }
10989 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
10990 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000010991 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000010992 if (C->getZExtValue() == SplatIdx)
10993 BaseShAmt = InVec.getOperand(1);
10994 }
10995 }
10996 if (BaseShAmt.getNode() == 0)
10997 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
10998 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000010999 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011000 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000011001
Mon P Wangefa42202009-09-03 19:56:25 +000011002 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000011003 if (EltVT.bitsGT(MVT::i32))
11004 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
11005 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000011006 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000011007
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011008 // The shift amount is identical so we can do a vector shift.
11009 SDValue ValOp = N->getOperand(0);
11010 switch (N->getOpcode()) {
11011 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000011012 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011013 break;
11014 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000011015 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011016 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011017 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011018 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011019 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011020 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011021 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011022 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011023 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011024 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011025 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011026 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011027 break;
11028 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000011029 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011030 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011031 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011032 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011033 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011034 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011035 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011036 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011037 break;
11038 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000011039 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011040 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011041 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011042 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011043 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011044 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011045 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011046 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011047 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011048 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011049 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011050 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011051 break;
Nate Begeman740ab032009-01-26 00:52:55 +000011052 }
11053 return SDValue();
11054}
11055
Evan Cheng760d1942010-01-04 21:22:48 +000011056static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000011057 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000011058 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000011059 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000011060 return SDValue();
11061
Evan Cheng760d1942010-01-04 21:22:48 +000011062 EVT VT = N->getValueType(0);
Evan Cheng8b1190a2010-04-28 01:18:01 +000011063 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
Evan Cheng760d1942010-01-04 21:22:48 +000011064 return SDValue();
11065
11066 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
11067 SDValue N0 = N->getOperand(0);
11068 SDValue N1 = N->getOperand(1);
11069 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
11070 std::swap(N0, N1);
11071 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
11072 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000011073 if (!N0.hasOneUse() || !N1.hasOneUse())
11074 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000011075
11076 SDValue ShAmt0 = N0.getOperand(1);
11077 if (ShAmt0.getValueType() != MVT::i8)
11078 return SDValue();
11079 SDValue ShAmt1 = N1.getOperand(1);
11080 if (ShAmt1.getValueType() != MVT::i8)
11081 return SDValue();
11082 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
11083 ShAmt0 = ShAmt0.getOperand(0);
11084 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
11085 ShAmt1 = ShAmt1.getOperand(0);
11086
11087 DebugLoc DL = N->getDebugLoc();
11088 unsigned Opc = X86ISD::SHLD;
11089 SDValue Op0 = N0.getOperand(0);
11090 SDValue Op1 = N1.getOperand(0);
11091 if (ShAmt0.getOpcode() == ISD::SUB) {
11092 Opc = X86ISD::SHRD;
11093 std::swap(Op0, Op1);
11094 std::swap(ShAmt0, ShAmt1);
11095 }
11096
Evan Cheng8b1190a2010-04-28 01:18:01 +000011097 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000011098 if (ShAmt1.getOpcode() == ISD::SUB) {
11099 SDValue Sum = ShAmt1.getOperand(0);
11100 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000011101 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
11102 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
11103 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
11104 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000011105 return DAG.getNode(Opc, DL, VT,
11106 Op0, Op1,
11107 DAG.getNode(ISD::TRUNCATE, DL,
11108 MVT::i8, ShAmt0));
11109 }
11110 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
11111 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
11112 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000011113 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000011114 return DAG.getNode(Opc, DL, VT,
11115 N0.getOperand(0), N1.getOperand(0),
11116 DAG.getNode(ISD::TRUNCATE, DL,
11117 MVT::i8, ShAmt0));
11118 }
11119
11120 return SDValue();
11121}
11122
Chris Lattner149a4e52008-02-22 02:09:43 +000011123/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011124static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000011125 const X86Subtarget *Subtarget) {
Chris Lattner149a4e52008-02-22 02:09:43 +000011126 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
11127 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000011128 // A preferable solution to the general problem is to figure out the right
11129 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000011130
11131 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng7e2ff772008-05-08 00:57:18 +000011132 StoreSDNode *St = cast<StoreSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +000011133 EVT VT = St->getValue().getValueType();
Evan Cheng536e6672009-03-12 05:59:15 +000011134 if (VT.getSizeInBits() != 64)
11135 return SDValue();
11136
Devang Patel578efa92009-06-05 21:57:13 +000011137 const Function *F = DAG.getMachineFunction().getFunction();
11138 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000011139 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000011140 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000011141 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000011142 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000011143 isa<LoadSDNode>(St->getValue()) &&
11144 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
11145 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011146 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011147 LoadSDNode *Ld = 0;
11148 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000011149 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000011150 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011151 // Must be a store of a load. We currently handle two cases: the load
11152 // is a direct child, and it's under an intervening TokenFactor. It is
11153 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000011154 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000011155 Ld = cast<LoadSDNode>(St->getChain());
11156 else if (St->getValue().hasOneUse() &&
11157 ChainVal->getOpcode() == ISD::TokenFactor) {
11158 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011159 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000011160 TokenFactorIndex = i;
11161 Ld = cast<LoadSDNode>(St->getValue());
11162 } else
11163 Ops.push_back(ChainVal->getOperand(i));
11164 }
11165 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000011166
Evan Cheng536e6672009-03-12 05:59:15 +000011167 if (!Ld || !ISD::isNormalLoad(Ld))
11168 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011169
Evan Cheng536e6672009-03-12 05:59:15 +000011170 // If this is not the MMX case, i.e. we are just turning i64 load/store
11171 // into f64 load/store, avoid the transformation if there are multiple
11172 // uses of the loaded value.
11173 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
11174 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011175
Evan Cheng536e6672009-03-12 05:59:15 +000011176 DebugLoc LdDL = Ld->getDebugLoc();
11177 DebugLoc StDL = N->getDebugLoc();
11178 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
11179 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
11180 // pair instead.
11181 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011182 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000011183 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
11184 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000011185 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000011186 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000011187 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000011188 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000011189 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000011190 Ops.size());
11191 }
Evan Cheng536e6672009-03-12 05:59:15 +000011192 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000011193 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011194 St->isVolatile(), St->isNonTemporal(),
11195 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000011196 }
Evan Cheng536e6672009-03-12 05:59:15 +000011197
11198 // Otherwise, lower to two pairs of 32-bit loads / stores.
11199 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011200 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
11201 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011202
Owen Anderson825b72b2009-08-11 20:47:22 +000011203 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011204 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011205 Ld->isVolatile(), Ld->isNonTemporal(),
11206 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000011207 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011208 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000011209 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000011210 MinAlign(Ld->getAlignment(), 4));
11211
11212 SDValue NewChain = LoLd.getValue(1);
11213 if (TokenFactorIndex != -1) {
11214 Ops.push_back(LoLd);
11215 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000011216 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000011217 Ops.size());
11218 }
11219
11220 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011221 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
11222 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011223
11224 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011225 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011226 St->isVolatile(), St->isNonTemporal(),
11227 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000011228 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011229 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000011230 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000011231 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000011232 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000011233 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000011234 }
Dan Gohman475871a2008-07-27 21:46:04 +000011235 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000011236}
11237
Chris Lattner6cf73262008-01-25 06:14:17 +000011238/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
11239/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011240static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000011241 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
11242 // F[X]OR(0.0, x) -> x
11243 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000011244 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
11245 if (C->getValueAPF().isPosZero())
11246 return N->getOperand(1);
11247 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
11248 if (C->getValueAPF().isPosZero())
11249 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000011250 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000011251}
11252
11253/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011254static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000011255 // FAND(0.0, x) -> 0.0
11256 // FAND(x, 0.0) -> 0.0
11257 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
11258 if (C->getValueAPF().isPosZero())
11259 return N->getOperand(0);
11260 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
11261 if (C->getValueAPF().isPosZero())
11262 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000011263 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000011264}
11265
Dan Gohmane5af2d32009-01-29 01:59:02 +000011266static SDValue PerformBTCombine(SDNode *N,
11267 SelectionDAG &DAG,
11268 TargetLowering::DAGCombinerInfo &DCI) {
11269 // BT ignores high bits in the bit index operand.
11270 SDValue Op1 = N->getOperand(1);
11271 if (Op1.hasOneUse()) {
11272 unsigned BitWidth = Op1.getValueSizeInBits();
11273 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
11274 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011275 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
11276 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000011277 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000011278 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
11279 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
11280 DCI.CommitTargetLoweringOpt(TLO);
11281 }
11282 return SDValue();
11283}
Chris Lattner83e6c992006-10-04 06:57:07 +000011284
Eli Friedman7a5e5552009-06-07 06:52:44 +000011285static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
11286 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000011287 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000011288 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000011289 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000011290 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000011291 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000011292 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000011293 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000011294 }
11295 return SDValue();
11296}
11297
Evan Cheng2e489c42009-12-16 00:53:11 +000011298static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
11299 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
11300 // (and (i32 x86isd::setcc_carry), 1)
11301 // This eliminates the zext. This transformation is necessary because
11302 // ISD::SETCC is always legalized to i8.
11303 DebugLoc dl = N->getDebugLoc();
11304 SDValue N0 = N->getOperand(0);
11305 EVT VT = N->getValueType(0);
11306 if (N0.getOpcode() == ISD::AND &&
11307 N0.hasOneUse() &&
11308 N0.getOperand(0).hasOneUse()) {
11309 SDValue N00 = N0.getOperand(0);
11310 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
11311 return SDValue();
11312 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
11313 if (!C || C->getZExtValue() != 1)
11314 return SDValue();
11315 return DAG.getNode(ISD::AND, dl, VT,
11316 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
11317 N00.getOperand(0), N00.getOperand(1)),
11318 DAG.getConstant(1, VT));
11319 }
11320
11321 return SDValue();
11322}
11323
Dan Gohman475871a2008-07-27 21:46:04 +000011324SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000011325 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000011326 SelectionDAG &DAG = DCI.DAG;
11327 switch (N->getOpcode()) {
11328 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011329 case ISD::EXTRACT_VECTOR_ELT:
11330 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000011331 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000011332 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000011333 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000011334 case ISD::SHL:
11335 case ISD::SRA:
11336 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000011337 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000011338 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000011339 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000011340 case X86ISD::FOR: return PerformFORCombine(N, DAG);
11341 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000011342 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000011343 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000011344 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011345 case X86ISD::SHUFPS: // Handle all target specific shuffles
11346 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000011347 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011348 case X86ISD::PUNPCKHBW:
11349 case X86ISD::PUNPCKHWD:
11350 case X86ISD::PUNPCKHDQ:
11351 case X86ISD::PUNPCKHQDQ:
11352 case X86ISD::UNPCKHPS:
11353 case X86ISD::UNPCKHPD:
11354 case X86ISD::PUNPCKLBW:
11355 case X86ISD::PUNPCKLWD:
11356 case X86ISD::PUNPCKLDQ:
11357 case X86ISD::PUNPCKLQDQ:
11358 case X86ISD::UNPCKLPS:
11359 case X86ISD::UNPCKLPD:
11360 case X86ISD::MOVHLPS:
11361 case X86ISD::MOVLHPS:
11362 case X86ISD::PSHUFD:
11363 case X86ISD::PSHUFHW:
11364 case X86ISD::PSHUFLW:
11365 case X86ISD::MOVSS:
11366 case X86ISD::MOVSD:
11367 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this);
Evan Cheng206ee9d2006-07-07 08:33:52 +000011368 }
11369
Dan Gohman475871a2008-07-27 21:46:04 +000011370 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000011371}
11372
Evan Chenge5b51ac2010-04-17 06:13:15 +000011373/// isTypeDesirableForOp - Return true if the target has native support for
11374/// the specified value type and it is 'desirable' to use the type for the
11375/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
11376/// instruction encodings are longer and some i16 instructions are slow.
11377bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
11378 if (!isTypeLegal(VT))
11379 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011380 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000011381 return true;
11382
11383 switch (Opc) {
11384 default:
11385 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000011386 case ISD::LOAD:
11387 case ISD::SIGN_EXTEND:
11388 case ISD::ZERO_EXTEND:
11389 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000011390 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000011391 case ISD::SRL:
11392 case ISD::SUB:
11393 case ISD::ADD:
11394 case ISD::MUL:
11395 case ISD::AND:
11396 case ISD::OR:
11397 case ISD::XOR:
11398 return false;
11399 }
11400}
11401
11402/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000011403/// beneficial for dag combiner to promote the specified node. If true, it
11404/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000011405bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000011406 EVT VT = Op.getValueType();
11407 if (VT != MVT::i16)
11408 return false;
11409
Evan Cheng4c26e932010-04-19 19:29:22 +000011410 bool Promote = false;
11411 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011412 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000011413 default: break;
11414 case ISD::LOAD: {
11415 LoadSDNode *LD = cast<LoadSDNode>(Op);
11416 // If the non-extending load has a single use and it's not live out, then it
11417 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011418 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
11419 Op.hasOneUse()*/) {
11420 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
11421 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
11422 // The only case where we'd want to promote LOAD (rather then it being
11423 // promoted as an operand is when it's only use is liveout.
11424 if (UI->getOpcode() != ISD::CopyToReg)
11425 return false;
11426 }
11427 }
Evan Cheng4c26e932010-04-19 19:29:22 +000011428 Promote = true;
11429 break;
11430 }
11431 case ISD::SIGN_EXTEND:
11432 case ISD::ZERO_EXTEND:
11433 case ISD::ANY_EXTEND:
11434 Promote = true;
11435 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011436 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011437 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000011438 SDValue N0 = Op.getOperand(0);
11439 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000011440 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000011441 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000011442 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011443 break;
11444 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000011445 case ISD::ADD:
11446 case ISD::MUL:
11447 case ISD::AND:
11448 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000011449 case ISD::XOR:
11450 Commute = true;
11451 // fallthrough
11452 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000011453 SDValue N0 = Op.getOperand(0);
11454 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000011455 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011456 return false;
11457 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000011458 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011459 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000011460 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011461 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000011462 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011463 }
11464 }
11465
11466 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000011467 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011468}
11469
Evan Cheng60c07e12006-07-05 22:17:51 +000011470//===----------------------------------------------------------------------===//
11471// X86 Inline Assembly Support
11472//===----------------------------------------------------------------------===//
11473
Chris Lattnerb8105652009-07-20 17:51:36 +000011474static bool LowerToBSwap(CallInst *CI) {
11475 // FIXME: this should verify that we are targetting a 486 or better. If not,
11476 // we will turn this bswap into something that will be lowered to logical ops
11477 // instead of emitting the bswap asm. For now, we don't support 486 or lower
11478 // so don't worry about this.
Eric Christopherfd179292009-08-27 18:07:15 +000011479
Chris Lattnerb8105652009-07-20 17:51:36 +000011480 // Verify this is a simple bswap.
Gabor Greife1c2b9c2010-06-30 13:03:37 +000011481 if (CI->getNumArgOperands() != 1 ||
Gabor Greif1cfe44a2010-06-26 11:51:52 +000011482 CI->getType() != CI->getArgOperand(0)->getType() ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011483 !CI->getType()->isIntegerTy())
Chris Lattnerb8105652009-07-20 17:51:36 +000011484 return false;
Eric Christopherfd179292009-08-27 18:07:15 +000011485
Chris Lattnerb8105652009-07-20 17:51:36 +000011486 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
11487 if (!Ty || Ty->getBitWidth() % 16 != 0)
11488 return false;
Eric Christopherfd179292009-08-27 18:07:15 +000011489
Chris Lattnerb8105652009-07-20 17:51:36 +000011490 // Okay, we can do this xform, do so now.
11491 const Type *Tys[] = { Ty };
11492 Module *M = CI->getParent()->getParent()->getParent();
11493 Constant *Int = Intrinsic::getDeclaration(M, Intrinsic::bswap, Tys, 1);
Eric Christopherfd179292009-08-27 18:07:15 +000011494
Gabor Greif1cfe44a2010-06-26 11:51:52 +000011495 Value *Op = CI->getArgOperand(0);
Chris Lattnerb8105652009-07-20 17:51:36 +000011496 Op = CallInst::Create(Int, Op, CI->getName(), CI);
Eric Christopherfd179292009-08-27 18:07:15 +000011497
Chris Lattnerb8105652009-07-20 17:51:36 +000011498 CI->replaceAllUsesWith(Op);
11499 CI->eraseFromParent();
11500 return true;
11501}
11502
11503bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
11504 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
John Thompson44ab89e2010-10-29 17:29:13 +000011505 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
Chris Lattnerb8105652009-07-20 17:51:36 +000011506
11507 std::string AsmStr = IA->getAsmString();
11508
11509 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000011510 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000011511 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000011512
11513 switch (AsmPieces.size()) {
11514 default: return false;
11515 case 1:
11516 AsmStr = AsmPieces[0];
11517 AsmPieces.clear();
11518 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
11519
11520 // bswap $0
11521 if (AsmPieces.size() == 2 &&
11522 (AsmPieces[0] == "bswap" ||
11523 AsmPieces[0] == "bswapq" ||
11524 AsmPieces[0] == "bswapl") &&
11525 (AsmPieces[1] == "$0" ||
11526 AsmPieces[1] == "${0:q}")) {
11527 // No need to check constraints, nothing other than the equivalent of
11528 // "=r,0" would be valid here.
11529 return LowerToBSwap(CI);
11530 }
11531 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011532 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011533 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000011534 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011535 AsmPieces[1] == "$$8," &&
11536 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000011537 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
11538 AsmPieces.clear();
Benjamin Kramer018cbd52010-03-12 13:54:59 +000011539 const std::string &Constraints = IA->getConstraintString();
11540 SplitString(StringRef(Constraints).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000011541 std::sort(AsmPieces.begin(), AsmPieces.end());
11542 if (AsmPieces.size() == 4 &&
11543 AsmPieces[0] == "~{cc}" &&
11544 AsmPieces[1] == "~{dirflag}" &&
11545 AsmPieces[2] == "~{flags}" &&
11546 AsmPieces[3] == "~{fpsr}") {
11547 return LowerToBSwap(CI);
11548 }
Chris Lattnerb8105652009-07-20 17:51:36 +000011549 }
11550 break;
11551 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000011552 if (CI->getType()->isIntegerTy(32) &&
11553 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
11554 SmallVector<StringRef, 4> Words;
11555 SplitString(AsmPieces[0], Words, " \t,");
11556 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
11557 Words[2] == "${0:w}") {
11558 Words.clear();
11559 SplitString(AsmPieces[1], Words, " \t,");
11560 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
11561 Words[2] == "$0") {
11562 Words.clear();
11563 SplitString(AsmPieces[2], Words, " \t,");
11564 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
11565 Words[2] == "${0:w}") {
11566 AsmPieces.clear();
11567 const std::string &Constraints = IA->getConstraintString();
11568 SplitString(StringRef(Constraints).substr(5), AsmPieces, ",");
11569 std::sort(AsmPieces.begin(), AsmPieces.end());
11570 if (AsmPieces.size() == 4 &&
11571 AsmPieces[0] == "~{cc}" &&
11572 AsmPieces[1] == "~{dirflag}" &&
11573 AsmPieces[2] == "~{flags}" &&
11574 AsmPieces[3] == "~{fpsr}") {
11575 return LowerToBSwap(CI);
11576 }
11577 }
11578 }
11579 }
11580 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011581 if (CI->getType()->isIntegerTy(64) &&
Owen Anderson1d0be152009-08-13 21:58:54 +000011582 Constraints.size() >= 2 &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011583 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
11584 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
11585 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
Benjamin Kramerd4f19592010-01-11 18:03:24 +000011586 SmallVector<StringRef, 4> Words;
Chris Lattnerb8105652009-07-20 17:51:36 +000011587 SplitString(AsmPieces[0], Words, " \t");
11588 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
11589 Words.clear();
11590 SplitString(AsmPieces[1], Words, " \t");
11591 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
11592 Words.clear();
11593 SplitString(AsmPieces[2], Words, " \t,");
11594 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
11595 Words[2] == "%edx") {
11596 return LowerToBSwap(CI);
11597 }
11598 }
11599 }
11600 }
11601 break;
11602 }
11603 return false;
11604}
11605
11606
11607
Chris Lattnerf4dff842006-07-11 02:54:03 +000011608/// getConstraintType - Given a constraint letter, return the type of
11609/// constraint it is for this target.
11610X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000011611X86TargetLowering::getConstraintType(const std::string &Constraint) const {
11612 if (Constraint.size() == 1) {
11613 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000011614 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000011615 case 'q':
11616 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000011617 case 'f':
11618 case 't':
11619 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000011620 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000011621 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000011622 case 'Y':
11623 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000011624 case 'a':
11625 case 'b':
11626 case 'c':
11627 case 'd':
11628 case 'S':
11629 case 'D':
11630 case 'A':
11631 return C_Register;
11632 case 'I':
11633 case 'J':
11634 case 'K':
11635 case 'L':
11636 case 'M':
11637 case 'N':
11638 case 'G':
11639 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000011640 case 'e':
11641 case 'Z':
11642 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000011643 default:
11644 break;
11645 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000011646 }
Chris Lattner4234f572007-03-25 02:14:49 +000011647 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000011648}
11649
John Thompson44ab89e2010-10-29 17:29:13 +000011650/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000011651/// This object must already have been set up with the operand type
11652/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000011653TargetLowering::ConstraintWeight
11654 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000011655 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000011656 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011657 Value *CallOperandVal = info.CallOperandVal;
11658 // If we don't have a value, we can't do a match,
11659 // but allow it at the lowest weight.
11660 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000011661 return CW_Default;
11662 const Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000011663 // Look at the constraint type.
11664 switch (*constraint) {
11665 default:
John Thompson44ab89e2010-10-29 17:29:13 +000011666 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
11667 case 'R':
11668 case 'q':
11669 case 'Q':
11670 case 'a':
11671 case 'b':
11672 case 'c':
11673 case 'd':
11674 case 'S':
11675 case 'D':
11676 case 'A':
11677 if (CallOperandVal->getType()->isIntegerTy())
11678 weight = CW_SpecificReg;
11679 break;
11680 case 'f':
11681 case 't':
11682 case 'u':
11683 if (type->isFloatingPointTy())
11684 weight = CW_SpecificReg;
11685 break;
11686 case 'y':
11687 if (type->isX86_MMXTy() && !DisableMMX && Subtarget->hasMMX())
11688 weight = CW_SpecificReg;
11689 break;
11690 case 'x':
11691 case 'Y':
Nate Begeman2ea8ee72010-12-10 00:26:57 +000011692 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasXMM())
John Thompson44ab89e2010-10-29 17:29:13 +000011693 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011694 break;
11695 case 'I':
11696 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
11697 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000011698 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011699 }
11700 break;
John Thompson44ab89e2010-10-29 17:29:13 +000011701 case 'J':
11702 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11703 if (C->getZExtValue() <= 63)
11704 weight = CW_Constant;
11705 }
11706 break;
11707 case 'K':
11708 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11709 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
11710 weight = CW_Constant;
11711 }
11712 break;
11713 case 'L':
11714 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11715 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
11716 weight = CW_Constant;
11717 }
11718 break;
11719 case 'M':
11720 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11721 if (C->getZExtValue() <= 3)
11722 weight = CW_Constant;
11723 }
11724 break;
11725 case 'N':
11726 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11727 if (C->getZExtValue() <= 0xff)
11728 weight = CW_Constant;
11729 }
11730 break;
11731 case 'G':
11732 case 'C':
11733 if (dyn_cast<ConstantFP>(CallOperandVal)) {
11734 weight = CW_Constant;
11735 }
11736 break;
11737 case 'e':
11738 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11739 if ((C->getSExtValue() >= -0x80000000LL) &&
11740 (C->getSExtValue() <= 0x7fffffffLL))
11741 weight = CW_Constant;
11742 }
11743 break;
11744 case 'Z':
11745 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11746 if (C->getZExtValue() <= 0xffffffff)
11747 weight = CW_Constant;
11748 }
11749 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011750 }
11751 return weight;
11752}
11753
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011754/// LowerXConstraint - try to replace an X constraint, which matches anything,
11755/// with another that has more specific requirements based on the type of the
11756/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000011757const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000011758LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000011759 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
11760 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000011761 if (ConstraintVT.isFloatingPoint()) {
Nate Begeman2ea8ee72010-12-10 00:26:57 +000011762 if (Subtarget->hasXMMInt())
Chris Lattner5e764232008-04-26 23:02:14 +000011763 return "Y";
Nate Begeman2ea8ee72010-12-10 00:26:57 +000011764 if (Subtarget->hasXMM())
Chris Lattner5e764232008-04-26 23:02:14 +000011765 return "x";
11766 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011767
Chris Lattner5e764232008-04-26 23:02:14 +000011768 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011769}
11770
Chris Lattner48884cd2007-08-25 00:47:38 +000011771/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
11772/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000011773void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattner48884cd2007-08-25 00:47:38 +000011774 char Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000011775 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000011776 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000011777 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000011778
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011779 switch (Constraint) {
11780 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000011781 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000011782 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011783 if (C->getZExtValue() <= 31) {
11784 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000011785 break;
11786 }
Devang Patel84f7fd22007-03-17 00:13:28 +000011787 }
Chris Lattner48884cd2007-08-25 00:47:38 +000011788 return;
Evan Cheng364091e2008-09-22 23:57:37 +000011789 case 'J':
11790 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000011791 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000011792 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11793 break;
11794 }
11795 }
11796 return;
11797 case 'K':
11798 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000011799 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000011800 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11801 break;
11802 }
11803 }
11804 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000011805 case 'N':
11806 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011807 if (C->getZExtValue() <= 255) {
11808 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000011809 break;
11810 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000011811 }
Chris Lattner48884cd2007-08-25 00:47:38 +000011812 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000011813 case 'e': {
11814 // 32-bit signed value
11815 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000011816 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
11817 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011818 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000011819 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000011820 break;
11821 }
11822 // FIXME gcc accepts some relocatable values here too, but only in certain
11823 // memory models; it's complicated.
11824 }
11825 return;
11826 }
11827 case 'Z': {
11828 // 32-bit unsigned value
11829 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000011830 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
11831 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011832 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11833 break;
11834 }
11835 }
11836 // FIXME gcc accepts some relocatable values here too, but only in certain
11837 // memory models; it's complicated.
11838 return;
11839 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011840 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011841 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000011842 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011843 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000011844 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000011845 break;
11846 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011847
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000011848 // In any sort of PIC mode addresses need to be computed at runtime by
11849 // adding in a register or some sort of table lookup. These can't
11850 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000011851 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000011852 return;
11853
Chris Lattnerdc43a882007-05-03 16:52:29 +000011854 // If we are in non-pic codegen mode, we allow the address of a global (with
11855 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000011856 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000011857 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000011858
Chris Lattner49921962009-05-08 18:23:14 +000011859 // Match either (GA), (GA+C), (GA+C1+C2), etc.
11860 while (1) {
11861 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
11862 Offset += GA->getOffset();
11863 break;
11864 } else if (Op.getOpcode() == ISD::ADD) {
11865 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
11866 Offset += C->getZExtValue();
11867 Op = Op.getOperand(0);
11868 continue;
11869 }
11870 } else if (Op.getOpcode() == ISD::SUB) {
11871 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
11872 Offset += -C->getZExtValue();
11873 Op = Op.getOperand(0);
11874 continue;
11875 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011876 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011877
Chris Lattner49921962009-05-08 18:23:14 +000011878 // Otherwise, this isn't something we can handle, reject it.
11879 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000011880 }
Eric Christopherfd179292009-08-27 18:07:15 +000011881
Dan Gohman46510a72010-04-15 01:51:59 +000011882 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011883 // If we require an extra load to get this address, as in PIC mode, we
11884 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000011885 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
11886 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011887 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000011888
Devang Patel0d881da2010-07-06 22:08:15 +000011889 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
11890 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000011891 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011892 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011893 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011894
Gabor Greifba36cb52008-08-28 21:40:38 +000011895 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000011896 Ops.push_back(Result);
11897 return;
11898 }
Dale Johannesen1784d162010-06-25 21:55:36 +000011899 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011900}
11901
Chris Lattner259e97c2006-01-31 19:43:35 +000011902std::vector<unsigned> X86TargetLowering::
Chris Lattner1efa40f2006-02-22 00:56:39 +000011903getRegClassForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000011904 EVT VT) const {
Chris Lattner259e97c2006-01-31 19:43:35 +000011905 if (Constraint.size() == 1) {
11906 // FIXME: not handling fp-stack yet!
Chris Lattner259e97c2006-01-31 19:43:35 +000011907 switch (Constraint[0]) { // GCC X86 Constraint Letters
Chris Lattnerf4dff842006-07-11 02:54:03 +000011908 default: break; // Unknown constraint letter
Evan Cheng47e9fab2009-07-17 22:13:25 +000011909 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
11910 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011911 if (VT == MVT::i32)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011912 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX,
11913 X86::ESI, X86::EDI, X86::R8D, X86::R9D,
11914 X86::R10D,X86::R11D,X86::R12D,
11915 X86::R13D,X86::R14D,X86::R15D,
11916 X86::EBP, X86::ESP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011917 else if (VT == MVT::i16)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011918 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX,
11919 X86::SI, X86::DI, X86::R8W,X86::R9W,
11920 X86::R10W,X86::R11W,X86::R12W,
11921 X86::R13W,X86::R14W,X86::R15W,
11922 X86::BP, X86::SP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011923 else if (VT == MVT::i8)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011924 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL,
11925 X86::SIL, X86::DIL, X86::R8B,X86::R9B,
11926 X86::R10B,X86::R11B,X86::R12B,
11927 X86::R13B,X86::R14B,X86::R15B,
11928 X86::BPL, X86::SPL, 0);
11929
Owen Anderson825b72b2009-08-11 20:47:22 +000011930 else if (VT == MVT::i64)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011931 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX,
11932 X86::RSI, X86::RDI, X86::R8, X86::R9,
11933 X86::R10, X86::R11, X86::R12,
11934 X86::R13, X86::R14, X86::R15,
11935 X86::RBP, X86::RSP, 0);
11936
11937 break;
11938 }
Eric Christopherfd179292009-08-27 18:07:15 +000011939 // 32-bit fallthrough
Chris Lattner259e97c2006-01-31 19:43:35 +000011940 case 'Q': // Q_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000011941 if (VT == MVT::i32)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000011942 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011943 else if (VT == MVT::i16)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000011944 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011945 else if (VT == MVT::i8)
Evan Cheng12914382007-08-13 23:27:11 +000011946 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011947 else if (VT == MVT::i64)
Chris Lattner03e6c702007-11-04 06:51:12 +000011948 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
11949 break;
Chris Lattner259e97c2006-01-31 19:43:35 +000011950 }
11951 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011952
Chris Lattner1efa40f2006-02-22 00:56:39 +000011953 return std::vector<unsigned>();
Chris Lattner259e97c2006-01-31 19:43:35 +000011954}
Chris Lattnerf76d1802006-07-31 23:26:50 +000011955
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011956std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000011957X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000011958 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000011959 // First, see if this is a constraint that directly corresponds to an LLVM
11960 // register class.
11961 if (Constraint.size() == 1) {
11962 // GCC Constraint Letters
11963 switch (Constraint[0]) {
11964 default: break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000011965 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000011966 case 'l': // INDEX_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000011967 if (VT == MVT::i8)
Chris Lattner0f65cad2007-04-09 05:49:22 +000011968 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011969 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000011970 return std::make_pair(0U, X86::GR16RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011971 if (VT == MVT::i32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000011972 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000011973 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000011974 case 'R': // LEGACY_REGS
11975 if (VT == MVT::i8)
11976 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
11977 if (VT == MVT::i16)
11978 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
11979 if (VT == MVT::i32 || !Subtarget->is64Bit())
11980 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
11981 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011982 case 'f': // FP Stack registers.
11983 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
11984 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000011985 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011986 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011987 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011988 return std::make_pair(0U, X86::RFP64RegisterClass);
11989 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000011990 case 'y': // MMX_REGS if MMX allowed.
11991 if (!Subtarget->hasMMX()) break;
11992 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000011993 case 'Y': // SSE_REGS if SSE2 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000011994 if (!Subtarget->hasXMMInt()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000011995 // FALL THROUGH.
11996 case 'x': // SSE_REGS if SSE1 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000011997 if (!Subtarget->hasXMM()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000011998
Owen Anderson825b72b2009-08-11 20:47:22 +000011999 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000012000 default: break;
12001 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000012002 case MVT::f32:
12003 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000012004 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000012005 case MVT::f64:
12006 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000012007 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000012008 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000012009 case MVT::v16i8:
12010 case MVT::v8i16:
12011 case MVT::v4i32:
12012 case MVT::v2i64:
12013 case MVT::v4f32:
12014 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000012015 return std::make_pair(0U, X86::VR128RegisterClass);
12016 }
Chris Lattnerad043e82007-04-09 05:11:28 +000012017 break;
12018 }
12019 }
Scott Michelfdc40a02009-02-17 22:15:04 +000012020
Chris Lattnerf76d1802006-07-31 23:26:50 +000012021 // Use the default implementation in TargetLowering to convert the register
12022 // constraint into a member of a register class.
12023 std::pair<unsigned, const TargetRegisterClass*> Res;
12024 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000012025
12026 // Not found as a standard register?
12027 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000012028 // Map st(0) -> st(7) -> ST0
12029 if (Constraint.size() == 7 && Constraint[0] == '{' &&
12030 tolower(Constraint[1]) == 's' &&
12031 tolower(Constraint[2]) == 't' &&
12032 Constraint[3] == '(' &&
12033 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
12034 Constraint[5] == ')' &&
12035 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000012036
Chris Lattner56d77c72009-09-13 22:41:48 +000012037 Res.first = X86::ST0+Constraint[4]-'0';
12038 Res.second = X86::RFP80RegisterClass;
12039 return Res;
12040 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000012041
Chris Lattner56d77c72009-09-13 22:41:48 +000012042 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000012043 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000012044 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000012045 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000012046 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000012047 }
Chris Lattner56d77c72009-09-13 22:41:48 +000012048
12049 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000012050 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000012051 Res.first = X86::EFLAGS;
12052 Res.second = X86::CCRRegisterClass;
12053 return Res;
12054 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000012055
Dale Johannesen330169f2008-11-13 21:52:36 +000012056 // 'A' means EAX + EDX.
12057 if (Constraint == "A") {
12058 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000012059 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000012060 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000012061 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000012062 return Res;
12063 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012064
Chris Lattnerf76d1802006-07-31 23:26:50 +000012065 // Otherwise, check to see if this is a register class of the wrong value
12066 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
12067 // turn into {ax},{dx}.
12068 if (Res.second->hasType(VT))
12069 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012070
Chris Lattnerf76d1802006-07-31 23:26:50 +000012071 // All of the single-register GCC register classes map their values onto
12072 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
12073 // really want an 8-bit or 32-bit register, map to the appropriate register
12074 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000012075 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012076 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012077 unsigned DestReg = 0;
12078 switch (Res.first) {
12079 default: break;
12080 case X86::AX: DestReg = X86::AL; break;
12081 case X86::DX: DestReg = X86::DL; break;
12082 case X86::CX: DestReg = X86::CL; break;
12083 case X86::BX: DestReg = X86::BL; break;
12084 }
12085 if (DestReg) {
12086 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012087 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012088 }
Owen Anderson825b72b2009-08-11 20:47:22 +000012089 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012090 unsigned DestReg = 0;
12091 switch (Res.first) {
12092 default: break;
12093 case X86::AX: DestReg = X86::EAX; break;
12094 case X86::DX: DestReg = X86::EDX; break;
12095 case X86::CX: DestReg = X86::ECX; break;
12096 case X86::BX: DestReg = X86::EBX; break;
12097 case X86::SI: DestReg = X86::ESI; break;
12098 case X86::DI: DestReg = X86::EDI; break;
12099 case X86::BP: DestReg = X86::EBP; break;
12100 case X86::SP: DestReg = X86::ESP; break;
12101 }
12102 if (DestReg) {
12103 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012104 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012105 }
Owen Anderson825b72b2009-08-11 20:47:22 +000012106 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012107 unsigned DestReg = 0;
12108 switch (Res.first) {
12109 default: break;
12110 case X86::AX: DestReg = X86::RAX; break;
12111 case X86::DX: DestReg = X86::RDX; break;
12112 case X86::CX: DestReg = X86::RCX; break;
12113 case X86::BX: DestReg = X86::RBX; break;
12114 case X86::SI: DestReg = X86::RSI; break;
12115 case X86::DI: DestReg = X86::RDI; break;
12116 case X86::BP: DestReg = X86::RBP; break;
12117 case X86::SP: DestReg = X86::RSP; break;
12118 }
12119 if (DestReg) {
12120 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012121 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012122 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000012123 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000012124 } else if (Res.second == X86::FR32RegisterClass ||
12125 Res.second == X86::FR64RegisterClass ||
12126 Res.second == X86::VR128RegisterClass) {
12127 // Handle references to XMM physical registers that got mapped into the
12128 // wrong class. This can happen with constraints like {xmm0} where the
12129 // target independent register mapper will just pick the first match it can
12130 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000012131 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000012132 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000012133 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000012134 Res.second = X86::FR64RegisterClass;
12135 else if (X86::VR128RegisterClass->hasType(VT))
12136 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000012137 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012138
Chris Lattnerf76d1802006-07-31 23:26:50 +000012139 return Res;
12140}