blob: bc6d84eeec17c7e1ae9a85c0c6eba75217f4a844 [file] [log] [blame]
Arnold Schwaighofer92226dd2007-10-12 21:53:12 +00001//===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===//
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the interfaces that X86 uses to lower LLVM code into a
11// selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
Evan Chengb1712452010-01-27 06:25:16 +000015#define DEBUG_TYPE "x86-isel"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000016#include "X86.h"
Evan Cheng0cc39452006-01-16 21:21:29 +000017#include "X86InstrBuilder.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000018#include "X86ISelLowering.h"
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000019#include "X86ShuffleDecode.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000020#include "X86TargetMachine.h"
Chris Lattner8c6ed052009-09-16 01:46:41 +000021#include "X86TargetObjectFile.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000022#include "llvm/CallingConv.h"
Evan Cheng223547a2006-01-31 22:28:30 +000023#include "llvm/Constants.h"
Evan Cheng347d5f72006-04-28 21:29:37 +000024#include "llvm/DerivedTypes.h"
Chris Lattnerb903bed2009-06-26 21:20:29 +000025#include "llvm/GlobalAlias.h"
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000026#include "llvm/GlobalVariable.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000027#include "llvm/Function.h"
Chris Lattnerb8105652009-07-20 17:51:36 +000028#include "llvm/Instructions.h"
Evan Cheng6be2c582006-04-05 23:38:46 +000029#include "llvm/Intrinsics.h"
Owen Andersona90b3dc2009-07-15 21:51:10 +000030#include "llvm/LLVMContext.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000031#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Cheng4a460802006-01-11 00:33:36 +000032#include "llvm/CodeGen/MachineFunction.h"
33#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner5e1df8d2010-01-25 23:38:14 +000034#include "llvm/CodeGen/MachineJumpTableInfo.h"
Evan Chenga844bde2008-02-02 04:07:54 +000035#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000036#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000037#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattner589c6f62010-01-26 06:28:43 +000038#include "llvm/MC/MCAsmInfo.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000039#include "llvm/MC/MCContext.h"
Daniel Dunbar4e815f82010-03-15 23:51:06 +000040#include "llvm/MC/MCExpr.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000041#include "llvm/MC/MCSymbol.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000042#include "llvm/ADT/BitVector.h"
Evan Cheng14b32e12007-12-11 01:46:18 +000043#include "llvm/ADT/SmallSet.h"
Evan Chengb1712452010-01-27 06:25:16 +000044#include "llvm/ADT/Statistic.h"
Chris Lattner1a60aa72006-10-31 19:42:44 +000045#include "llvm/ADT/StringExtras.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000046#include "llvm/ADT/VectorExtras.h"
Mon P Wang3c81d352008-11-23 04:37:22 +000047#include "llvm/Support/CommandLine.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000048#include "llvm/Support/Debug.h"
Bill Wendlingec041eb2010-03-12 19:20:40 +000049#include "llvm/Support/Dwarf.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000050#include "llvm/Support/ErrorHandling.h"
51#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000052#include "llvm/Support/raw_ostream.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000053using namespace llvm;
Bill Wendlingec041eb2010-03-12 19:20:40 +000054using namespace dwarf;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000055
Evan Chengb1712452010-01-27 06:25:16 +000056STATISTIC(NumTailCalls, "Number of tail calls");
57
Mon P Wang3c81d352008-11-23 04:37:22 +000058static cl::opt<bool>
Mon P Wang9f22a4a2008-11-24 02:10:43 +000059DisableMMX("disable-mmx", cl::Hidden, cl::desc("Disable use of MMX"));
Mon P Wang3c81d352008-11-23 04:37:22 +000060
Evan Cheng10e86422008-04-25 19:11:04 +000061// Forward declarations.
Owen Andersone50ed302009-08-10 22:56:29 +000062static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +000063 SDValue V2);
Evan Cheng10e86422008-04-25 19:11:04 +000064
Chris Lattnerf0144122009-07-28 03:13:23 +000065static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
Michael J. Spencerec38de22010-10-10 22:04:20 +000066
Eric Christopher62f35a22010-07-05 19:26:33 +000067 bool is64Bit = TM.getSubtarget<X86Subtarget>().is64Bit();
Michael J. Spencerec38de22010-10-10 22:04:20 +000068
Eric Christopher62f35a22010-07-05 19:26:33 +000069 if (TM.getSubtarget<X86Subtarget>().isTargetDarwin()) {
70 if (is64Bit) return new X8664_MachoTargetObjectFile();
Anton Korobeynikov293d5922010-02-21 20:28:15 +000071 return new TargetLoweringObjectFileMachO();
Eric Christopher62f35a22010-07-05 19:26:33 +000072 } else if (TM.getSubtarget<X86Subtarget>().isTargetELF() ){
73 if (is64Bit) return new X8664_ELFTargetObjectFile(TM);
Anton Korobeynikov9184b252010-02-15 22:35:59 +000074 return new X8632_ELFTargetObjectFile(TM);
Eric Christopher62f35a22010-07-05 19:26:33 +000075 } else if (TM.getSubtarget<X86Subtarget>().isTargetCOFF()) {
Chris Lattnerf0144122009-07-28 03:13:23 +000076 return new TargetLoweringObjectFileCOFF();
Michael J. Spencerec38de22010-10-10 22:04:20 +000077 }
Eric Christopher62f35a22010-07-05 19:26:33 +000078 llvm_unreachable("unknown subtarget type");
Chris Lattnerf0144122009-07-28 03:13:23 +000079}
80
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +000081X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Chris Lattnerf0144122009-07-28 03:13:23 +000082 : TargetLowering(TM, createTLOF(TM)) {
Evan Cheng559806f2006-01-27 08:10:46 +000083 Subtarget = &TM.getSubtarget<X86Subtarget>();
Dale Johannesenf1fc3a82007-09-23 14:52:20 +000084 X86ScalarSSEf64 = Subtarget->hasSSE2();
85 X86ScalarSSEf32 = Subtarget->hasSSE1();
Evan Cheng25ab6902006-09-08 06:48:29 +000086 X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000087
Anton Korobeynikov2365f512007-07-14 14:06:15 +000088 RegInfo = TM.getRegisterInfo();
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000089 TD = getTargetData();
Anton Korobeynikov2365f512007-07-14 14:06:15 +000090
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000091 // Set up the TargetLowering object.
92
93 // X86 is weird, it always uses i8 for shift amounts and setcc results.
Owen Anderson825b72b2009-08-11 20:47:22 +000094 setShiftAmountType(MVT::i8);
Duncan Sands03228082008-11-23 15:47:28 +000095 setBooleanContents(ZeroOrOneBooleanContent);
Evan Cheng211ffa12010-05-19 20:19:50 +000096 setSchedulingPreference(Sched::RegPressure);
Evan Cheng25ab6902006-09-08 06:48:29 +000097 setStackPointerRegisterToSaveRestore(X86StackPtr);
Evan Cheng714554d2006-03-16 21:47:42 +000098
Michael J. Spencer92bf38c2010-10-10 23:11:06 +000099 if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000100 // Setup Windows compiler runtime calls.
101 setLibcallName(RTLIB::SDIV_I64, "_alldiv");
Michael J. Spencer335b8062010-10-11 05:29:15 +0000102 setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
103 setLibcallName(RTLIB::FPTOUINT_F64_I64, "_ftol2");
Michael J. Spencer94f7eeb2010-10-19 07:32:52 +0000104 setLibcallName(RTLIB::FPTOUINT_F32_I64, "_ftol2");
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000105 setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
Michael J. Spencer335b8062010-10-11 05:29:15 +0000106 setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
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::CTPOP , MVT::i8 , Expand);
289 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
290 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
291 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000292 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
293 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000294 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
295 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
296 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000297 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000298 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
299 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
300 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000301 }
302
Owen Anderson825b72b2009-08-11 20:47:22 +0000303 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
304 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000305
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000306 // These should be promoted to a larger select which is supported.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000307 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000308 // X86 wants to expand cmov itself.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000309 setOperationAction(ISD::SELECT , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000310 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000311 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
312 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
313 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
314 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
315 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000316 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000317 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
318 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
319 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
320 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000321 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000322 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
323 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000324 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000325 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000326
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000327 // Darwin ABI issue.
Owen Anderson825b72b2009-08-11 20:47:22 +0000328 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
329 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
330 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
331 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000332 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000333 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
334 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000335 setOperationAction(ISD::BlockAddress , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000336 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000337 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
338 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
339 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
340 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000341 setOperationAction(ISD::BlockAddress , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000342 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000343 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Owen Anderson825b72b2009-08-11 20:47:22 +0000344 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
345 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
346 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000347 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000348 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
349 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
350 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000351 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000352
Evan Chengd2cde682008-03-10 19:38:10 +0000353 if (Subtarget->hasSSE1())
Owen Anderson825b72b2009-08-11 20:47:22 +0000354 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000355
Eric Christopher9a9d2752010-07-22 02:48:34 +0000356 // We may not have a libcall for MEMBARRIER so we should lower this.
357 setOperationAction(ISD::MEMBARRIER , MVT::Other, Custom);
Michael J. Spencerec38de22010-10-10 22:04:20 +0000358
Jim Grosbachf1ab49e2010-06-23 16:25:07 +0000359 // On X86 and X86-64, atomic operations are lowered to locked instructions.
360 // Locked instructions, in turn, have implicit fence semantics (all memory
361 // operations are flushed before issuing the locked instruction, and they
362 // are not buffered), so we can fold away the common pattern of
363 // fence-atomic-fence.
364 setShouldFoldAtomicFences(true);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000365
Mon P Wang63307c32008-05-05 19:05:59 +0000366 // Expand certain atomics
Owen Anderson825b72b2009-08-11 20:47:22 +0000367 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i8, Custom);
368 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i16, Custom);
369 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Custom);
370 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i64, Custom);
Bill Wendling5bf1b4e2008-08-20 00:28:16 +0000371
Owen Anderson825b72b2009-08-11 20:47:22 +0000372 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i8, Custom);
373 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i16, Custom);
374 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Custom);
375 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000376
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000377 if (!Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000378 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
379 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
380 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
381 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
382 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
383 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
384 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000385 }
386
Evan Cheng3c992d22006-03-07 02:02:57 +0000387 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000388 if (!Subtarget->isTargetDarwin() &&
389 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000390 !Subtarget->isTargetCygMing()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000391 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohman44066042008-07-01 00:05:16 +0000392 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000393
Owen Anderson825b72b2009-08-11 20:47:22 +0000394 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
395 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
396 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
397 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000398 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000399 setExceptionPointerRegister(X86::RAX);
400 setExceptionSelectorRegister(X86::RDX);
401 } else {
402 setExceptionPointerRegister(X86::EAX);
403 setExceptionSelectorRegister(X86::EDX);
404 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000405 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
406 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000407
Owen Anderson825b72b2009-08-11 20:47:22 +0000408 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000409
Owen Anderson825b72b2009-08-11 20:47:22 +0000410 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000411
Nate Begemanacc398c2006-01-25 18:21:52 +0000412 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000413 setOperationAction(ISD::VASTART , MVT::Other, Custom);
414 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000415 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000416 setOperationAction(ISD::VAARG , MVT::Other, Custom);
417 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000418 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000419 setOperationAction(ISD::VAARG , MVT::Other, Expand);
420 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000421 }
Evan Chengae642192007-03-02 23:16:35 +0000422
Owen Anderson825b72b2009-08-11 20:47:22 +0000423 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
424 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000425 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000426 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
Michael J. Spencere9c253e2010-10-21 01:41:01 +0000427 if (Subtarget->isTargetCygMing() || Subtarget->isTargetWindows())
Owen Anderson825b72b2009-08-11 20:47:22 +0000428 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +0000429 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000430 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000431
Evan Chengc7ce29b2009-02-13 22:36:38 +0000432 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000433 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000434 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000435 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
436 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000437
Evan Cheng223547a2006-01-31 22:28:30 +0000438 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000439 setOperationAction(ISD::FABS , MVT::f64, Custom);
440 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000441
442 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000443 setOperationAction(ISD::FNEG , MVT::f64, Custom);
444 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000445
Evan Cheng68c47cb2007-01-05 07:55:56 +0000446 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000447 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
448 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000449
Evan Chengd25e9e82006-02-02 00:28:23 +0000450 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000451 setOperationAction(ISD::FSIN , MVT::f64, Expand);
452 setOperationAction(ISD::FCOS , MVT::f64, Expand);
453 setOperationAction(ISD::FSIN , MVT::f32, Expand);
454 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000455
Chris Lattnera54aa942006-01-29 06:26:08 +0000456 // Expand FP immediates into loads from the stack, except for the special
457 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000458 addLegalFPImmediate(APFloat(+0.0)); // xorpd
459 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Evan Chengc7ce29b2009-02-13 22:36:38 +0000460 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000461 // Use SSE for f32, x87 for f64.
462 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000463 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
464 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000465
466 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000467 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000468
469 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000470 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000471
Owen Anderson825b72b2009-08-11 20:47:22 +0000472 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000473
474 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000475 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
476 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000477
478 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000479 setOperationAction(ISD::FSIN , MVT::f32, Expand);
480 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000481
Nate Begemane1795842008-02-14 08:57:00 +0000482 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000483 addLegalFPImmediate(APFloat(+0.0f)); // xorps
484 addLegalFPImmediate(APFloat(+0.0)); // FLD0
485 addLegalFPImmediate(APFloat(+1.0)); // FLD1
486 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
487 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
488
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000489 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000490 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
491 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000492 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000493 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000494 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000495 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000496 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
497 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000498
Owen Anderson825b72b2009-08-11 20:47:22 +0000499 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
500 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
501 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
502 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000503
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000504 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000505 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
506 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000507 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000508 addLegalFPImmediate(APFloat(+0.0)); // FLD0
509 addLegalFPImmediate(APFloat(+1.0)); // FLD1
510 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
511 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000512 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
513 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
514 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
515 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000516 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000517
Dale Johannesen59a58732007-08-05 18:49:15 +0000518 // Long double always uses X87.
Evan Cheng92722532009-03-26 23:06:32 +0000519 if (!UseSoftFloat) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000520 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
521 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
522 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000523 {
524 bool ignored;
525 APFloat TmpFlt(+0.0);
526 TmpFlt.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
527 &ignored);
528 addLegalFPImmediate(TmpFlt); // FLD0
529 TmpFlt.changeSign();
530 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
531 APFloat TmpFlt2(+1.0);
532 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
533 &ignored);
534 addLegalFPImmediate(TmpFlt2); // FLD1
535 TmpFlt2.changeSign();
536 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
537 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000538
Evan Chengc7ce29b2009-02-13 22:36:38 +0000539 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000540 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
541 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000542 }
Dale Johannesen2f429012007-09-26 21:10:55 +0000543 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000544
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000545 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000546 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
547 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
548 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000549
Owen Anderson825b72b2009-08-11 20:47:22 +0000550 setOperationAction(ISD::FLOG, MVT::f80, Expand);
551 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
552 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
553 setOperationAction(ISD::FEXP, MVT::f80, Expand);
554 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000555
Mon P Wangf007a8b2008-11-06 05:31:54 +0000556 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000557 // (for widening) or expand (for scalarization). Then we will selectively
558 // turn on ones that can be effectively codegen'd.
Owen Anderson825b72b2009-08-11 20:47:22 +0000559 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
560 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
561 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
562 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
563 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
564 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
565 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
566 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
567 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
568 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
569 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
570 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
571 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
572 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
573 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
574 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
575 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
576 setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
577 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
578 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
579 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
580 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
581 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
582 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
583 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
584 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
585 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
586 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
587 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
588 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
589 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
590 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
591 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
592 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
593 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
594 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
595 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
596 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
597 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
598 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
599 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
600 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
601 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
602 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
603 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
604 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
605 setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
606 setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
607 setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
608 setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
Dan Gohman87862e72009-12-11 21:31:27 +0000609 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
Dan Gohman2e141d72009-12-14 23:40:38 +0000610 setOperationAction(ISD::TRUNCATE, (MVT::SimpleValueType)VT, Expand);
611 setOperationAction(ISD::SIGN_EXTEND, (MVT::SimpleValueType)VT, Expand);
612 setOperationAction(ISD::ZERO_EXTEND, (MVT::SimpleValueType)VT, Expand);
613 setOperationAction(ISD::ANY_EXTEND, (MVT::SimpleValueType)VT, Expand);
614 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
615 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
616 setTruncStoreAction((MVT::SimpleValueType)VT,
617 (MVT::SimpleValueType)InnerVT, Expand);
618 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
619 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
620 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000621 }
622
Evan Chengc7ce29b2009-02-13 22:36:38 +0000623 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
624 // with -msoft-float, disable use of MMX as well.
Evan Cheng92722532009-03-26 23:06:32 +0000625 if (!UseSoftFloat && !DisableMMX && Subtarget->hasMMX()) {
Dale Johannesene93d99c2010-10-20 21:32:10 +0000626 addRegisterClass(MVT::x86mmx, X86::VR64RegisterClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000627 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000628 }
629
Dale Johannesen0488fb62010-09-30 23:57:10 +0000630 // MMX-sized vectors (other than x86mmx) are expected to be expanded
631 // into smaller operations.
632 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
633 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
634 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
635 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
636 setOperationAction(ISD::AND, MVT::v8i8, Expand);
637 setOperationAction(ISD::AND, MVT::v4i16, Expand);
638 setOperationAction(ISD::AND, MVT::v2i32, Expand);
639 setOperationAction(ISD::AND, MVT::v1i64, Expand);
640 setOperationAction(ISD::OR, MVT::v8i8, Expand);
641 setOperationAction(ISD::OR, MVT::v4i16, Expand);
642 setOperationAction(ISD::OR, MVT::v2i32, Expand);
643 setOperationAction(ISD::OR, MVT::v1i64, Expand);
644 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
645 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
646 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
647 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
648 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
649 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
650 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
651 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
652 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
653 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
654 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
655 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
656 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000657 setOperationAction(ISD::BITCAST, MVT::v8i8, Expand);
658 setOperationAction(ISD::BITCAST, MVT::v4i16, Expand);
659 setOperationAction(ISD::BITCAST, MVT::v2i32, Expand);
660 setOperationAction(ISD::BITCAST, MVT::v1i64, Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000661
Evan Cheng92722532009-03-26 23:06:32 +0000662 if (!UseSoftFloat && Subtarget->hasSSE1()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000663 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000664
Owen Anderson825b72b2009-08-11 20:47:22 +0000665 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
666 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
667 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
668 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
669 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
670 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
671 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
672 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
673 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
674 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
675 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
676 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000677 }
678
Evan Cheng92722532009-03-26 23:06:32 +0000679 if (!UseSoftFloat && Subtarget->hasSSE2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000680 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000681
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000682 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
683 // registers cannot be used even for integer operations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000684 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
685 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
686 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
687 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000688
Owen Anderson825b72b2009-08-11 20:47:22 +0000689 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
690 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
691 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
692 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
693 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
694 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
695 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
696 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
697 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
698 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
699 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
700 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
701 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
702 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
703 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
704 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000705
Owen Anderson825b72b2009-08-11 20:47:22 +0000706 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
707 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
708 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
709 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000710
Owen Anderson825b72b2009-08-11 20:47:22 +0000711 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
712 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
713 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
714 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
715 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000716
Mon P Wangeb38ebf2010-01-24 00:05:03 +0000717 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2f64, Custom);
718 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2i64, Custom);
719 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i8, Custom);
720 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i16, Custom);
721 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
722
Evan Cheng2c3ae372006-04-12 21:21:57 +0000723 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Owen Anderson825b72b2009-08-11 20:47:22 +0000724 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
725 EVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000726 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000727 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000728 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000729 // Do not attempt to custom lower non-128-bit vectors
730 if (!VT.is128BitVector())
731 continue;
Owen Anderson825b72b2009-08-11 20:47:22 +0000732 setOperationAction(ISD::BUILD_VECTOR,
733 VT.getSimpleVT().SimpleTy, Custom);
734 setOperationAction(ISD::VECTOR_SHUFFLE,
735 VT.getSimpleVT().SimpleTy, Custom);
736 setOperationAction(ISD::EXTRACT_VECTOR_ELT,
737 VT.getSimpleVT().SimpleTy, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000738 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000739
Owen Anderson825b72b2009-08-11 20:47:22 +0000740 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
741 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
742 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
743 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
744 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
745 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000746
Nate Begemancdd1eec2008-02-12 22:51:28 +0000747 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000748 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
749 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000750 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000751
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000752 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Owen Anderson825b72b2009-08-11 20:47:22 +0000753 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) {
754 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
Owen Andersone50ed302009-08-10 22:56:29 +0000755 EVT VT = SVT;
David Greene9b9838d2009-06-29 16:47:10 +0000756
757 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000758 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000759 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +0000760
Owen Andersond6662ad2009-08-10 20:46:15 +0000761 setOperationAction(ISD::AND, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000762 AddPromotedToType (ISD::AND, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000763 setOperationAction(ISD::OR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000764 AddPromotedToType (ISD::OR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000765 setOperationAction(ISD::XOR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000766 AddPromotedToType (ISD::XOR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000767 setOperationAction(ISD::LOAD, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000768 AddPromotedToType (ISD::LOAD, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000769 setOperationAction(ISD::SELECT, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000770 AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000771 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000772
Owen Anderson825b72b2009-08-11 20:47:22 +0000773 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000774
Evan Cheng2c3ae372006-04-12 21:21:57 +0000775 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +0000776 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
777 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
778 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
779 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000780
Owen Anderson825b72b2009-08-11 20:47:22 +0000781 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
782 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000783 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000784
Nate Begeman14d12ca2008-02-11 04:19:36 +0000785 if (Subtarget->hasSSE41()) {
Dale Johannesen54feef22010-05-27 20:12:41 +0000786 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
787 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
788 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
789 setOperationAction(ISD::FRINT, MVT::f32, Legal);
790 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
791 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
792 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
793 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
794 setOperationAction(ISD::FRINT, MVT::f64, Legal);
795 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
796
Nate Begeman14d12ca2008-02-11 04:19:36 +0000797 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +0000798 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000799
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000800 // Can turn SHL into an integer multiply.
801 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
Nate Begeman51409212010-07-28 00:21:48 +0000802 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000803
Nate Begeman14d12ca2008-02-11 04:19:36 +0000804 // i8 and i16 vectors are custom , because the source register and source
805 // source memory operand types are not the same width. f32 vectors are
806 // custom since the immediate controlling the insert encodes additional
807 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +0000808 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
809 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
810 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
811 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000812
Owen Anderson825b72b2009-08-11 20:47:22 +0000813 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
814 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
815 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
816 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000817
818 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000819 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
820 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000821 }
822 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000823
Nate Begeman30a0de92008-07-17 16:51:19 +0000824 if (Subtarget->hasSSE42()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000825 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
Nate Begeman30a0de92008-07-17 16:51:19 +0000826 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000827
David Greene9b9838d2009-06-29 16:47:10 +0000828 if (!UseSoftFloat && Subtarget->hasAVX()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000829 addRegisterClass(MVT::v8f32, X86::VR256RegisterClass);
830 addRegisterClass(MVT::v4f64, X86::VR256RegisterClass);
831 addRegisterClass(MVT::v8i32, X86::VR256RegisterClass);
832 addRegisterClass(MVT::v4i64, X86::VR256RegisterClass);
Bruno Cardoso Lopes405f11b2010-08-10 01:43:16 +0000833 addRegisterClass(MVT::v32i8, X86::VR256RegisterClass);
David Greened94c1012009-06-29 22:50:51 +0000834
Owen Anderson825b72b2009-08-11 20:47:22 +0000835 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
836 setOperationAction(ISD::LOAD, MVT::v8i32, Legal);
837 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
838 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
839 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
840 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
841 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
842 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
843 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
844 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +0000845 setOperationAction(ISD::BUILD_VECTOR, MVT::v8f32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000846 //setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8f32, Custom);
847 //setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8f32, Custom);
848 //setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
849 //setOperationAction(ISD::VSETCC, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000850
851 // Operations to consider commented out -v16i16 v32i8
Owen Anderson825b72b2009-08-11 20:47:22 +0000852 //setOperationAction(ISD::ADD, MVT::v16i16, Legal);
853 setOperationAction(ISD::ADD, MVT::v8i32, Custom);
854 setOperationAction(ISD::ADD, MVT::v4i64, Custom);
855 //setOperationAction(ISD::SUB, MVT::v32i8, Legal);
856 //setOperationAction(ISD::SUB, MVT::v16i16, Legal);
857 setOperationAction(ISD::SUB, MVT::v8i32, Custom);
858 setOperationAction(ISD::SUB, MVT::v4i64, Custom);
859 //setOperationAction(ISD::MUL, MVT::v16i16, Legal);
860 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
861 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
862 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
863 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
864 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
865 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000866
Owen Anderson825b72b2009-08-11 20:47:22 +0000867 setOperationAction(ISD::VSETCC, MVT::v4f64, Custom);
868 // setOperationAction(ISD::VSETCC, MVT::v32i8, Custom);
869 // setOperationAction(ISD::VSETCC, MVT::v16i16, Custom);
870 setOperationAction(ISD::VSETCC, MVT::v8i32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000871
Owen Anderson825b72b2009-08-11 20:47:22 +0000872 // setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v32i8, Custom);
873 // setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i16, Custom);
874 // setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i16, Custom);
875 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i32, Custom);
876 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000877
Owen Anderson825b72b2009-08-11 20:47:22 +0000878 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f64, Custom);
879 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i64, Custom);
880 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f64, Custom);
881 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i64, Custom);
882 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f64, Custom);
883 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000884
885#if 0
886 // Not sure we want to do this since there are no 256-bit integer
887 // operations in AVX
888
889 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
890 // This includes 256-bit vectors
Owen Anderson825b72b2009-08-11 20:47:22 +0000891 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v4i64; ++i) {
892 EVT VT = (MVT::SimpleValueType)i;
David Greene9b9838d2009-06-29 16:47:10 +0000893
894 // Do not attempt to custom lower non-power-of-2 vectors
895 if (!isPowerOf2_32(VT.getVectorNumElements()))
896 continue;
897
898 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
899 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
900 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
901 }
902
903 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000904 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i64, Custom);
905 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i64, Custom);
Eric Christopherfd179292009-08-27 18:07:15 +0000906 }
David Greene9b9838d2009-06-29 16:47:10 +0000907#endif
908
909#if 0
910 // Not sure we want to do this since there are no 256-bit integer
911 // operations in AVX
912
913 // Promote v32i8, v16i16, v8i32 load, select, and, or, xor to v4i64.
914 // Including 256-bit vectors
Owen Anderson825b72b2009-08-11 20:47:22 +0000915 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v4i64; i++) {
916 EVT VT = (MVT::SimpleValueType)i;
David Greene9b9838d2009-06-29 16:47:10 +0000917
918 if (!VT.is256BitVector()) {
919 continue;
920 }
921 setOperationAction(ISD::AND, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000922 AddPromotedToType (ISD::AND, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000923 setOperationAction(ISD::OR, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000924 AddPromotedToType (ISD::OR, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000925 setOperationAction(ISD::XOR, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000926 AddPromotedToType (ISD::XOR, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000927 setOperationAction(ISD::LOAD, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000928 AddPromotedToType (ISD::LOAD, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000929 setOperationAction(ISD::SELECT, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000930 AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000931 }
932
Owen Anderson825b72b2009-08-11 20:47:22 +0000933 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
David Greene9b9838d2009-06-29 16:47:10 +0000934#endif
935 }
936
Evan Cheng6be2c582006-04-05 23:38:46 +0000937 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +0000938 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +0000939
Bill Wendling74c37652008-12-09 22:08:41 +0000940 // Add/Sub/Mul with overflow operations are custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000941 setOperationAction(ISD::SADDO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000942 setOperationAction(ISD::UADDO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000943 setOperationAction(ISD::SSUBO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000944 setOperationAction(ISD::USUBO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000945 setOperationAction(ISD::SMULO, MVT::i32, Custom);
Dan Gohman71c62a22010-06-02 19:13:40 +0000946
Eli Friedman962f5492010-06-02 19:35:46 +0000947 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
948 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +0000949 //
Eli Friedman962f5492010-06-02 19:35:46 +0000950 // FIXME: We really should do custom legalization for addition and
951 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
952 // than generic legalization for 64-bit multiplication-with-overflow, though.
Eli Friedmana993f0a2010-06-02 00:27:18 +0000953 if (Subtarget->is64Bit()) {
954 setOperationAction(ISD::SADDO, MVT::i64, Custom);
955 setOperationAction(ISD::UADDO, MVT::i64, Custom);
956 setOperationAction(ISD::SSUBO, MVT::i64, Custom);
957 setOperationAction(ISD::USUBO, MVT::i64, Custom);
958 setOperationAction(ISD::SMULO, MVT::i64, Custom);
959 }
Bill Wendling41ea7e72008-11-24 19:21:46 +0000960
Evan Chengd54f2d52009-03-31 19:38:51 +0000961 if (!Subtarget->is64Bit()) {
962 // These libcalls are not available in 32-bit.
963 setLibcallName(RTLIB::SHL_I128, 0);
964 setLibcallName(RTLIB::SRL_I128, 0);
965 setLibcallName(RTLIB::SRA_I128, 0);
966 }
967
Evan Cheng206ee9d2006-07-07 08:33:52 +0000968 // We have target-specific dag combine patterns for the following nodes:
969 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +0000970 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +0000971 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +0000972 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +0000973 setTargetDAGCombine(ISD::SHL);
974 setTargetDAGCombine(ISD::SRA);
975 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +0000976 setTargetDAGCombine(ISD::OR);
Chris Lattner149a4e52008-02-22 02:09:43 +0000977 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +0000978 setTargetDAGCombine(ISD::ZERO_EXTEND);
Evan Cheng0b0cd912009-03-28 05:57:29 +0000979 if (Subtarget->is64Bit())
980 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +0000981
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000982 computeRegisterProperties();
983
Evan Cheng87ed7162006-02-14 08:25:08 +0000984 // FIXME: These should be based on subtarget info. Plus, the values should
985 // be smaller when we are in optimizing for size mode.
Dan Gohman87060f52008-06-30 21:00:56 +0000986 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng255f20f2010-04-01 06:04:33 +0000987 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Dan Gohman87060f52008-06-30 21:00:56 +0000988 maxStoresPerMemmove = 3; // For @llvm.memmove -> sequence of stores
Evan Chengfb8075d2008-02-28 00:43:03 +0000989 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +0000990 benefitFromCodePlacementOpt = true;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000991}
992
Scott Michel5b8f82e2008-03-10 15:42:14 +0000993
Owen Anderson825b72b2009-08-11 20:47:22 +0000994MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
995 return MVT::i8;
Scott Michel5b8f82e2008-03-10 15:42:14 +0000996}
997
998
Evan Cheng29286502008-01-23 23:17:41 +0000999/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1000/// the desired ByVal argument alignment.
1001static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) {
1002 if (MaxAlign == 16)
1003 return;
1004 if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1005 if (VTy->getBitWidth() == 128)
1006 MaxAlign = 16;
Evan Cheng29286502008-01-23 23:17:41 +00001007 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1008 unsigned EltAlign = 0;
1009 getMaxByValAlign(ATy->getElementType(), EltAlign);
1010 if (EltAlign > MaxAlign)
1011 MaxAlign = EltAlign;
1012 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
1013 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1014 unsigned EltAlign = 0;
1015 getMaxByValAlign(STy->getElementType(i), EltAlign);
1016 if (EltAlign > MaxAlign)
1017 MaxAlign = EltAlign;
1018 if (MaxAlign == 16)
1019 break;
1020 }
1021 }
1022 return;
1023}
1024
1025/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1026/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001027/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1028/// are at 4-byte boundaries.
Evan Cheng29286502008-01-23 23:17:41 +00001029unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001030 if (Subtarget->is64Bit()) {
1031 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001032 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001033 if (TyAlign > 8)
1034 return TyAlign;
1035 return 8;
1036 }
1037
Evan Cheng29286502008-01-23 23:17:41 +00001038 unsigned Align = 4;
Dale Johannesen0c191872008-02-08 19:48:20 +00001039 if (Subtarget->hasSSE1())
1040 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001041 return Align;
1042}
Chris Lattner2b02a442007-02-25 08:29:00 +00001043
Evan Chengf0df0312008-05-15 08:39:06 +00001044/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001045/// and store operations as a result of memset, memcpy, and memmove
1046/// lowering. If DstAlign is zero that means it's safe to destination
1047/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1048/// means there isn't a need to check it against alignment requirement,
1049/// probably because the source does not need to be loaded. If
1050/// 'NonScalarIntSafe' is true, that means it's safe to return a
1051/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1052/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1053/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001054/// It returns EVT::Other if the type should be determined using generic
1055/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001056EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001057X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1058 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001059 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001060 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001061 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001062 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1063 // linux. This is because the stack realignment code can't handle certain
1064 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001065 const Function *F = MF.getFunction();
Evan Chengf28f8bc2010-04-02 19:36:14 +00001066 if (NonScalarIntSafe &&
1067 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001068 if (Size >= 16 &&
1069 (Subtarget->isUnalignedMemAccessFast() ||
Chandler Carruthae1d41c2010-04-02 01:31:24 +00001070 ((DstAlign == 0 || DstAlign >= 16) &&
1071 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001072 Subtarget->getStackAlignment() >= 16) {
1073 if (Subtarget->hasSSE2())
1074 return MVT::v4i32;
Evan Chengf28f8bc2010-04-02 19:36:14 +00001075 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001076 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001077 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001078 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001079 Subtarget->getStackAlignment() >= 8 &&
Evan Chengc3b0c342010-04-08 07:37:57 +00001080 Subtarget->hasSSE2()) {
1081 // Do not use f64 to lower memcpy if source is string constant. It's
1082 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001083 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001084 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001085 }
Evan Chengf0df0312008-05-15 08:39:06 +00001086 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001087 return MVT::i64;
1088 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001089}
1090
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001091/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1092/// current function. The returned value is a member of the
1093/// MachineJumpTableInfo::JTEntryKind enum.
1094unsigned X86TargetLowering::getJumpTableEncoding() const {
1095 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1096 // symbol.
1097 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1098 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001099 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001100
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001101 // Otherwise, use the normal jump table encoding heuristics.
1102 return TargetLowering::getJumpTableEncoding();
1103}
1104
Chris Lattnerc64daab2010-01-26 05:02:42 +00001105const MCExpr *
1106X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1107 const MachineBasicBlock *MBB,
1108 unsigned uid,MCContext &Ctx) const{
1109 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1110 Subtarget->isPICStyleGOT());
1111 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1112 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001113 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1114 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001115}
1116
Evan Chengcc415862007-11-09 01:32:10 +00001117/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1118/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001119SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001120 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001121 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001122 // This doesn't have DebugLoc associated with it, but is not really the
1123 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001124 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001125 return Table;
1126}
1127
Chris Lattner589c6f62010-01-26 06:28:43 +00001128/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1129/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1130/// MCExpr.
1131const MCExpr *X86TargetLowering::
1132getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1133 MCContext &Ctx) const {
1134 // X86-64 uses RIP relative addressing based on the jump table label.
1135 if (Subtarget->isPICStyleRIPRel())
1136 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1137
1138 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001139 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001140}
1141
Bill Wendlingb4202b82009-07-01 18:50:55 +00001142/// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling20c568f2009-06-30 22:38:32 +00001143unsigned X86TargetLowering::getFunctionAlignment(const Function *F) const {
Dan Gohman25103a22009-08-18 00:20:06 +00001144 return F->hasFnAttr(Attribute::OptimizeForSize) ? 0 : 4;
Bill Wendling20c568f2009-06-30 22:38:32 +00001145}
1146
Evan Chengdee81012010-07-26 21:50:05 +00001147std::pair<const TargetRegisterClass*, uint8_t>
1148X86TargetLowering::findRepresentativeClass(EVT VT) const{
1149 const TargetRegisterClass *RRC = 0;
1150 uint8_t Cost = 1;
1151 switch (VT.getSimpleVT().SimpleTy) {
1152 default:
1153 return TargetLowering::findRepresentativeClass(VT);
1154 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1155 RRC = (Subtarget->is64Bit()
1156 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1157 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001158 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001159 RRC = X86::VR64RegisterClass;
1160 break;
1161 case MVT::f32: case MVT::f64:
1162 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1163 case MVT::v4f32: case MVT::v2f64:
1164 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1165 case MVT::v4f64:
1166 RRC = X86::VR128RegisterClass;
1167 break;
1168 }
1169 return std::make_pair(RRC, Cost);
1170}
1171
Evan Cheng70017e42010-07-24 00:39:05 +00001172unsigned
1173X86TargetLowering::getRegPressureLimit(const TargetRegisterClass *RC,
1174 MachineFunction &MF) const {
Anton Korobeynikovd0c38172010-11-18 21:19:35 +00001175 const TargetFrameInfo *TFI = MF.getTarget().getFrameInfo();
1176
1177 unsigned FPDiff = TFI->hasFP(MF) ? 1 : 0;
Evan Cheng70017e42010-07-24 00:39:05 +00001178 switch (RC->getID()) {
1179 default:
1180 return 0;
1181 case X86::GR32RegClassID:
1182 return 4 - FPDiff;
1183 case X86::GR64RegClassID:
1184 return 8 - FPDiff;
1185 case X86::VR128RegClassID:
1186 return Subtarget->is64Bit() ? 10 : 4;
1187 case X86::VR64RegClassID:
1188 return 4;
1189 }
1190}
1191
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001192bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1193 unsigned &Offset) const {
1194 if (!Subtarget->isTargetLinux())
1195 return false;
1196
1197 if (Subtarget->is64Bit()) {
1198 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1199 Offset = 0x28;
1200 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1201 AddressSpace = 256;
1202 else
1203 AddressSpace = 257;
1204 } else {
1205 // %gs:0x14 on i386
1206 Offset = 0x14;
1207 AddressSpace = 256;
1208 }
1209 return true;
1210}
1211
1212
Chris Lattner2b02a442007-02-25 08:29:00 +00001213//===----------------------------------------------------------------------===//
1214// Return Value Calling Convention Implementation
1215//===----------------------------------------------------------------------===//
1216
Chris Lattner59ed56b2007-02-28 04:55:35 +00001217#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001218
Michael J. Spencerec38de22010-10-10 22:04:20 +00001219bool
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001220X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001221 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001222 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001223 SmallVector<CCValAssign, 16> RVLocs;
1224 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001225 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001226 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001227}
1228
Dan Gohman98ca4f22009-08-05 01:29:28 +00001229SDValue
1230X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001231 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001232 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001233 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001234 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001235 MachineFunction &MF = DAG.getMachineFunction();
1236 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001237
Chris Lattner9774c912007-02-27 05:28:59 +00001238 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001239 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1240 RVLocs, *DAG.getContext());
1241 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001242
Evan Chengdcea1632010-02-04 02:40:39 +00001243 // Add the regs to the liveout set for the function.
1244 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1245 for (unsigned i = 0; i != RVLocs.size(); ++i)
1246 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1247 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001248
Dan Gohman475871a2008-07-27 21:46:04 +00001249 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001250
Dan Gohman475871a2008-07-27 21:46:04 +00001251 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001252 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1253 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001254 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1255 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001256
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001257 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001258 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1259 CCValAssign &VA = RVLocs[i];
1260 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001261 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001262 EVT ValVT = ValToCopy.getValueType();
1263
Dale Johannesenc4510512010-09-24 19:05:48 +00001264 // If this is x86-64, and we disabled SSE, we can't return FP values,
1265 // or SSE or MMX vectors.
1266 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1267 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1268 (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001269 report_fatal_error("SSE register return with SSE disabled");
1270 }
1271 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1272 // llvm-gcc has never done it right and no one has noticed, so this
1273 // should be OK for now.
1274 if (ValVT == MVT::f64 &&
Chris Lattner83069682010-08-26 05:51:22 +00001275 (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001276 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001277
Chris Lattner447ff682008-03-11 03:23:40 +00001278 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1279 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001280 if (VA.getLocReg() == X86::ST0 ||
1281 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001282 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1283 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001284 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001285 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001286 RetOps.push_back(ValToCopy);
1287 // Don't emit a copytoreg.
1288 continue;
1289 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001290
Evan Cheng242b38b2009-02-23 09:03:22 +00001291 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1292 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001293 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001294 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001295 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001296 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001297 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1298 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001299 // If we don't have SSE2 available, convert to v4f32 so the generated
1300 // register is legal.
1301 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001302 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001303 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001304 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001305 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001306
Dale Johannesendd64c412009-02-04 00:33:20 +00001307 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001308 Flag = Chain.getValue(1);
1309 }
Dan Gohman61a92132008-04-21 23:59:07 +00001310
1311 // The x86-64 ABI for returning structs by value requires that we copy
1312 // the sret argument into %rax for the return. We saved the argument into
1313 // a virtual register in the entry block, so now we copy the value out
1314 // and into %rax.
1315 if (Subtarget->is64Bit() &&
1316 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1317 MachineFunction &MF = DAG.getMachineFunction();
1318 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1319 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001320 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001321 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001322 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001323
Dale Johannesendd64c412009-02-04 00:33:20 +00001324 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001325 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001326
1327 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001328 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001329 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001330
Chris Lattner447ff682008-03-11 03:23:40 +00001331 RetOps[0] = Chain; // Update chain.
1332
1333 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001334 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001335 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001336
1337 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001338 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001339}
1340
Evan Cheng3d2125c2010-11-30 23:55:39 +00001341bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1342 if (N->getNumValues() != 1)
1343 return false;
1344 if (!N->hasNUsesOfValue(1, 0))
1345 return false;
1346
1347 SDNode *Copy = *N->use_begin();
1348 if (Copy->getOpcode() != ISD::CopyToReg)
1349 return false;
1350 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
1351 UI != UE; ++UI)
1352 if (UI->getOpcode() != X86ISD::RET_FLAG)
1353 return false;
1354
1355 return true;
1356}
1357
Dan Gohman98ca4f22009-08-05 01:29:28 +00001358/// LowerCallResult - Lower the result values of a call into the
1359/// appropriate copies out of appropriate physical registers.
1360///
1361SDValue
1362X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001363 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001364 const SmallVectorImpl<ISD::InputArg> &Ins,
1365 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001366 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001367
Chris Lattnere32bbf62007-02-28 07:09:55 +00001368 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001369 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001370 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001371 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Owen Andersone922c022009-07-22 00:24:57 +00001372 RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001373 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001374
Chris Lattner3085e152007-02-25 08:59:22 +00001375 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001376 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001377 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001378 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001379
Torok Edwin3f142c32009-02-01 18:15:56 +00001380 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001381 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Dan Gohman98ca4f22009-08-05 01:29:28 +00001382 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001383 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001384 }
1385
Evan Cheng79fb3b42009-02-20 20:43:02 +00001386 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001387
1388 // If this is a call to a function that returns an fp value on the floating
1389 // point stack, we must guarantee the the value is popped from the stack, so
1390 // a CopyFromReg is not good enough - the copy instruction may be eliminated
1391 // if the return value is not used. We use the FpGET_ST0 instructions
1392 // instead.
1393 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1394 // If we prefer to use the value in xmm registers, copy it out as f80 and
1395 // use a truncate to move it from fp stack reg to xmm reg.
1396 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1397 bool isST0 = VA.getLocReg() == X86::ST0;
1398 unsigned Opc = 0;
1399 if (CopyVT == MVT::f32) Opc = isST0 ? X86::FpGET_ST0_32:X86::FpGET_ST1_32;
1400 if (CopyVT == MVT::f64) Opc = isST0 ? X86::FpGET_ST0_64:X86::FpGET_ST1_64;
1401 if (CopyVT == MVT::f80) Opc = isST0 ? X86::FpGET_ST0_80:X86::FpGET_ST1_80;
1402 SDValue Ops[] = { Chain, InFlag };
1403 Chain = SDValue(DAG.getMachineNode(Opc, dl, CopyVT, MVT::Other, MVT::Flag,
1404 Ops, 2), 1);
1405 Val = Chain.getValue(0);
1406
1407 // Round the f80 to the right size, which also moves it to the appropriate
1408 // xmm register.
1409 if (CopyVT != VA.getValVT())
1410 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1411 // This truncation won't change the value.
1412 DAG.getIntPtrConstant(1));
1413 } else if (Is64Bit && CopyVT.isVector() && CopyVT.getSizeInBits() == 64) {
Evan Cheng242b38b2009-02-23 09:03:22 +00001414 // For x86-64, MMX values are returned in XMM0 / XMM1 except for v1i64.
1415 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1416 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001417 MVT::v2i64, InFlag).getValue(1);
Evan Cheng242b38b2009-02-23 09:03:22 +00001418 Val = Chain.getValue(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001419 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1420 Val, DAG.getConstant(0, MVT::i64));
Evan Cheng242b38b2009-02-23 09:03:22 +00001421 } else {
1422 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001423 MVT::i64, InFlag).getValue(1);
Evan Cheng242b38b2009-02-23 09:03:22 +00001424 Val = Chain.getValue(0);
1425 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001426 Val = DAG.getNode(ISD::BITCAST, dl, CopyVT, Val);
Evan Cheng79fb3b42009-02-20 20:43:02 +00001427 } else {
1428 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1429 CopyVT, InFlag).getValue(1);
1430 Val = Chain.getValue(0);
1431 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001432 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001433 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001434 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001435
Dan Gohman98ca4f22009-08-05 01:29:28 +00001436 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001437}
1438
1439
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001440//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001441// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001442//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001443// StdCall calling convention seems to be standard for many Windows' API
1444// routines and around. It differs from C calling convention just a little:
1445// callee should clean up the stack, not caller. Symbols should be also
1446// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001447// For info on fast calling convention see Fast Calling Convention (tail call)
1448// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001449
Dan Gohman98ca4f22009-08-05 01:29:28 +00001450/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001451/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001452static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1453 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001454 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001455
Dan Gohman98ca4f22009-08-05 01:29:28 +00001456 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001457}
1458
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001459/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001460/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001461static bool
1462ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1463 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001464 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001465
Dan Gohman98ca4f22009-08-05 01:29:28 +00001466 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001467}
1468
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001469/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1470/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001471/// the specific parameter attribute. The copy will be passed as a byval
1472/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001473static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001474CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001475 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1476 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001477 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001478
Dale Johannesendd64c412009-02-04 00:33:20 +00001479 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Mon P Wang20adc9d2010-04-04 03:10:48 +00001480 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001481 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001482}
1483
Chris Lattner29689432010-03-11 00:22:57 +00001484/// IsTailCallConvention - Return true if the calling convention is one that
1485/// supports tail call optimization.
1486static bool IsTailCallConvention(CallingConv::ID CC) {
1487 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1488}
1489
Evan Cheng0c439eb2010-01-27 00:07:07 +00001490/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1491/// a tailcall target by changing its ABI.
1492static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001493 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001494}
1495
Dan Gohman98ca4f22009-08-05 01:29:28 +00001496SDValue
1497X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001498 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001499 const SmallVectorImpl<ISD::InputArg> &Ins,
1500 DebugLoc dl, SelectionDAG &DAG,
1501 const CCValAssign &VA,
1502 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001503 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001504 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001505 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001506 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001507 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001508 EVT ValVT;
1509
1510 // If value is passed by pointer we have address passed instead of the value
1511 // itself.
1512 if (VA.getLocInfo() == CCValAssign::Indirect)
1513 ValVT = VA.getLocVT();
1514 else
1515 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001516
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001517 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001518 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001519 // In case of tail call optimization mark all arguments mutable. Since they
1520 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001521 if (Flags.isByVal()) {
1522 int FI = MFI->CreateFixedObject(Flags.getByValSize(),
Evan Chenged2ae132010-07-03 00:40:23 +00001523 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001524 return DAG.getFrameIndex(FI, getPointerTy());
1525 } else {
1526 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001527 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001528 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1529 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001530 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001531 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001532 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001533}
1534
Dan Gohman475871a2008-07-27 21:46:04 +00001535SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001536X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001537 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001538 bool isVarArg,
1539 const SmallVectorImpl<ISD::InputArg> &Ins,
1540 DebugLoc dl,
1541 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001542 SmallVectorImpl<SDValue> &InVals)
1543 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001544 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001545 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001546
Gordon Henriksen86737662008-01-05 16:56:59 +00001547 const Function* Fn = MF.getFunction();
1548 if (Fn->hasExternalLinkage() &&
1549 Subtarget->isTargetCygMing() &&
1550 Fn->getName() == "main")
1551 FuncInfo->setForceFramePointer(true);
1552
Evan Cheng1bc78042006-04-26 01:20:17 +00001553 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001554 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001555 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001556
Chris Lattner29689432010-03-11 00:22:57 +00001557 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1558 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001559
Chris Lattner638402b2007-02-28 07:00:42 +00001560 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001561 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001562 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1563 ArgLocs, *DAG.getContext());
Duncan Sands45907662010-10-31 13:21:44 +00001564 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001565
Chris Lattnerf39f7712007-02-28 05:46:49 +00001566 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001567 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001568 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1569 CCValAssign &VA = ArgLocs[i];
1570 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1571 // places.
1572 assert(VA.getValNo() != LastVal &&
1573 "Don't support value assigned to multiple locs yet");
1574 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001575
Chris Lattnerf39f7712007-02-28 05:46:49 +00001576 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001577 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001578 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001579 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001580 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001581 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001582 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001583 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001584 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001585 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001586 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001587 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1588 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001589 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001590 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001591 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001592 RC = X86::VR64RegisterClass;
1593 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001594 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001595
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001596 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001597 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001598
Chris Lattnerf39f7712007-02-28 05:46:49 +00001599 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1600 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1601 // right size.
1602 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001603 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001604 DAG.getValueType(VA.getValVT()));
1605 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001606 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001607 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001608 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001609 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001610
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001611 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001612 // Handle MMX values passed in XMM regs.
1613 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001614 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1615 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001616 } else
1617 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001618 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001619 } else {
1620 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001621 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001622 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001623
1624 // If value is passed via pointer - do a load.
1625 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001626 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1627 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001628
Dan Gohman98ca4f22009-08-05 01:29:28 +00001629 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001630 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001631
Dan Gohman61a92132008-04-21 23:59:07 +00001632 // The x86-64 ABI for returning structs by value requires that we copy
1633 // the sret argument into %rax for the return. Save the argument into
1634 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001635 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001636 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1637 unsigned Reg = FuncInfo->getSRetReturnReg();
1638 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001639 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001640 FuncInfo->setSRetReturnReg(Reg);
1641 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001642 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001643 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001644 }
1645
Chris Lattnerf39f7712007-02-28 05:46:49 +00001646 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001647 // Align stack specially for tail calls.
1648 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001649 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001650
Evan Cheng1bc78042006-04-26 01:20:17 +00001651 // If the function takes variable number of arguments, make a frame index for
1652 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001653 if (isVarArg) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001654 if (!IsWin64 && (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1655 CallConv != CallingConv::X86_ThisCall))) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001656 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001657 }
1658 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001659 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1660
1661 // FIXME: We should really autogenerate these arrays
1662 static const unsigned GPR64ArgRegsWin64[] = {
1663 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001664 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001665 static const unsigned GPR64ArgRegs64Bit[] = {
1666 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1667 };
1668 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001669 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1670 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1671 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001672 const unsigned *GPR64ArgRegs;
1673 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001674
1675 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001676 // The XMM registers which might contain var arg parameters are shadowed
1677 // in their paired GPR. So we only need to save the GPR to their home
1678 // slots.
1679 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001680 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001681 } else {
1682 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1683 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001684
1685 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001686 }
1687 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1688 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001689
Devang Patel578efa92009-06-05 21:57:13 +00001690 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Evan Chengc7ce29b2009-02-13 22:36:38 +00001691 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001692 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001693 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001694 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001695 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasSSE1())
Torok Edwin3f142c32009-02-01 18:15:56 +00001696 // Kernel mode asks for SSE to be disabled, so don't push them
1697 // on the stack.
1698 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001699
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001700 if (IsWin64) {
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001701 const TargetFrameInfo &TFI = *getTargetMachine().getFrameInfo();
1702 // Get to the caller-allocated home save location. Add 8 to account
1703 // for the return address.
1704 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001705 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001706 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001707 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
1708 } else {
1709 // For X86-64, if there are vararg parameters that are passed via
1710 // registers, then we must store them to their spots on the stack so they
1711 // may be loaded by deferencing the result of va_next.
1712 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1713 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1714 FuncInfo->setRegSaveFrameIndex(
1715 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001716 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001717 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001718
Gordon Henriksen86737662008-01-05 16:56:59 +00001719 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001720 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001721 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1722 getPointerTy());
1723 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001724 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001725 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1726 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001727 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
1728 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001729 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001730 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001731 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001732 MachinePointerInfo::getFixedStack(
1733 FuncInfo->getRegSaveFrameIndex(), Offset),
1734 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001735 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001736 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001737 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001738
Dan Gohmanface41a2009-08-16 21:24:25 +00001739 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1740 // Now store the XMM (fp + vector) parameter registers.
1741 SmallVector<SDValue, 11> SaveXMMOps;
1742 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001743
Dan Gohmanface41a2009-08-16 21:24:25 +00001744 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
1745 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1746 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001747
Dan Gohman1e93df62010-04-17 14:41:14 +00001748 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1749 FuncInfo->getRegSaveFrameIndex()));
1750 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1751 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001752
Dan Gohmanface41a2009-08-16 21:24:25 +00001753 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001754 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Dan Gohmanface41a2009-08-16 21:24:25 +00001755 X86::VR128RegisterClass);
1756 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1757 SaveXMMOps.push_back(Val);
1758 }
1759 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1760 MVT::Other,
1761 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001762 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001763
1764 if (!MemOps.empty())
1765 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1766 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001767 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001768 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001769
Gordon Henriksen86737662008-01-05 16:56:59 +00001770 // Some CCs need callee pop.
Dan Gohman4d3d6e12010-05-27 18:43:40 +00001771 if (Subtarget->IsCalleePop(isVarArg, CallConv)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001772 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001773 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001774 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001775 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001776 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001777 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001778 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001779
Gordon Henriksen86737662008-01-05 16:56:59 +00001780 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001781 // RegSaveFrameIndex is X86-64 only.
1782 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001783 if (CallConv == CallingConv::X86_FastCall ||
1784 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001785 // fastcc functions can't have varargs.
1786 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001787 }
Evan Cheng25caf632006-05-23 21:06:34 +00001788
Dan Gohman98ca4f22009-08-05 01:29:28 +00001789 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001790}
1791
Dan Gohman475871a2008-07-27 21:46:04 +00001792SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001793X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1794 SDValue StackPtr, SDValue Arg,
1795 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001796 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001797 ISD::ArgFlagsTy Flags) const {
Anton Korobeynikovc7c62bb2010-09-02 22:31:32 +00001798 const unsigned FirstStackArgOffset = (Subtarget->isTargetWin64() ? 32 : 0);
1799 unsigned LocMemOffset = FirstStackArgOffset + VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001800 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001801 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001802 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001803 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001804
1805 return DAG.getStore(Chain, dl, Arg, PtrOff,
1806 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001807 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001808}
1809
Bill Wendling64e87322009-01-16 19:25:27 +00001810/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001811/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001812SDValue
1813X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001814 SDValue &OutRetAddr, SDValue Chain,
1815 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001816 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001817 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001818 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001819 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001820
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001821 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001822 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1823 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001824 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001825}
1826
1827/// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1828/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001829static SDValue
1830EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001831 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001832 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001833 // Store the return address to the appropriate stack slot.
1834 if (!FPDiff) return Chain;
1835 // Calculate the new stack slot for the return address.
1836 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001837 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001838 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001839 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001840 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001841 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001842 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001843 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001844 return Chain;
1845}
1846
Dan Gohman98ca4f22009-08-05 01:29:28 +00001847SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001848X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001849 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001850 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001851 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001852 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001853 const SmallVectorImpl<ISD::InputArg> &Ins,
1854 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001855 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001856 MachineFunction &MF = DAG.getMachineFunction();
1857 bool Is64Bit = Subtarget->is64Bit();
1858 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00001859 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001860
Evan Cheng5f941932010-02-05 02:21:12 +00001861 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00001862 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00001863 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1864 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001865 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00001866
1867 // Sibcalls are automatically detected tailcalls which do not require
1868 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00001869 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00001870 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00001871
1872 if (isTailCall)
1873 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00001874 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00001875
Chris Lattner29689432010-03-11 00:22:57 +00001876 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1877 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001878
Chris Lattner638402b2007-02-28 07:00:42 +00001879 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00001880 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001881 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1882 ArgLocs, *DAG.getContext());
Duncan Sands45907662010-10-31 13:21:44 +00001883 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001884
Chris Lattner423c5f42007-02-28 05:31:48 +00001885 // Get a count of how many bytes are to be pushed on the stack.
1886 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00001887 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00001888 // This is a sibcall. The memory operands are available in caller's
1889 // own caller's stack.
1890 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00001891 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00001892 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001893
Gordon Henriksen86737662008-01-05 16:56:59 +00001894 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00001895 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001896 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00001897 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00001898 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1899 FPDiff = NumBytesCallerPushed - NumBytes;
1900
1901 // Set the delta of movement of the returnaddr stackslot.
1902 // But only set if delta is greater than previous delta.
1903 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1904 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
1905 }
1906
Evan Chengf22f9b32010-02-06 03:28:46 +00001907 if (!IsSibcall)
1908 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001909
Dan Gohman475871a2008-07-27 21:46:04 +00001910 SDValue RetAddrFrIdx;
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001911 // Load return adress for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00001912 if (isTailCall && FPDiff)
1913 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
1914 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00001915
Dan Gohman475871a2008-07-27 21:46:04 +00001916 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1917 SmallVector<SDValue, 8> MemOpChains;
1918 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00001919
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001920 // Walk the register/memloc assignments, inserting copies/loads. In the case
1921 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00001922 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1923 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001924 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00001925 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00001926 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00001927 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00001928
Chris Lattner423c5f42007-02-28 05:31:48 +00001929 // Promote the value if needed.
1930 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001931 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00001932 case CCValAssign::Full: break;
1933 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001934 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001935 break;
1936 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001937 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001938 break;
1939 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001940 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
1941 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001942 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00001943 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
1944 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001945 } else
1946 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
1947 break;
1948 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001949 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001950 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001951 case CCValAssign::Indirect: {
1952 // Store the argument.
1953 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00001954 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001955 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00001956 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001957 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001958 Arg = SpillSlot;
1959 break;
1960 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00001961 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001962
Chris Lattner423c5f42007-02-28 05:31:48 +00001963 if (VA.isRegLoc()) {
1964 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00001965 if (isVarArg && Subtarget->isTargetWin64()) {
1966 // Win64 ABI requires argument XMM reg to be copied to the corresponding
1967 // shadow reg if callee is a varargs function.
1968 unsigned ShadowReg = 0;
1969 switch (VA.getLocReg()) {
1970 case X86::XMM0: ShadowReg = X86::RCX; break;
1971 case X86::XMM1: ShadowReg = X86::RDX; break;
1972 case X86::XMM2: ShadowReg = X86::R8; break;
1973 case X86::XMM3: ShadowReg = X86::R9; break;
1974 }
1975 if (ShadowReg)
1976 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
1977 }
Evan Chengf22f9b32010-02-06 03:28:46 +00001978 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00001979 assert(VA.isMemLoc());
1980 if (StackPtr.getNode() == 0)
1981 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
1982 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
1983 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001984 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001985 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001986
Evan Cheng32fe1032006-05-25 00:59:30 +00001987 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00001988 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001989 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001990
Evan Cheng347d5f72006-04-28 21:29:37 +00001991 // Build a sequence of copy-to-reg nodes chained together with token chain
1992 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001993 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001994 // Tail call byval lowering might overwrite argument registers so in case of
1995 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001996 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001997 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001998 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00001999 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002000 InFlag = Chain.getValue(1);
2001 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002002
Chris Lattner88e1fd52009-07-09 04:24:46 +00002003 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002004 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2005 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002006 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002007 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2008 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002009 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002010 InFlag);
2011 InFlag = Chain.getValue(1);
2012 } else {
2013 // If we are tail calling and generating PIC/GOT style code load the
2014 // address of the callee into ECX. The value in ecx is used as target of
2015 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2016 // for tail calls on PIC/GOT architectures. Normally we would just put the
2017 // address of GOT into ebx and then call target@PLT. But for tail calls
2018 // ebx would be restored (since ebx is callee saved) before jumping to the
2019 // target@PLT.
2020
2021 // Note: The actual moving to ECX is done further down.
2022 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2023 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2024 !G->getGlobal()->hasProtectedVisibility())
2025 Callee = LowerGlobalAddress(Callee, DAG);
2026 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002027 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002028 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002029 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002030
Nate Begemanc8ea6732010-07-21 20:49:52 +00002031 if (Is64Bit && isVarArg && !Subtarget->isTargetWin64()) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002032 // From AMD64 ABI document:
2033 // For calls that may call functions that use varargs or stdargs
2034 // (prototype-less calls or calls to functions containing ellipsis (...) in
2035 // the declaration) %al is used as hidden argument to specify the number
2036 // of SSE registers used. The contents of %al do not need to match exactly
2037 // the number of registers, but must be an ubound on the number of SSE
2038 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002039
Gordon Henriksen86737662008-01-05 16:56:59 +00002040 // Count the number of XMM registers allocated.
2041 static const unsigned XMMArgRegs[] = {
2042 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2043 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2044 };
2045 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Scott Michelfdc40a02009-02-17 22:15:04 +00002046 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002047 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002048
Dale Johannesendd64c412009-02-04 00:33:20 +00002049 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002050 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002051 InFlag = Chain.getValue(1);
2052 }
2053
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002054
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002055 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002056 if (isTailCall) {
2057 // Force all the incoming stack arguments to be loaded from the stack
2058 // before any new outgoing arguments are stored to the stack, because the
2059 // outgoing stack slots may alias the incoming argument stack slots, and
2060 // the alias isn't otherwise explicit. This is slightly more conservative
2061 // than necessary, because it means that each store effectively depends
2062 // on every argument instead of just those arguments it would clobber.
2063 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2064
Dan Gohman475871a2008-07-27 21:46:04 +00002065 SmallVector<SDValue, 8> MemOpChains2;
2066 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002067 int FI = 0;
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002068 // Do not flag preceeding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002069 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002070 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002071 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2072 CCValAssign &VA = ArgLocs[i];
2073 if (VA.isRegLoc())
2074 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002075 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002076 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002077 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002078 // Create frame index.
2079 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002080 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002081 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002082 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002083
Duncan Sands276dcbd2008-03-21 09:14:45 +00002084 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002085 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002086 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002087 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002088 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002089 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002090 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002091
Dan Gohman98ca4f22009-08-05 01:29:28 +00002092 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2093 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002094 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002095 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002096 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002097 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002098 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002099 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002100 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002101 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002102 }
2103 }
2104
2105 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002106 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002107 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002108
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002109 // Copy arguments to their registers.
2110 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002111 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002112 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002113 InFlag = Chain.getValue(1);
2114 }
Dan Gohman475871a2008-07-27 21:46:04 +00002115 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002116
Gordon Henriksen86737662008-01-05 16:56:59 +00002117 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002118 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002119 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002120 }
2121
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002122 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2123 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2124 // In the 64-bit large code model, we have to make all calls
2125 // through a register, since the call instruction's 32-bit
2126 // pc-relative offset may not be large enough to hold the whole
2127 // address.
2128 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002129 // If the callee is a GlobalAddress node (quite common, every direct call
2130 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2131 // it.
2132
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002133 // We should use extra load for direct calls to dllimported functions in
2134 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002135 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002136 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002137 unsigned char OpFlags = 0;
Eric Christopherfd179292009-08-27 18:07:15 +00002138
Chris Lattner48a7d022009-07-09 05:02:21 +00002139 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2140 // external symbols most go through the PLT in PIC mode. If the symbol
2141 // has hidden or protected visibility, or if it is static or local, then
2142 // we don't need to use the PLT - we can directly call it.
2143 if (Subtarget->isTargetELF() &&
2144 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002145 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002146 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002147 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002148 (GV->isDeclaration() || GV->isWeakForLinker()) &&
2149 Subtarget->getDarwinVers() < 9) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002150 // PC-relative references to external symbols should go through $stub,
2151 // unless we're building with the leopard linker or later, which
2152 // automatically synthesizes these stubs.
2153 OpFlags = X86II::MO_DARWIN_STUB;
2154 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002155
Devang Patel0d881da2010-07-06 22:08:15 +00002156 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002157 G->getOffset(), OpFlags);
2158 }
Bill Wendling056292f2008-09-16 21:48:12 +00002159 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002160 unsigned char OpFlags = 0;
2161
Evan Cheng3d2125c2010-11-30 23:55:39 +00002162 if (!isTailCall) {
2163 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2164 // external symbols should go through the PLT.
2165 if (Subtarget->isTargetELF() &&
2166 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2167 OpFlags = X86II::MO_PLT;
2168 } else if (Subtarget->isPICStyleStubAny() &&
2169 Subtarget->getDarwinVers() < 9) {
2170 // PC-relative references to external symbols should go through $stub,
2171 // unless we're building with the leopard linker or later, which
2172 // automatically synthesizes these stubs.
2173 OpFlags = X86II::MO_DARWIN_STUB;
2174 }
Chris Lattner74e726e2009-07-09 05:27:35 +00002175 }
Eric Christopherfd179292009-08-27 18:07:15 +00002176
Chris Lattner48a7d022009-07-09 05:02:21 +00002177 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2178 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002179 }
2180
Chris Lattnerd96d0722007-02-25 06:40:16 +00002181 // Returns a chain & a flag for retval copy to use.
Owen Anderson825b72b2009-08-11 20:47:22 +00002182 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00002183 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002184
Evan Chengf22f9b32010-02-06 03:28:46 +00002185 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002186 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2187 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002188 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002189 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002190
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002191 Ops.push_back(Chain);
2192 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002193
Dan Gohman98ca4f22009-08-05 01:29:28 +00002194 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002195 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002196
Gordon Henriksen86737662008-01-05 16:56:59 +00002197 // Add argument registers to the end of the list so that they are known live
2198 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002199 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2200 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2201 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002202
Evan Cheng586ccac2008-03-18 23:36:35 +00002203 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002204 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002205 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2206
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002207 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
2208 if (Is64Bit && isVarArg && !Subtarget->isTargetWin64())
Owen Anderson825b72b2009-08-11 20:47:22 +00002209 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002210
Gabor Greifba36cb52008-08-28 21:40:38 +00002211 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002212 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002213
Dan Gohman98ca4f22009-08-05 01:29:28 +00002214 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002215 // We used to do:
2216 //// If this is the first return lowered for this function, add the regs
2217 //// to the liveout set for the function.
2218 // This isn't right, although it's probably harmless on x86; liveouts
2219 // should be computed from returns not tail calls. Consider a void
2220 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002221 return DAG.getNode(X86ISD::TC_RETURN, dl,
2222 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002223 }
2224
Dale Johannesenace16102009-02-03 19:33:06 +00002225 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002226 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002227
Chris Lattner2d297092006-05-23 18:50:38 +00002228 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002229 unsigned NumBytesForCalleeToPush;
Dan Gohman4d3d6e12010-05-27 18:43:40 +00002230 if (Subtarget->IsCalleePop(isVarArg, CallConv))
Gordon Henriksen86737662008-01-05 16:56:59 +00002231 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002232 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002233 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002234 // pops the hidden struct pointer, so we have to push it back.
2235 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002236 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002237 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002238 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002239
Gordon Henriksenae636f82008-01-03 16:47:34 +00002240 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002241 if (!IsSibcall) {
2242 Chain = DAG.getCALLSEQ_END(Chain,
2243 DAG.getIntPtrConstant(NumBytes, true),
2244 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2245 true),
2246 InFlag);
2247 InFlag = Chain.getValue(1);
2248 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002249
Chris Lattner3085e152007-02-25 08:59:22 +00002250 // Handle result values, copying them out of physregs into vregs that we
2251 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002252 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2253 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002254}
2255
Evan Cheng25ab6902006-09-08 06:48:29 +00002256
2257//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002258// Fast Calling Convention (tail call) implementation
2259//===----------------------------------------------------------------------===//
2260
2261// Like std call, callee cleans arguments, convention except that ECX is
2262// reserved for storing the tail called function address. Only 2 registers are
2263// free for argument passing (inreg). Tail call optimization is performed
2264// provided:
2265// * tailcallopt is enabled
2266// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002267// On X86_64 architecture with GOT-style position independent code only local
2268// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002269// To keep the stack aligned according to platform abi the function
2270// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2271// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002272// If a tail called function callee has more arguments than the caller the
2273// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002274// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002275// original REtADDR, but before the saved framepointer or the spilled registers
2276// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2277// stack layout:
2278// arg1
2279// arg2
2280// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002281// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002282// move area ]
2283// (possible EBP)
2284// ESI
2285// EDI
2286// local1 ..
2287
2288/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2289/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002290unsigned
2291X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2292 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002293 MachineFunction &MF = DAG.getMachineFunction();
2294 const TargetMachine &TM = MF.getTarget();
2295 const TargetFrameInfo &TFI = *TM.getFrameInfo();
2296 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002297 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002298 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002299 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002300 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2301 // Number smaller than 12 so just add the difference.
2302 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2303 } else {
2304 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002305 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002306 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002307 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002308 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002309}
2310
Evan Cheng5f941932010-02-05 02:21:12 +00002311/// MatchingStackOffset - Return true if the given stack call argument is
2312/// already available in the same position (relatively) of the caller's
2313/// incoming argument stack.
2314static
2315bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2316 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2317 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002318 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2319 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002320 if (Arg.getOpcode() == ISD::CopyFromReg) {
2321 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
2322 if (!VR || TargetRegisterInfo::isPhysicalRegister(VR))
2323 return false;
2324 MachineInstr *Def = MRI->getVRegDef(VR);
2325 if (!Def)
2326 return false;
2327 if (!Flags.isByVal()) {
2328 if (!TII->isLoadFromStackSlot(Def, FI))
2329 return false;
2330 } else {
2331 unsigned Opcode = Def->getOpcode();
2332 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2333 Def->getOperand(1).isFI()) {
2334 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002335 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002336 } else
2337 return false;
2338 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002339 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2340 if (Flags.isByVal())
2341 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002342 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002343 // define @foo(%struct.X* %A) {
2344 // tail call @bar(%struct.X* byval %A)
2345 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002346 return false;
2347 SDValue Ptr = Ld->getBasePtr();
2348 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2349 if (!FINode)
2350 return false;
2351 FI = FINode->getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002352 } else
2353 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002354
Evan Cheng4cae1332010-03-05 08:38:04 +00002355 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002356 if (!MFI->isFixedObjectIndex(FI))
2357 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002358 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002359}
2360
Dan Gohman98ca4f22009-08-05 01:29:28 +00002361/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2362/// for tail call optimization. Targets which want to do tail call
2363/// optimization should implement this function.
2364bool
2365X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002366 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002367 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002368 bool isCalleeStructRet,
2369 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002370 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002371 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002372 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002373 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002374 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002375 CalleeCC != CallingConv::C)
2376 return false;
2377
Evan Cheng7096ae42010-01-29 06:45:59 +00002378 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002379 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002380 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002381 CallingConv::ID CallerCC = CallerF->getCallingConv();
2382 bool CCMatch = CallerCC == CalleeCC;
2383
Dan Gohman1797ed52010-02-08 20:27:50 +00002384 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002385 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002386 return true;
2387 return false;
2388 }
2389
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002390 // Look for obvious safe cases to perform tail call optimization that do not
2391 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002392
Evan Cheng2c12cb42010-03-26 16:26:03 +00002393 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2394 // emit a special epilogue.
2395 if (RegInfo->needsStackRealignment(MF))
2396 return false;
2397
Eric Christopher90eb4022010-07-22 00:26:08 +00002398 // Do not sibcall optimize vararg calls unless the call site is not passing
2399 // any arguments.
Evan Cheng3c262ee2010-03-26 02:13:13 +00002400 if (isVarArg && !Outs.empty())
Evan Cheng843bd692010-01-31 06:44:49 +00002401 return false;
2402
Evan Chenga375d472010-03-15 18:54:48 +00002403 // Also avoid sibcall optimization if either caller or callee uses struct
2404 // return semantics.
2405 if (isCalleeStructRet || isCallerStructRet)
2406 return false;
2407
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002408 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2409 // Therefore if it's not used by the call it is not safe to optimize this into
2410 // a sibcall.
2411 bool Unused = false;
2412 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2413 if (!Ins[i].Used) {
2414 Unused = true;
2415 break;
2416 }
2417 }
2418 if (Unused) {
2419 SmallVector<CCValAssign, 16> RVLocs;
2420 CCState CCInfo(CalleeCC, false, getTargetMachine(),
2421 RVLocs, *DAG.getContext());
2422 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002423 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002424 CCValAssign &VA = RVLocs[i];
2425 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2426 return false;
2427 }
2428 }
2429
Evan Cheng13617962010-04-30 01:12:32 +00002430 // If the calling conventions do not match, then we'd better make sure the
2431 // results are returned in the same way as what the caller expects.
2432 if (!CCMatch) {
2433 SmallVector<CCValAssign, 16> RVLocs1;
2434 CCState CCInfo1(CalleeCC, false, getTargetMachine(),
2435 RVLocs1, *DAG.getContext());
2436 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2437
2438 SmallVector<CCValAssign, 16> RVLocs2;
2439 CCState CCInfo2(CallerCC, false, getTargetMachine(),
2440 RVLocs2, *DAG.getContext());
2441 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2442
2443 if (RVLocs1.size() != RVLocs2.size())
2444 return false;
2445 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2446 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2447 return false;
2448 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2449 return false;
2450 if (RVLocs1[i].isRegLoc()) {
2451 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2452 return false;
2453 } else {
2454 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2455 return false;
2456 }
2457 }
2458 }
2459
Evan Chenga6bff982010-01-30 01:22:00 +00002460 // If the callee takes no arguments then go on to check the results of the
2461 // call.
2462 if (!Outs.empty()) {
2463 // Check if stack adjustment is needed. For now, do not do this if any
2464 // argument is passed on the stack.
2465 SmallVector<CCValAssign, 16> ArgLocs;
2466 CCState CCInfo(CalleeCC, isVarArg, getTargetMachine(),
2467 ArgLocs, *DAG.getContext());
Duncan Sands45907662010-10-31 13:21:44 +00002468 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Evan Chengb2c92902010-02-02 02:22:50 +00002469 if (CCInfo.getNextStackOffset()) {
2470 MachineFunction &MF = DAG.getMachineFunction();
2471 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2472 return false;
2473 if (Subtarget->isTargetWin64())
2474 // Win64 ABI has additional complications.
2475 return false;
2476
2477 // Check if the arguments are already laid out in the right way as
2478 // the caller's fixed stack objects.
2479 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002480 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2481 const X86InstrInfo *TII =
2482 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002483 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2484 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002485 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002486 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002487 if (VA.getLocInfo() == CCValAssign::Indirect)
2488 return false;
2489 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002490 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2491 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002492 return false;
2493 }
2494 }
2495 }
Evan Cheng9c044672010-05-29 01:35:22 +00002496
2497 // If the tailcall address may be in a register, then make sure it's
2498 // possible to register allocate for it. In 32-bit, the call address can
2499 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002500 // callee-saved registers are restored. These happen to be the same
2501 // registers used to pass 'inreg' arguments so watch out for those.
2502 if (!Subtarget->is64Bit() &&
2503 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002504 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002505 unsigned NumInRegs = 0;
2506 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2507 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002508 if (!VA.isRegLoc())
2509 continue;
2510 unsigned Reg = VA.getLocReg();
2511 switch (Reg) {
2512 default: break;
2513 case X86::EAX: case X86::EDX: case X86::ECX:
2514 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002515 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002516 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002517 }
2518 }
2519 }
Evan Chenga6bff982010-01-30 01:22:00 +00002520 }
Evan Chengb1712452010-01-27 06:25:16 +00002521
Dale Johannesend155d7e2010-10-25 22:17:05 +00002522 // An stdcall caller is expected to clean up its arguments; the callee
Dale Johannesen0e034562010-11-12 00:43:18 +00002523 // isn't going to do that.
Dale Johannesend155d7e2010-10-25 22:17:05 +00002524 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2525 return false;
2526
Evan Cheng86809cc2010-02-03 03:28:02 +00002527 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002528}
2529
Dan Gohman3df24e62008-09-03 23:12:08 +00002530FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002531X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2532 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002533}
2534
2535
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002536//===----------------------------------------------------------------------===//
2537// Other Lowering Hooks
2538//===----------------------------------------------------------------------===//
2539
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002540static bool MayFoldLoad(SDValue Op) {
2541 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2542}
2543
2544static bool MayFoldIntoStore(SDValue Op) {
2545 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2546}
2547
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002548static bool isTargetShuffle(unsigned Opcode) {
2549 switch(Opcode) {
2550 default: return false;
2551 case X86ISD::PSHUFD:
2552 case X86ISD::PSHUFHW:
2553 case X86ISD::PSHUFLW:
2554 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002555 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002556 case X86ISD::SHUFPS:
2557 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002558 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002559 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002560 case X86ISD::MOVLPS:
2561 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002562 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002563 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002564 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002565 case X86ISD::MOVSS:
2566 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002567 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002568 case X86ISD::UNPCKLPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002569 case X86ISD::PUNPCKLWD:
2570 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002571 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002572 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002573 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002574 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002575 case X86ISD::PUNPCKHWD:
2576 case X86ISD::PUNPCKHBW:
2577 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002578 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002579 return true;
2580 }
2581 return false;
2582}
2583
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002584static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002585 SDValue V1, SelectionDAG &DAG) {
2586 switch(Opc) {
2587 default: llvm_unreachable("Unknown x86 shuffle node");
2588 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002589 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002590 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002591 return DAG.getNode(Opc, dl, VT, V1);
2592 }
2593
2594 return SDValue();
2595}
2596
2597static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002598 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002599 switch(Opc) {
2600 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002601 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002602 case X86ISD::PSHUFHW:
2603 case X86ISD::PSHUFLW:
2604 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2605 }
2606
2607 return SDValue();
2608}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002609
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002610static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2611 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2612 switch(Opc) {
2613 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002614 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002615 case X86ISD::SHUFPD:
2616 case X86ISD::SHUFPS:
2617 return DAG.getNode(Opc, dl, VT, V1, V2,
2618 DAG.getConstant(TargetMask, MVT::i8));
2619 }
2620 return SDValue();
2621}
2622
2623static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2624 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2625 switch(Opc) {
2626 default: llvm_unreachable("Unknown x86 shuffle node");
2627 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002628 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002629 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002630 case X86ISD::MOVLPS:
2631 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002632 case X86ISD::MOVSS:
2633 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002634 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002635 case X86ISD::UNPCKLPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002636 case X86ISD::PUNPCKLWD:
2637 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002638 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002639 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002640 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002641 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002642 case X86ISD::PUNPCKHWD:
2643 case X86ISD::PUNPCKHBW:
2644 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002645 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002646 return DAG.getNode(Opc, dl, VT, V1, V2);
2647 }
2648 return SDValue();
2649}
2650
Dan Gohmand858e902010-04-17 15:26:15 +00002651SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002652 MachineFunction &MF = DAG.getMachineFunction();
2653 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2654 int ReturnAddrIndex = FuncInfo->getRAIndex();
2655
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002656 if (ReturnAddrIndex == 0) {
2657 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002658 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002659 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002660 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002661 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002662 }
2663
Evan Cheng25ab6902006-09-08 06:48:29 +00002664 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002665}
2666
2667
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002668bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2669 bool hasSymbolicDisplacement) {
2670 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002671 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002672 return false;
2673
2674 // If we don't have a symbolic displacement - we don't have any extra
2675 // restrictions.
2676 if (!hasSymbolicDisplacement)
2677 return true;
2678
2679 // FIXME: Some tweaks might be needed for medium code model.
2680 if (M != CodeModel::Small && M != CodeModel::Kernel)
2681 return false;
2682
2683 // For small code model we assume that latest object is 16MB before end of 31
2684 // bits boundary. We may also accept pretty large negative constants knowing
2685 // that all objects are in the positive half of address space.
2686 if (M == CodeModel::Small && Offset < 16*1024*1024)
2687 return true;
2688
2689 // For kernel code model we know that all object resist in the negative half
2690 // of 32bits address space. We may not accept negative offsets, since they may
2691 // be just off and we may accept pretty large positive ones.
2692 if (M == CodeModel::Kernel && Offset > 0)
2693 return true;
2694
2695 return false;
2696}
2697
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002698/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2699/// specific condition code, returning the condition code and the LHS/RHS of the
2700/// comparison to make.
2701static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2702 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002703 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002704 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2705 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2706 // X > -1 -> X == 0, jump !sign.
2707 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002708 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002709 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2710 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002711 return X86::COND_S;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002712 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002713 // X < 1 -> X <= 0
2714 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002715 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002716 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002717 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002718
Evan Chengd9558e02006-01-06 00:43:03 +00002719 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002720 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002721 case ISD::SETEQ: return X86::COND_E;
2722 case ISD::SETGT: return X86::COND_G;
2723 case ISD::SETGE: return X86::COND_GE;
2724 case ISD::SETLT: return X86::COND_L;
2725 case ISD::SETLE: return X86::COND_LE;
2726 case ISD::SETNE: return X86::COND_NE;
2727 case ISD::SETULT: return X86::COND_B;
2728 case ISD::SETUGT: return X86::COND_A;
2729 case ISD::SETULE: return X86::COND_BE;
2730 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002731 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002732 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002733
Chris Lattner4c78e022008-12-23 23:42:27 +00002734 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002735
Chris Lattner4c78e022008-12-23 23:42:27 +00002736 // If LHS is a foldable load, but RHS is not, flip the condition.
2737 if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) &&
2738 !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) {
2739 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2740 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002741 }
2742
Chris Lattner4c78e022008-12-23 23:42:27 +00002743 switch (SetCCOpcode) {
2744 default: break;
2745 case ISD::SETOLT:
2746 case ISD::SETOLE:
2747 case ISD::SETUGT:
2748 case ISD::SETUGE:
2749 std::swap(LHS, RHS);
2750 break;
2751 }
2752
2753 // On a floating point condition, the flags are set as follows:
2754 // ZF PF CF op
2755 // 0 | 0 | 0 | X > Y
2756 // 0 | 0 | 1 | X < Y
2757 // 1 | 0 | 0 | X == Y
2758 // 1 | 1 | 1 | unordered
2759 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002760 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002761 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002762 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002763 case ISD::SETOLT: // flipped
2764 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002765 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002766 case ISD::SETOLE: // flipped
2767 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002768 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002769 case ISD::SETUGT: // flipped
2770 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002771 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002772 case ISD::SETUGE: // flipped
2773 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002774 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002775 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002776 case ISD::SETNE: return X86::COND_NE;
2777 case ISD::SETUO: return X86::COND_P;
2778 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00002779 case ISD::SETOEQ:
2780 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00002781 }
Evan Chengd9558e02006-01-06 00:43:03 +00002782}
2783
Evan Cheng4a460802006-01-11 00:33:36 +00002784/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2785/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002786/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002787static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002788 switch (X86CC) {
2789 default:
2790 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00002791 case X86::COND_B:
2792 case X86::COND_BE:
2793 case X86::COND_E:
2794 case X86::COND_P:
2795 case X86::COND_A:
2796 case X86::COND_AE:
2797 case X86::COND_NE:
2798 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00002799 return true;
2800 }
2801}
2802
Evan Chengeb2f9692009-10-27 19:56:55 +00002803/// isFPImmLegal - Returns true if the target can instruction select the
2804/// specified FP immediate natively. If false, the legalizer will
2805/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00002806bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00002807 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
2808 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
2809 return true;
2810 }
2811 return false;
2812}
2813
Nate Begeman9008ca62009-04-27 18:41:29 +00002814/// isUndefOrInRange - Return true if Val is undef or if its value falls within
2815/// the specified range (L, H].
2816static bool isUndefOrInRange(int Val, int Low, int Hi) {
2817 return (Val < 0) || (Val >= Low && Val < Hi);
2818}
2819
2820/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
2821/// specified value.
2822static bool isUndefOrEqual(int Val, int CmpVal) {
2823 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00002824 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00002825 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00002826}
2827
Nate Begeman9008ca62009-04-27 18:41:29 +00002828/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
2829/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
2830/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00002831static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00002832 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00002833 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00002834 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00002835 return (Mask[0] < 2 && Mask[1] < 2);
2836 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002837}
2838
Nate Begeman9008ca62009-04-27 18:41:29 +00002839bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002840 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002841 N->getMask(M);
2842 return ::isPSHUFDMask(M, N->getValueType(0));
2843}
Evan Cheng0188ecb2006-03-22 18:59:22 +00002844
Nate Begeman9008ca62009-04-27 18:41:29 +00002845/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
2846/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00002847static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002848 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00002849 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002850
Nate Begeman9008ca62009-04-27 18:41:29 +00002851 // Lower quadword copied in order or undef.
2852 for (int i = 0; i != 4; ++i)
2853 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00002854 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002855
Evan Cheng506d3df2006-03-29 23:07:14 +00002856 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00002857 for (int i = 4; i != 8; ++i)
2858 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00002859 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002860
Evan Cheng506d3df2006-03-29 23:07:14 +00002861 return true;
2862}
2863
Nate Begeman9008ca62009-04-27 18:41:29 +00002864bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002865 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002866 N->getMask(M);
2867 return ::isPSHUFHWMask(M, N->getValueType(0));
2868}
Evan Cheng506d3df2006-03-29 23:07:14 +00002869
Nate Begeman9008ca62009-04-27 18:41:29 +00002870/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
2871/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00002872static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002873 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00002874 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002875
Rafael Espindola15684b22009-04-24 12:40:33 +00002876 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00002877 for (int i = 4; i != 8; ++i)
2878 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00002879 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002880
Rafael Espindola15684b22009-04-24 12:40:33 +00002881 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00002882 for (int i = 0; i != 4; ++i)
2883 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00002884 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002885
Rafael Espindola15684b22009-04-24 12:40:33 +00002886 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00002887}
2888
Nate Begeman9008ca62009-04-27 18:41:29 +00002889bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002890 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002891 N->getMask(M);
2892 return ::isPSHUFLWMask(M, N->getValueType(0));
2893}
2894
Nate Begemana09008b2009-10-19 02:17:23 +00002895/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
2896/// is suitable for input to PALIGNR.
2897static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
2898 bool hasSSSE3) {
2899 int i, e = VT.getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00002900
Nate Begemana09008b2009-10-19 02:17:23 +00002901 // Do not handle v2i64 / v2f64 shuffles with palignr.
2902 if (e < 4 || !hasSSSE3)
2903 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002904
Nate Begemana09008b2009-10-19 02:17:23 +00002905 for (i = 0; i != e; ++i)
2906 if (Mask[i] >= 0)
2907 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002908
Nate Begemana09008b2009-10-19 02:17:23 +00002909 // All undef, not a palignr.
2910 if (i == e)
2911 return false;
2912
2913 // Determine if it's ok to perform a palignr with only the LHS, since we
2914 // don't have access to the actual shuffle elements to see if RHS is undef.
2915 bool Unary = Mask[i] < (int)e;
2916 bool NeedsUnary = false;
2917
2918 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002919
Nate Begemana09008b2009-10-19 02:17:23 +00002920 // Check the rest of the elements to see if they are consecutive.
2921 for (++i; i != e; ++i) {
2922 int m = Mask[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00002923 if (m < 0)
Nate Begemana09008b2009-10-19 02:17:23 +00002924 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002925
Nate Begemana09008b2009-10-19 02:17:23 +00002926 Unary = Unary && (m < (int)e);
2927 NeedsUnary = NeedsUnary || (m < s);
2928
2929 if (NeedsUnary && !Unary)
2930 return false;
2931 if (Unary && m != ((s+i) & (e-1)))
2932 return false;
2933 if (!Unary && m != (s+i))
2934 return false;
2935 }
2936 return true;
2937}
2938
2939bool X86::isPALIGNRMask(ShuffleVectorSDNode *N) {
2940 SmallVector<int, 8> M;
2941 N->getMask(M);
2942 return ::isPALIGNRMask(M, N->getValueType(0), true);
2943}
2944
Evan Cheng14aed5e2006-03-24 01:18:28 +00002945/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
2946/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersone50ed302009-08-10 22:56:29 +00002947static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002948 int NumElems = VT.getVectorNumElements();
2949 if (NumElems != 2 && NumElems != 4)
2950 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002951
Nate Begeman9008ca62009-04-27 18:41:29 +00002952 int Half = NumElems / 2;
2953 for (int i = 0; i < Half; ++i)
2954 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002955 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002956 for (int i = Half; i < NumElems; ++i)
2957 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002958 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002959
Evan Cheng14aed5e2006-03-24 01:18:28 +00002960 return true;
2961}
2962
Nate Begeman9008ca62009-04-27 18:41:29 +00002963bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
2964 SmallVector<int, 8> M;
2965 N->getMask(M);
2966 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00002967}
2968
Evan Cheng213d2cf2007-05-17 18:45:50 +00002969/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00002970/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
2971/// half elements to come from vector 1 (which would equal the dest.) and
2972/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00002973static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002974 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00002975
2976 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00002977 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002978
Nate Begeman9008ca62009-04-27 18:41:29 +00002979 int Half = NumElems / 2;
2980 for (int i = 0; i < Half; ++i)
2981 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002982 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002983 for (int i = Half; i < NumElems; ++i)
2984 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002985 return false;
2986 return true;
2987}
2988
Nate Begeman9008ca62009-04-27 18:41:29 +00002989static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
2990 SmallVector<int, 8> M;
2991 N->getMask(M);
2992 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00002993}
2994
Evan Cheng2c0dbd02006-03-24 02:58:06 +00002995/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
2996/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00002997bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
2998 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00002999 return false;
3000
Evan Cheng2064a2b2006-03-28 06:50:32 +00003001 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003002 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3003 isUndefOrEqual(N->getMaskElt(1), 7) &&
3004 isUndefOrEqual(N->getMaskElt(2), 2) &&
3005 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003006}
3007
Nate Begeman0b10b912009-11-07 23:17:15 +00003008/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3009/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3010/// <2, 3, 2, 3>
3011bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
3012 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00003013
Nate Begeman0b10b912009-11-07 23:17:15 +00003014 if (NumElems != 4)
3015 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003016
Nate Begeman0b10b912009-11-07 23:17:15 +00003017 return isUndefOrEqual(N->getMaskElt(0), 2) &&
3018 isUndefOrEqual(N->getMaskElt(1), 3) &&
3019 isUndefOrEqual(N->getMaskElt(2), 2) &&
3020 isUndefOrEqual(N->getMaskElt(3), 3);
3021}
3022
Evan Cheng5ced1d82006-04-06 23:23:56 +00003023/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3024/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003025bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3026 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003027
Evan Cheng5ced1d82006-04-06 23:23:56 +00003028 if (NumElems != 2 && NumElems != 4)
3029 return false;
3030
Evan Chengc5cdff22006-04-07 21:53:05 +00003031 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003032 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003033 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003034
Evan Chengc5cdff22006-04-07 21:53:05 +00003035 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003036 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003037 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003038
3039 return true;
3040}
3041
Nate Begeman0b10b912009-11-07 23:17:15 +00003042/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3043/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3044bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003045 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003046
Evan Cheng5ced1d82006-04-06 23:23:56 +00003047 if (NumElems != 2 && NumElems != 4)
3048 return false;
3049
Evan Chengc5cdff22006-04-07 21:53:05 +00003050 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003051 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003052 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003053
Nate Begeman9008ca62009-04-27 18:41:29 +00003054 for (unsigned i = 0; i < NumElems/2; ++i)
3055 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003056 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003057
3058 return true;
3059}
3060
Evan Cheng0038e592006-03-28 00:39:58 +00003061/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3062/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003063static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003064 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003065 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003066 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng0038e592006-03-28 00:39:58 +00003067 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003068
Nate Begeman9008ca62009-04-27 18:41:29 +00003069 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3070 int BitI = Mask[i];
3071 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00003072 if (!isUndefOrEqual(BitI, j))
3073 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003074 if (V2IsSplat) {
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003075 if (!isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003076 return false;
3077 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003078 if (!isUndefOrEqual(BitI1, j + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003079 return false;
3080 }
Evan Cheng0038e592006-03-28 00:39:58 +00003081 }
Evan Cheng0038e592006-03-28 00:39:58 +00003082 return true;
3083}
3084
Nate Begeman9008ca62009-04-27 18:41:29 +00003085bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3086 SmallVector<int, 8> M;
3087 N->getMask(M);
3088 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003089}
3090
Evan Cheng4fcb9222006-03-28 02:43:26 +00003091/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3092/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003093static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003094 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003095 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003096 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003097 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003098
Nate Begeman9008ca62009-04-27 18:41:29 +00003099 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3100 int BitI = Mask[i];
3101 int BitI1 = Mask[i+1];
Chris Lattner5a88b832007-02-25 07:10:00 +00003102 if (!isUndefOrEqual(BitI, j + NumElts/2))
Evan Chengc5cdff22006-04-07 21:53:05 +00003103 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003104 if (V2IsSplat) {
Chris Lattner5a88b832007-02-25 07:10:00 +00003105 if (isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003106 return false;
3107 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003108 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003109 return false;
3110 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003111 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003112 return true;
3113}
3114
Nate Begeman9008ca62009-04-27 18:41:29 +00003115bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3116 SmallVector<int, 8> M;
3117 N->getMask(M);
3118 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003119}
3120
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003121/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3122/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3123/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003124static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003125 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003126 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003127 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003128
Nate Begeman9008ca62009-04-27 18:41:29 +00003129 for (int i = 0, j = 0; i != NumElems; i += 2, ++j) {
3130 int BitI = Mask[i];
3131 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00003132 if (!isUndefOrEqual(BitI, j))
3133 return false;
3134 if (!isUndefOrEqual(BitI1, j))
3135 return false;
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003136 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003137 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003138}
3139
Nate Begeman9008ca62009-04-27 18:41:29 +00003140bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3141 SmallVector<int, 8> M;
3142 N->getMask(M);
3143 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3144}
3145
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003146/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3147/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3148/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003149static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003150 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003151 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3152 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003153
Nate Begeman9008ca62009-04-27 18:41:29 +00003154 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3155 int BitI = Mask[i];
3156 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003157 if (!isUndefOrEqual(BitI, j))
3158 return false;
3159 if (!isUndefOrEqual(BitI1, j))
3160 return false;
3161 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003162 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003163}
3164
Nate Begeman9008ca62009-04-27 18:41:29 +00003165bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3166 SmallVector<int, 8> M;
3167 N->getMask(M);
3168 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3169}
3170
Evan Cheng017dcc62006-04-21 01:05:10 +00003171/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3172/// specifies a shuffle of elements that is suitable for input to MOVSS,
3173/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003174static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003175 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003176 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003177
3178 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003179
Nate Begeman9008ca62009-04-27 18:41:29 +00003180 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003181 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003182
Nate Begeman9008ca62009-04-27 18:41:29 +00003183 for (int i = 1; i < NumElts; ++i)
3184 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003185 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003186
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003187 return true;
3188}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003189
Nate Begeman9008ca62009-04-27 18:41:29 +00003190bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3191 SmallVector<int, 8> M;
3192 N->getMask(M);
3193 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003194}
3195
Evan Cheng017dcc62006-04-21 01:05:10 +00003196/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3197/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003198/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003199static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003200 bool V2IsSplat = false, bool V2IsUndef = false) {
3201 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003202 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003203 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003204
Nate Begeman9008ca62009-04-27 18:41:29 +00003205 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003206 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003207
Nate Begeman9008ca62009-04-27 18:41:29 +00003208 for (int i = 1; i < NumOps; ++i)
3209 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3210 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3211 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003212 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003213
Evan Cheng39623da2006-04-20 08:58:49 +00003214 return true;
3215}
3216
Nate Begeman9008ca62009-04-27 18:41:29 +00003217static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003218 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003219 SmallVector<int, 8> M;
3220 N->getMask(M);
3221 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003222}
3223
Evan Chengd9539472006-04-14 21:59:03 +00003224/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3225/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003226bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N) {
3227 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003228 return false;
3229
3230 // Expect 1, 1, 3, 3
Rafael Espindola15684b22009-04-24 12:40:33 +00003231 for (unsigned i = 0; i < 2; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003232 int Elt = N->getMaskElt(i);
3233 if (Elt >= 0 && Elt != 1)
3234 return false;
Rafael Espindola15684b22009-04-24 12:40:33 +00003235 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003236
3237 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003238 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003239 int Elt = N->getMaskElt(i);
3240 if (Elt >= 0 && Elt != 3)
3241 return false;
3242 if (Elt == 3)
3243 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003244 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003245 // Don't use movshdup if it can be done with a shufps.
Nate Begeman9008ca62009-04-27 18:41:29 +00003246 // FIXME: verify that matching u, u, 3, 3 is what we want.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003247 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003248}
3249
3250/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3251/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003252bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N) {
3253 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003254 return false;
3255
3256 // Expect 0, 0, 2, 2
Nate Begeman9008ca62009-04-27 18:41:29 +00003257 for (unsigned i = 0; i < 2; ++i)
3258 if (N->getMaskElt(i) > 0)
3259 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003260
3261 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003262 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003263 int Elt = N->getMaskElt(i);
3264 if (Elt >= 0 && Elt != 2)
3265 return false;
3266 if (Elt == 2)
3267 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003268 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003269 // Don't use movsldup if it can be done with a shufps.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003270 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003271}
3272
Evan Cheng0b457f02008-09-25 20:50:48 +00003273/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3274/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003275bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3276 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopherfd179292009-08-27 18:07:15 +00003277
Nate Begeman9008ca62009-04-27 18:41:29 +00003278 for (int i = 0; i < e; ++i)
3279 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003280 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003281 for (int i = 0; i < e; ++i)
3282 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003283 return false;
3284 return true;
3285}
3286
Evan Cheng63d33002006-03-22 08:01:21 +00003287/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003288/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003289unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003290 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3291 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3292
Evan Chengb9df0ca2006-03-22 02:53:00 +00003293 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3294 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003295 for (int i = 0; i < NumOperands; ++i) {
3296 int Val = SVOp->getMaskElt(NumOperands-i-1);
3297 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003298 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003299 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003300 if (i != NumOperands - 1)
3301 Mask <<= Shift;
3302 }
Evan Cheng63d33002006-03-22 08:01:21 +00003303 return Mask;
3304}
3305
Evan Cheng506d3df2006-03-29 23:07:14 +00003306/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003307/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003308unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003309 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003310 unsigned Mask = 0;
3311 // 8 nodes, but we only care about the last 4.
3312 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003313 int Val = SVOp->getMaskElt(i);
3314 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003315 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003316 if (i != 4)
3317 Mask <<= 2;
3318 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003319 return Mask;
3320}
3321
3322/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003323/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003324unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003325 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003326 unsigned Mask = 0;
3327 // 8 nodes, but we only care about the first 4.
3328 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003329 int Val = SVOp->getMaskElt(i);
3330 if (Val >= 0)
3331 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00003332 if (i != 0)
3333 Mask <<= 2;
3334 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003335 return Mask;
3336}
3337
Nate Begemana09008b2009-10-19 02:17:23 +00003338/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3339/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3340unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3341 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3342 EVT VVT = N->getValueType(0);
3343 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3344 int Val = 0;
3345
3346 unsigned i, e;
3347 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3348 Val = SVOp->getMaskElt(i);
3349 if (Val >= 0)
3350 break;
3351 }
3352 return (Val - i) * EltSize;
3353}
3354
Evan Cheng37b73872009-07-30 08:33:02 +00003355/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3356/// constant +0.0.
3357bool X86::isZeroNode(SDValue Elt) {
3358 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00003359 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00003360 (isa<ConstantFPSDNode>(Elt) &&
3361 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3362}
3363
Nate Begeman9008ca62009-04-27 18:41:29 +00003364/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3365/// their permute mask.
3366static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3367 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003368 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003369 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00003370 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00003371
Nate Begeman5a5ca152009-04-29 05:20:52 +00003372 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003373 int idx = SVOp->getMaskElt(i);
3374 if (idx < 0)
3375 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003376 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003377 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003378 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003379 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003380 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003381 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3382 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003383}
3384
Evan Cheng779ccea2007-12-07 21:30:01 +00003385/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3386/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00003387static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00003388 unsigned NumElems = VT.getVectorNumElements();
3389 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003390 int idx = Mask[i];
3391 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003392 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003393 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003394 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003395 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003396 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003397 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003398}
3399
Evan Cheng533a0aa2006-04-19 20:35:22 +00003400/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3401/// match movhlps. The lower half elements should come from upper half of
3402/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003403/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00003404static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
3405 if (Op->getValueType(0).getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00003406 return false;
3407 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003408 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003409 return false;
3410 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003411 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003412 return false;
3413 return true;
3414}
3415
Evan Cheng5ced1d82006-04-06 23:23:56 +00003416/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00003417/// is promoted to a vector. It also returns the LoadSDNode by reference if
3418/// required.
3419static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00003420 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3421 return false;
3422 N = N->getOperand(0).getNode();
3423 if (!ISD::isNON_EXTLoad(N))
3424 return false;
3425 if (LD)
3426 *LD = cast<LoadSDNode>(N);
3427 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003428}
3429
Evan Cheng533a0aa2006-04-19 20:35:22 +00003430/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3431/// match movlp{s|d}. The lower half elements should come from lower half of
3432/// V1 (and in order), and the upper half elements should come from the upper
3433/// half of V2 (and in order). And since V1 will become the source of the
3434/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003435static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3436 ShuffleVectorSDNode *Op) {
Evan Cheng466685d2006-10-09 20:57:25 +00003437 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003438 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00003439 // Is V2 is a vector load, don't do this transformation. We will try to use
3440 // load folding shufps op.
3441 if (ISD::isNON_EXTLoad(V2))
3442 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003443
Nate Begeman5a5ca152009-04-29 05:20:52 +00003444 unsigned NumElems = Op->getValueType(0).getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003445
Evan Cheng533a0aa2006-04-19 20:35:22 +00003446 if (NumElems != 2 && NumElems != 4)
3447 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003448 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003449 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003450 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003451 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003452 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003453 return false;
3454 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003455}
3456
Evan Cheng39623da2006-04-20 08:58:49 +00003457/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
3458/// all the same.
3459static bool isSplatVector(SDNode *N) {
3460 if (N->getOpcode() != ISD::BUILD_VECTOR)
3461 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003462
Dan Gohman475871a2008-07-27 21:46:04 +00003463 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00003464 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
3465 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003466 return false;
3467 return true;
3468}
3469
Evan Cheng213d2cf2007-05-17 18:45:50 +00003470/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00003471/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00003472/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00003473static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00003474 SDValue V1 = N->getOperand(0);
3475 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003476 unsigned NumElems = N->getValueType(0).getVectorNumElements();
3477 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003478 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003479 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003480 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00003481 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
3482 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003483 if (Opc != ISD::BUILD_VECTOR ||
3484 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00003485 return false;
3486 } else if (Idx >= 0) {
3487 unsigned Opc = V1.getOpcode();
3488 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
3489 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003490 if (Opc != ISD::BUILD_VECTOR ||
3491 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00003492 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00003493 }
3494 }
3495 return true;
3496}
3497
3498/// getZeroVector - Returns a vector of specified type with all zero elements.
3499///
Owen Andersone50ed302009-08-10 22:56:29 +00003500static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003501 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003502 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003503
Dale Johannesen0488fb62010-09-30 23:57:10 +00003504 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003505 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00003506 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003507 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003508 if (HasSSE2) { // SSE2
3509 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3510 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
3511 } else { // SSE1
3512 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
3513 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
3514 }
3515 } else if (VT.getSizeInBits() == 256) { // AVX
3516 // 256-bit logic and arithmetic instructions in AVX are
3517 // all floating-point, no support for integer ops. Default
3518 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00003519 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003520 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
3521 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00003522 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003523 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00003524}
3525
Chris Lattner8a594482007-11-25 00:24:49 +00003526/// getOnesVector - Returns a vector of specified type with all bits set.
3527///
Owen Andersone50ed302009-08-10 22:56:29 +00003528static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003529 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003530
Chris Lattner8a594482007-11-25 00:24:49 +00003531 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
3532 // type. This ensures they get CSE'd.
Owen Anderson825b72b2009-08-11 20:47:22 +00003533 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +00003534 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003535 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003536 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00003537}
3538
3539
Evan Cheng39623da2006-04-20 08:58:49 +00003540/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
3541/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00003542static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003543 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003544 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003545
Evan Cheng39623da2006-04-20 08:58:49 +00003546 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003547 SmallVector<int, 8> MaskVec;
3548 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00003549
Nate Begeman5a5ca152009-04-29 05:20:52 +00003550 for (unsigned i = 0; i != NumElems; ++i) {
3551 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003552 MaskVec[i] = NumElems;
3553 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00003554 }
Evan Cheng39623da2006-04-20 08:58:49 +00003555 }
Evan Cheng39623da2006-04-20 08:58:49 +00003556 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00003557 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
3558 SVOp->getOperand(1), &MaskVec[0]);
3559 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00003560}
3561
Evan Cheng017dcc62006-04-21 01:05:10 +00003562/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
3563/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00003564static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003565 SDValue V2) {
3566 unsigned NumElems = VT.getVectorNumElements();
3567 SmallVector<int, 8> Mask;
3568 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00003569 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003570 Mask.push_back(i);
3571 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00003572}
3573
Nate Begeman9008ca62009-04-27 18:41:29 +00003574/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003575static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003576 SDValue V2) {
3577 unsigned NumElems = VT.getVectorNumElements();
3578 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00003579 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003580 Mask.push_back(i);
3581 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00003582 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003583 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00003584}
3585
Nate Begeman9008ca62009-04-27 18:41:29 +00003586/// getUnpackhMask - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003587static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003588 SDValue V2) {
3589 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00003590 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00003591 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00003592 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003593 Mask.push_back(i + Half);
3594 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00003595 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003596 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00003597}
3598
Bruno Cardoso Lopesbb0a9482010-08-13 17:50:47 +00003599/// PromoteSplat - Promote a splat of v4i32, v8i16 or v16i8 to v4f32.
3600static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003601 EVT PVT = MVT::v4f32;
Owen Andersone50ed302009-08-10 22:56:29 +00003602 EVT VT = SV->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00003603 DebugLoc dl = SV->getDebugLoc();
3604 SDValue V1 = SV->getOperand(0);
3605 int NumElems = VT.getVectorNumElements();
3606 int EltNo = SV->getSplatIndex();
Rafael Espindola15684b22009-04-24 12:40:33 +00003607
Nate Begeman9008ca62009-04-27 18:41:29 +00003608 // unpack elements to the correct location
3609 while (NumElems > 4) {
3610 if (EltNo < NumElems/2) {
3611 V1 = getUnpackl(DAG, dl, VT, V1, V1);
3612 } else {
3613 V1 = getUnpackh(DAG, dl, VT, V1, V1);
3614 EltNo -= NumElems/2;
3615 }
3616 NumElems >>= 1;
3617 }
Eric Christopherfd179292009-08-27 18:07:15 +00003618
Nate Begeman9008ca62009-04-27 18:41:29 +00003619 // Perform the splat.
3620 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003621 V1 = DAG.getNode(ISD::BITCAST, dl, PVT, V1);
Nate Begeman9008ca62009-04-27 18:41:29 +00003622 V1 = DAG.getVectorShuffle(PVT, dl, V1, DAG.getUNDEF(PVT), &SplatMask[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003623 return DAG.getNode(ISD::BITCAST, dl, VT, V1);
Evan Chengc575ca22006-04-17 20:43:08 +00003624}
3625
Evan Chengba05f722006-04-21 23:03:30 +00003626/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00003627/// vector of zero or undef vector. This produces a shuffle where the low
3628/// element of V2 is swizzled into the zero/undef vector, landing at element
3629/// 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 +00003630static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00003631 bool isZero, bool HasSSE2,
3632 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003633 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003634 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00003635 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
3636 unsigned NumElems = VT.getVectorNumElements();
3637 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00003638 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003639 // If this is the insertion idx, put the low elt of V2 here.
3640 MaskVec.push_back(i == Idx ? NumElems : i);
3641 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00003642}
3643
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003644/// getShuffleScalarElt - Returns the scalar element that will make up the ith
3645/// element of the result of the vector shuffle.
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003646SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
3647 unsigned Depth) {
3648 if (Depth == 6)
3649 return SDValue(); // Limit search depth.
3650
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003651 SDValue V = SDValue(N, 0);
3652 EVT VT = V.getValueType();
3653 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003654
3655 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
3656 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
3657 Index = SV->getMaskElt(Index);
3658
3659 if (Index < 0)
3660 return DAG.getUNDEF(VT.getVectorElementType());
3661
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003662 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003663 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003664 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00003665 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003666
3667 // Recurse into target specific vector shuffles to find scalars.
3668 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003669 int NumElems = VT.getVectorNumElements();
3670 SmallVector<unsigned, 16> ShuffleMask;
3671 SDValue ImmN;
3672
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003673 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003674 case X86ISD::SHUFPS:
3675 case X86ISD::SHUFPD:
3676 ImmN = N->getOperand(N->getNumOperands()-1);
3677 DecodeSHUFPSMask(NumElems,
3678 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3679 ShuffleMask);
3680 break;
3681 case X86ISD::PUNPCKHBW:
3682 case X86ISD::PUNPCKHWD:
3683 case X86ISD::PUNPCKHDQ:
3684 case X86ISD::PUNPCKHQDQ:
3685 DecodePUNPCKHMask(NumElems, ShuffleMask);
3686 break;
3687 case X86ISD::UNPCKHPS:
3688 case X86ISD::UNPCKHPD:
3689 DecodeUNPCKHPMask(NumElems, ShuffleMask);
3690 break;
3691 case X86ISD::PUNPCKLBW:
3692 case X86ISD::PUNPCKLWD:
3693 case X86ISD::PUNPCKLDQ:
3694 case X86ISD::PUNPCKLQDQ:
3695 DecodePUNPCKLMask(NumElems, ShuffleMask);
3696 break;
3697 case X86ISD::UNPCKLPS:
3698 case X86ISD::UNPCKLPD:
3699 DecodeUNPCKLPMask(NumElems, ShuffleMask);
3700 break;
3701 case X86ISD::MOVHLPS:
3702 DecodeMOVHLPSMask(NumElems, ShuffleMask);
3703 break;
3704 case X86ISD::MOVLHPS:
3705 DecodeMOVLHPSMask(NumElems, ShuffleMask);
3706 break;
3707 case X86ISD::PSHUFD:
3708 ImmN = N->getOperand(N->getNumOperands()-1);
3709 DecodePSHUFMask(NumElems,
3710 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3711 ShuffleMask);
3712 break;
3713 case X86ISD::PSHUFHW:
3714 ImmN = N->getOperand(N->getNumOperands()-1);
3715 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3716 ShuffleMask);
3717 break;
3718 case X86ISD::PSHUFLW:
3719 ImmN = N->getOperand(N->getNumOperands()-1);
3720 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3721 ShuffleMask);
3722 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003723 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003724 case X86ISD::MOVSD: {
3725 // The index 0 always comes from the first element of the second source,
3726 // this is why MOVSS and MOVSD are used in the first place. The other
3727 // elements come from the other positions of the first source vector.
3728 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003729 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
3730 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003731 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003732 default:
3733 assert("not implemented for target shuffle node");
3734 return SDValue();
3735 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003736
3737 Index = ShuffleMask[Index];
3738 if (Index < 0)
3739 return DAG.getUNDEF(VT.getVectorElementType());
3740
3741 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
3742 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
3743 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003744 }
3745
3746 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003747 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003748 V = V.getOperand(0);
3749 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003750 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003751
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003752 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003753 return SDValue();
3754 }
3755
3756 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
3757 return (Index == 0) ? V.getOperand(0)
3758 : DAG.getUNDEF(VT.getVectorElementType());
3759
3760 if (V.getOpcode() == ISD::BUILD_VECTOR)
3761 return V.getOperand(Index);
3762
3763 return SDValue();
3764}
3765
3766/// getNumOfConsecutiveZeros - Return the number of elements of a vector
3767/// shuffle operation which come from a consecutively from a zero. The
3768/// search can start in two diferent directions, from left or right.
3769static
3770unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
3771 bool ZerosFromLeft, SelectionDAG &DAG) {
3772 int i = 0;
3773
3774 while (i < NumElems) {
3775 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003776 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003777 if (!(Elt.getNode() &&
3778 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
3779 break;
3780 ++i;
3781 }
3782
3783 return i;
3784}
3785
3786/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
3787/// MaskE correspond consecutively to elements from one of the vector operands,
3788/// starting from its index OpIdx. Also tell OpNum which source vector operand.
3789static
3790bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
3791 int OpIdx, int NumElems, unsigned &OpNum) {
3792 bool SeenV1 = false;
3793 bool SeenV2 = false;
3794
3795 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
3796 int Idx = SVOp->getMaskElt(i);
3797 // Ignore undef indicies
3798 if (Idx < 0)
3799 continue;
3800
3801 if (Idx < NumElems)
3802 SeenV1 = true;
3803 else
3804 SeenV2 = true;
3805
3806 // Only accept consecutive elements from the same vector
3807 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
3808 return false;
3809 }
3810
3811 OpNum = SeenV1 ? 0 : 1;
3812 return true;
3813}
3814
3815/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
3816/// logical left shift of a vector.
3817static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
3818 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
3819 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
3820 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
3821 false /* check zeros from right */, DAG);
3822 unsigned OpSrc;
3823
3824 if (!NumZeros)
3825 return false;
3826
3827 // Considering the elements in the mask that are not consecutive zeros,
3828 // check if they consecutively come from only one of the source vectors.
3829 //
3830 // V1 = {X, A, B, C} 0
3831 // \ \ \ /
3832 // vector_shuffle V1, V2 <1, 2, 3, X>
3833 //
3834 if (!isShuffleMaskConsecutive(SVOp,
3835 0, // Mask Start Index
3836 NumElems-NumZeros-1, // Mask End Index
3837 NumZeros, // Where to start looking in the src vector
3838 NumElems, // Number of elements in vector
3839 OpSrc)) // Which source operand ?
3840 return false;
3841
3842 isLeft = false;
3843 ShAmt = NumZeros;
3844 ShVal = SVOp->getOperand(OpSrc);
3845 return true;
3846}
3847
3848/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
3849/// logical left shift of a vector.
3850static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
3851 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
3852 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
3853 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
3854 true /* check zeros from left */, DAG);
3855 unsigned OpSrc;
3856
3857 if (!NumZeros)
3858 return false;
3859
3860 // Considering the elements in the mask that are not consecutive zeros,
3861 // check if they consecutively come from only one of the source vectors.
3862 //
3863 // 0 { A, B, X, X } = V2
3864 // / \ / /
3865 // vector_shuffle V1, V2 <X, X, 4, 5>
3866 //
3867 if (!isShuffleMaskConsecutive(SVOp,
3868 NumZeros, // Mask Start Index
3869 NumElems-1, // Mask End Index
3870 0, // Where to start looking in the src vector
3871 NumElems, // Number of elements in vector
3872 OpSrc)) // Which source operand ?
3873 return false;
3874
3875 isLeft = true;
3876 ShAmt = NumZeros;
3877 ShVal = SVOp->getOperand(OpSrc);
3878 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00003879}
3880
3881/// isVectorShift - Returns true if the shuffle can be implemented as a
3882/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003883static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00003884 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003885 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
3886 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
3887 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00003888
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003889 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00003890}
3891
Evan Chengc78d3b42006-04-24 18:01:45 +00003892/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
3893///
Dan Gohman475871a2008-07-27 21:46:04 +00003894static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00003895 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00003896 SelectionDAG &DAG,
3897 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003898 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00003899 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003900
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003901 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003902 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003903 bool First = true;
3904 for (unsigned i = 0; i < 16; ++i) {
3905 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
3906 if (ThisIsNonZero && First) {
3907 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003908 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003909 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003910 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003911 First = false;
3912 }
3913
3914 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00003915 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003916 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
3917 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003918 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003919 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00003920 }
3921 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003922 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
3923 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
3924 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00003925 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003926 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00003927 } else
3928 ThisElt = LastElt;
3929
Gabor Greifba36cb52008-08-28 21:40:38 +00003930 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00003931 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00003932 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00003933 }
3934 }
3935
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003936 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00003937}
3938
Bill Wendlinga348c562007-03-22 18:42:45 +00003939/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00003940///
Dan Gohman475871a2008-07-27 21:46:04 +00003941static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00003942 unsigned NumNonZero, unsigned NumZero,
3943 SelectionDAG &DAG,
3944 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003945 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00003946 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003947
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003948 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003949 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003950 bool First = true;
3951 for (unsigned i = 0; i < 8; ++i) {
3952 bool isNonZero = (NonZeros & (1 << i)) != 0;
3953 if (isNonZero) {
3954 if (First) {
3955 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003956 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003957 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003958 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003959 First = false;
3960 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003961 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003962 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00003963 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00003964 }
3965 }
3966
3967 return V;
3968}
3969
Evan Chengf26ffe92008-05-29 08:22:04 +00003970/// getVShift - Return a vector logical shift node.
3971///
Owen Andersone50ed302009-08-10 22:56:29 +00003972static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00003973 unsigned NumBits, SelectionDAG &DAG,
3974 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003975 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00003976 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003977 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
3978 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00003979 DAG.getNode(Opc, dl, ShVT, SrcOp,
Gabor Greif327ef032008-08-28 23:19:51 +00003980 DAG.getConstant(NumBits, TLI.getShiftAmountTy())));
Evan Chengf26ffe92008-05-29 08:22:04 +00003981}
3982
Dan Gohman475871a2008-07-27 21:46:04 +00003983SDValue
Evan Chengc3630942009-12-09 21:00:30 +00003984X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00003985 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00003986
Evan Chengc3630942009-12-09 21:00:30 +00003987 // Check if the scalar load can be widened into a vector load. And if
3988 // the address is "base + cst" see if the cst can be "absorbed" into
3989 // the shuffle mask.
3990 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
3991 SDValue Ptr = LD->getBasePtr();
3992 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
3993 return SDValue();
3994 EVT PVT = LD->getValueType(0);
3995 if (PVT != MVT::i32 && PVT != MVT::f32)
3996 return SDValue();
3997
3998 int FI = -1;
3999 int64_t Offset = 0;
4000 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4001 FI = FINode->getIndex();
4002 Offset = 0;
4003 } else if (Ptr.getOpcode() == ISD::ADD &&
4004 isa<ConstantSDNode>(Ptr.getOperand(1)) &&
4005 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4006 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4007 Offset = Ptr.getConstantOperandVal(1);
4008 Ptr = Ptr.getOperand(0);
4009 } else {
4010 return SDValue();
4011 }
4012
4013 SDValue Chain = LD->getChain();
4014 // Make sure the stack object alignment is at least 16.
4015 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
4016 if (DAG.InferPtrAlignment(Ptr) < 16) {
4017 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004018 // Can't change the alignment. FIXME: It's possible to compute
4019 // the exact stack offset and reference FI + adjust offset instead.
4020 // If someone *really* cares about this. That's the way to implement it.
4021 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004022 } else {
4023 MFI->setObjectAlignment(FI, 16);
4024 }
4025 }
4026
4027 // (Offset % 16) must be multiple of 4. Then address is then
4028 // Ptr + (Offset & ~15).
4029 if (Offset < 0)
4030 return SDValue();
4031 if ((Offset % 16) & 3)
4032 return SDValue();
4033 int64_t StartOffset = Offset & ~15;
4034 if (StartOffset)
4035 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4036 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4037
4038 int EltNo = (Offset - StartOffset) >> 2;
4039 int Mask[4] = { EltNo, EltNo, EltNo, EltNo };
4040 EVT VT = (PVT == MVT::i32) ? MVT::v4i32 : MVT::v4f32;
Chris Lattner51abfe42010-09-21 06:02:19 +00004041 SDValue V1 = DAG.getLoad(VT, dl, Chain, Ptr,
4042 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004043 false, false, 0);
Evan Chengc3630942009-12-09 21:00:30 +00004044 // Canonicalize it to a v4i32 shuffle.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004045 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, V1);
4046 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Chengc3630942009-12-09 21:00:30 +00004047 DAG.getVectorShuffle(MVT::v4i32, dl, V1,
Chris Lattner51abfe42010-09-21 06:02:19 +00004048 DAG.getUNDEF(MVT::v4i32),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004049 }
4050
4051 return SDValue();
4052}
4053
Michael J. Spencerec38de22010-10-10 22:04:20 +00004054/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4055/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004056/// load which has the same value as a build_vector whose operands are 'elts'.
4057///
4058/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004059///
Nate Begeman1449f292010-03-24 22:19:06 +00004060/// FIXME: we'd also like to handle the case where the last elements are zero
4061/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4062/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004063static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004064 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004065 EVT EltVT = VT.getVectorElementType();
4066 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004067
Nate Begemanfdea31a2010-03-24 20:49:50 +00004068 LoadSDNode *LDBase = NULL;
4069 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004070
Nate Begeman1449f292010-03-24 22:19:06 +00004071 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004072 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004073 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004074 for (unsigned i = 0; i < NumElems; ++i) {
4075 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004076
Nate Begemanfdea31a2010-03-24 20:49:50 +00004077 if (!Elt.getNode() ||
4078 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4079 return SDValue();
4080 if (!LDBase) {
4081 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4082 return SDValue();
4083 LDBase = cast<LoadSDNode>(Elt.getNode());
4084 LastLoadedElt = i;
4085 continue;
4086 }
4087 if (Elt.getOpcode() == ISD::UNDEF)
4088 continue;
4089
4090 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4091 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4092 return SDValue();
4093 LastLoadedElt = i;
4094 }
Nate Begeman1449f292010-03-24 22:19:06 +00004095
4096 // If we have found an entire vector of loads and undefs, then return a large
4097 // load of the entire vector width starting at the base pointer. If we found
4098 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004099 if (LastLoadedElt == NumElems - 1) {
4100 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004101 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004102 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004103 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004104 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004105 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004106 LDBase->isVolatile(), LDBase->isNonTemporal(),
4107 LDBase->getAlignment());
4108 } else if (NumElems == 4 && LastLoadedElt == 1) {
4109 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4110 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004111 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4112 Ops, 2, MVT::i32,
4113 LDBase->getMemOperand());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004114 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004115 }
4116 return SDValue();
4117}
4118
Evan Chengc3630942009-12-09 21:00:30 +00004119SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004120X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004121 DebugLoc dl = Op.getDebugLoc();
Chris Lattner6e80e442010-08-28 17:15:43 +00004122 // All zero's are handled with pxor in SSE2 and above, xorps in SSE1.
4123 // All one's are handled with pcmpeqd. In AVX, zero's are handled with
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004124 // vpxor in 128-bit and xor{pd,ps} in 256-bit, but no 256 version of pcmpeqd
4125 // is present, so AllOnes is ignored.
4126 if (ISD::isBuildVectorAllZeros(Op.getNode()) ||
4127 (Op.getValueType().getSizeInBits() != 256 &&
4128 ISD::isBuildVectorAllOnes(Op.getNode()))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004129 // Canonicalize this to <4 x i32> (SSE) to
Chris Lattner8a594482007-11-25 00:24:49 +00004130 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
4131 // eliminated on x86-32 hosts.
Dale Johannesen0488fb62010-09-30 23:57:10 +00004132 if (Op.getValueType() == MVT::v4i32)
Chris Lattner8a594482007-11-25 00:24:49 +00004133 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004134
Gabor Greifba36cb52008-08-28 21:40:38 +00004135 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00004136 return getOnesVector(Op.getValueType(), DAG, dl);
4137 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00004138 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004139
Owen Andersone50ed302009-08-10 22:56:29 +00004140 EVT VT = Op.getValueType();
4141 EVT ExtVT = VT.getVectorElementType();
4142 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004143
4144 unsigned NumElems = Op.getNumOperands();
4145 unsigned NumZero = 0;
4146 unsigned NumNonZero = 0;
4147 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004148 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004149 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004150 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004151 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00004152 if (Elt.getOpcode() == ISD::UNDEF)
4153 continue;
4154 Values.insert(Elt);
4155 if (Elt.getOpcode() != ISD::Constant &&
4156 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004157 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00004158 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00004159 NumZero++;
4160 else {
4161 NonZeros |= (1 << i);
4162 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004163 }
4164 }
4165
Chris Lattner97a2a562010-08-26 05:24:29 +00004166 // All undef vector. Return an UNDEF. All zero vectors were handled above.
4167 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00004168 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004169
Chris Lattner67f453a2008-03-09 05:42:06 +00004170 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00004171 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004172 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00004173 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00004174
Chris Lattner62098042008-03-09 01:05:04 +00004175 // If this is an insertion of an i64 value on x86-32, and if the top bits of
4176 // the value are obviously zero, truncate the value to i32 and do the
4177 // insertion that way. Only do this if the value is non-constant or if the
4178 // value is a constant being inserted into element 0. It is cheaper to do
4179 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00004180 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00004181 (!IsAllConstants || Idx == 0)) {
4182 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004183 // Handle SSE only.
4184 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4185 EVT VecVT = MVT::v4i32;
4186 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004187
Chris Lattner62098042008-03-09 01:05:04 +00004188 // Truncate the value (which may itself be a constant) to i32, and
4189 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00004190 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00004191 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00004192 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4193 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004194
Chris Lattner62098042008-03-09 01:05:04 +00004195 // Now we have our 32-bit value zero extended in the low element of
4196 // a vector. If Idx != 0, swizzle it into place.
4197 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004198 SmallVector<int, 4> Mask;
4199 Mask.push_back(Idx);
4200 for (unsigned i = 1; i != VecElts; ++i)
4201 Mask.push_back(i);
4202 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00004203 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00004204 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004205 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004206 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00004207 }
4208 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004209
Chris Lattner19f79692008-03-08 22:59:52 +00004210 // If we have a constant or non-constant insertion into the low element of
4211 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4212 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00004213 // depending on what the source datatype is.
4214 if (Idx == 0) {
4215 if (NumZero == 0) {
4216 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00004217 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4218 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00004219 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4220 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4221 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4222 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00004223 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4224 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00004225 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4226 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00004227 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4228 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4229 Subtarget->hasSSE2(), DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004230 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00004231 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004232 }
Evan Chengf26ffe92008-05-29 08:22:04 +00004233
4234 // Is it a vector logical left shift?
4235 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00004236 X86::isZeroNode(Op.getOperand(0)) &&
4237 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004238 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004239 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004240 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004241 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00004242 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004243 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004244
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004245 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00004246 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004247
Chris Lattner19f79692008-03-08 22:59:52 +00004248 // Otherwise, if this is a vector with i32 or f32 elements, and the element
4249 // is a non-constant being inserted into an element other than the low one,
4250 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
4251 // movd/movss) to move this into the low element, then shuffle it into
4252 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004253 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00004254 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00004255
Evan Cheng0db9fe62006-04-25 20:13:52 +00004256 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00004257 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4258 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00004259 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004260 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00004261 MaskVec.push_back(i == Idx ? 0 : 1);
4262 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004263 }
4264 }
4265
Chris Lattner67f453a2008-03-09 05:42:06 +00004266 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00004267 if (Values.size() == 1) {
4268 if (EVTBits == 32) {
4269 // Instead of a shuffle like this:
4270 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4271 // Check if it's possible to issue this instead.
4272 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4273 unsigned Idx = CountTrailingZeros_32(NonZeros);
4274 SDValue Item = Op.getOperand(Idx);
4275 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4276 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4277 }
Dan Gohman475871a2008-07-27 21:46:04 +00004278 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004279 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004280
Dan Gohmana3941172007-07-24 22:55:08 +00004281 // A vector full of immediates; various special cases are already
4282 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004283 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00004284 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00004285
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004286 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004287 if (EVTBits == 64) {
4288 if (NumNonZero == 1) {
4289 // One half is zero or undef.
4290 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00004291 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004292 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00004293 return getShuffleVectorZeroOrUndef(V2, Idx, true,
4294 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00004295 }
Dan Gohman475871a2008-07-27 21:46:04 +00004296 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00004297 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004298
4299 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00004300 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004301 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00004302 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004303 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004304 }
4305
Bill Wendling826f36f2007-03-28 00:57:11 +00004306 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004307 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00004308 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004309 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004310 }
4311
4312 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004313 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00004314 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004315 if (NumElems == 4 && NumZero > 0) {
4316 for (unsigned i = 0; i < 4; ++i) {
4317 bool isZero = !(NonZeros & (1 << i));
4318 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00004319 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004320 else
Dale Johannesenace16102009-02-03 19:33:06 +00004321 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004322 }
4323
4324 for (unsigned i = 0; i < 2; ++i) {
4325 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
4326 default: break;
4327 case 0:
4328 V[i] = V[i*2]; // Must be a zero vector.
4329 break;
4330 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00004331 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004332 break;
4333 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00004334 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004335 break;
4336 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00004337 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004338 break;
4339 }
4340 }
4341
Nate Begeman9008ca62009-04-27 18:41:29 +00004342 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004343 bool Reverse = (NonZeros & 0x3) == 2;
4344 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004345 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004346 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
4347 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004348 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
4349 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004350 }
4351
Nate Begemanfdea31a2010-03-24 20:49:50 +00004352 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
4353 // Check for a build vector of consecutive loads.
4354 for (unsigned i = 0; i < NumElems; ++i)
4355 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004356
Nate Begemanfdea31a2010-03-24 20:49:50 +00004357 // Check for elements which are consecutive loads.
4358 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
4359 if (LD.getNode())
4360 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004361
4362 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004363 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00004364 SDValue Result;
4365 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
4366 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
4367 else
4368 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004369
Chris Lattner24faf612010-08-28 17:59:08 +00004370 for (unsigned i = 1; i < NumElems; ++i) {
4371 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
4372 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00004373 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00004374 }
4375 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00004376 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00004377
Chris Lattner6e80e442010-08-28 17:15:43 +00004378 // Otherwise, expand into a number of unpckl*, start by extending each of
4379 // our (non-undef) elements to the full vector width with the element in the
4380 // bottom slot of the vector (which generates no code for SSE).
4381 for (unsigned i = 0; i < NumElems; ++i) {
4382 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
4383 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
4384 else
4385 V[i] = DAG.getUNDEF(VT);
4386 }
4387
4388 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004389 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
4390 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
4391 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00004392 unsigned EltStride = NumElems >> 1;
4393 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00004394 for (unsigned i = 0; i < EltStride; ++i) {
4395 // If V[i+EltStride] is undef and this is the first round of mixing,
4396 // then it is safe to just drop this shuffle: V[i] is already in the
4397 // right place, the one element (since it's the first round) being
4398 // inserted as undef can be dropped. This isn't safe for successive
4399 // rounds because they will permute elements within both vectors.
4400 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
4401 EltStride == NumElems/2)
4402 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004403
Chris Lattner6e80e442010-08-28 17:15:43 +00004404 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00004405 }
Chris Lattner6e80e442010-08-28 17:15:43 +00004406 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004407 }
4408 return V[0];
4409 }
Dan Gohman475871a2008-07-27 21:46:04 +00004410 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004411}
4412
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004413SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004414X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004415 // We support concatenate two MMX registers and place them in a MMX
4416 // register. This is better than doing a stack convert.
4417 DebugLoc dl = Op.getDebugLoc();
4418 EVT ResVT = Op.getValueType();
4419 assert(Op.getNumOperands() == 2);
4420 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
4421 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
4422 int Mask[2];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004423 SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004424 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4425 InVec = Op.getOperand(1);
4426 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
4427 unsigned NumElts = ResVT.getVectorNumElements();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004428 VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004429 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
4430 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
4431 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004432 InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004433 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4434 Mask[0] = 0; Mask[1] = 2;
4435 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
4436 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004437 return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004438}
4439
Nate Begemanb9a47b82009-02-23 08:49:38 +00004440// v8i16 shuffles - Prefer shuffles in the following order:
4441// 1. [all] pshuflw, pshufhw, optional move
4442// 2. [ssse3] 1 x pshufb
4443// 3. [ssse3] 2 x pshufb + 1 x por
4444// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004445SDValue
4446X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
4447 SelectionDAG &DAG) const {
4448 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00004449 SDValue V1 = SVOp->getOperand(0);
4450 SDValue V2 = SVOp->getOperand(1);
4451 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004452 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00004453
Nate Begemanb9a47b82009-02-23 08:49:38 +00004454 // Determine if more than 1 of the words in each of the low and high quadwords
4455 // of the result come from the same quadword of one of the two inputs. Undef
4456 // mask values count as coming from any quadword, for better codegen.
4457 SmallVector<unsigned, 4> LoQuad(4);
4458 SmallVector<unsigned, 4> HiQuad(4);
4459 BitVector InputQuads(4);
4460 for (unsigned i = 0; i < 8; ++i) {
4461 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00004462 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004463 MaskVals.push_back(EltIdx);
4464 if (EltIdx < 0) {
4465 ++Quad[0];
4466 ++Quad[1];
4467 ++Quad[2];
4468 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00004469 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004470 }
4471 ++Quad[EltIdx / 4];
4472 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00004473 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004474
Nate Begemanb9a47b82009-02-23 08:49:38 +00004475 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004476 unsigned MaxQuad = 1;
4477 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004478 if (LoQuad[i] > MaxQuad) {
4479 BestLoQuad = i;
4480 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004481 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004482 }
4483
Nate Begemanb9a47b82009-02-23 08:49:38 +00004484 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004485 MaxQuad = 1;
4486 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004487 if (HiQuad[i] > MaxQuad) {
4488 BestHiQuad = i;
4489 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004490 }
4491 }
4492
Nate Begemanb9a47b82009-02-23 08:49:38 +00004493 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00004494 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00004495 // single pshufb instruction is necessary. If There are more than 2 input
4496 // quads, disable the next transformation since it does not help SSSE3.
4497 bool V1Used = InputQuads[0] || InputQuads[1];
4498 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004499 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004500 if (InputQuads.count() == 2 && V1Used && V2Used) {
4501 BestLoQuad = InputQuads.find_first();
4502 BestHiQuad = InputQuads.find_next(BestLoQuad);
4503 }
4504 if (InputQuads.count() > 2) {
4505 BestLoQuad = -1;
4506 BestHiQuad = -1;
4507 }
4508 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004509
Nate Begemanb9a47b82009-02-23 08:49:38 +00004510 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
4511 // the shuffle mask. If a quad is scored as -1, that means that it contains
4512 // words from all 4 input quadwords.
4513 SDValue NewV;
4514 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004515 SmallVector<int, 8> MaskV;
4516 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
4517 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00004518 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004519 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
4520 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
4521 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004522
Nate Begemanb9a47b82009-02-23 08:49:38 +00004523 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
4524 // source words for the shuffle, to aid later transformations.
4525 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00004526 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00004527 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004528 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00004529 if (idx != (int)i)
4530 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004531 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00004532 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004533 AllWordsInNewV = false;
4534 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00004535 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004536
Nate Begemanb9a47b82009-02-23 08:49:38 +00004537 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
4538 if (AllWordsInNewV) {
4539 for (int i = 0; i != 8; ++i) {
4540 int idx = MaskVals[i];
4541 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004542 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004543 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004544 if ((idx != i) && idx < 4)
4545 pshufhw = false;
4546 if ((idx != i) && idx > 3)
4547 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00004548 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00004549 V1 = NewV;
4550 V2Used = false;
4551 BestLoQuad = 0;
4552 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004553 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004554
Nate Begemanb9a47b82009-02-23 08:49:38 +00004555 // If we've eliminated the use of V2, and the new mask is a pshuflw or
4556 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00004557 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004558 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
4559 unsigned TargetMask = 0;
4560 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00004561 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004562 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
4563 X86::getShufflePSHUFLWImmediate(NewV.getNode());
4564 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004565 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00004566 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004567 }
Eric Christopherfd179292009-08-27 18:07:15 +00004568
Nate Begemanb9a47b82009-02-23 08:49:38 +00004569 // If we have SSSE3, and all words of the result are from 1 input vector,
4570 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
4571 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004572 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004573 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004574
Nate Begemanb9a47b82009-02-23 08:49:38 +00004575 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00004576 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00004577 // mask, and elements that come from V1 in the V2 mask, so that the two
4578 // results can be OR'd together.
4579 bool TwoInputs = V1Used && V2Used;
4580 for (unsigned i = 0; i != 8; ++i) {
4581 int EltIdx = MaskVals[i] * 2;
4582 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004583 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4584 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004585 continue;
4586 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004587 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
4588 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004589 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004590 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004591 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004592 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004593 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004594 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004595 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004596
Nate Begemanb9a47b82009-02-23 08:49:38 +00004597 // Calculate the shuffle mask for the second input, shuffle it, and
4598 // OR it with the first shuffled input.
4599 pshufbMask.clear();
4600 for (unsigned i = 0; i != 8; ++i) {
4601 int EltIdx = MaskVals[i] * 2;
4602 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004603 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4604 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004605 continue;
4606 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004607 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
4608 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004609 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004610 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00004611 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004612 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004613 MVT::v16i8, &pshufbMask[0], 16));
4614 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004615 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004616 }
4617
4618 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
4619 // and update MaskVals with new element order.
4620 BitVector InOrder(8);
4621 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004622 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004623 for (int i = 0; i != 4; ++i) {
4624 int idx = MaskVals[i];
4625 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004626 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004627 InOrder.set(i);
4628 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004629 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004630 InOrder.set(i);
4631 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004632 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004633 }
4634 }
4635 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004636 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00004637 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004638 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004639
4640 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4641 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
4642 NewV.getOperand(0),
4643 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
4644 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004645 }
Eric Christopherfd179292009-08-27 18:07:15 +00004646
Nate Begemanb9a47b82009-02-23 08:49:38 +00004647 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
4648 // and update MaskVals with the new element order.
4649 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004650 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004651 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004652 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004653 for (unsigned i = 4; i != 8; ++i) {
4654 int idx = MaskVals[i];
4655 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004656 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004657 InOrder.set(i);
4658 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004659 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004660 InOrder.set(i);
4661 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004662 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004663 }
4664 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004665 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004666 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004667
4668 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4669 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
4670 NewV.getOperand(0),
4671 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
4672 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004673 }
Eric Christopherfd179292009-08-27 18:07:15 +00004674
Nate Begemanb9a47b82009-02-23 08:49:38 +00004675 // In case BestHi & BestLo were both -1, which means each quadword has a word
4676 // from each of the four input quadwords, calculate the InOrder bitvector now
4677 // before falling through to the insert/extract cleanup.
4678 if (BestLoQuad == -1 && BestHiQuad == -1) {
4679 NewV = V1;
4680 for (int i = 0; i != 8; ++i)
4681 if (MaskVals[i] < 0 || MaskVals[i] == i)
4682 InOrder.set(i);
4683 }
Eric Christopherfd179292009-08-27 18:07:15 +00004684
Nate Begemanb9a47b82009-02-23 08:49:38 +00004685 // The other elements are put in the right place using pextrw and pinsrw.
4686 for (unsigned i = 0; i != 8; ++i) {
4687 if (InOrder[i])
4688 continue;
4689 int EltIdx = MaskVals[i];
4690 if (EltIdx < 0)
4691 continue;
4692 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00004693 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004694 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00004695 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004696 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00004697 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004698 DAG.getIntPtrConstant(i));
4699 }
4700 return NewV;
4701}
4702
4703// v16i8 shuffles - Prefer shuffles in the following order:
4704// 1. [ssse3] 1 x pshufb
4705// 2. [ssse3] 2 x pshufb + 1 x por
4706// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
4707static
Nate Begeman9008ca62009-04-27 18:41:29 +00004708SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00004709 SelectionDAG &DAG,
4710 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004711 SDValue V1 = SVOp->getOperand(0);
4712 SDValue V2 = SVOp->getOperand(1);
4713 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004714 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00004715 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00004716
Nate Begemanb9a47b82009-02-23 08:49:38 +00004717 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00004718 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00004719 // present, fall back to case 3.
4720 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
4721 bool V1Only = true;
4722 bool V2Only = true;
4723 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004724 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00004725 if (EltIdx < 0)
4726 continue;
4727 if (EltIdx < 16)
4728 V2Only = false;
4729 else
4730 V1Only = false;
4731 }
Eric Christopherfd179292009-08-27 18:07:15 +00004732
Nate Begemanb9a47b82009-02-23 08:49:38 +00004733 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
4734 if (TLI.getSubtarget()->hasSSSE3()) {
4735 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004736
Nate Begemanb9a47b82009-02-23 08:49:38 +00004737 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00004738 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00004739 //
4740 // Otherwise, we have elements from both input vectors, and must zero out
4741 // elements that come from V2 in the first mask, and V1 in the second mask
4742 // so that we can OR them together.
4743 bool TwoInputs = !(V1Only || V2Only);
4744 for (unsigned i = 0; i != 16; ++i) {
4745 int EltIdx = MaskVals[i];
4746 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004747 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004748 continue;
4749 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004750 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004751 }
4752 // If all the elements are from V2, assign it to V1 and return after
4753 // building the first pshufb.
4754 if (V2Only)
4755 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00004756 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004757 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004758 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004759 if (!TwoInputs)
4760 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00004761
Nate Begemanb9a47b82009-02-23 08:49:38 +00004762 // Calculate the shuffle mask for the second input, shuffle it, and
4763 // OR it with the first shuffled input.
4764 pshufbMask.clear();
4765 for (unsigned i = 0; i != 16; ++i) {
4766 int EltIdx = MaskVals[i];
4767 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004768 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004769 continue;
4770 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004771 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004772 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004773 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004774 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004775 MVT::v16i8, &pshufbMask[0], 16));
4776 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004777 }
Eric Christopherfd179292009-08-27 18:07:15 +00004778
Nate Begemanb9a47b82009-02-23 08:49:38 +00004779 // No SSSE3 - Calculate in place words and then fix all out of place words
4780 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
4781 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004782 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
4783 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004784 SDValue NewV = V2Only ? V2 : V1;
4785 for (int i = 0; i != 8; ++i) {
4786 int Elt0 = MaskVals[i*2];
4787 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00004788
Nate Begemanb9a47b82009-02-23 08:49:38 +00004789 // This word of the result is all undef, skip it.
4790 if (Elt0 < 0 && Elt1 < 0)
4791 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004792
Nate Begemanb9a47b82009-02-23 08:49:38 +00004793 // This word of the result is already in the correct place, skip it.
4794 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
4795 continue;
4796 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
4797 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004798
Nate Begemanb9a47b82009-02-23 08:49:38 +00004799 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
4800 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
4801 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00004802
4803 // If Elt0 and Elt1 are defined, are consecutive, and can be load
4804 // using a single extract together, load it and store it.
4805 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004806 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00004807 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00004808 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00004809 DAG.getIntPtrConstant(i));
4810 continue;
4811 }
4812
Nate Begemanb9a47b82009-02-23 08:49:38 +00004813 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00004814 // source byte is not also odd, shift the extracted word left 8 bits
4815 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00004816 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004817 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004818 DAG.getIntPtrConstant(Elt1 / 2));
4819 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004820 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004821 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00004822 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004823 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
4824 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004825 }
4826 // If Elt0 is defined, extract it from the appropriate source. If the
4827 // source byte is not also even, shift the extracted word right 8 bits. If
4828 // Elt1 was also defined, OR the extracted values together before
4829 // inserting them in the result.
4830 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004831 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004832 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
4833 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004834 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004835 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00004836 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004837 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
4838 DAG.getConstant(0x00FF, MVT::i16));
4839 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00004840 : InsElt0;
4841 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004842 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004843 DAG.getIntPtrConstant(i));
4844 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004845 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004846}
4847
Evan Cheng7a831ce2007-12-15 03:00:47 +00004848/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004849/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00004850/// done when every pair / quad of shuffle mask elements point to elements in
4851/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004852/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00004853static
Nate Begeman9008ca62009-04-27 18:41:29 +00004854SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00004855 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00004856 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00004857 SDValue V1 = SVOp->getOperand(0);
4858 SDValue V2 = SVOp->getOperand(1);
4859 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00004860 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004861 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00004862 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004863 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00004864 case MVT::v4f32: NewVT = MVT::v2f64; break;
4865 case MVT::v4i32: NewVT = MVT::v2i64; break;
4866 case MVT::v8i16: NewVT = MVT::v4i32; break;
4867 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00004868 }
4869
Nate Begeman9008ca62009-04-27 18:41:29 +00004870 int Scale = NumElems / NewWidth;
4871 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00004872 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004873 int StartIdx = -1;
4874 for (int j = 0; j < Scale; ++j) {
4875 int EltIdx = SVOp->getMaskElt(i+j);
4876 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004877 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00004878 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00004879 StartIdx = EltIdx - (EltIdx % Scale);
4880 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00004881 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00004882 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004883 if (StartIdx == -1)
4884 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00004885 else
Nate Begeman9008ca62009-04-27 18:41:29 +00004886 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004887 }
4888
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004889 V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
4890 V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00004891 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004892}
4893
Evan Chengd880b972008-05-09 21:53:03 +00004894/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004895///
Owen Andersone50ed302009-08-10 22:56:29 +00004896static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00004897 SDValue SrcOp, SelectionDAG &DAG,
4898 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004899 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004900 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00004901 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00004902 LD = dyn_cast<LoadSDNode>(SrcOp);
4903 if (!LD) {
4904 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
4905 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00004906 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00004907 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00004908 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004909 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00004910 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004911 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00004912 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004913 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004914 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
4915 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
4916 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00004917 SrcOp.getOperand(0)
4918 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00004919 }
4920 }
4921 }
4922
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,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004925 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00004926 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00004927}
4928
Evan Chengace3c172008-07-22 21:13:36 +00004929/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
4930/// shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004931static SDValue
Nate Begeman9008ca62009-04-27 18:41:29 +00004932LowerVECTOR_SHUFFLE_4wide(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
4933 SDValue V1 = SVOp->getOperand(0);
4934 SDValue V2 = SVOp->getOperand(1);
4935 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00004936 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00004937
Evan Chengace3c172008-07-22 21:13:36 +00004938 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00004939 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00004940 SmallVector<int, 8> Mask1(4U, -1);
4941 SmallVector<int, 8> PermMask;
4942 SVOp->getMask(PermMask);
4943
Evan Chengace3c172008-07-22 21:13:36 +00004944 unsigned NumHi = 0;
4945 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00004946 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004947 int Idx = PermMask[i];
4948 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00004949 Locs[i] = std::make_pair(-1, -1);
4950 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004951 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
4952 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00004953 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00004954 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004955 NumLo++;
4956 } else {
4957 Locs[i] = std::make_pair(1, NumHi);
4958 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00004959 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004960 NumHi++;
4961 }
4962 }
4963 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004964
Evan Chengace3c172008-07-22 21:13:36 +00004965 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004966 // If no more than two elements come from either vector. This can be
4967 // implemented with two shuffles. First shuffle gather the elements.
4968 // The second shuffle, which takes the first shuffle as both of its
4969 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00004970 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004971
Nate Begeman9008ca62009-04-27 18:41:29 +00004972 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00004973
Evan Chengace3c172008-07-22 21:13:36 +00004974 for (unsigned i = 0; i != 4; ++i) {
4975 if (Locs[i].first == -1)
4976 continue;
4977 else {
4978 unsigned Idx = (i < 2) ? 0 : 4;
4979 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00004980 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004981 }
4982 }
4983
Nate Begeman9008ca62009-04-27 18:41:29 +00004984 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004985 } else if (NumLo == 3 || NumHi == 3) {
4986 // Otherwise, we must have three elements from one vector, call it X, and
4987 // one element from the other, call it Y. First, use a shufps to build an
4988 // intermediate vector with the one element from Y and the element from X
4989 // that will be in the same half in the final destination (the indexes don't
4990 // matter). Then, use a shufps to build the final vector, taking the half
4991 // containing the element from Y from the intermediate, and the other half
4992 // from X.
4993 if (NumHi == 3) {
4994 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00004995 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004996 std::swap(V1, V2);
4997 }
4998
4999 // Find the element from V2.
5000 unsigned HiIndex;
5001 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005002 int Val = PermMask[HiIndex];
5003 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005004 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005005 if (Val >= 4)
5006 break;
5007 }
5008
Nate Begeman9008ca62009-04-27 18:41:29 +00005009 Mask1[0] = PermMask[HiIndex];
5010 Mask1[1] = -1;
5011 Mask1[2] = PermMask[HiIndex^1];
5012 Mask1[3] = -1;
5013 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005014
5015 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005016 Mask1[0] = PermMask[0];
5017 Mask1[1] = PermMask[1];
5018 Mask1[2] = HiIndex & 1 ? 6 : 4;
5019 Mask1[3] = HiIndex & 1 ? 4 : 6;
5020 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005021 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005022 Mask1[0] = HiIndex & 1 ? 2 : 0;
5023 Mask1[1] = HiIndex & 1 ? 0 : 2;
5024 Mask1[2] = PermMask[2];
5025 Mask1[3] = PermMask[3];
5026 if (Mask1[2] >= 0)
5027 Mask1[2] += 4;
5028 if (Mask1[3] >= 0)
5029 Mask1[3] += 4;
5030 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005031 }
Evan Chengace3c172008-07-22 21:13:36 +00005032 }
5033
5034 // Break it into (shuffle shuffle_hi, shuffle_lo).
5035 Locs.clear();
Nate Begeman9008ca62009-04-27 18:41:29 +00005036 SmallVector<int,8> LoMask(4U, -1);
5037 SmallVector<int,8> HiMask(4U, -1);
5038
5039 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00005040 unsigned MaskIdx = 0;
5041 unsigned LoIdx = 0;
5042 unsigned HiIdx = 2;
5043 for (unsigned i = 0; i != 4; ++i) {
5044 if (i == 2) {
5045 MaskPtr = &HiMask;
5046 MaskIdx = 1;
5047 LoIdx = 0;
5048 HiIdx = 2;
5049 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005050 int Idx = PermMask[i];
5051 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005052 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005053 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005054 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005055 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005056 LoIdx++;
5057 } else {
5058 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005059 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005060 HiIdx++;
5061 }
5062 }
5063
Nate Begeman9008ca62009-04-27 18:41:29 +00005064 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5065 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5066 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00005067 for (unsigned i = 0; i != 4; ++i) {
5068 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005069 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00005070 } else {
5071 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005072 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00005073 }
5074 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005075 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00005076}
5077
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005078static bool MayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005079 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005080 V = V.getOperand(0);
5081 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5082 V = V.getOperand(0);
5083 if (MayFoldLoad(V))
5084 return true;
5085 return false;
5086}
5087
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005088// FIXME: the version above should always be used. Since there's
5089// a bug where several vector shuffles can't be folded because the
5090// DAG is not updated during lowering and a node claims to have two
5091// uses while it only has one, use this version, and let isel match
5092// another instruction if the load really happens to have more than
5093// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00005094// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005095static bool RelaxedMayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005096 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005097 V = V.getOperand(0);
5098 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5099 V = V.getOperand(0);
5100 if (ISD::isNormalLoad(V.getNode()))
5101 return true;
5102 return false;
5103}
5104
5105/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5106/// a vector extract, and if both can be later optimized into a single load.
5107/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5108/// here because otherwise a target specific shuffle node is going to be
5109/// emitted for this shuffle, and the optimization not done.
5110/// FIXME: This is probably not the best approach, but fix the problem
5111/// until the right path is decided.
5112static
5113bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5114 const TargetLowering &TLI) {
5115 EVT VT = V.getValueType();
5116 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5117
5118 // Be sure that the vector shuffle is present in a pattern like this:
5119 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5120 if (!V.hasOneUse())
5121 return false;
5122
5123 SDNode *N = *V.getNode()->use_begin();
5124 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5125 return false;
5126
5127 SDValue EltNo = N->getOperand(1);
5128 if (!isa<ConstantSDNode>(EltNo))
5129 return false;
5130
5131 // If the bit convert changed the number of elements, it is unsafe
5132 // to examine the mask.
5133 bool HasShuffleIntoBitcast = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005134 if (V.getOpcode() == ISD::BITCAST) {
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005135 EVT SrcVT = V.getOperand(0).getValueType();
5136 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5137 return false;
5138 V = V.getOperand(0);
5139 HasShuffleIntoBitcast = true;
5140 }
5141
5142 // Select the input vector, guarding against out of range extract vector.
5143 unsigned NumElems = VT.getVectorNumElements();
5144 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5145 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5146 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5147
5148 // Skip one more bit_convert if necessary
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005149 if (V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005150 V = V.getOperand(0);
5151
5152 if (ISD::isNormalLoad(V.getNode())) {
5153 // Is the original load suitable?
5154 LoadSDNode *LN0 = cast<LoadSDNode>(V);
5155
5156 // FIXME: avoid the multi-use bug that is preventing lots of
5157 // of foldings to be detected, this is still wrong of course, but
5158 // give the temporary desired behavior, and if it happens that
5159 // the load has real more uses, during isel it will not fold, and
5160 // will generate poor code.
5161 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
5162 return false;
5163
5164 if (!HasShuffleIntoBitcast)
5165 return true;
5166
5167 // If there's a bitcast before the shuffle, check if the load type and
5168 // alignment is valid.
5169 unsigned Align = LN0->getAlignment();
5170 unsigned NewAlign =
5171 TLI.getTargetData()->getABITypeAlignment(
5172 VT.getTypeForEVT(*DAG.getContext()));
5173
5174 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
5175 return false;
5176 }
5177
5178 return true;
5179}
5180
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005181static
Evan Cheng835580f2010-10-07 20:50:20 +00005182SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
5183 EVT VT = Op.getValueType();
5184
5185 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005186 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
5187 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00005188 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
5189 V1, DAG));
5190}
5191
5192static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005193SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
5194 bool HasSSE2) {
5195 SDValue V1 = Op.getOperand(0);
5196 SDValue V2 = Op.getOperand(1);
5197 EVT VT = Op.getValueType();
5198
5199 assert(VT != MVT::v2i64 && "unsupported shuffle type");
5200
5201 if (HasSSE2 && VT == MVT::v2f64)
5202 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
5203
5204 // v4f32 or v4i32
5205 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
5206}
5207
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005208static
5209SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
5210 SDValue V1 = Op.getOperand(0);
5211 SDValue V2 = Op.getOperand(1);
5212 EVT VT = Op.getValueType();
5213
5214 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
5215 "unsupported shuffle type");
5216
5217 if (V2.getOpcode() == ISD::UNDEF)
5218 V2 = V1;
5219
5220 // v4i32 or v4f32
5221 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
5222}
5223
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005224static
5225SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
5226 SDValue V1 = Op.getOperand(0);
5227 SDValue V2 = Op.getOperand(1);
5228 EVT VT = Op.getValueType();
5229 unsigned NumElems = VT.getVectorNumElements();
5230
5231 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
5232 // operand of these instructions is only memory, so check if there's a
5233 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
5234 // same masks.
5235 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005236
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00005237 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005238 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005239 CanFoldLoad = true;
5240
5241 // When V1 is a load, it can be folded later into a store in isel, example:
5242 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
5243 // turns into:
5244 // (MOVLPSmr addr:$src1, VR128:$src2)
5245 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005246 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005247 CanFoldLoad = true;
5248
5249 if (CanFoldLoad) {
5250 if (HasSSE2 && NumElems == 2)
5251 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
5252
5253 if (NumElems == 4)
5254 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
5255 }
5256
5257 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5258 // movl and movlp will both match v2i64, but v2i64 is never matched by
5259 // movl earlier because we make it strict to avoid messing with the movlp load
5260 // folding logic (see the code above getMOVLP call). Match it here then,
5261 // this is horrible, but will stay like this until we move all shuffle
5262 // matching to x86 specific nodes. Note that for the 1st condition all
5263 // types are matched with movsd.
5264 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
5265 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5266 else if (HasSSE2)
5267 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5268
5269
5270 assert(VT != MVT::v4i32 && "unsupported shuffle type");
5271
5272 // Invert the operand order and use SHUFPS to match it.
5273 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
5274 X86::getShuffleSHUFImmediate(SVOp), DAG);
5275}
5276
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005277static inline unsigned getUNPCKLOpcode(EVT VT) {
5278 switch(VT.getSimpleVT().SimpleTy) {
5279 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
5280 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
5281 case MVT::v4f32: return X86ISD::UNPCKLPS;
5282 case MVT::v2f64: return X86ISD::UNPCKLPD;
5283 case MVT::v16i8: return X86ISD::PUNPCKLBW;
5284 case MVT::v8i16: return X86ISD::PUNPCKLWD;
5285 default:
5286 llvm_unreachable("Unknow type for unpckl");
5287 }
5288 return 0;
5289}
5290
5291static inline unsigned getUNPCKHOpcode(EVT VT) {
5292 switch(VT.getSimpleVT().SimpleTy) {
5293 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
5294 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
5295 case MVT::v4f32: return X86ISD::UNPCKHPS;
5296 case MVT::v2f64: return X86ISD::UNPCKHPD;
5297 case MVT::v16i8: return X86ISD::PUNPCKHBW;
5298 case MVT::v8i16: return X86ISD::PUNPCKHWD;
5299 default:
5300 llvm_unreachable("Unknow type for unpckh");
5301 }
5302 return 0;
5303}
5304
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005305static
5306SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005307 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005308 const X86Subtarget *Subtarget) {
5309 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5310 EVT VT = Op.getValueType();
5311 DebugLoc dl = Op.getDebugLoc();
5312 SDValue V1 = Op.getOperand(0);
5313 SDValue V2 = Op.getOperand(1);
5314
5315 if (isZeroShuffle(SVOp))
5316 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
5317
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005318 // Handle splat operations
5319 if (SVOp->isSplat()) {
5320 // Special case, this is the only place now where it's
5321 // allowed to return a vector_shuffle operation without
5322 // using a target specific node, because *hopefully* it
5323 // will be optimized away by the dag combiner.
5324 if (VT.getVectorNumElements() <= 4 &&
5325 CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
5326 return Op;
5327
5328 // Handle splats by matching through known masks
5329 if (VT.getVectorNumElements() <= 4)
5330 return SDValue();
5331
Evan Cheng835580f2010-10-07 20:50:20 +00005332 // Canonicalize all of the remaining to v4f32.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005333 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005334 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005335
5336 // If the shuffle can be profitably rewritten as a narrower shuffle, then
5337 // do it!
5338 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
5339 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5340 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005341 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005342 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
5343 // FIXME: Figure out a cleaner way to do this.
5344 // Try to make use of movq to zero out the top part.
5345 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
5346 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5347 if (NewOp.getNode()) {
5348 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
5349 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
5350 DAG, Subtarget, dl);
5351 }
5352 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
5353 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5354 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
5355 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
5356 DAG, Subtarget, dl);
5357 }
5358 }
5359 return SDValue();
5360}
5361
Dan Gohman475871a2008-07-27 21:46:04 +00005362SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005363X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00005364 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005365 SDValue V1 = Op.getOperand(0);
5366 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005367 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005368 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00005369 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005370 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005371 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
5372 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00005373 bool V1IsSplat = false;
5374 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005375 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005376 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005377 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005378 MachineFunction &MF = DAG.getMachineFunction();
5379 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005380
Dale Johannesen0488fb62010-09-30 23:57:10 +00005381 // Shuffle operations on MMX not supported.
5382 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00005383 return Op;
5384
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005385 // Vector shuffle lowering takes 3 steps:
5386 //
5387 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
5388 // narrowing and commutation of operands should be handled.
5389 // 2) Matching of shuffles with known shuffle masks to x86 target specific
5390 // shuffle nodes.
5391 // 3) Rewriting of unmatched masks into new generic shuffle operations,
5392 // so the shuffle can be broken into other shuffles and the legalizer can
5393 // try the lowering again.
5394 //
5395 // The general ideia is that no vector_shuffle operation should be left to
5396 // be matched during isel, all of them must be converted to a target specific
5397 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00005398
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005399 // Normalize the input vectors. Here splats, zeroed vectors, profitable
5400 // narrowing and commutation of operands should be handled. The actual code
5401 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005402 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005403 if (NewOp.getNode())
5404 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00005405
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005406 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
5407 // unpckh_undef). Only use pshufd if speed is more important than size.
5408 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
5409 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5410 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
5411 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
5412 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5413 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00005414
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005415 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00005416 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00005417 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005418
Dale Johannesen0488fb62010-09-30 23:57:10 +00005419 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005420 return getMOVHighToLow(Op, dl, DAG);
5421
5422 // Use to match splats
5423 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
5424 (VT == MVT::v2f64 || VT == MVT::v2i64))
5425 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5426
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005427 if (X86::isPSHUFDMask(SVOp)) {
5428 // The actual implementation will match the mask in the if above and then
5429 // during isel it can match several different instructions, not only pshufd
5430 // as its name says, sad but true, emulate the behavior for now...
5431 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
5432 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
5433
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005434 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5435
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005436 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005437 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
5438
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005439 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005440 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
5441 TargetMask, DAG);
5442
5443 if (VT == MVT::v4f32)
5444 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
5445 TargetMask, DAG);
5446 }
Eric Christopherfd179292009-08-27 18:07:15 +00005447
Evan Chengf26ffe92008-05-29 08:22:04 +00005448 // Check if this can be converted into a logical shift.
5449 bool isLeft = false;
5450 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00005451 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00005452 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00005453 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00005454 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005455 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00005456 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005457 EVT EltVT = VT.getVectorElementType();
5458 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005459 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005460 }
Eric Christopherfd179292009-08-27 18:07:15 +00005461
Nate Begeman9008ca62009-04-27 18:41:29 +00005462 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005463 if (V1IsUndef)
5464 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00005465 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00005466 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00005467 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005468 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005469 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5470
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005471 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005472 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5473 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00005474 }
Eric Christopherfd179292009-08-27 18:07:15 +00005475
Nate Begeman9008ca62009-04-27 18:41:29 +00005476 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00005477 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
5478 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005479
Dale Johannesen0488fb62010-09-30 23:57:10 +00005480 if (X86::isMOVHLPSMask(SVOp))
5481 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005482
Dale Johannesen0488fb62010-09-30 23:57:10 +00005483 if (X86::isMOVSHDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5484 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005485
Dale Johannesen0488fb62010-09-30 23:57:10 +00005486 if (X86::isMOVSLDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5487 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00005488
Dale Johannesen0488fb62010-09-30 23:57:10 +00005489 if (X86::isMOVLPMask(SVOp))
5490 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005491
Nate Begeman9008ca62009-04-27 18:41:29 +00005492 if (ShouldXformToMOVHLPS(SVOp) ||
5493 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
5494 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005495
Evan Chengf26ffe92008-05-29 08:22:04 +00005496 if (isShift) {
5497 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005498 EVT EltVT = VT.getVectorElementType();
5499 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005500 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005501 }
Eric Christopherfd179292009-08-27 18:07:15 +00005502
Evan Cheng9eca5e82006-10-25 21:49:50 +00005503 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00005504 // FIXME: This should also accept a bitcast of a splat? Be careful, not
5505 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00005506 V1IsSplat = isSplatVector(V1.getNode());
5507 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005508
Chris Lattner8a594482007-11-25 00:24:49 +00005509 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00005510 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005511 Op = CommuteVectorShuffle(SVOp, DAG);
5512 SVOp = cast<ShuffleVectorSDNode>(Op);
5513 V1 = SVOp->getOperand(0);
5514 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00005515 std::swap(V1IsSplat, V2IsSplat);
5516 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005517 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00005518 }
5519
Nate Begeman9008ca62009-04-27 18:41:29 +00005520 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
5521 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00005522 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00005523 return V1;
5524 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
5525 // the instruction selector will not match, so get a canonical MOVL with
5526 // swapped operands to undo the commute.
5527 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00005528 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005529
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005530 if (X86::isUNPCKLMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005531 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005532
5533 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005534 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00005535
Evan Cheng9bbbb982006-10-25 20:48:19 +00005536 if (V2IsSplat) {
5537 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00005538 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00005539 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00005540 SDValue NewMask = NormalizeMask(SVOp, DAG);
5541 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
5542 if (NSVOp != SVOp) {
5543 if (X86::isUNPCKLMask(NSVOp, true)) {
5544 return NewMask;
5545 } else if (X86::isUNPCKHMask(NSVOp, true)) {
5546 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005547 }
5548 }
5549 }
5550
Evan Cheng9eca5e82006-10-25 21:49:50 +00005551 if (Commuted) {
5552 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00005553 // FIXME: this seems wrong.
5554 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
5555 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005556
5557 if (X86::isUNPCKLMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005558 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005559
5560 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005561 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005562 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005563
Nate Begeman9008ca62009-04-27 18:41:29 +00005564 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00005565 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00005566 return CommuteVectorShuffle(SVOp, DAG);
5567
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00005568 // The checks below are all present in isShuffleMaskLegal, but they are
5569 // inlined here right now to enable us to directly emit target specific
5570 // nodes, and remove one by one until they don't return Op anymore.
5571 SmallVector<int, 16> M;
5572 SVOp->getMask(M);
5573
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005574 if (isPALIGNRMask(M, VT, HasSSSE3))
5575 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
5576 X86::getShufflePALIGNRImmediate(SVOp),
5577 DAG);
5578
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00005579 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
5580 SVOp->getSplatIndex() == 0 && V2IsUndef) {
5581 if (VT == MVT::v2f64)
5582 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
5583 if (VT == MVT::v2i64)
5584 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
5585 }
5586
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00005587 if (isPSHUFHWMask(M, VT))
5588 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
5589 X86::getShufflePSHUFHWImmediate(SVOp),
5590 DAG);
5591
5592 if (isPSHUFLWMask(M, VT))
5593 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
5594 X86::getShufflePSHUFLWImmediate(SVOp),
5595 DAG);
5596
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00005597 if (isSHUFPMask(M, VT)) {
5598 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5599 if (VT == MVT::v4f32 || VT == MVT::v4i32)
5600 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
5601 TargetMask, DAG);
5602 if (VT == MVT::v2f64 || VT == MVT::v2i64)
5603 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
5604 TargetMask, DAG);
5605 }
5606
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005607 if (X86::isUNPCKL_v_undef_Mask(SVOp))
5608 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5609 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
5610 if (X86::isUNPCKH_v_undef_Mask(SVOp))
5611 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5612 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5613
Evan Cheng14b32e12007-12-11 01:46:18 +00005614 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
Owen Anderson825b72b2009-08-11 20:47:22 +00005615 if (VT == MVT::v8i16) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005616 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005617 if (NewOp.getNode())
Evan Cheng14b32e12007-12-11 01:46:18 +00005618 return NewOp;
5619 }
5620
Owen Anderson825b72b2009-08-11 20:47:22 +00005621 if (VT == MVT::v16i8) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005622 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005623 if (NewOp.getNode())
5624 return NewOp;
5625 }
Eric Christopherfd179292009-08-27 18:07:15 +00005626
Dale Johannesen0488fb62010-09-30 23:57:10 +00005627 // Handle all 4 wide cases with a number of shuffles.
5628 if (NumElems == 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005629 return LowerVECTOR_SHUFFLE_4wide(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005630
Dan Gohman475871a2008-07-27 21:46:04 +00005631 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005632}
5633
Dan Gohman475871a2008-07-27 21:46:04 +00005634SDValue
5635X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00005636 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005637 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005638 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005639 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005640 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005641 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005642 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005643 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005644 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005645 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00005646 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
5647 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
5648 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005649 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
5650 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005651 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005652 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00005653 Op.getOperand(0)),
5654 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00005655 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005656 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005657 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005658 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005659 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00005660 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00005661 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
5662 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005663 // result has a single use which is a store or a bitcast to i32. And in
5664 // the case of a store, it's not worth it if the index is a constant 0,
5665 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00005666 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00005667 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00005668 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005669 if ((User->getOpcode() != ISD::STORE ||
5670 (isa<ConstantSDNode>(Op.getOperand(1)) &&
5671 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005672 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00005673 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00005674 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00005675 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005676 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00005677 Op.getOperand(0)),
5678 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005679 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Owen Anderson825b72b2009-08-11 20:47:22 +00005680 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00005681 // ExtractPS works with constant index.
5682 if (isa<ConstantSDNode>(Op.getOperand(1)))
5683 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00005684 }
Dan Gohman475871a2008-07-27 21:46:04 +00005685 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005686}
5687
5688
Dan Gohman475871a2008-07-27 21:46:04 +00005689SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005690X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
5691 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005692 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00005693 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005694
Evan Cheng62a3f152008-03-24 21:52:23 +00005695 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005696 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005697 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00005698 return Res;
5699 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00005700
Owen Andersone50ed302009-08-10 22:56:29 +00005701 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005702 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005703 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005704 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005705 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005706 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005707 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005708 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
5709 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005710 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005711 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00005712 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005713 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00005714 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00005715 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00005716 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00005717 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00005718 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005719 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005720 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005721 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005722 if (Idx == 0)
5723 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00005724
Evan Cheng0db9fe62006-04-25 20:13:52 +00005725 // SHUFPS the element to the lowest double word, then movss.
Nate Begeman9008ca62009-04-27 18:41:29 +00005726 int Mask[4] = { Idx, -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00005727 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00005728 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00005729 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00005730 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00005731 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00005732 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00005733 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
5734 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
5735 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005736 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005737 if (Idx == 0)
5738 return Op;
5739
5740 // UNPCKHPD the element to the lowest double word, then movsd.
5741 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
5742 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00005743 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00005744 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00005745 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00005746 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00005747 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00005748 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005749 }
5750
Dan Gohman475871a2008-07-27 21:46:04 +00005751 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005752}
5753
Dan Gohman475871a2008-07-27 21:46:04 +00005754SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005755X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
5756 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005757 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00005758 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005759 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005760
Dan Gohman475871a2008-07-27 21:46:04 +00005761 SDValue N0 = Op.getOperand(0);
5762 SDValue N1 = Op.getOperand(1);
5763 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00005764
Dan Gohman8a55ce42009-09-23 21:02:20 +00005765 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00005766 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00005767 unsigned Opc;
5768 if (VT == MVT::v8i16)
5769 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00005770 else if (VT == MVT::v16i8)
5771 Opc = X86ISD::PINSRB;
5772 else
5773 Opc = X86ISD::PINSRB;
5774
Nate Begeman14d12ca2008-02-11 04:19:36 +00005775 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
5776 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00005777 if (N1.getValueType() != MVT::i32)
5778 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
5779 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005780 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00005781 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00005782 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00005783 // Bits [7:6] of the constant are the source select. This will always be
5784 // zero here. The DAG Combiner may combine an extract_elt index into these
5785 // bits. For example (insert (extract, 3), 2) could be matched by putting
5786 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00005787 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00005788 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00005789 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00005790 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005791 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00005792 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00005793 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00005794 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00005795 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00005796 // PINSR* works with constant index.
5797 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00005798 }
Dan Gohman475871a2008-07-27 21:46:04 +00005799 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005800}
5801
Dan Gohman475871a2008-07-27 21:46:04 +00005802SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005803X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005804 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00005805 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005806
5807 if (Subtarget->hasSSE41())
5808 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
5809
Dan Gohman8a55ce42009-09-23 21:02:20 +00005810 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00005811 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00005812
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005813 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00005814 SDValue N0 = Op.getOperand(0);
5815 SDValue N1 = Op.getOperand(1);
5816 SDValue N2 = Op.getOperand(2);
Evan Cheng794405e2007-12-12 07:55:34 +00005817
Dan Gohman8a55ce42009-09-23 21:02:20 +00005818 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00005819 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
5820 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00005821 if (N1.getValueType() != MVT::i32)
5822 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
5823 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005824 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00005825 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005826 }
Dan Gohman475871a2008-07-27 21:46:04 +00005827 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005828}
5829
Dan Gohman475871a2008-07-27 21:46:04 +00005830SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005831X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005832 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00005833
Chris Lattnerf172ecd2010-07-04 23:07:25 +00005834 if (Op.getValueType() == MVT::v1i64 &&
5835 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00005836 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00005837
Owen Anderson825b72b2009-08-11 20:47:22 +00005838 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00005839 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
5840 "Expected an SSE type!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005841 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00005842 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005843}
5844
Bill Wendling056292f2008-09-16 21:48:12 +00005845// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
5846// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
5847// one of the above mentioned nodes. It has to be wrapped because otherwise
5848// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
5849// be used to form addressing mode. These wrapped nodes will be selected
5850// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00005851SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005852X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005853 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00005854
Chris Lattner41621a22009-06-26 19:22:52 +00005855 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5856 // global base reg.
5857 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00005858 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005859 CodeModel::Model M = getTargetMachine().getCodeModel();
5860
Chris Lattner4f066492009-07-11 20:29:19 +00005861 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005862 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005863 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005864 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005865 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005866 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005867 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005868
Evan Cheng1606e8e2009-03-13 07:51:59 +00005869 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00005870 CP->getAlignment(),
5871 CP->getOffset(), OpFlag);
5872 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00005873 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005874 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00005875 if (OpFlag) {
5876 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005877 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005878 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005879 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005880 }
5881
5882 return Result;
5883}
5884
Dan Gohmand858e902010-04-17 15:26:15 +00005885SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00005886 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00005887
Chris Lattner18c59872009-06-27 04:16:01 +00005888 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5889 // global base reg.
5890 unsigned char OpFlag = 0;
5891 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005892 CodeModel::Model M = getTargetMachine().getCodeModel();
5893
Chris Lattner4f066492009-07-11 20:29:19 +00005894 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005895 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005896 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005897 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005898 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005899 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005900 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005901
Chris Lattner18c59872009-06-27 04:16:01 +00005902 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
5903 OpFlag);
5904 DebugLoc DL = JT->getDebugLoc();
5905 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005906
Chris Lattner18c59872009-06-27 04:16:01 +00005907 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00005908 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00005909 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
5910 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005911 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00005912 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005913
Chris Lattner18c59872009-06-27 04:16:01 +00005914 return Result;
5915}
5916
5917SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005918X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00005919 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00005920
Chris Lattner18c59872009-06-27 04:16:01 +00005921 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5922 // global base reg.
5923 unsigned char OpFlag = 0;
5924 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005925 CodeModel::Model M = getTargetMachine().getCodeModel();
5926
Chris Lattner4f066492009-07-11 20:29:19 +00005927 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005928 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005929 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005930 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005931 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005932 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005933 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005934
Chris Lattner18c59872009-06-27 04:16:01 +00005935 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00005936
Chris Lattner18c59872009-06-27 04:16:01 +00005937 DebugLoc DL = Op.getDebugLoc();
5938 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005939
5940
Chris Lattner18c59872009-06-27 04:16:01 +00005941 // With PIC, the address is actually $g + Offset.
5942 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00005943 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00005944 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
5945 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005946 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00005947 Result);
5948 }
Eric Christopherfd179292009-08-27 18:07:15 +00005949
Chris Lattner18c59872009-06-27 04:16:01 +00005950 return Result;
5951}
5952
Dan Gohman475871a2008-07-27 21:46:04 +00005953SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005954X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00005955 // Create the TargetBlockAddressAddress node.
5956 unsigned char OpFlags =
5957 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00005958 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00005959 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00005960 DebugLoc dl = Op.getDebugLoc();
5961 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
5962 /*isTarget=*/true, OpFlags);
5963
Dan Gohmanf705adb2009-10-30 01:28:02 +00005964 if (Subtarget->isPICStyleRIPRel() &&
5965 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00005966 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
5967 else
5968 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00005969
Dan Gohman29cbade2009-11-20 23:18:13 +00005970 // With PIC, the address is actually $g + Offset.
5971 if (isGlobalRelativeToPICBase(OpFlags)) {
5972 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
5973 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
5974 Result);
5975 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00005976
5977 return Result;
5978}
5979
5980SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00005981X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00005982 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00005983 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00005984 // Create the TargetGlobalAddress node, folding in the constant
5985 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00005986 unsigned char OpFlags =
5987 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005988 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00005989 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005990 if (OpFlags == X86II::MO_NO_FLAG &&
5991 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00005992 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00005993 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00005994 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00005995 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00005996 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00005997 }
Eric Christopherfd179292009-08-27 18:07:15 +00005998
Chris Lattner4f066492009-07-11 20:29:19 +00005999 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006000 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00006001 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6002 else
6003 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00006004
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006005 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00006006 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006007 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6008 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006009 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006010 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006011
Chris Lattner36c25012009-07-10 07:34:39 +00006012 // For globals that require a load from a stub to get the address, emit the
6013 // load.
6014 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00006015 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006016 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006017
Dan Gohman6520e202008-10-18 02:06:02 +00006018 // If there was a non-zero offset that we didn't fold, create an explicit
6019 // addition for it.
6020 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006021 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00006022 DAG.getConstant(Offset, getPointerTy()));
6023
Evan Cheng0db9fe62006-04-25 20:13:52 +00006024 return Result;
6025}
6026
Evan Chengda43bcf2008-09-24 00:05:32 +00006027SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006028X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00006029 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00006030 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006031 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00006032}
6033
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006034static SDValue
6035GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00006036 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00006037 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006038 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Owen Anderson825b72b2009-08-11 20:47:22 +00006039 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006040 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006041 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006042 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006043 GA->getOffset(),
6044 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006045 if (InFlag) {
6046 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006047 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006048 } else {
6049 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006050 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006051 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006052
6053 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00006054 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006055
Rafael Espindola15f1b662009-04-24 12:59:40 +00006056 SDValue Flag = Chain.getValue(1);
6057 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006058}
6059
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006060// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006061static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006062LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006063 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00006064 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00006065 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
6066 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006067 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006068 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006069 InFlag = Chain.getValue(1);
6070
Chris Lattnerb903bed2009-06-26 21:20:29 +00006071 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006072}
6073
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006074// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006075static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006076LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006077 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006078 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
6079 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006080}
6081
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006082// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
6083// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00006084static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006085 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00006086 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006087 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00006088
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006089 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
6090 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
6091 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00006092
Michael J. Spencerec38de22010-10-10 22:04:20 +00006093 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006094 DAG.getIntPtrConstant(0),
6095 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00006096
Chris Lattnerb903bed2009-06-26 21:20:29 +00006097 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006098 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
6099 // initialexec.
6100 unsigned WrapperKind = X86ISD::Wrapper;
6101 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006102 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00006103 } else if (is64Bit) {
6104 assert(model == TLSModel::InitialExec);
6105 OperandFlags = X86II::MO_GOTTPOFF;
6106 WrapperKind = X86ISD::WrapperRIP;
6107 } else {
6108 assert(model == TLSModel::InitialExec);
6109 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00006110 }
Eric Christopherfd179292009-08-27 18:07:15 +00006111
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006112 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
6113 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00006114 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00006115 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006116 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006117 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006118
Rafael Espindola9a580232009-02-27 13:37:18 +00006119 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006120 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006121 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006122
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006123 // The address of the thread local variable is the add of the thread
6124 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00006125 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006126}
6127
Dan Gohman475871a2008-07-27 21:46:04 +00006128SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006129X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00006130
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006131 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00006132 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00006133
Eric Christopher30ef0e52010-06-03 04:07:48 +00006134 if (Subtarget->isTargetELF()) {
6135 // TODO: implement the "local dynamic" model
6136 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00006137
Eric Christopher30ef0e52010-06-03 04:07:48 +00006138 // If GV is an alias then use the aliasee for determining
6139 // thread-localness.
6140 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
6141 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006142
6143 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00006144 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006145
Eric Christopher30ef0e52010-06-03 04:07:48 +00006146 switch (model) {
6147 case TLSModel::GeneralDynamic:
6148 case TLSModel::LocalDynamic: // not implemented
6149 if (Subtarget->is64Bit())
6150 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
6151 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006152
Eric Christopher30ef0e52010-06-03 04:07:48 +00006153 case TLSModel::InitialExec:
6154 case TLSModel::LocalExec:
6155 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
6156 Subtarget->is64Bit());
6157 }
6158 } else if (Subtarget->isTargetDarwin()) {
6159 // Darwin only has one model of TLS. Lower to that.
6160 unsigned char OpFlag = 0;
6161 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
6162 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006163
Eric Christopher30ef0e52010-06-03 04:07:48 +00006164 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6165 // global base reg.
6166 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
6167 !Subtarget->is64Bit();
6168 if (PIC32)
6169 OpFlag = X86II::MO_TLVP_PIC_BASE;
6170 else
6171 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006172 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006173 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopher30ef0e52010-06-03 04:07:48 +00006174 getPointerTy(),
6175 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00006176 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006177
Eric Christopher30ef0e52010-06-03 04:07:48 +00006178 // With PIC32, the address is actually $g + Offset.
6179 if (PIC32)
6180 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6181 DAG.getNode(X86ISD::GlobalBaseReg,
6182 DebugLoc(), getPointerTy()),
6183 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006184
Eric Christopher30ef0e52010-06-03 04:07:48 +00006185 // Lowering the machine isd will make sure everything is in the right
6186 // location.
6187 SDValue Args[] = { Offset };
6188 SDValue Chain = DAG.getNode(X86ISD::TLSCALL, DL, MVT::Other, Args, 1);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006189
Eric Christopher30ef0e52010-06-03 04:07:48 +00006190 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
6191 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6192 MFI->setAdjustsStack(true);
Eric Christopherfd179292009-08-27 18:07:15 +00006193
Eric Christopher30ef0e52010-06-03 04:07:48 +00006194 // And our return value (tls address) is in the standard call return value
6195 // location.
6196 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
6197 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006198 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006199
Eric Christopher30ef0e52010-06-03 04:07:48 +00006200 assert(false &&
6201 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00006202
Torok Edwinc23197a2009-07-14 16:55:14 +00006203 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00006204 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006205}
6206
Evan Cheng0db9fe62006-04-25 20:13:52 +00006207
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006208/// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00006209/// take a 2 x i32 value to shift plus a shift amount.
Dan Gohmand858e902010-04-17 15:26:15 +00006210SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00006211 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00006212 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006213 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006214 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006215 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00006216 SDValue ShOpLo = Op.getOperand(0);
6217 SDValue ShOpHi = Op.getOperand(1);
6218 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00006219 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00006220 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00006221 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00006222
Dan Gohman475871a2008-07-27 21:46:04 +00006223 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006224 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006225 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
6226 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006227 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006228 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
6229 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006230 }
Evan Chenge3413162006-01-09 18:33:28 +00006231
Owen Anderson825b72b2009-08-11 20:47:22 +00006232 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
6233 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00006234 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00006235 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00006236
Dan Gohman475871a2008-07-27 21:46:04 +00006237 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00006238 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00006239 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
6240 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00006241
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006242 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006243 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6244 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006245 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006246 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6247 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006248 }
6249
Dan Gohman475871a2008-07-27 21:46:04 +00006250 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00006251 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006252}
Evan Chenga3195e82006-01-12 22:54:21 +00006253
Dan Gohmand858e902010-04-17 15:26:15 +00006254SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
6255 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006256 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00006257
Dale Johannesen0488fb62010-09-30 23:57:10 +00006258 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006259 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006260
Owen Anderson825b72b2009-08-11 20:47:22 +00006261 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00006262 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00006263
Eli Friedman36df4992009-05-27 00:47:34 +00006264 // These are really Legal; return the operand so the caller accepts it as
6265 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006266 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00006267 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00006268 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00006269 Subtarget->is64Bit()) {
6270 return Op;
6271 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006272
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006273 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006274 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006275 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00006276 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006277 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00006278 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00006279 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006280 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006281 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006282 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
6283}
Evan Cheng0db9fe62006-04-25 20:13:52 +00006284
Owen Andersone50ed302009-08-10 22:56:29 +00006285SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00006286 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00006287 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006288 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00006289 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00006290 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00006291 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006292 if (useSSE)
Owen Anderson825b72b2009-08-11 20:47:22 +00006293 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
Chris Lattner5a88b832007-02-25 07:10:00 +00006294 else
Owen Anderson825b72b2009-08-11 20:47:22 +00006295 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006296
Chris Lattner492a43e2010-09-22 01:28:21 +00006297 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006298
Chris Lattner492a43e2010-09-22 01:28:21 +00006299 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6300 MachineMemOperand *MMO =
6301 DAG.getMachineFunction()
6302 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6303 MachineMemOperand::MOLoad, ByteSize, ByteSize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006304
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006305 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006306 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
6307 X86ISD::FILD, DL,
6308 Tys, Ops, array_lengthof(Ops),
6309 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006310
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006311 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006312 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00006313 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006314
6315 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
6316 // shouldn't be necessary except that RFP cannot be live across
6317 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006318 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006319 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
6320 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006321 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00006322 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006323 SDValue Ops[] = {
6324 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
6325 };
Chris Lattner492a43e2010-09-22 01:28:21 +00006326 MachineMemOperand *MMO =
6327 DAG.getMachineFunction()
6328 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006329 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006330
Chris Lattner492a43e2010-09-22 01:28:21 +00006331 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
6332 Ops, array_lengthof(Ops),
6333 Op.getValueType(), MMO);
6334 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006335 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006336 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006337 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006338
Evan Cheng0db9fe62006-04-25 20:13:52 +00006339 return Result;
6340}
6341
Bill Wendling8b8a6362009-01-17 03:56:04 +00006342// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006343SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
6344 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00006345 // This algorithm is not obvious. Here it is in C code, more or less:
6346 /*
6347 double uint64_to_double( uint32_t hi, uint32_t lo ) {
6348 static const __m128i exp = { 0x4330000045300000ULL, 0 };
6349 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00006350
Bill Wendling8b8a6362009-01-17 03:56:04 +00006351 // Copy ints to xmm registers.
6352 __m128i xh = _mm_cvtsi32_si128( hi );
6353 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00006354
Bill Wendling8b8a6362009-01-17 03:56:04 +00006355 // Combine into low half of a single xmm register.
6356 __m128i x = _mm_unpacklo_epi32( xh, xl );
6357 __m128d d;
6358 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00006359
Bill Wendling8b8a6362009-01-17 03:56:04 +00006360 // Merge in appropriate exponents to give the integer bits the right
6361 // magnitude.
6362 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00006363
Bill Wendling8b8a6362009-01-17 03:56:04 +00006364 // Subtract away the biases to deal with the IEEE-754 double precision
6365 // implicit 1.
6366 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00006367
Bill Wendling8b8a6362009-01-17 03:56:04 +00006368 // All conversions up to here are exact. The correctly rounded result is
6369 // calculated using the current rounding mode using the following
6370 // horizontal add.
6371 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
6372 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
6373 // store doesn't really need to be here (except
6374 // maybe to zero the other double)
6375 return sd;
6376 }
6377 */
Dale Johannesen040225f2008-10-21 23:07:49 +00006378
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006379 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00006380 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00006381
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006382 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00006383 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00006384 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
6385 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
6386 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
6387 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006388 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006389 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006390
Bill Wendling8b8a6362009-01-17 03:56:04 +00006391 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00006392 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006393 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00006394 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006395 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006396 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006397 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006398
Owen Anderson825b72b2009-08-11 20:47:22 +00006399 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6400 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006401 Op.getOperand(0),
6402 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006403 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6404 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006405 Op.getOperand(0),
6406 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006407 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
6408 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00006409 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006410 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006411 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006412 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
Owen Anderson825b72b2009-08-11 20:47:22 +00006413 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00006414 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006415 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006416 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006417
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006418 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00006419 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00006420 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
6421 DAG.getUNDEF(MVT::v2f64), ShufMask);
6422 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
6423 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006424 DAG.getIntPtrConstant(0));
6425}
6426
Bill Wendling8b8a6362009-01-17 03:56:04 +00006427// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006428SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
6429 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006430 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006431 // FP constant to bias correct the final result.
6432 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00006433 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006434
6435 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00006436 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6437 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling8b8a6362009-01-17 03:56:04 +00006438 Op.getOperand(0),
6439 DAG.getIntPtrConstant(0)));
6440
Owen Anderson825b72b2009-08-11 20:47:22 +00006441 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006442 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006443 DAG.getIntPtrConstant(0));
6444
6445 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006446 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006447 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006448 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006449 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006450 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006451 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006452 MVT::v2f64, Bias)));
6453 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006454 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006455 DAG.getIntPtrConstant(0));
6456
6457 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006458 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006459
6460 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00006461 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00006462
Owen Anderson825b72b2009-08-11 20:47:22 +00006463 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006464 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00006465 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00006466 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006467 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00006468 }
6469
6470 // Handle final rounding.
6471 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00006472}
6473
Dan Gohmand858e902010-04-17 15:26:15 +00006474SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
6475 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00006476 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006477 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006478
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006479 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00006480 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
6481 // the optimization here.
6482 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00006483 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00006484
Owen Andersone50ed302009-08-10 22:56:29 +00006485 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006486 EVT DstVT = Op.getValueType();
6487 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006488 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006489 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006490 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00006491
6492 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00006493 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006494 if (SrcVT == MVT::i32) {
6495 SDValue WordOff = DAG.getConstant(4, getPointerTy());
6496 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
6497 getPointerTy(), StackSlot, WordOff);
6498 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006499 StackSlot, MachinePointerInfo(),
6500 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006501 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006502 OffsetSlot, MachinePointerInfo(),
6503 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006504 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
6505 return Fild;
6506 }
6507
6508 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
6509 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006510 StackSlot, MachinePointerInfo(),
6511 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006512 // For i64 source, we need to add the appropriate power of 2 if the input
6513 // was negative. This is the same as the optimization in
6514 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
6515 // we must be careful to do the computation in x87 extended precision, not
6516 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00006517 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6518 MachineMemOperand *MMO =
6519 DAG.getMachineFunction()
6520 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6521 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006522
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006523 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
6524 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006525 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
6526 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006527
6528 APInt FF(32, 0x5F800000ULL);
6529
6530 // Check whether the sign bit is set.
6531 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
6532 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
6533 ISD::SETLT);
6534
6535 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
6536 SDValue FudgePtr = DAG.getConstantPool(
6537 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
6538 getPointerTy());
6539
6540 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
6541 SDValue Zero = DAG.getIntPtrConstant(0);
6542 SDValue Four = DAG.getIntPtrConstant(4);
6543 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
6544 Zero, Four);
6545 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
6546
6547 // Load the value out, extending it from f32 to f80.
6548 // FIXME: Avoid the extend by constructing the right constant pool?
Evan Chengbcc80172010-07-07 22:15:37 +00006549 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, MVT::f80, dl, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00006550 FudgePtr, MachinePointerInfo::getConstantPool(),
6551 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006552 // Extend everything to 80 bits to force it to be done on x87.
6553 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
6554 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00006555}
6556
Dan Gohman475871a2008-07-27 21:46:04 +00006557std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00006558FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00006559 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00006560
Owen Andersone50ed302009-08-10 22:56:29 +00006561 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00006562
6563 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006564 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
6565 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00006566 }
6567
Owen Anderson825b72b2009-08-11 20:47:22 +00006568 assert(DstTy.getSimpleVT() <= MVT::i64 &&
6569 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00006570 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00006571
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006572 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006573 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00006574 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00006575 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00006576 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00006577 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00006578 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00006579 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006580
Evan Cheng87c89352007-10-15 20:11:21 +00006581 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
6582 // stack slot.
6583 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00006584 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00006585 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006586 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00006587
Michael J. Spencerec38de22010-10-10 22:04:20 +00006588
6589
Evan Cheng0db9fe62006-04-25 20:13:52 +00006590 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00006591 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00006592 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00006593 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
6594 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
6595 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006596 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006597
Dan Gohman475871a2008-07-27 21:46:04 +00006598 SDValue Chain = DAG.getEntryNode();
6599 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00006600 EVT TheVT = Op.getOperand(0).getValueType();
6601 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006602 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00006603 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006604 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006605 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00006606 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00006607 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00006608 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00006609 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00006610
Chris Lattner492a43e2010-09-22 01:28:21 +00006611 MachineMemOperand *MMO =
6612 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6613 MachineMemOperand::MOLoad, MemSize, MemSize);
6614 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
6615 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006616 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00006617 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006618 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
6619 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006620
Chris Lattner07290932010-09-22 01:05:16 +00006621 MachineMemOperand *MMO =
6622 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6623 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006624
Evan Cheng0db9fe62006-04-25 20:13:52 +00006625 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00006626 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00006627 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
6628 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00006629
Chris Lattner27a6c732007-11-24 07:07:01 +00006630 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006631}
6632
Dan Gohmand858e902010-04-17 15:26:15 +00006633SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
6634 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00006635 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006636 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006637
Eli Friedman948e95a2009-05-23 09:59:16 +00006638 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00006639 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00006640 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
6641 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00006642
Chris Lattner27a6c732007-11-24 07:07:01 +00006643 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006644 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00006645 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00006646}
6647
Dan Gohmand858e902010-04-17 15:26:15 +00006648SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
6649 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00006650 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
6651 SDValue FIST = Vals.first, StackSlot = Vals.second;
6652 assert(FIST.getNode() && "Unexpected failure");
6653
6654 // Load the result.
6655 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00006656 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006657}
6658
Dan Gohmand858e902010-04-17 15:26:15 +00006659SDValue X86TargetLowering::LowerFABS(SDValue Op,
6660 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006661 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006662 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006663 EVT VT = Op.getValueType();
6664 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006665 if (VT.isVector())
6666 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006667 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006668 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006669 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00006670 CV.push_back(C);
6671 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006672 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006673 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00006674 CV.push_back(C);
6675 CV.push_back(C);
6676 CV.push_back(C);
6677 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006678 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006679 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006680 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006681 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006682 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006683 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006684 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006685}
6686
Dan Gohmand858e902010-04-17 15:26:15 +00006687SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006688 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006689 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006690 EVT VT = Op.getValueType();
6691 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00006692 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00006693 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006694 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006695 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006696 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00006697 CV.push_back(C);
6698 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006699 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006700 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00006701 CV.push_back(C);
6702 CV.push_back(C);
6703 CV.push_back(C);
6704 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006705 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006706 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006707 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006708 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006709 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006710 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006711 if (VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006712 return DAG.getNode(ISD::BITCAST, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00006713 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006714 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006715 Op.getOperand(0)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006716 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00006717 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006718 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00006719 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006720}
6721
Dan Gohmand858e902010-04-17 15:26:15 +00006722SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006723 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00006724 SDValue Op0 = Op.getOperand(0);
6725 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006726 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006727 EVT VT = Op.getValueType();
6728 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00006729
6730 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006731 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006732 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00006733 SrcVT = VT;
6734 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006735 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006736 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006737 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006738 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006739 }
6740
6741 // At this point the operands and the result should have the same
6742 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00006743
Evan Cheng68c47cb2007-01-05 07:55:56 +00006744 // First get the sign bit of second operand.
6745 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006746 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006747 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
6748 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006749 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006750 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
6751 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6752 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6753 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006754 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006755 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006756 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006757 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006758 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006759 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006760 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006761
6762 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006763 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006764 // Op0 is MVT::f32, Op1 is MVT::f64.
6765 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
6766 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
6767 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006768 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00006769 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00006770 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006771 }
6772
Evan Cheng73d6cf12007-01-05 21:37:56 +00006773 // Clear first operand sign bit.
6774 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00006775 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006776 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
6777 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00006778 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006779 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
6780 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6781 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6782 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00006783 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006784 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006785 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006786 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006787 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006788 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006789 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00006790
6791 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00006792 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006793}
6794
Dan Gohman076aee32009-03-04 19:44:21 +00006795/// Emit nodes that will be selected as "test Op0,Op0", or something
6796/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00006797SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00006798 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00006799 DebugLoc dl = Op.getDebugLoc();
6800
Dan Gohman31125812009-03-07 01:58:32 +00006801 // CF and OF aren't always set the way we want. Determine which
6802 // of these we need.
6803 bool NeedCF = false;
6804 bool NeedOF = false;
6805 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006806 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00006807 case X86::COND_A: case X86::COND_AE:
6808 case X86::COND_B: case X86::COND_BE:
6809 NeedCF = true;
6810 break;
6811 case X86::COND_G: case X86::COND_GE:
6812 case X86::COND_L: case X86::COND_LE:
6813 case X86::COND_O: case X86::COND_NO:
6814 NeedOF = true;
6815 break;
Dan Gohman31125812009-03-07 01:58:32 +00006816 }
6817
Dan Gohman076aee32009-03-04 19:44:21 +00006818 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00006819 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
6820 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006821 if (Op.getResNo() != 0 || NeedOF || NeedCF)
6822 // Emit a CMP with 0, which is the TEST pattern.
6823 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
6824 DAG.getConstant(0, Op.getValueType()));
6825
6826 unsigned Opcode = 0;
6827 unsigned NumOperands = 0;
6828 switch (Op.getNode()->getOpcode()) {
6829 case ISD::ADD:
6830 // Due to an isel shortcoming, be conservative if this add is likely to be
6831 // selected as part of a load-modify-store instruction. When the root node
6832 // in a match is a store, isel doesn't know how to remap non-chain non-flag
6833 // uses of other nodes in the match, such as the ADD in this case. This
6834 // leads to the ADD being left around and reselected, with the result being
6835 // two adds in the output. Alas, even if none our users are stores, that
6836 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
6837 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
6838 // climbing the DAG back to the root, and it doesn't seem to be worth the
6839 // effort.
6840 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00006841 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006842 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
6843 goto default_case;
6844
6845 if (ConstantSDNode *C =
6846 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
6847 // An add of one will be selected as an INC.
6848 if (C->getAPIntValue() == 1) {
6849 Opcode = X86ISD::INC;
6850 NumOperands = 1;
6851 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00006852 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006853
6854 // An add of negative one (subtract of one) will be selected as a DEC.
6855 if (C->getAPIntValue().isAllOnesValue()) {
6856 Opcode = X86ISD::DEC;
6857 NumOperands = 1;
6858 break;
6859 }
Dan Gohman076aee32009-03-04 19:44:21 +00006860 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006861
6862 // Otherwise use a regular EFLAGS-setting add.
6863 Opcode = X86ISD::ADD;
6864 NumOperands = 2;
6865 break;
6866 case ISD::AND: {
6867 // If the primary and result isn't used, don't bother using X86ISD::AND,
6868 // because a TEST instruction will be better.
6869 bool NonFlagUse = false;
6870 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
6871 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
6872 SDNode *User = *UI;
6873 unsigned UOpNo = UI.getOperandNo();
6874 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
6875 // Look pass truncate.
6876 UOpNo = User->use_begin().getOperandNo();
6877 User = *User->use_begin();
6878 }
6879
6880 if (User->getOpcode() != ISD::BRCOND &&
6881 User->getOpcode() != ISD::SETCC &&
6882 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
6883 NonFlagUse = true;
6884 break;
6885 }
Dan Gohman076aee32009-03-04 19:44:21 +00006886 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006887
6888 if (!NonFlagUse)
6889 break;
6890 }
6891 // FALL THROUGH
6892 case ISD::SUB:
6893 case ISD::OR:
6894 case ISD::XOR:
6895 // Due to the ISEL shortcoming noted above, be conservative if this op is
6896 // likely to be selected as part of a load-modify-store instruction.
6897 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
6898 UE = Op.getNode()->use_end(); UI != UE; ++UI)
6899 if (UI->getOpcode() == ISD::STORE)
6900 goto default_case;
6901
6902 // Otherwise use a regular EFLAGS-setting instruction.
6903 switch (Op.getNode()->getOpcode()) {
6904 default: llvm_unreachable("unexpected operator!");
6905 case ISD::SUB: Opcode = X86ISD::SUB; break;
6906 case ISD::OR: Opcode = X86ISD::OR; break;
6907 case ISD::XOR: Opcode = X86ISD::XOR; break;
6908 case ISD::AND: Opcode = X86ISD::AND; break;
6909 }
6910
6911 NumOperands = 2;
6912 break;
6913 case X86ISD::ADD:
6914 case X86ISD::SUB:
6915 case X86ISD::INC:
6916 case X86ISD::DEC:
6917 case X86ISD::OR:
6918 case X86ISD::XOR:
6919 case X86ISD::AND:
6920 return SDValue(Op.getNode(), 1);
6921 default:
6922 default_case:
6923 break;
Dan Gohman076aee32009-03-04 19:44:21 +00006924 }
6925
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006926 if (Opcode == 0)
6927 // Emit a CMP with 0, which is the TEST pattern.
6928 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
6929 DAG.getConstant(0, Op.getValueType()));
6930
6931 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
6932 SmallVector<SDValue, 4> Ops;
6933 for (unsigned i = 0; i != NumOperands; ++i)
6934 Ops.push_back(Op.getOperand(i));
6935
6936 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
6937 DAG.ReplaceAllUsesWith(Op, New);
6938 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00006939}
6940
6941/// Emit nodes that will be selected as "cmp Op0,Op1", or something
6942/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00006943SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00006944 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00006945 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
6946 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00006947 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00006948
6949 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00006950 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00006951}
6952
Evan Chengd40d03e2010-01-06 19:38:29 +00006953/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
6954/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00006955SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
6956 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006957 SDValue Op0 = And.getOperand(0);
6958 SDValue Op1 = And.getOperand(1);
6959 if (Op0.getOpcode() == ISD::TRUNCATE)
6960 Op0 = Op0.getOperand(0);
6961 if (Op1.getOpcode() == ISD::TRUNCATE)
6962 Op1 = Op1.getOperand(0);
6963
Evan Chengd40d03e2010-01-06 19:38:29 +00006964 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00006965 if (Op1.getOpcode() == ISD::SHL)
6966 std::swap(Op0, Op1);
6967 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006968 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
6969 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00006970 // If we looked past a truncate, check that it's only truncating away
6971 // known zeros.
6972 unsigned BitWidth = Op0.getValueSizeInBits();
6973 unsigned AndBitWidth = And.getValueSizeInBits();
6974 if (BitWidth > AndBitWidth) {
6975 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
6976 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
6977 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
6978 return SDValue();
6979 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00006980 LHS = Op1;
6981 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00006982 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00006983 } else if (Op1.getOpcode() == ISD::Constant) {
6984 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
6985 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00006986 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
6987 LHS = AndLHS.getOperand(0);
6988 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00006989 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006990 }
Evan Cheng0488db92007-09-25 01:57:46 +00006991
Evan Chengd40d03e2010-01-06 19:38:29 +00006992 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00006993 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00006994 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00006995 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00006996 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00006997 // Also promote i16 to i32 for performance / code size reason.
6998 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00006999 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00007000 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00007001
Evan Chengd40d03e2010-01-06 19:38:29 +00007002 // If the operand types disagree, extend the shift amount to match. Since
7003 // BT ignores high bits (like shifts) we can use anyextend.
7004 if (LHS.getValueType() != RHS.getValueType())
7005 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007006
Evan Chengd40d03e2010-01-06 19:38:29 +00007007 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
7008 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
7009 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7010 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00007011 }
7012
Evan Cheng54de3ea2010-01-05 06:52:31 +00007013 return SDValue();
7014}
7015
Dan Gohmand858e902010-04-17 15:26:15 +00007016SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00007017 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
7018 SDValue Op0 = Op.getOperand(0);
7019 SDValue Op1 = Op.getOperand(1);
7020 DebugLoc dl = Op.getDebugLoc();
7021 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7022
7023 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00007024 // Lower (X & (1 << N)) == 0 to BT(X, N).
7025 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
7026 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
7027 if (Op0.getOpcode() == ISD::AND &&
7028 Op0.hasOneUse() &&
7029 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00007030 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007031 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7032 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
7033 if (NewSetCC.getNode())
7034 return NewSetCC;
7035 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00007036
Evan Cheng2c755ba2010-02-27 07:36:59 +00007037 // Look for "(setcc) == / != 1" to avoid unncessary setcc.
7038 if (Op0.getOpcode() == X86ISD::SETCC &&
7039 Op1.getOpcode() == ISD::Constant &&
7040 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
7041 cast<ConstantSDNode>(Op1)->isNullValue()) &&
7042 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7043 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
7044 bool Invert = (CC == ISD::SETNE) ^
7045 cast<ConstantSDNode>(Op1)->isNullValue();
7046 if (Invert)
7047 CCode = X86::GetOppositeBranchCondition(CCode);
7048 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7049 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
7050 }
7051
Evan Chenge5b51ac2010-04-17 06:13:15 +00007052 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00007053 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007054 if (X86CC == X86::COND_INVALID)
7055 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007056
Evan Cheng552f09a2010-04-26 19:06:11 +00007057 SDValue Cond = EmitCmp(Op0, Op1, X86CC, DAG);
Evan Chengad9c0a32009-12-15 00:53:42 +00007058
7059 // Use sbb x, x to materialize carry bit into a GPR.
Evan Cheng2e489c42009-12-16 00:53:11 +00007060 if (X86CC == X86::COND_B)
Evan Chengad9c0a32009-12-15 00:53:42 +00007061 return DAG.getNode(ISD::AND, dl, MVT::i8,
7062 DAG.getNode(X86ISD::SETCC_CARRY, dl, MVT::i8,
7063 DAG.getConstant(X86CC, MVT::i8), Cond),
7064 DAG.getConstant(1, MVT::i8));
Evan Chengad9c0a32009-12-15 00:53:42 +00007065
Owen Anderson825b72b2009-08-11 20:47:22 +00007066 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7067 DAG.getConstant(X86CC, MVT::i8), Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00007068}
7069
Dan Gohmand858e902010-04-17 15:26:15 +00007070SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007071 SDValue Cond;
7072 SDValue Op0 = Op.getOperand(0);
7073 SDValue Op1 = Op.getOperand(1);
7074 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00007075 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00007076 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
7077 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007078 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00007079
7080 if (isFP) {
7081 unsigned SSECC = 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007082 EVT VT0 = Op0.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00007083 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
7084 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00007085 bool Swap = false;
7086
7087 switch (SetCCOpcode) {
7088 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007089 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00007090 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007091 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00007092 case ISD::SETGT: Swap = true; // Fallthrough
7093 case ISD::SETLT:
7094 case ISD::SETOLT: SSECC = 1; break;
7095 case ISD::SETOGE:
7096 case ISD::SETGE: Swap = true; // Fallthrough
7097 case ISD::SETLE:
7098 case ISD::SETOLE: SSECC = 2; break;
7099 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007100 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00007101 case ISD::SETNE: SSECC = 4; break;
7102 case ISD::SETULE: Swap = true;
7103 case ISD::SETUGE: SSECC = 5; break;
7104 case ISD::SETULT: Swap = true;
7105 case ISD::SETUGT: SSECC = 6; break;
7106 case ISD::SETO: SSECC = 7; break;
7107 }
7108 if (Swap)
7109 std::swap(Op0, Op1);
7110
Nate Begemanfb8ead02008-07-25 19:05:58 +00007111 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00007112 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00007113 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00007114 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007115 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
7116 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007117 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007118 }
7119 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00007120 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007121 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
7122 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007123 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007124 }
Torok Edwinc23197a2009-07-14 16:55:14 +00007125 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00007126 }
7127 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00007128 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00007129 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007130
Nate Begeman30a0de92008-07-17 16:51:19 +00007131 // We are handling one of the integer comparisons here. Since SSE only has
7132 // GT and EQ comparisons for integer, swapping operands and multiple
7133 // operations may be required for some comparisons.
7134 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
7135 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007136
Owen Anderson825b72b2009-08-11 20:47:22 +00007137 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00007138 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007139 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007140 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007141 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
7142 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00007143 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007144
Nate Begeman30a0de92008-07-17 16:51:19 +00007145 switch (SetCCOpcode) {
7146 default: break;
7147 case ISD::SETNE: Invert = true;
7148 case ISD::SETEQ: Opc = EQOpc; break;
7149 case ISD::SETLT: Swap = true;
7150 case ISD::SETGT: Opc = GTOpc; break;
7151 case ISD::SETGE: Swap = true;
7152 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
7153 case ISD::SETULT: Swap = true;
7154 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
7155 case ISD::SETUGE: Swap = true;
7156 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
7157 }
7158 if (Swap)
7159 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007160
Nate Begeman30a0de92008-07-17 16:51:19 +00007161 // Since SSE has no unsigned integer comparisons, we need to flip the sign
7162 // bits of the inputs before performing those operations.
7163 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00007164 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00007165 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
7166 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00007167 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00007168 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
7169 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00007170 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
7171 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00007172 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007173
Dale Johannesenace16102009-02-03 19:33:06 +00007174 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00007175
7176 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00007177 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00007178 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00007179
Nate Begeman30a0de92008-07-17 16:51:19 +00007180 return Result;
7181}
Evan Cheng0488db92007-09-25 01:57:46 +00007182
Evan Cheng370e5342008-12-03 08:38:43 +00007183// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00007184static bool isX86LogicalCmp(SDValue Op) {
7185 unsigned Opc = Op.getNode()->getOpcode();
7186 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
7187 return true;
7188 if (Op.getResNo() == 1 &&
7189 (Opc == X86ISD::ADD ||
7190 Opc == X86ISD::SUB ||
7191 Opc == X86ISD::SMUL ||
7192 Opc == X86ISD::UMUL ||
7193 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00007194 Opc == X86ISD::DEC ||
7195 Opc == X86ISD::OR ||
7196 Opc == X86ISD::XOR ||
7197 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00007198 return true;
7199
7200 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00007201}
7202
Dan Gohmand858e902010-04-17 15:26:15 +00007203SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007204 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007205 SDValue Cond = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007206 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007207 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00007208
Dan Gohman1a492952009-10-20 16:22:37 +00007209 if (Cond.getOpcode() == ISD::SETCC) {
7210 SDValue NewCond = LowerSETCC(Cond, DAG);
7211 if (NewCond.getNode())
7212 Cond = NewCond;
7213 }
Evan Cheng734503b2006-09-11 02:19:56 +00007214
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007215 // (select (x == 0), -1, 0) -> (sign_bit (x - 1))
7216 SDValue Op1 = Op.getOperand(1);
7217 SDValue Op2 = Op.getOperand(2);
7218 if (Cond.getOpcode() == X86ISD::SETCC &&
7219 cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue() == X86::COND_E) {
7220 SDValue Cmp = Cond.getOperand(1);
7221 if (Cmp.getOpcode() == X86ISD::CMP) {
7222 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op1);
7223 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
7224 ConstantSDNode *RHSC =
7225 dyn_cast<ConstantSDNode>(Cmp.getOperand(1).getNode());
7226 if (N1C && N1C->isAllOnesValue() &&
7227 N2C && N2C->isNullValue() &&
7228 RHSC && RHSC->isNullValue()) {
7229 SDValue CmpOp0 = Cmp.getOperand(0);
Chris Lattnerda0688e2010-03-14 18:44:35 +00007230 Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007231 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
7232 return DAG.getNode(X86ISD::SETCC_CARRY, dl, Op.getValueType(),
7233 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
7234 }
7235 }
7236 }
7237
Evan Chengad9c0a32009-12-15 00:53:42 +00007238 // Look pass (and (setcc_carry (cmp ...)), 1).
7239 if (Cond.getOpcode() == ISD::AND &&
7240 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7241 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007242 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007243 Cond = Cond.getOperand(0);
7244 }
7245
Evan Cheng3f41d662007-10-08 22:16:29 +00007246 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7247 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007248 if (Cond.getOpcode() == X86ISD::SETCC ||
7249 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007250 CC = Cond.getOperand(0);
7251
Dan Gohman475871a2008-07-27 21:46:04 +00007252 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007253 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00007254 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00007255
Evan Cheng3f41d662007-10-08 22:16:29 +00007256 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007257 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00007258 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00007259 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00007260
Chris Lattnerd1980a52009-03-12 06:52:53 +00007261 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
7262 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00007263 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007264 addTest = false;
7265 }
7266 }
7267
7268 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007269 // Look pass the truncate.
7270 if (Cond.getOpcode() == ISD::TRUNCATE)
7271 Cond = Cond.getOperand(0);
7272
7273 // We know the result of AND is compared against zero. Try to match
7274 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007275 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007276 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
7277 if (NewSetCC.getNode()) {
7278 CC = NewSetCC.getOperand(0);
7279 Cond = NewSetCC.getOperand(1);
7280 addTest = false;
7281 }
7282 }
7283 }
7284
7285 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007286 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007287 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007288 }
7289
Evan Cheng0488db92007-09-25 01:57:46 +00007290 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
7291 // condition is true.
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007292 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Flag);
7293 SDValue Ops[] = { Op2, Op1, CC, Cond };
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007294 return DAG.getNode(X86ISD::CMOV, dl, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00007295}
7296
Evan Cheng370e5342008-12-03 08:38:43 +00007297// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
7298// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
7299// from the AND / OR.
7300static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
7301 Opc = Op.getOpcode();
7302 if (Opc != ISD::OR && Opc != ISD::AND)
7303 return false;
7304 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7305 Op.getOperand(0).hasOneUse() &&
7306 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
7307 Op.getOperand(1).hasOneUse());
7308}
7309
Evan Cheng961d6d42009-02-02 08:19:07 +00007310// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
7311// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00007312static bool isXor1OfSetCC(SDValue Op) {
7313 if (Op.getOpcode() != ISD::XOR)
7314 return false;
7315 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7316 if (N1C && N1C->getAPIntValue() == 1) {
7317 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7318 Op.getOperand(0).hasOneUse();
7319 }
7320 return false;
7321}
7322
Dan Gohmand858e902010-04-17 15:26:15 +00007323SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007324 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007325 SDValue Chain = Op.getOperand(0);
7326 SDValue Cond = Op.getOperand(1);
7327 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007328 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007329 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00007330
Dan Gohman1a492952009-10-20 16:22:37 +00007331 if (Cond.getOpcode() == ISD::SETCC) {
7332 SDValue NewCond = LowerSETCC(Cond, DAG);
7333 if (NewCond.getNode())
7334 Cond = NewCond;
7335 }
Chris Lattnere55484e2008-12-25 05:34:37 +00007336#if 0
7337 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00007338 else if (Cond.getOpcode() == X86ISD::ADD ||
7339 Cond.getOpcode() == X86ISD::SUB ||
7340 Cond.getOpcode() == X86ISD::SMUL ||
7341 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00007342 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00007343#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00007344
Evan Chengad9c0a32009-12-15 00:53:42 +00007345 // Look pass (and (setcc_carry (cmp ...)), 1).
7346 if (Cond.getOpcode() == ISD::AND &&
7347 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7348 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007349 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007350 Cond = Cond.getOperand(0);
7351 }
7352
Evan Cheng3f41d662007-10-08 22:16:29 +00007353 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7354 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007355 if (Cond.getOpcode() == X86ISD::SETCC ||
7356 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007357 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007358
Dan Gohman475871a2008-07-27 21:46:04 +00007359 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007360 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00007361 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00007362 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00007363 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007364 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00007365 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00007366 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007367 default: break;
7368 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00007369 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00007370 // These can only come from an arithmetic instruction with overflow,
7371 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007372 Cond = Cond.getNode()->getOperand(1);
7373 addTest = false;
7374 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00007375 }
Evan Cheng0488db92007-09-25 01:57:46 +00007376 }
Evan Cheng370e5342008-12-03 08:38:43 +00007377 } else {
7378 unsigned CondOpc;
7379 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
7380 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00007381 if (CondOpc == ISD::OR) {
7382 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
7383 // two branches instead of an explicit OR instruction with a
7384 // separate test.
7385 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007386 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00007387 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007388 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007389 Chain, Dest, CC, Cmp);
7390 CC = Cond.getOperand(1).getOperand(0);
7391 Cond = Cmp;
7392 addTest = false;
7393 }
7394 } else { // ISD::AND
7395 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
7396 // two branches instead of an explicit AND instruction with a
7397 // separate test. However, we only do this if this block doesn't
7398 // have a fall-through edge, because this requires an explicit
7399 // jmp when the condition is false.
7400 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007401 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00007402 Op.getNode()->hasOneUse()) {
7403 X86::CondCode CCode =
7404 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7405 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007406 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00007407 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00007408 // Look for an unconditional branch following this conditional branch.
7409 // We need this because we need to reverse the successors in order
7410 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00007411 if (User->getOpcode() == ISD::BR) {
7412 SDValue FalseBB = User->getOperand(1);
7413 SDNode *NewBR =
7414 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00007415 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00007416 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00007417 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00007418
Dale Johannesene4d209d2009-02-03 20:21:25 +00007419 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007420 Chain, Dest, CC, Cmp);
7421 X86::CondCode CCode =
7422 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
7423 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007424 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00007425 Cond = Cmp;
7426 addTest = false;
7427 }
7428 }
Dan Gohman279c22e2008-10-21 03:29:32 +00007429 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00007430 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
7431 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
7432 // It should be transformed during dag combiner except when the condition
7433 // is set by a arithmetics with overflow node.
7434 X86::CondCode CCode =
7435 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7436 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007437 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00007438 Cond = Cond.getOperand(0).getOperand(1);
7439 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00007440 }
Evan Cheng0488db92007-09-25 01:57:46 +00007441 }
7442
7443 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007444 // Look pass the truncate.
7445 if (Cond.getOpcode() == ISD::TRUNCATE)
7446 Cond = Cond.getOperand(0);
7447
7448 // We know the result of AND is compared against zero. Try to match
7449 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007450 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007451 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
7452 if (NewSetCC.getNode()) {
7453 CC = NewSetCC.getOperand(0);
7454 Cond = NewSetCC.getOperand(1);
7455 addTest = false;
7456 }
7457 }
7458 }
7459
7460 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007461 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007462 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007463 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00007464 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00007465 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00007466}
7467
Anton Korobeynikove060b532007-04-17 19:34:00 +00007468
7469// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
7470// Calls to _alloca is needed to probe the stack when allocating more than 4k
7471// bytes in one go. Touching the stack at 4K increments is necessary to ensure
7472// that the guard pages used by the OS virtual memory manager are allocated in
7473// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00007474SDValue
7475X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007476 SelectionDAG &DAG) const {
Duncan Sands1e1ca0b2010-10-21 16:02:12 +00007477 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) &&
Michael J. Spencere9c253e2010-10-21 01:41:01 +00007478 "This should be used only on Windows targets");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007479 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007480
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007481 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00007482 SDValue Chain = Op.getOperand(0);
7483 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007484 // FIXME: Ensure alignment here
7485
Dan Gohman475871a2008-07-27 21:46:04 +00007486 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007487
Owen Anderson825b72b2009-08-11 20:47:22 +00007488 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007489
Dale Johannesendd64c412009-02-04 00:33:20 +00007490 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007491 Flag = Chain.getValue(1);
7492
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00007493 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007494
Michael J. Spencere9c253e2010-10-21 01:41:01 +00007495 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00007496 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007497
Dale Johannesendd64c412009-02-04 00:33:20 +00007498 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007499
Dan Gohman475871a2008-07-27 21:46:04 +00007500 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00007501 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007502}
7503
Dan Gohmand858e902010-04-17 15:26:15 +00007504SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00007505 MachineFunction &MF = DAG.getMachineFunction();
7506 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
7507
Dan Gohman69de1932008-02-06 22:27:42 +00007508 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00007509 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00007510
Anton Korobeynikove7beda12010-10-03 22:52:07 +00007511 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00007512 // vastart just stores the address of the VarArgsFrameIndex slot into the
7513 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00007514 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
7515 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007516 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
7517 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007518 }
7519
7520 // __va_list_tag:
7521 // gp_offset (0 - 6 * 8)
7522 // fp_offset (48 - 48 + 8 * 16)
7523 // overflow_arg_area (point to parameters coming in memory).
7524 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00007525 SmallVector<SDValue, 8> MemOps;
7526 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00007527 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00007528 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00007529 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
7530 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007531 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007532 MemOps.push_back(Store);
7533
7534 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00007535 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007536 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00007537 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00007538 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
7539 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007540 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007541 MemOps.push_back(Store);
7542
7543 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00007544 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007545 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00007546 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
7547 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007548 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
7549 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00007550 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007551 MemOps.push_back(Store);
7552
7553 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00007554 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007555 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00007556 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
7557 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007558 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
7559 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007560 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00007561 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00007562 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00007563}
7564
Dan Gohmand858e902010-04-17 15:26:15 +00007565SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00007566 assert(Subtarget->is64Bit() &&
7567 "LowerVAARG only handles 64-bit va_arg!");
7568 assert((Subtarget->isTargetLinux() ||
7569 Subtarget->isTargetDarwin()) &&
7570 "Unhandled target in LowerVAARG");
7571 assert(Op.getNode()->getNumOperands() == 4);
7572 SDValue Chain = Op.getOperand(0);
7573 SDValue SrcPtr = Op.getOperand(1);
7574 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
7575 unsigned Align = Op.getConstantOperandVal(3);
7576 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00007577
Dan Gohman320afb82010-10-12 18:00:49 +00007578 EVT ArgVT = Op.getNode()->getValueType(0);
7579 const Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
7580 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
7581 uint8_t ArgMode;
7582
7583 // Decide which area this value should be read from.
7584 // TODO: Implement the AMD64 ABI in its entirety. This simple
7585 // selection mechanism works only for the basic types.
7586 if (ArgVT == MVT::f80) {
7587 llvm_unreachable("va_arg for f80 not yet implemented");
7588 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
7589 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
7590 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
7591 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
7592 } else {
7593 llvm_unreachable("Unhandled argument type in LowerVAARG");
7594 }
7595
7596 if (ArgMode == 2) {
7597 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00007598 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00007599 !(DAG.getMachineFunction()
7600 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
7601 Subtarget->hasSSE1());
Dan Gohman320afb82010-10-12 18:00:49 +00007602 }
7603
7604 // Insert VAARG_64 node into the DAG
7605 // VAARG_64 returns two values: Variable Argument Address, Chain
7606 SmallVector<SDValue, 11> InstOps;
7607 InstOps.push_back(Chain);
7608 InstOps.push_back(SrcPtr);
7609 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
7610 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
7611 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
7612 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
7613 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
7614 VTs, &InstOps[0], InstOps.size(),
7615 MVT::i64,
7616 MachinePointerInfo(SV),
7617 /*Align=*/0,
7618 /*Volatile=*/false,
7619 /*ReadMem=*/true,
7620 /*WriteMem=*/true);
7621 Chain = VAARG.getValue(1);
7622
7623 // Load the next argument and return it
7624 return DAG.getLoad(ArgVT, dl,
7625 Chain,
7626 VAARG,
7627 MachinePointerInfo(),
7628 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00007629}
7630
Dan Gohmand858e902010-04-17 15:26:15 +00007631SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00007632 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00007633 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00007634 SDValue Chain = Op.getOperand(0);
7635 SDValue DstPtr = Op.getOperand(1);
7636 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00007637 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
7638 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00007639 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00007640
Chris Lattnere72f2022010-09-21 05:40:29 +00007641 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00007642 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00007643 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00007644 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00007645}
7646
Dan Gohman475871a2008-07-27 21:46:04 +00007647SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007648X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007649 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007650 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007651 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00007652 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00007653 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00007654 case Intrinsic::x86_sse_comieq_ss:
7655 case Intrinsic::x86_sse_comilt_ss:
7656 case Intrinsic::x86_sse_comile_ss:
7657 case Intrinsic::x86_sse_comigt_ss:
7658 case Intrinsic::x86_sse_comige_ss:
7659 case Intrinsic::x86_sse_comineq_ss:
7660 case Intrinsic::x86_sse_ucomieq_ss:
7661 case Intrinsic::x86_sse_ucomilt_ss:
7662 case Intrinsic::x86_sse_ucomile_ss:
7663 case Intrinsic::x86_sse_ucomigt_ss:
7664 case Intrinsic::x86_sse_ucomige_ss:
7665 case Intrinsic::x86_sse_ucomineq_ss:
7666 case Intrinsic::x86_sse2_comieq_sd:
7667 case Intrinsic::x86_sse2_comilt_sd:
7668 case Intrinsic::x86_sse2_comile_sd:
7669 case Intrinsic::x86_sse2_comigt_sd:
7670 case Intrinsic::x86_sse2_comige_sd:
7671 case Intrinsic::x86_sse2_comineq_sd:
7672 case Intrinsic::x86_sse2_ucomieq_sd:
7673 case Intrinsic::x86_sse2_ucomilt_sd:
7674 case Intrinsic::x86_sse2_ucomile_sd:
7675 case Intrinsic::x86_sse2_ucomigt_sd:
7676 case Intrinsic::x86_sse2_ucomige_sd:
7677 case Intrinsic::x86_sse2_ucomineq_sd: {
7678 unsigned Opc = 0;
7679 ISD::CondCode CC = ISD::SETCC_INVALID;
7680 switch (IntNo) {
7681 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007682 case Intrinsic::x86_sse_comieq_ss:
7683 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007684 Opc = X86ISD::COMI;
7685 CC = ISD::SETEQ;
7686 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00007687 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007688 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007689 Opc = X86ISD::COMI;
7690 CC = ISD::SETLT;
7691 break;
7692 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007693 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007694 Opc = X86ISD::COMI;
7695 CC = ISD::SETLE;
7696 break;
7697 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007698 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007699 Opc = X86ISD::COMI;
7700 CC = ISD::SETGT;
7701 break;
7702 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007703 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007704 Opc = X86ISD::COMI;
7705 CC = ISD::SETGE;
7706 break;
7707 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007708 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007709 Opc = X86ISD::COMI;
7710 CC = ISD::SETNE;
7711 break;
7712 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007713 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007714 Opc = X86ISD::UCOMI;
7715 CC = ISD::SETEQ;
7716 break;
7717 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007718 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007719 Opc = X86ISD::UCOMI;
7720 CC = ISD::SETLT;
7721 break;
7722 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007723 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007724 Opc = X86ISD::UCOMI;
7725 CC = ISD::SETLE;
7726 break;
7727 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007728 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007729 Opc = X86ISD::UCOMI;
7730 CC = ISD::SETGT;
7731 break;
7732 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007733 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007734 Opc = X86ISD::UCOMI;
7735 CC = ISD::SETGE;
7736 break;
7737 case Intrinsic::x86_sse_ucomineq_ss:
7738 case Intrinsic::x86_sse2_ucomineq_sd:
7739 Opc = X86ISD::UCOMI;
7740 CC = ISD::SETNE;
7741 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00007742 }
Evan Cheng734503b2006-09-11 02:19:56 +00007743
Dan Gohman475871a2008-07-27 21:46:04 +00007744 SDValue LHS = Op.getOperand(1);
7745 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00007746 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007747 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007748 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
7749 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7750 DAG.getConstant(X86CC, MVT::i8), Cond);
7751 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00007752 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007753 // ptest and testp intrinsics. The intrinsic these come from are designed to
7754 // return an integer value, not just an instruction so lower it to the ptest
7755 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00007756 case Intrinsic::x86_sse41_ptestz:
7757 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007758 case Intrinsic::x86_sse41_ptestnzc:
7759 case Intrinsic::x86_avx_ptestz_256:
7760 case Intrinsic::x86_avx_ptestc_256:
7761 case Intrinsic::x86_avx_ptestnzc_256:
7762 case Intrinsic::x86_avx_vtestz_ps:
7763 case Intrinsic::x86_avx_vtestc_ps:
7764 case Intrinsic::x86_avx_vtestnzc_ps:
7765 case Intrinsic::x86_avx_vtestz_pd:
7766 case Intrinsic::x86_avx_vtestc_pd:
7767 case Intrinsic::x86_avx_vtestnzc_pd:
7768 case Intrinsic::x86_avx_vtestz_ps_256:
7769 case Intrinsic::x86_avx_vtestc_ps_256:
7770 case Intrinsic::x86_avx_vtestnzc_ps_256:
7771 case Intrinsic::x86_avx_vtestz_pd_256:
7772 case Intrinsic::x86_avx_vtestc_pd_256:
7773 case Intrinsic::x86_avx_vtestnzc_pd_256: {
7774 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00007775 unsigned X86CC = 0;
7776 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00007777 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007778 case Intrinsic::x86_avx_vtestz_ps:
7779 case Intrinsic::x86_avx_vtestz_pd:
7780 case Intrinsic::x86_avx_vtestz_ps_256:
7781 case Intrinsic::x86_avx_vtestz_pd_256:
7782 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00007783 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007784 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007785 // ZF = 1
7786 X86CC = X86::COND_E;
7787 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007788 case Intrinsic::x86_avx_vtestc_ps:
7789 case Intrinsic::x86_avx_vtestc_pd:
7790 case Intrinsic::x86_avx_vtestc_ps_256:
7791 case Intrinsic::x86_avx_vtestc_pd_256:
7792 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00007793 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007794 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007795 // CF = 1
7796 X86CC = X86::COND_B;
7797 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007798 case Intrinsic::x86_avx_vtestnzc_ps:
7799 case Intrinsic::x86_avx_vtestnzc_pd:
7800 case Intrinsic::x86_avx_vtestnzc_ps_256:
7801 case Intrinsic::x86_avx_vtestnzc_pd_256:
7802 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00007803 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007804 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007805 // ZF and CF = 0
7806 X86CC = X86::COND_A;
7807 break;
7808 }
Eric Christopherfd179292009-08-27 18:07:15 +00007809
Eric Christopher71c67532009-07-29 00:28:05 +00007810 SDValue LHS = Op.getOperand(1);
7811 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007812 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
7813 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00007814 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
7815 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
7816 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00007817 }
Evan Cheng5759f972008-05-04 09:15:50 +00007818
7819 // Fix vector shift instructions where the last operand is a non-immediate
7820 // i32 value.
7821 case Intrinsic::x86_sse2_pslli_w:
7822 case Intrinsic::x86_sse2_pslli_d:
7823 case Intrinsic::x86_sse2_pslli_q:
7824 case Intrinsic::x86_sse2_psrli_w:
7825 case Intrinsic::x86_sse2_psrli_d:
7826 case Intrinsic::x86_sse2_psrli_q:
7827 case Intrinsic::x86_sse2_psrai_w:
7828 case Intrinsic::x86_sse2_psrai_d:
7829 case Intrinsic::x86_mmx_pslli_w:
7830 case Intrinsic::x86_mmx_pslli_d:
7831 case Intrinsic::x86_mmx_pslli_q:
7832 case Intrinsic::x86_mmx_psrli_w:
7833 case Intrinsic::x86_mmx_psrli_d:
7834 case Intrinsic::x86_mmx_psrli_q:
7835 case Intrinsic::x86_mmx_psrai_w:
7836 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00007837 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00007838 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00007839 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00007840
7841 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00007842 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00007843 switch (IntNo) {
7844 case Intrinsic::x86_sse2_pslli_w:
7845 NewIntNo = Intrinsic::x86_sse2_psll_w;
7846 break;
7847 case Intrinsic::x86_sse2_pslli_d:
7848 NewIntNo = Intrinsic::x86_sse2_psll_d;
7849 break;
7850 case Intrinsic::x86_sse2_pslli_q:
7851 NewIntNo = Intrinsic::x86_sse2_psll_q;
7852 break;
7853 case Intrinsic::x86_sse2_psrli_w:
7854 NewIntNo = Intrinsic::x86_sse2_psrl_w;
7855 break;
7856 case Intrinsic::x86_sse2_psrli_d:
7857 NewIntNo = Intrinsic::x86_sse2_psrl_d;
7858 break;
7859 case Intrinsic::x86_sse2_psrli_q:
7860 NewIntNo = Intrinsic::x86_sse2_psrl_q;
7861 break;
7862 case Intrinsic::x86_sse2_psrai_w:
7863 NewIntNo = Intrinsic::x86_sse2_psra_w;
7864 break;
7865 case Intrinsic::x86_sse2_psrai_d:
7866 NewIntNo = Intrinsic::x86_sse2_psra_d;
7867 break;
7868 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00007869 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00007870 switch (IntNo) {
7871 case Intrinsic::x86_mmx_pslli_w:
7872 NewIntNo = Intrinsic::x86_mmx_psll_w;
7873 break;
7874 case Intrinsic::x86_mmx_pslli_d:
7875 NewIntNo = Intrinsic::x86_mmx_psll_d;
7876 break;
7877 case Intrinsic::x86_mmx_pslli_q:
7878 NewIntNo = Intrinsic::x86_mmx_psll_q;
7879 break;
7880 case Intrinsic::x86_mmx_psrli_w:
7881 NewIntNo = Intrinsic::x86_mmx_psrl_w;
7882 break;
7883 case Intrinsic::x86_mmx_psrli_d:
7884 NewIntNo = Intrinsic::x86_mmx_psrl_d;
7885 break;
7886 case Intrinsic::x86_mmx_psrli_q:
7887 NewIntNo = Intrinsic::x86_mmx_psrl_q;
7888 break;
7889 case Intrinsic::x86_mmx_psrai_w:
7890 NewIntNo = Intrinsic::x86_mmx_psra_w;
7891 break;
7892 case Intrinsic::x86_mmx_psrai_d:
7893 NewIntNo = Intrinsic::x86_mmx_psra_d;
7894 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00007895 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00007896 }
7897 break;
7898 }
7899 }
Mon P Wangefa42202009-09-03 19:56:25 +00007900
7901 // The vector shift intrinsics with scalars uses 32b shift amounts but
7902 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
7903 // to be zero.
7904 SDValue ShOps[4];
7905 ShOps[0] = ShAmt;
7906 ShOps[1] = DAG.getConstant(0, MVT::i32);
7907 if (ShAmtVT == MVT::v4i32) {
7908 ShOps[2] = DAG.getUNDEF(MVT::i32);
7909 ShOps[3] = DAG.getUNDEF(MVT::i32);
7910 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
7911 } else {
7912 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00007913// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00007914 }
7915
Owen Andersone50ed302009-08-10 22:56:29 +00007916 EVT VT = Op.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007917 ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007918 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007919 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00007920 Op.getOperand(1), ShAmt);
7921 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00007922 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007923}
Evan Cheng72261582005-12-20 06:22:03 +00007924
Dan Gohmand858e902010-04-17 15:26:15 +00007925SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
7926 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00007927 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7928 MFI->setReturnAddressIsTaken(true);
7929
Bill Wendling64e87322009-01-16 19:25:27 +00007930 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007931 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00007932
7933 if (Depth > 0) {
7934 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
7935 SDValue Offset =
7936 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007937 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007938 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007939 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007940 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00007941 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00007942 }
7943
7944 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00007945 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00007946 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007947 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00007948}
7949
Dan Gohmand858e902010-04-17 15:26:15 +00007950SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00007951 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7952 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00007953
Owen Andersone50ed302009-08-10 22:56:29 +00007954 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007955 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00007956 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
7957 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00007958 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00007959 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00007960 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
7961 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00007962 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00007963 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00007964}
7965
Dan Gohman475871a2008-07-27 21:46:04 +00007966SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007967 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00007968 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007969}
7970
Dan Gohmand858e902010-04-17 15:26:15 +00007971SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007972 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00007973 SDValue Chain = Op.getOperand(0);
7974 SDValue Offset = Op.getOperand(1);
7975 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007976 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007977
Dan Gohmand8816272010-08-11 18:14:00 +00007978 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
7979 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
7980 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00007981 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007982
Dan Gohmand8816272010-08-11 18:14:00 +00007983 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
7984 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00007985 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00007986 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
7987 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00007988 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00007989 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007990
Dale Johannesene4d209d2009-02-03 20:21:25 +00007991 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007992 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00007993 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007994}
7995
Dan Gohman475871a2008-07-27 21:46:04 +00007996SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007997 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007998 SDValue Root = Op.getOperand(0);
7999 SDValue Trmp = Op.getOperand(1); // trampoline
8000 SDValue FPtr = Op.getOperand(2); // nested function
8001 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008002 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008003
Dan Gohman69de1932008-02-06 22:27:42 +00008004 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008005
8006 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008007 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00008008
8009 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00008010 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
8011 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00008012
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008013 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
8014 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00008015
8016 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
8017
8018 // Load the pointer to the nested function into R11.
8019 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00008020 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00008021 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008022 Addr, MachinePointerInfo(TrmpAddr),
8023 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008024
Owen Anderson825b72b2009-08-11 20:47:22 +00008025 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8026 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008027 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
8028 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00008029 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008030
8031 // Load the 'nest' parameter value into R10.
8032 // R10 is specified in X86CallingConv.td
8033 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00008034 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8035 DAG.getConstant(10, MVT::i64));
8036 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008037 Addr, MachinePointerInfo(TrmpAddr, 10),
8038 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008039
Owen Anderson825b72b2009-08-11 20:47:22 +00008040 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8041 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008042 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
8043 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00008044 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008045
8046 // Jump to the nested function.
8047 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00008048 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8049 DAG.getConstant(20, MVT::i64));
8050 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008051 Addr, MachinePointerInfo(TrmpAddr, 20),
8052 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008053
8054 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00008055 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8056 DAG.getConstant(22, MVT::i64));
8057 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008058 MachinePointerInfo(TrmpAddr, 22),
8059 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008060
Dan Gohman475871a2008-07-27 21:46:04 +00008061 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008062 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008063 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008064 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00008065 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00008066 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00008067 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00008068 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008069
8070 switch (CC) {
8071 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00008072 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008073 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008074 case CallingConv::X86_StdCall: {
8075 // Pass 'nest' parameter in ECX.
8076 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008077 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008078
8079 // Check that ECX wasn't needed by an 'inreg' parameter.
8080 const FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00008081 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008082
Chris Lattner58d74912008-03-12 17:45:29 +00008083 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00008084 unsigned InRegCount = 0;
8085 unsigned Idx = 1;
8086
8087 for (FunctionType::param_iterator I = FTy->param_begin(),
8088 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00008089 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00008090 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008091 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008092
8093 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00008094 report_fatal_error("Nest register in use - reduce number of inreg"
8095 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008096 }
8097 }
8098 break;
8099 }
8100 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00008101 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00008102 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008103 // Pass 'nest' parameter in EAX.
8104 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008105 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008106 break;
8107 }
8108
Dan Gohman475871a2008-07-27 21:46:04 +00008109 SDValue OutChains[4];
8110 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008111
Owen Anderson825b72b2009-08-11 20:47:22 +00008112 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8113 DAG.getConstant(10, MVT::i32));
8114 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008115
Chris Lattnera62fe662010-02-05 19:20:30 +00008116 // This is storing the opcode for MOV32ri.
8117 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008118 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00008119 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008120 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008121 Trmp, MachinePointerInfo(TrmpAddr),
8122 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008123
Owen Anderson825b72b2009-08-11 20:47:22 +00008124 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8125 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008126 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
8127 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00008128 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008129
Chris Lattnera62fe662010-02-05 19:20:30 +00008130 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00008131 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8132 DAG.getConstant(5, MVT::i32));
8133 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008134 MachinePointerInfo(TrmpAddr, 5),
8135 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008136
Owen Anderson825b72b2009-08-11 20:47:22 +00008137 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8138 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008139 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
8140 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00008141 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008142
Dan Gohman475871a2008-07-27 21:46:04 +00008143 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008144 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008145 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008146 }
8147}
8148
Dan Gohmand858e902010-04-17 15:26:15 +00008149SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
8150 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008151 /*
8152 The rounding mode is in bits 11:10 of FPSR, and has the following
8153 settings:
8154 00 Round to nearest
8155 01 Round to -inf
8156 10 Round to +inf
8157 11 Round to 0
8158
8159 FLT_ROUNDS, on the other hand, expects the following:
8160 -1 Undefined
8161 0 Round to 0
8162 1 Round to nearest
8163 2 Round to +inf
8164 3 Round to -inf
8165
8166 To perform the conversion, we do:
8167 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
8168 */
8169
8170 MachineFunction &MF = DAG.getMachineFunction();
8171 const TargetMachine &TM = MF.getTarget();
8172 const TargetFrameInfo &TFI = *TM.getFrameInfo();
8173 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00008174 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00008175 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008176
8177 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00008178 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008179 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008180
Michael J. Spencerec38de22010-10-10 22:04:20 +00008181
Chris Lattner2156b792010-09-22 01:11:26 +00008182 MachineMemOperand *MMO =
8183 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8184 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008185
Chris Lattner2156b792010-09-22 01:11:26 +00008186 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
8187 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
8188 DAG.getVTList(MVT::Other),
8189 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008190
8191 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00008192 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00008193 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008194
8195 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00008196 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00008197 DAG.getNode(ISD::SRL, DL, MVT::i16,
8198 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008199 CWD, DAG.getConstant(0x800, MVT::i16)),
8200 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00008201 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00008202 DAG.getNode(ISD::SRL, DL, MVT::i16,
8203 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008204 CWD, DAG.getConstant(0x400, MVT::i16)),
8205 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008206
Dan Gohman475871a2008-07-27 21:46:04 +00008207 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00008208 DAG.getNode(ISD::AND, DL, MVT::i16,
8209 DAG.getNode(ISD::ADD, DL, MVT::i16,
8210 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00008211 DAG.getConstant(1, MVT::i16)),
8212 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008213
8214
Duncan Sands83ec4b62008-06-06 12:08:01 +00008215 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00008216 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008217}
8218
Dan Gohmand858e902010-04-17 15:26:15 +00008219SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008220 EVT VT = Op.getValueType();
8221 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008222 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008223 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008224
8225 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008226 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00008227 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00008228 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008229 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008230 }
Evan Cheng18efe262007-12-14 02:13:44 +00008231
Evan Cheng152804e2007-12-14 08:30:15 +00008232 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008233 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008234 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008235
8236 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008237 SDValue Ops[] = {
8238 Op,
8239 DAG.getConstant(NumBits+NumBits-1, OpVT),
8240 DAG.getConstant(X86::COND_E, MVT::i8),
8241 Op.getValue(1)
8242 };
8243 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008244
8245 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00008246 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00008247
Owen Anderson825b72b2009-08-11 20:47:22 +00008248 if (VT == MVT::i8)
8249 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008250 return Op;
8251}
8252
Dan Gohmand858e902010-04-17 15:26:15 +00008253SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008254 EVT VT = Op.getValueType();
8255 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008256 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008257 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008258
8259 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008260 if (VT == MVT::i8) {
8261 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008262 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008263 }
Evan Cheng152804e2007-12-14 08:30:15 +00008264
8265 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008266 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008267 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008268
8269 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008270 SDValue Ops[] = {
8271 Op,
8272 DAG.getConstant(NumBits, OpVT),
8273 DAG.getConstant(X86::COND_E, MVT::i8),
8274 Op.getValue(1)
8275 };
8276 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008277
Owen Anderson825b72b2009-08-11 20:47:22 +00008278 if (VT == MVT::i8)
8279 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008280 return Op;
8281}
8282
Dan Gohmand858e902010-04-17 15:26:15 +00008283SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008284 EVT VT = Op.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00008285 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008286 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00008287
Mon P Wangaf9b9522008-12-18 21:42:19 +00008288 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
8289 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
8290 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
8291 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
8292 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
8293 //
8294 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
8295 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
8296 // return AloBlo + AloBhi + AhiBlo;
8297
8298 SDValue A = Op.getOperand(0);
8299 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008300
Dale Johannesene4d209d2009-02-03 20:21:25 +00008301 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008302 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8303 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008304 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008305 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8306 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008307 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008308 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008309 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008310 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008311 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008312 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008313 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008314 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008315 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008316 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008317 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8318 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008319 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008320 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8321 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008322 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
8323 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008324 return Res;
8325}
8326
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008327SDValue X86TargetLowering::LowerSHL(SDValue Op, SelectionDAG &DAG) const {
8328 EVT VT = Op.getValueType();
8329 DebugLoc dl = Op.getDebugLoc();
8330 SDValue R = Op.getOperand(0);
8331
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008332 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008333
Nate Begeman51409212010-07-28 00:21:48 +00008334 assert(Subtarget->hasSSE41() && "Cannot lower SHL without SSE4.1 or later");
8335
8336 if (VT == MVT::v4i32) {
8337 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8338 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8339 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
8340
8341 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008342
Nate Begeman51409212010-07-28 00:21:48 +00008343 std::vector<Constant*> CV(4, CI);
8344 Constant *C = ConstantVector::get(CV);
8345 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8346 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008347 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008348 false, false, 16);
8349
8350 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008351 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +00008352 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
8353 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
8354 }
8355 if (VT == MVT::v16i8) {
8356 // a = a << 5;
8357 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8358 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
8359 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
8360
8361 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
8362 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
8363
8364 std::vector<Constant*> CVM1(16, CM1);
8365 std::vector<Constant*> CVM2(16, CM2);
8366 Constant *C = ConstantVector::get(CVM1);
8367 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8368 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008369 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008370 false, false, 16);
8371
8372 // r = pblendv(r, psllw(r & (char16)15, 4), a);
8373 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8374 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8375 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8376 DAG.getConstant(4, MVT::i32));
8377 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8378 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8379 R, M, Op);
8380 // a += a
8381 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008382
Nate Begeman51409212010-07-28 00:21:48 +00008383 C = ConstantVector::get(CVM2);
8384 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8385 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008386 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00008387 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008388
Nate Begeman51409212010-07-28 00:21:48 +00008389 // r = pblendv(r, psllw(r & (char16)63, 2), a);
8390 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8391 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8392 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8393 DAG.getConstant(2, MVT::i32));
8394 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8395 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8396 R, M, Op);
8397 // a += a
8398 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008399
Nate Begeman51409212010-07-28 00:21:48 +00008400 // return pblendv(r, r+r, a);
8401 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8402 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8403 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
8404 return R;
8405 }
8406 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008407}
Mon P Wangaf9b9522008-12-18 21:42:19 +00008408
Dan Gohmand858e902010-04-17 15:26:15 +00008409SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00008410 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
8411 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00008412 // looks for this combo and may remove the "setcc" instruction if the "setcc"
8413 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00008414 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00008415 SDValue LHS = N->getOperand(0);
8416 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00008417 unsigned BaseOp = 0;
8418 unsigned Cond = 0;
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008419 DebugLoc dl = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00008420
8421 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008422 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00008423 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00008424 // A subtract of one will be selected as a INC. Note that INC doesn't
8425 // set CF, so we can't do this for UADDO.
8426 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
8427 if (C->getAPIntValue() == 1) {
8428 BaseOp = X86ISD::INC;
8429 Cond = X86::COND_O;
8430 break;
8431 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008432 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00008433 Cond = X86::COND_O;
8434 break;
8435 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008436 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00008437 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008438 break;
8439 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00008440 // A subtract of one will be selected as a DEC. Note that DEC doesn't
8441 // set CF, so we can't do this for USUBO.
8442 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
8443 if (C->getAPIntValue() == 1) {
8444 BaseOp = X86ISD::DEC;
8445 Cond = X86::COND_O;
8446 break;
8447 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008448 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00008449 Cond = X86::COND_O;
8450 break;
8451 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008452 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00008453 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008454 break;
8455 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00008456 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00008457 Cond = X86::COND_O;
8458 break;
8459 case ISD::UMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00008460 BaseOp = X86ISD::UMUL;
Dan Gohman653456c2009-01-07 00:15:08 +00008461 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008462 break;
8463 }
Bill Wendling3fafd932008-11-26 22:37:40 +00008464
Bill Wendling61edeb52008-12-02 01:06:39 +00008465 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008466 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008467 SDValue Sum = DAG.getNode(BaseOp, dl, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00008468
Bill Wendling61edeb52008-12-02 01:06:39 +00008469 SDValue SetCC =
Dale Johannesene4d209d2009-02-03 20:21:25 +00008470 DAG.getNode(X86ISD::SETCC, dl, N->getValueType(1),
Owen Anderson825b72b2009-08-11 20:47:22 +00008471 DAG.getConstant(Cond, MVT::i32), SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00008472
Bill Wendling61edeb52008-12-02 01:06:39 +00008473 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
8474 return Sum;
Bill Wendling41ea7e72008-11-24 19:21:46 +00008475}
8476
Eric Christopher9a9d2752010-07-22 02:48:34 +00008477SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
8478 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008479
Eric Christopherb6729dc2010-08-04 23:03:04 +00008480 if (!Subtarget->hasSSE2()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +00008481 SDValue Chain = Op.getOperand(0);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008482 SDValue Zero = DAG.getConstant(0,
Eric Christopherb6729dc2010-08-04 23:03:04 +00008483 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +00008484 SDValue Ops[] = {
8485 DAG.getRegister(X86::ESP, MVT::i32), // Base
8486 DAG.getTargetConstant(1, MVT::i8), // Scale
8487 DAG.getRegister(0, MVT::i32), // Index
8488 DAG.getTargetConstant(0, MVT::i32), // Disp
8489 DAG.getRegister(0, MVT::i32), // Segment.
8490 Zero,
8491 Chain
8492 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00008493 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +00008494 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
8495 array_lengthof(Ops));
8496 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +00008497 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008498
Eric Christopher9a9d2752010-07-22 02:48:34 +00008499 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +00008500 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +00008501 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008502
Chris Lattner132929a2010-08-14 17:26:09 +00008503 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
8504 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
8505 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
8506 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008507
Chris Lattner132929a2010-08-14 17:26:09 +00008508 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
8509 if (!Op1 && !Op2 && !Op3 && Op4)
8510 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008511
Chris Lattner132929a2010-08-14 17:26:09 +00008512 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
8513 if (Op1 && !Op2 && !Op3 && !Op4)
8514 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008515
8516 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +00008517 // (MFENCE)>;
8518 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +00008519}
8520
Dan Gohmand858e902010-04-17 15:26:15 +00008521SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008522 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008523 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00008524 unsigned Reg = 0;
8525 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00008526 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00008527 default:
8528 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008529 case MVT::i8: Reg = X86::AL; size = 1; break;
8530 case MVT::i16: Reg = X86::AX; size = 2; break;
8531 case MVT::i32: Reg = X86::EAX; size = 4; break;
8532 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00008533 assert(Subtarget->is64Bit() && "Node not type legal!");
8534 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00008535 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008536 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008537 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00008538 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00008539 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00008540 Op.getOperand(1),
8541 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +00008542 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +00008543 cpIn.getValue(1) };
Owen Anderson825b72b2009-08-11 20:47:22 +00008544 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008545 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
8546 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
8547 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +00008548 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008549 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00008550 return cpOut;
8551}
8552
Duncan Sands1607f052008-12-01 11:39:25 +00008553SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008554 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +00008555 assert(Subtarget->is64Bit() && "Result not type legalized?");
Owen Anderson825b72b2009-08-11 20:47:22 +00008556 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00008557 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008558 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008559 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008560 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
8561 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00008562 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +00008563 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
8564 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +00008565 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +00008566 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00008567 rdx.getValue(1)
8568 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008569 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00008570}
8571
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008572SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
Dale Johannesen7d07b482010-05-21 00:52:33 +00008573 SelectionDAG &DAG) const {
8574 EVT SrcVT = Op.getOperand(0).getValueType();
8575 EVT DstVT = Op.getValueType();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008576 assert((Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
Dale Johannesen7d07b482010-05-21 00:52:33 +00008577 Subtarget->hasMMX() && !DisableMMX) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008578 "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +00008579 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +00008580 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008581 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +00008582 // i64 <=> MMX conversions are Legal.
8583 if (SrcVT==MVT::i64 && DstVT.isVector())
8584 return Op;
8585 if (DstVT==MVT::i64 && SrcVT.isVector())
8586 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +00008587 // MMX <=> MMX conversions are Legal.
8588 if (SrcVT.isVector() && DstVT.isVector())
8589 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +00008590 // All other conversions need to be expanded.
8591 return SDValue();
8592}
Dan Gohmand858e902010-04-17 15:26:15 +00008593SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +00008594 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008595 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00008596 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008597 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00008598 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008599 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008600 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00008601 Node->getOperand(0),
8602 Node->getOperand(1), negOp,
8603 cast<AtomicSDNode>(Node)->getSrcValue(),
8604 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang63307c32008-05-05 19:05:59 +00008605}
8606
Evan Cheng0db9fe62006-04-25 20:13:52 +00008607/// LowerOperation - Provide custom lowering hooks for some operations.
8608///
Dan Gohmand858e902010-04-17 15:26:15 +00008609SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008610 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008611 default: llvm_unreachable("Should not custom lower this!");
Eric Christopher9a9d2752010-07-22 02:48:34 +00008612 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008613 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
8614 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008615 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00008616 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008617 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
8618 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
8619 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
8620 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
8621 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
8622 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008623 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00008624 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +00008625 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008626 case ISD::SHL_PARTS:
8627 case ISD::SRA_PARTS:
8628 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
8629 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008630 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008631 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00008632 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008633 case ISD::FABS: return LowerFABS(Op, DAG);
8634 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00008635 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00008636 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00008637 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00008638 case ISD::SELECT: return LowerSELECT(Op, DAG);
8639 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008640 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008641 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00008642 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00008643 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008644 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00008645 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
8646 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008647 case ISD::FRAME_TO_ARGS_OFFSET:
8648 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008649 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008650 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008651 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00008652 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00008653 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
8654 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008655 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008656 case ISD::SHL: return LowerSHL(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00008657 case ISD::SADDO:
8658 case ISD::UADDO:
8659 case ISD::SSUBO:
8660 case ISD::USUBO:
8661 case ISD::SMULO:
8662 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00008663 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008664 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008665 }
Chris Lattner27a6c732007-11-24 07:07:01 +00008666}
8667
Duncan Sands1607f052008-12-01 11:39:25 +00008668void X86TargetLowering::
8669ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00008670 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008671 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008672 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00008673 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +00008674
8675 SDValue Chain = Node->getOperand(0);
8676 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008677 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008678 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00008679 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008680 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +00008681 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +00008682 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +00008683 SDValue Result =
8684 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
8685 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +00008686 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +00008687 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008688 Results.push_back(Result.getValue(2));
8689}
8690
Duncan Sands126d9072008-07-04 11:47:58 +00008691/// ReplaceNodeResults - Replace a node with an illegal result type
8692/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00008693void X86TargetLowering::ReplaceNodeResults(SDNode *N,
8694 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00008695 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +00008696 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +00008697 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00008698 default:
Duncan Sands1607f052008-12-01 11:39:25 +00008699 assert(false && "Do not know how to custom type legalize this operation!");
8700 return;
8701 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +00008702 std::pair<SDValue,SDValue> Vals =
8703 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +00008704 SDValue FIST = Vals.first, StackSlot = Vals.second;
8705 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +00008706 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +00008707 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +00008708 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
8709 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +00008710 }
8711 return;
8712 }
8713 case ISD::READCYCLECOUNTER: {
Owen Anderson825b72b2009-08-11 20:47:22 +00008714 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00008715 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008716 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008717 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +00008718 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00008719 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008720 eax.getValue(2));
8721 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
8722 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +00008723 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008724 Results.push_back(edx.getValue(1));
8725 return;
8726 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008727 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +00008728 EVT T = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008729 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands1607f052008-12-01 11:39:25 +00008730 SDValue cpInL, cpInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00008731 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
8732 DAG.getConstant(0, MVT::i32));
8733 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
8734 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00008735 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
8736 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +00008737 cpInL.getValue(1));
8738 SDValue swapInL, swapInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00008739 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
8740 DAG.getConstant(0, MVT::i32));
8741 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
8742 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00008743 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +00008744 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00008745 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +00008746 swapInL.getValue(1));
8747 SDValue Ops[] = { swapInH.getValue(0),
8748 N->getOperand(1),
8749 swapInH.getValue(1) };
Owen Anderson825b72b2009-08-11 20:47:22 +00008750 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +00008751 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
8752 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys,
8753 Ops, 3, T, MMO);
Dale Johannesendd64c412009-02-04 00:33:20 +00008754 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson825b72b2009-08-11 20:47:22 +00008755 MVT::i32, Result.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00008756 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson825b72b2009-08-11 20:47:22 +00008757 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +00008758 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson825b72b2009-08-11 20:47:22 +00008759 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008760 Results.push_back(cpOutH.getValue(1));
8761 return;
8762 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008763 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00008764 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
8765 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008766 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00008767 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
8768 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008769 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00008770 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
8771 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008772 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00008773 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
8774 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008775 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00008776 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
8777 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008778 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00008779 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
8780 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008781 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00008782 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
8783 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00008784 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00008785}
8786
Evan Cheng72261582005-12-20 06:22:03 +00008787const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
8788 switch (Opcode) {
8789 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00008790 case X86ISD::BSF: return "X86ISD::BSF";
8791 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00008792 case X86ISD::SHLD: return "X86ISD::SHLD";
8793 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00008794 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00008795 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00008796 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00008797 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00008798 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00008799 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00008800 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
8801 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
8802 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00008803 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00008804 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00008805 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +00008806 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00008807 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00008808 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00008809 case X86ISD::COMI: return "X86ISD::COMI";
8810 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00008811 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +00008812 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Evan Cheng72261582005-12-20 06:22:03 +00008813 case X86ISD::CMOV: return "X86ISD::CMOV";
8814 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00008815 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00008816 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
8817 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00008818 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00008819 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +00008820 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +00008821 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00008822 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00008823 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
8824 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00008825 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +00008826 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Evan Cheng8ca29322006-11-10 21:43:37 +00008827 case X86ISD::FMAX: return "X86ISD::FMAX";
8828 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00008829 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
8830 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008831 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +00008832 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008833 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00008834 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008835 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00008836 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
8837 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00008838 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
8839 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
8840 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
8841 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
8842 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
8843 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00008844 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
8845 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00008846 case X86ISD::VSHL: return "X86ISD::VSHL";
8847 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00008848 case X86ISD::CMPPD: return "X86ISD::CMPPD";
8849 case X86ISD::CMPPS: return "X86ISD::CMPPS";
8850 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
8851 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
8852 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
8853 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
8854 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
8855 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
8856 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
8857 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008858 case X86ISD::ADD: return "X86ISD::ADD";
8859 case X86ISD::SUB: return "X86ISD::SUB";
Bill Wendlingd350e022008-12-12 21:15:41 +00008860 case X86ISD::SMUL: return "X86ISD::SMUL";
8861 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +00008862 case X86ISD::INC: return "X86ISD::INC";
8863 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +00008864 case X86ISD::OR: return "X86ISD::OR";
8865 case X86ISD::XOR: return "X86ISD::XOR";
8866 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +00008867 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +00008868 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008869 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008870 case X86ISD::PALIGN: return "X86ISD::PALIGN";
8871 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
8872 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
8873 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
8874 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
8875 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
8876 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
8877 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
8878 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008879 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00008880 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008881 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00008882 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
8883 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008884 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
8885 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
8886 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
8887 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
8888 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
8889 case X86ISD::MOVSD: return "X86ISD::MOVSD";
8890 case X86ISD::MOVSS: return "X86ISD::MOVSS";
8891 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
8892 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
8893 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
8894 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
8895 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
8896 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
8897 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
8898 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
8899 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
8900 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
8901 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
8902 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Dan Gohmand6708ea2009-08-15 01:38:56 +00008903 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +00008904 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008905 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Evan Cheng72261582005-12-20 06:22:03 +00008906 }
8907}
Evan Cheng3a03ebb2005-12-21 23:05:39 +00008908
Chris Lattnerc9addb72007-03-30 23:15:24 +00008909// isLegalAddressingMode - Return true if the addressing mode represented
8910// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00008911bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerc9addb72007-03-30 23:15:24 +00008912 const Type *Ty) const {
8913 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008914 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +00008915 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +00008916
Chris Lattnerc9addb72007-03-30 23:15:24 +00008917 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008918 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +00008919 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00008920
Chris Lattnerc9addb72007-03-30 23:15:24 +00008921 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +00008922 unsigned GVFlags =
8923 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008924
Chris Lattnerdfed4132009-07-10 07:38:24 +00008925 // If a reference to this global requires an extra load, we can't fold it.
8926 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +00008927 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008928
Chris Lattnerdfed4132009-07-10 07:38:24 +00008929 // If BaseGV requires a register for the PIC base, we cannot also have a
8930 // BaseReg specified.
8931 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +00008932 return false;
Evan Cheng52787842007-08-01 23:46:47 +00008933
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008934 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +00008935 if ((M != CodeModel::Small || R != Reloc::Static) &&
8936 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008937 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +00008938 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008939
Chris Lattnerc9addb72007-03-30 23:15:24 +00008940 switch (AM.Scale) {
8941 case 0:
8942 case 1:
8943 case 2:
8944 case 4:
8945 case 8:
8946 // These scales always work.
8947 break;
8948 case 3:
8949 case 5:
8950 case 9:
8951 // These scales are formed with basereg+scalereg. Only accept if there is
8952 // no basereg yet.
8953 if (AM.HasBaseReg)
8954 return false;
8955 break;
8956 default: // Other stuff never works.
8957 return false;
8958 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008959
Chris Lattnerc9addb72007-03-30 23:15:24 +00008960 return true;
8961}
8962
8963
Evan Cheng2bd122c2007-10-26 01:56:11 +00008964bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00008965 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +00008966 return false;
Evan Chenge127a732007-10-29 07:57:50 +00008967 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
8968 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00008969 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +00008970 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00008971 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +00008972}
8973
Owen Andersone50ed302009-08-10 22:56:29 +00008974bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00008975 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +00008976 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008977 unsigned NumBits1 = VT1.getSizeInBits();
8978 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00008979 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +00008980 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00008981 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00008982}
Evan Cheng2bd122c2007-10-26 01:56:11 +00008983
Dan Gohman97121ba2009-04-08 00:15:30 +00008984bool X86TargetLowering::isZExtFree(const Type *Ty1, const Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00008985 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00008986 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00008987}
8988
Owen Andersone50ed302009-08-10 22:56:29 +00008989bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00008990 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +00008991 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00008992}
8993
Owen Andersone50ed302009-08-10 22:56:29 +00008994bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +00008995 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +00008996 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +00008997}
8998
Evan Cheng60c07e12006-07-05 22:17:51 +00008999/// isShuffleMaskLegal - Targets can use this to indicate that they only
9000/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
9001/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
9002/// are assumed to be legal.
9003bool
Eric Christopherfd179292009-08-27 18:07:15 +00009004X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +00009005 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +00009006 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +00009007 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +00009008 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +00009009
Nate Begemana09008b2009-10-19 02:17:23 +00009010 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +00009011 return (VT.getVectorNumElements() == 2 ||
9012 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
9013 isMOVLMask(M, VT) ||
9014 isSHUFPMask(M, VT) ||
9015 isPSHUFDMask(M, VT) ||
9016 isPSHUFHWMask(M, VT) ||
9017 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +00009018 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +00009019 isUNPCKLMask(M, VT) ||
9020 isUNPCKHMask(M, VT) ||
9021 isUNPCKL_v_undef_Mask(M, VT) ||
9022 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009023}
9024
Dan Gohman7d8143f2008-04-09 20:09:42 +00009025bool
Nate Begeman5a5ca152009-04-29 05:20:52 +00009026X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +00009027 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00009028 unsigned NumElts = VT.getVectorNumElements();
9029 // FIXME: This collection of masks seems suspect.
9030 if (NumElts == 2)
9031 return true;
9032 if (NumElts == 4 && VT.getSizeInBits() == 128) {
9033 return (isMOVLMask(Mask, VT) ||
9034 isCommutedMOVLMask(Mask, VT, true) ||
9035 isSHUFPMask(Mask, VT) ||
9036 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009037 }
9038 return false;
9039}
9040
9041//===----------------------------------------------------------------------===//
9042// X86 Scheduler Hooks
9043//===----------------------------------------------------------------------===//
9044
Mon P Wang63307c32008-05-05 19:05:59 +00009045// private utility function
9046MachineBasicBlock *
9047X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
9048 MachineBasicBlock *MBB,
9049 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009050 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009051 unsigned LoadOpc,
9052 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009053 unsigned notOpc,
9054 unsigned EAXreg,
9055 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009056 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009057 // For the atomic bitwise operator, we generate
9058 // thisMBB:
9059 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009060 // ld t1 = [bitinstr.addr]
9061 // op t2 = t1, [bitinstr.val]
9062 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009063 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9064 // bz newMBB
9065 // fallthrough -->nextMBB
9066 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9067 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009068 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009069 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009070
Mon P Wang63307c32008-05-05 19:05:59 +00009071 /// First build the CFG
9072 MachineFunction *F = MBB->getParent();
9073 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009074 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9075 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9076 F->insert(MBBIter, newMBB);
9077 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009078
Dan Gohman14152b42010-07-06 20:24:04 +00009079 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9080 nextMBB->splice(nextMBB->begin(), thisMBB,
9081 llvm::next(MachineBasicBlock::iterator(bInstr)),
9082 thisMBB->end());
9083 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009084
Mon P Wang63307c32008-05-05 19:05:59 +00009085 // Update thisMBB to fall through to newMBB
9086 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009087
Mon P Wang63307c32008-05-05 19:05:59 +00009088 // newMBB jumps to itself and fall through to nextMBB
9089 newMBB->addSuccessor(nextMBB);
9090 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009091
Mon P Wang63307c32008-05-05 19:05:59 +00009092 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009093 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009094 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +00009095 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009096 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009097 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009098 int numArgs = bInstr->getNumOperands() - 1;
9099 for (int i=0; i < numArgs; ++i)
9100 argOpers[i] = &bInstr->getOperand(i+1);
9101
9102 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009103 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009104 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009105
Dale Johannesen140be2d2008-08-19 18:47:28 +00009106 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009107 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009108 for (int i=0; i <= lastAddrIndx; ++i)
9109 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009110
Dale Johannesen140be2d2008-08-19 18:47:28 +00009111 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009112 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009113 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009114 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009115 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009116 tt = t1;
9117
Dale Johannesen140be2d2008-08-19 18:47:28 +00009118 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +00009119 assert((argOpers[valArgIndx]->isReg() ||
9120 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009121 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +00009122 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009123 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009124 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009125 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009126 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +00009127 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009128
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009129 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +00009130 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009131
Dale Johannesene4d209d2009-02-03 20:21:25 +00009132 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +00009133 for (int i=0; i <= lastAddrIndx; ++i)
9134 (*MIB).addOperand(*argOpers[i]);
9135 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +00009136 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009137 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9138 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +00009139
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009140 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +00009141 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009142
Mon P Wang63307c32008-05-05 19:05:59 +00009143 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009144 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009145
Dan Gohman14152b42010-07-06 20:24:04 +00009146 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009147 return nextMBB;
9148}
9149
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00009150// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +00009151MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009152X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
9153 MachineBasicBlock *MBB,
9154 unsigned regOpcL,
9155 unsigned regOpcH,
9156 unsigned immOpcL,
9157 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009158 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009159 // For the atomic bitwise operator, we generate
9160 // thisMBB (instructions are in pairs, except cmpxchg8b)
9161 // ld t1,t2 = [bitinstr.addr]
9162 // newMBB:
9163 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
9164 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +00009165 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009166 // mov ECX, EBX <- t5, t6
9167 // mov EAX, EDX <- t1, t2
9168 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
9169 // mov t3, t4 <- EAX, EDX
9170 // bz newMBB
9171 // result in out1, out2
9172 // fallthrough -->nextMBB
9173
9174 const TargetRegisterClass *RC = X86::GR32RegisterClass;
9175 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009176 const unsigned NotOpc = X86::NOT32r;
9177 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9178 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9179 MachineFunction::iterator MBBIter = MBB;
9180 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009181
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009182 /// First build the CFG
9183 MachineFunction *F = MBB->getParent();
9184 MachineBasicBlock *thisMBB = MBB;
9185 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9186 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9187 F->insert(MBBIter, newMBB);
9188 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009189
Dan Gohman14152b42010-07-06 20:24:04 +00009190 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9191 nextMBB->splice(nextMBB->begin(), thisMBB,
9192 llvm::next(MachineBasicBlock::iterator(bInstr)),
9193 thisMBB->end());
9194 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009195
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009196 // Update thisMBB to fall through to newMBB
9197 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009198
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009199 // newMBB jumps to itself and fall through to nextMBB
9200 newMBB->addSuccessor(nextMBB);
9201 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009202
Dale Johannesene4d209d2009-02-03 20:21:25 +00009203 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009204 // Insert instructions into newMBB based on incoming instruction
9205 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009206 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009207 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009208 MachineOperand& dest1Oper = bInstr->getOperand(0);
9209 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009210 MachineOperand* argOpers[2 + X86::AddrNumOperands];
9211 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009212 argOpers[i] = &bInstr->getOperand(i+2);
9213
Dan Gohman71ea4e52010-05-14 21:01:44 +00009214 // We use some of the operands multiple times, so conservatively just
9215 // clear any kill flags that might be present.
9216 if (argOpers[i]->isReg() && argOpers[i]->isUse())
9217 argOpers[i]->setIsKill(false);
9218 }
9219
Evan Chengad5b52f2010-01-08 19:14:57 +00009220 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009221 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +00009222
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009223 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009224 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009225 for (int i=0; i <= lastAddrIndx; ++i)
9226 (*MIB).addOperand(*argOpers[i]);
9227 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009228 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +00009229 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +00009230 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009231 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +00009232 MachineOperand newOp3 = *(argOpers[3]);
9233 if (newOp3.isImm())
9234 newOp3.setImm(newOp3.getImm()+4);
9235 else
9236 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009237 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +00009238 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009239
9240 // t3/4 are defined later, at the bottom of the loop
9241 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
9242 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009243 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009244 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009245 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009246 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
9247
Evan Cheng306b4ca2010-01-08 23:41:50 +00009248 // The subsequent operations should be using the destination registers of
9249 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +00009250 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009251 t1 = F->getRegInfo().createVirtualRegister(RC);
9252 t2 = F->getRegInfo().createVirtualRegister(RC);
9253 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
9254 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009255 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009256 t1 = dest1Oper.getReg();
9257 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009258 }
9259
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009260 int valArgIndx = lastAddrIndx + 1;
9261 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +00009262 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009263 "invalid operand");
9264 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
9265 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009266 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009267 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009268 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009269 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +00009270 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009271 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009272 (*MIB).addOperand(*argOpers[valArgIndx]);
9273 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009274 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009275 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009276 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009277 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009278 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009279 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009280 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +00009281 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009282 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009283 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009284
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009285 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009286 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009287 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009288 MIB.addReg(t2);
9289
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009290 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009291 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009292 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009293 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +00009294
Dale Johannesene4d209d2009-02-03 20:21:25 +00009295 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009296 for (int i=0; i <= lastAddrIndx; ++i)
9297 (*MIB).addOperand(*argOpers[i]);
9298
9299 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009300 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9301 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009302
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009303 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009304 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009305 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009306 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009307
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009308 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009309 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009310
Dan Gohman14152b42010-07-06 20:24:04 +00009311 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009312 return nextMBB;
9313}
9314
9315// private utility function
9316MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +00009317X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
9318 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009319 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009320 // For the atomic min/max operator, we generate
9321 // thisMBB:
9322 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009323 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +00009324 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +00009325 // cmp t1, t2
9326 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +00009327 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009328 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9329 // bz newMBB
9330 // fallthrough -->nextMBB
9331 //
9332 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9333 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009334 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009335 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009336
Mon P Wang63307c32008-05-05 19:05:59 +00009337 /// First build the CFG
9338 MachineFunction *F = MBB->getParent();
9339 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009340 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9341 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9342 F->insert(MBBIter, newMBB);
9343 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009344
Dan Gohman14152b42010-07-06 20:24:04 +00009345 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9346 nextMBB->splice(nextMBB->begin(), thisMBB,
9347 llvm::next(MachineBasicBlock::iterator(mInstr)),
9348 thisMBB->end());
9349 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009350
Mon P Wang63307c32008-05-05 19:05:59 +00009351 // Update thisMBB to fall through to newMBB
9352 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009353
Mon P Wang63307c32008-05-05 19:05:59 +00009354 // newMBB jumps to newMBB and fall through to nextMBB
9355 newMBB->addSuccessor(nextMBB);
9356 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009357
Dale Johannesene4d209d2009-02-03 20:21:25 +00009358 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009359 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009360 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009361 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +00009362 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009363 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009364 int numArgs = mInstr->getNumOperands() - 1;
9365 for (int i=0; i < numArgs; ++i)
9366 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009367
Mon P Wang63307c32008-05-05 19:05:59 +00009368 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009369 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009370 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009371
Mon P Wangab3e7472008-05-05 22:56:23 +00009372 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009373 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009374 for (int i=0; i <= lastAddrIndx; ++i)
9375 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +00009376
Mon P Wang63307c32008-05-05 19:05:59 +00009377 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +00009378 assert((argOpers[valArgIndx]->isReg() ||
9379 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009380 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +00009381
9382 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +00009383 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009384 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +00009385 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009386 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009387 (*MIB).addOperand(*argOpers[valArgIndx]);
9388
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009389 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +00009390 MIB.addReg(t1);
9391
Dale Johannesene4d209d2009-02-03 20:21:25 +00009392 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +00009393 MIB.addReg(t1);
9394 MIB.addReg(t2);
9395
9396 // Generate movc
9397 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009398 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +00009399 MIB.addReg(t2);
9400 MIB.addReg(t1);
9401
9402 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +00009403 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +00009404 for (int i=0; i <= lastAddrIndx; ++i)
9405 (*MIB).addOperand(*argOpers[i]);
9406 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +00009407 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009408 (*MIB).setMemRefs(mInstr->memoperands_begin(),
9409 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +00009410
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009411 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +00009412 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009413
Mon P Wang63307c32008-05-05 19:05:59 +00009414 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009415 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009416
Dan Gohman14152b42010-07-06 20:24:04 +00009417 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009418 return nextMBB;
9419}
9420
Eric Christopherf83a5de2009-08-27 18:08:16 +00009421// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009422// or XMM0_V32I8 in AVX all of this code can be replaced with that
9423// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +00009424MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +00009425X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +00009426 unsigned numArgs, bool memArg) const {
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009427 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
9428 "Target must have SSE4.2 or AVX features enabled");
9429
Eric Christopherb120ab42009-08-18 22:50:32 +00009430 DebugLoc dl = MI->getDebugLoc();
9431 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Eric Christopherb120ab42009-08-18 22:50:32 +00009432 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009433 if (!Subtarget->hasAVX()) {
9434 if (memArg)
9435 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
9436 else
9437 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
9438 } else {
9439 if (memArg)
9440 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
9441 else
9442 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
9443 }
Eric Christopherb120ab42009-08-18 22:50:32 +00009444
Eric Christopher41c902f2010-11-30 08:20:21 +00009445 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Eric Christopherb120ab42009-08-18 22:50:32 +00009446 for (unsigned i = 0; i < numArgs; ++i) {
9447 MachineOperand &Op = MI->getOperand(i+1);
Eric Christopherb120ab42009-08-18 22:50:32 +00009448 if (!(Op.isReg() && Op.isImplicit()))
9449 MIB.addOperand(Op);
9450 }
Eric Christopher41c902f2010-11-30 08:20:21 +00009451 BuildMI(*BB, MI, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +00009452 .addReg(X86::XMM0);
9453
Dan Gohman14152b42010-07-06 20:24:04 +00009454 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +00009455 return BB;
9456}
9457
9458MachineBasicBlock *
Eric Christopher228232b2010-11-30 07:20:12 +00009459X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher82be2202010-11-30 08:10:28 +00009460 assert(Subtarget->hasSSE3() && "Target must have SSE3 features enabled");
Eric Christopher228232b2010-11-30 07:20:12 +00009461
9462 DebugLoc dl = MI->getDebugLoc();
9463 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9464
9465 // Address into RAX/EAX, other two args into ECX, EDX.
9466 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
9467 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
9468 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
9469 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +00009470 MIB.addOperand(MI->getOperand(i));
Eric Christopher228232b2010-11-30 07:20:12 +00009471
9472 unsigned ValOps = X86::AddrNumOperands;
9473 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
9474 .addReg(MI->getOperand(ValOps).getReg());
9475 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
9476 .addReg(MI->getOperand(ValOps+1).getReg());
9477
9478 // The instruction doesn't actually take any operands though.
9479 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
9480
9481 MI->eraseFromParent(); // The pseudo is gone now.
9482 return BB;
9483}
9484
9485MachineBasicBlock *
9486X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher82be2202010-11-30 08:10:28 +00009487 assert(Subtarget->hasSSE3() && "Target must have SSE3 features enabled");
Eric Christopher228232b2010-11-30 07:20:12 +00009488
9489 DebugLoc dl = MI->getDebugLoc();
9490 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9491
9492 // First arg in ECX, the second in EAX.
9493 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
9494 .addReg(MI->getOperand(0).getReg());
9495 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
9496 .addReg(MI->getOperand(1).getReg());
9497
9498 // The instruction doesn't actually take any operands though.
9499 BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
9500
9501 MI->eraseFromParent(); // The pseudo is gone now.
9502 return BB;
9503}
9504
9505MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +00009506X86TargetLowering::EmitVAARG64WithCustomInserter(
9507 MachineInstr *MI,
9508 MachineBasicBlock *MBB) const {
9509 // Emit va_arg instruction on X86-64.
9510
9511 // Operands to this pseudo-instruction:
9512 // 0 ) Output : destination address (reg)
9513 // 1-5) Input : va_list address (addr, i64mem)
9514 // 6 ) ArgSize : Size (in bytes) of vararg type
9515 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
9516 // 8 ) Align : Alignment of type
9517 // 9 ) EFLAGS (implicit-def)
9518
9519 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
9520 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
9521
9522 unsigned DestReg = MI->getOperand(0).getReg();
9523 MachineOperand &Base = MI->getOperand(1);
9524 MachineOperand &Scale = MI->getOperand(2);
9525 MachineOperand &Index = MI->getOperand(3);
9526 MachineOperand &Disp = MI->getOperand(4);
9527 MachineOperand &Segment = MI->getOperand(5);
9528 unsigned ArgSize = MI->getOperand(6).getImm();
9529 unsigned ArgMode = MI->getOperand(7).getImm();
9530 unsigned Align = MI->getOperand(8).getImm();
9531
9532 // Memory Reference
9533 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
9534 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
9535 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
9536
9537 // Machine Information
9538 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9539 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
9540 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
9541 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
9542 DebugLoc DL = MI->getDebugLoc();
9543
9544 // struct va_list {
9545 // i32 gp_offset
9546 // i32 fp_offset
9547 // i64 overflow_area (address)
9548 // i64 reg_save_area (address)
9549 // }
9550 // sizeof(va_list) = 24
9551 // alignment(va_list) = 8
9552
9553 unsigned TotalNumIntRegs = 6;
9554 unsigned TotalNumXMMRegs = 8;
9555 bool UseGPOffset = (ArgMode == 1);
9556 bool UseFPOffset = (ArgMode == 2);
9557 unsigned MaxOffset = TotalNumIntRegs * 8 +
9558 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
9559
9560 /* Align ArgSize to a multiple of 8 */
9561 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
9562 bool NeedsAlign = (Align > 8);
9563
9564 MachineBasicBlock *thisMBB = MBB;
9565 MachineBasicBlock *overflowMBB;
9566 MachineBasicBlock *offsetMBB;
9567 MachineBasicBlock *endMBB;
9568
9569 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
9570 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
9571 unsigned OffsetReg = 0;
9572
9573 if (!UseGPOffset && !UseFPOffset) {
9574 // If we only pull from the overflow region, we don't create a branch.
9575 // We don't need to alter control flow.
9576 OffsetDestReg = 0; // unused
9577 OverflowDestReg = DestReg;
9578
9579 offsetMBB = NULL;
9580 overflowMBB = thisMBB;
9581 endMBB = thisMBB;
9582 } else {
9583 // First emit code to check if gp_offset (or fp_offset) is below the bound.
9584 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
9585 // If not, pull from overflow_area. (branch to overflowMBB)
9586 //
9587 // thisMBB
9588 // | .
9589 // | .
9590 // offsetMBB overflowMBB
9591 // | .
9592 // | .
9593 // endMBB
9594
9595 // Registers for the PHI in endMBB
9596 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
9597 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
9598
9599 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9600 MachineFunction *MF = MBB->getParent();
9601 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9602 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9603 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9604
9605 MachineFunction::iterator MBBIter = MBB;
9606 ++MBBIter;
9607
9608 // Insert the new basic blocks
9609 MF->insert(MBBIter, offsetMBB);
9610 MF->insert(MBBIter, overflowMBB);
9611 MF->insert(MBBIter, endMBB);
9612
9613 // Transfer the remainder of MBB and its successor edges to endMBB.
9614 endMBB->splice(endMBB->begin(), thisMBB,
9615 llvm::next(MachineBasicBlock::iterator(MI)),
9616 thisMBB->end());
9617 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
9618
9619 // Make offsetMBB and overflowMBB successors of thisMBB
9620 thisMBB->addSuccessor(offsetMBB);
9621 thisMBB->addSuccessor(overflowMBB);
9622
9623 // endMBB is a successor of both offsetMBB and overflowMBB
9624 offsetMBB->addSuccessor(endMBB);
9625 overflowMBB->addSuccessor(endMBB);
9626
9627 // Load the offset value into a register
9628 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
9629 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
9630 .addOperand(Base)
9631 .addOperand(Scale)
9632 .addOperand(Index)
9633 .addDisp(Disp, UseFPOffset ? 4 : 0)
9634 .addOperand(Segment)
9635 .setMemRefs(MMOBegin, MMOEnd);
9636
9637 // Check if there is enough room left to pull this argument.
9638 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
9639 .addReg(OffsetReg)
9640 .addImm(MaxOffset + 8 - ArgSizeA8);
9641
9642 // Branch to "overflowMBB" if offset >= max
9643 // Fall through to "offsetMBB" otherwise
9644 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
9645 .addMBB(overflowMBB);
9646 }
9647
9648 // In offsetMBB, emit code to use the reg_save_area.
9649 if (offsetMBB) {
9650 assert(OffsetReg != 0);
9651
9652 // Read the reg_save_area address.
9653 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
9654 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
9655 .addOperand(Base)
9656 .addOperand(Scale)
9657 .addOperand(Index)
9658 .addDisp(Disp, 16)
9659 .addOperand(Segment)
9660 .setMemRefs(MMOBegin, MMOEnd);
9661
9662 // Zero-extend the offset
9663 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
9664 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
9665 .addImm(0)
9666 .addReg(OffsetReg)
9667 .addImm(X86::sub_32bit);
9668
9669 // Add the offset to the reg_save_area to get the final address.
9670 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
9671 .addReg(OffsetReg64)
9672 .addReg(RegSaveReg);
9673
9674 // Compute the offset for the next argument
9675 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
9676 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
9677 .addReg(OffsetReg)
9678 .addImm(UseFPOffset ? 16 : 8);
9679
9680 // Store it back into the va_list.
9681 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
9682 .addOperand(Base)
9683 .addOperand(Scale)
9684 .addOperand(Index)
9685 .addDisp(Disp, UseFPOffset ? 4 : 0)
9686 .addOperand(Segment)
9687 .addReg(NextOffsetReg)
9688 .setMemRefs(MMOBegin, MMOEnd);
9689
9690 // Jump to endMBB
9691 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
9692 .addMBB(endMBB);
9693 }
9694
9695 //
9696 // Emit code to use overflow area
9697 //
9698
9699 // Load the overflow_area address into a register.
9700 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
9701 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
9702 .addOperand(Base)
9703 .addOperand(Scale)
9704 .addOperand(Index)
9705 .addDisp(Disp, 8)
9706 .addOperand(Segment)
9707 .setMemRefs(MMOBegin, MMOEnd);
9708
9709 // If we need to align it, do so. Otherwise, just copy the address
9710 // to OverflowDestReg.
9711 if (NeedsAlign) {
9712 // Align the overflow address
9713 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
9714 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
9715
9716 // aligned_addr = (addr + (align-1)) & ~(align-1)
9717 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
9718 .addReg(OverflowAddrReg)
9719 .addImm(Align-1);
9720
9721 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
9722 .addReg(TmpReg)
9723 .addImm(~(uint64_t)(Align-1));
9724 } else {
9725 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
9726 .addReg(OverflowAddrReg);
9727 }
9728
9729 // Compute the next overflow address after this argument.
9730 // (the overflow address should be kept 8-byte aligned)
9731 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
9732 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
9733 .addReg(OverflowDestReg)
9734 .addImm(ArgSizeA8);
9735
9736 // Store the new overflow address.
9737 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
9738 .addOperand(Base)
9739 .addOperand(Scale)
9740 .addOperand(Index)
9741 .addDisp(Disp, 8)
9742 .addOperand(Segment)
9743 .addReg(NextAddrReg)
9744 .setMemRefs(MMOBegin, MMOEnd);
9745
9746 // If we branched, emit the PHI to the front of endMBB.
9747 if (offsetMBB) {
9748 BuildMI(*endMBB, endMBB->begin(), DL,
9749 TII->get(X86::PHI), DestReg)
9750 .addReg(OffsetDestReg).addMBB(offsetMBB)
9751 .addReg(OverflowDestReg).addMBB(overflowMBB);
9752 }
9753
9754 // Erase the pseudo instruction
9755 MI->eraseFromParent();
9756
9757 return endMBB;
9758}
9759
9760MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +00009761X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
9762 MachineInstr *MI,
9763 MachineBasicBlock *MBB) const {
9764 // Emit code to save XMM registers to the stack. The ABI says that the
9765 // number of registers to save is given in %al, so it's theoretically
9766 // possible to do an indirect jump trick to avoid saving all of them,
9767 // however this code takes a simpler approach and just executes all
9768 // of the stores if %al is non-zero. It's less code, and it's probably
9769 // easier on the hardware branch predictor, and stores aren't all that
9770 // expensive anyway.
9771
9772 // Create the new basic blocks. One block contains all the XMM stores,
9773 // and one block is the final destination regardless of whether any
9774 // stores were performed.
9775 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9776 MachineFunction *F = MBB->getParent();
9777 MachineFunction::iterator MBBIter = MBB;
9778 ++MBBIter;
9779 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
9780 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
9781 F->insert(MBBIter, XMMSaveMBB);
9782 F->insert(MBBIter, EndMBB);
9783
Dan Gohman14152b42010-07-06 20:24:04 +00009784 // Transfer the remainder of MBB and its successor edges to EndMBB.
9785 EndMBB->splice(EndMBB->begin(), MBB,
9786 llvm::next(MachineBasicBlock::iterator(MI)),
9787 MBB->end());
9788 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
9789
Dan Gohmand6708ea2009-08-15 01:38:56 +00009790 // The original block will now fall through to the XMM save block.
9791 MBB->addSuccessor(XMMSaveMBB);
9792 // The XMMSaveMBB will fall through to the end block.
9793 XMMSaveMBB->addSuccessor(EndMBB);
9794
9795 // Now add the instructions.
9796 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9797 DebugLoc DL = MI->getDebugLoc();
9798
9799 unsigned CountReg = MI->getOperand(0).getReg();
9800 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
9801 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
9802
9803 if (!Subtarget->isTargetWin64()) {
9804 // If %al is 0, branch around the XMM save block.
9805 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009806 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009807 MBB->addSuccessor(EndMBB);
9808 }
9809
9810 // In the XMM save block, save all the XMM argument registers.
9811 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
9812 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +00009813 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +00009814 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +00009815 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +00009816 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +00009817 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009818 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
9819 .addFrameIndex(RegSaveFrameIndex)
9820 .addImm(/*Scale=*/1)
9821 .addReg(/*IndexReg=*/0)
9822 .addImm(/*Disp=*/Offset)
9823 .addReg(/*Segment=*/0)
9824 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +00009825 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009826 }
9827
Dan Gohman14152b42010-07-06 20:24:04 +00009828 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +00009829
9830 return EndMBB;
9831}
Mon P Wang63307c32008-05-05 19:05:59 +00009832
Evan Cheng60c07e12006-07-05 22:17:51 +00009833MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +00009834X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009835 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +00009836 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9837 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00009838
Chris Lattner52600972009-09-02 05:57:00 +00009839 // To "insert" a SELECT_CC instruction, we actually have to insert the
9840 // diamond control-flow pattern. The incoming instruction knows the
9841 // destination vreg to set, the condition code register to branch on, the
9842 // true/false values to select between, and a branch opcode to use.
9843 const BasicBlock *LLVM_BB = BB->getBasicBlock();
9844 MachineFunction::iterator It = BB;
9845 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +00009846
Chris Lattner52600972009-09-02 05:57:00 +00009847 // thisMBB:
9848 // ...
9849 // TrueVal = ...
9850 // cmpTY ccX, r1, r2
9851 // bCC copy1MBB
9852 // fallthrough --> copy0MBB
9853 MachineBasicBlock *thisMBB = BB;
9854 MachineFunction *F = BB->getParent();
9855 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
9856 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +00009857 F->insert(It, copy0MBB);
9858 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +00009859
Bill Wendling730c07e2010-06-25 20:48:10 +00009860 // If the EFLAGS register isn't dead in the terminator, then claim that it's
9861 // live into the sink and copy blocks.
9862 const MachineFunction *MF = BB->getParent();
9863 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
9864 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +00009865
Dan Gohman14152b42010-07-06 20:24:04 +00009866 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
9867 const MachineOperand &MO = MI->getOperand(I);
9868 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +00009869 unsigned Reg = MO.getReg();
9870 if (Reg != X86::EFLAGS) continue;
9871 copy0MBB->addLiveIn(Reg);
9872 sinkMBB->addLiveIn(Reg);
9873 }
9874
Dan Gohman14152b42010-07-06 20:24:04 +00009875 // Transfer the remainder of BB and its successor edges to sinkMBB.
9876 sinkMBB->splice(sinkMBB->begin(), BB,
9877 llvm::next(MachineBasicBlock::iterator(MI)),
9878 BB->end());
9879 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
9880
9881 // Add the true and fallthrough blocks as its successors.
9882 BB->addSuccessor(copy0MBB);
9883 BB->addSuccessor(sinkMBB);
9884
9885 // Create the conditional branch instruction.
9886 unsigned Opc =
9887 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
9888 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
9889
Chris Lattner52600972009-09-02 05:57:00 +00009890 // copy0MBB:
9891 // %FalseValue = ...
9892 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +00009893 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00009894
Chris Lattner52600972009-09-02 05:57:00 +00009895 // sinkMBB:
9896 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
9897 // ...
Dan Gohman14152b42010-07-06 20:24:04 +00009898 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
9899 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +00009900 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
9901 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
9902
Dan Gohman14152b42010-07-06 20:24:04 +00009903 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +00009904 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +00009905}
9906
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009907MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009908X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009909 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009910 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9911 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009912
9913 // The lowering is pretty easy: we're just emitting the call to _alloca. The
9914 // non-trivial part is impdef of ESP.
9915 // FIXME: The code should be tweaked as soon as we'll try to do codegen for
9916 // mingw-w64.
9917
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009918 const char *StackProbeSymbol =
9919 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
9920
Dan Gohman14152b42010-07-06 20:24:04 +00009921 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009922 .addExternalSymbol(StackProbeSymbol)
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009923 .addReg(X86::EAX, RegState::Implicit)
9924 .addReg(X86::ESP, RegState::Implicit)
9925 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
Anton Korobeynikov9f7f83b2010-08-25 07:50:11 +00009926 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
9927 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009928
Dan Gohman14152b42010-07-06 20:24:04 +00009929 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009930 return BB;
9931}
Chris Lattner52600972009-09-02 05:57:00 +00009932
9933MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +00009934X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
9935 MachineBasicBlock *BB) const {
9936 // This is pretty easy. We're taking the value that we received from
9937 // our load from the relocation, sticking it in either RDI (x86-64)
9938 // or EAX and doing an indirect call. The return value will then
9939 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +00009940 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +00009941 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +00009942 DebugLoc DL = MI->getDebugLoc();
9943 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +00009944
9945 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +00009946 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +00009947
Eric Christopher30ef0e52010-06-03 04:07:48 +00009948 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +00009949 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9950 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +00009951 .addReg(X86::RIP)
9952 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009953 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +00009954 MI->getOperand(3).getTargetFlags())
9955 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +00009956 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +00009957 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +00009958 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +00009959 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9960 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +00009961 .addReg(0)
9962 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009963 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +00009964 MI->getOperand(3).getTargetFlags())
9965 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +00009966 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +00009967 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +00009968 } else {
Dan Gohman14152b42010-07-06 20:24:04 +00009969 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9970 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +00009971 .addReg(TII->getGlobalBaseReg(F))
9972 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009973 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +00009974 MI->getOperand(3).getTargetFlags())
9975 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +00009976 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +00009977 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +00009978 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00009979
Dan Gohman14152b42010-07-06 20:24:04 +00009980 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +00009981 return BB;
9982}
9983
9984MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +00009985X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009986 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +00009987 switch (MI->getOpcode()) {
9988 default: assert(false && "Unexpected instr type to insert");
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009989 case X86::WIN_ALLOCA:
9990 return EmitLoweredWinAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +00009991 case X86::TLSCall_32:
9992 case X86::TLSCall_64:
9993 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +00009994 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +00009995 case X86::CMOV_FR32:
9996 case X86::CMOV_FR64:
9997 case X86::CMOV_V4F32:
9998 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +00009999 case X86::CMOV_V2I64:
Chris Lattner314a1132010-03-14 18:31:44 +000010000 case X86::CMOV_GR16:
10001 case X86::CMOV_GR32:
10002 case X86::CMOV_RFP32:
10003 case X86::CMOV_RFP64:
10004 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010005 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000010006
Dale Johannesen849f2142007-07-03 00:53:03 +000010007 case X86::FP32_TO_INT16_IN_MEM:
10008 case X86::FP32_TO_INT32_IN_MEM:
10009 case X86::FP32_TO_INT64_IN_MEM:
10010 case X86::FP64_TO_INT16_IN_MEM:
10011 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000010012 case X86::FP64_TO_INT64_IN_MEM:
10013 case X86::FP80_TO_INT16_IN_MEM:
10014 case X86::FP80_TO_INT32_IN_MEM:
10015 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000010016 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10017 DebugLoc DL = MI->getDebugLoc();
10018
Evan Cheng60c07e12006-07-05 22:17:51 +000010019 // Change the floating point control register to use "round towards zero"
10020 // mode when truncating to an integer value.
10021 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000010022 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000010023 addFrameReference(BuildMI(*BB, MI, DL,
10024 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010025
10026 // Load the old value of the high byte of the control word...
10027 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +000010028 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +000010029 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010030 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010031
10032 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000010033 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010034 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000010035
10036 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000010037 addFrameReference(BuildMI(*BB, MI, DL,
10038 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010039
10040 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000010041 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010042 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000010043
10044 // Get the X86 opcode to use.
10045 unsigned Opc;
10046 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000010047 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000010048 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
10049 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
10050 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
10051 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
10052 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
10053 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000010054 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
10055 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
10056 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000010057 }
10058
10059 X86AddressMode AM;
10060 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000010061 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010062 AM.BaseType = X86AddressMode::RegBase;
10063 AM.Base.Reg = Op.getReg();
10064 } else {
10065 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000010066 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000010067 }
10068 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000010069 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010070 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010071 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000010072 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010073 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010074 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000010075 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010076 AM.GV = Op.getGlobal();
10077 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000010078 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010079 }
Dan Gohman14152b42010-07-06 20:24:04 +000010080 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010081 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000010082
10083 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000010084 addFrameReference(BuildMI(*BB, MI, DL,
10085 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010086
Dan Gohman14152b42010-07-06 20:24:04 +000010087 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000010088 return BB;
10089 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010090 // String/text processing lowering.
10091 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010092 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010093 return EmitPCMP(MI, BB, 3, false /* in-mem */);
10094 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010095 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010096 return EmitPCMP(MI, BB, 3, true /* in-mem */);
10097 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010098 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010099 return EmitPCMP(MI, BB, 5, false /* in mem */);
10100 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010101 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010102 return EmitPCMP(MI, BB, 5, true /* in mem */);
10103
Eric Christopher228232b2010-11-30 07:20:12 +000010104 // Thread synchronization.
10105 case X86::MONITOR:
10106 return EmitMonitor(MI, BB);
10107 case X86::MWAIT:
10108 return EmitMwait(MI, BB);
10109
Eric Christopherb120ab42009-08-18 22:50:32 +000010110 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000010111 case X86::ATOMAND32:
10112 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010113 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010114 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010115 X86::NOT32r, X86::EAX,
10116 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010117 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000010118 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
10119 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010120 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010121 X86::NOT32r, X86::EAX,
10122 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010123 case X86::ATOMXOR32:
10124 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010125 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010126 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010127 X86::NOT32r, X86::EAX,
10128 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010129 case X86::ATOMNAND32:
10130 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010131 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010132 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010133 X86::NOT32r, X86::EAX,
10134 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000010135 case X86::ATOMMIN32:
10136 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
10137 case X86::ATOMMAX32:
10138 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
10139 case X86::ATOMUMIN32:
10140 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
10141 case X86::ATOMUMAX32:
10142 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000010143
10144 case X86::ATOMAND16:
10145 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10146 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010147 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010148 X86::NOT16r, X86::AX,
10149 X86::GR16RegisterClass);
10150 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000010151 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010152 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010153 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010154 X86::NOT16r, X86::AX,
10155 X86::GR16RegisterClass);
10156 case X86::ATOMXOR16:
10157 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
10158 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010159 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010160 X86::NOT16r, X86::AX,
10161 X86::GR16RegisterClass);
10162 case X86::ATOMNAND16:
10163 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10164 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010165 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010166 X86::NOT16r, X86::AX,
10167 X86::GR16RegisterClass, true);
10168 case X86::ATOMMIN16:
10169 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
10170 case X86::ATOMMAX16:
10171 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
10172 case X86::ATOMUMIN16:
10173 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
10174 case X86::ATOMUMAX16:
10175 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
10176
10177 case X86::ATOMAND8:
10178 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10179 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010180 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010181 X86::NOT8r, X86::AL,
10182 X86::GR8RegisterClass);
10183 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000010184 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010185 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010186 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010187 X86::NOT8r, X86::AL,
10188 X86::GR8RegisterClass);
10189 case X86::ATOMXOR8:
10190 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
10191 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010192 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010193 X86::NOT8r, X86::AL,
10194 X86::GR8RegisterClass);
10195 case X86::ATOMNAND8:
10196 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10197 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010198 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010199 X86::NOT8r, X86::AL,
10200 X86::GR8RegisterClass, true);
10201 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010202 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000010203 case X86::ATOMAND64:
10204 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010205 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010206 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010207 X86::NOT64r, X86::RAX,
10208 X86::GR64RegisterClass);
10209 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000010210 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
10211 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010212 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010213 X86::NOT64r, X86::RAX,
10214 X86::GR64RegisterClass);
10215 case X86::ATOMXOR64:
10216 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010217 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010218 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010219 X86::NOT64r, X86::RAX,
10220 X86::GR64RegisterClass);
10221 case X86::ATOMNAND64:
10222 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
10223 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010224 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010225 X86::NOT64r, X86::RAX,
10226 X86::GR64RegisterClass, true);
10227 case X86::ATOMMIN64:
10228 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
10229 case X86::ATOMMAX64:
10230 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
10231 case X86::ATOMUMIN64:
10232 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
10233 case X86::ATOMUMAX64:
10234 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010235
10236 // This group does 64-bit operations on a 32-bit host.
10237 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010238 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010239 X86::AND32rr, X86::AND32rr,
10240 X86::AND32ri, X86::AND32ri,
10241 false);
10242 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010243 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010244 X86::OR32rr, X86::OR32rr,
10245 X86::OR32ri, X86::OR32ri,
10246 false);
10247 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010248 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010249 X86::XOR32rr, X86::XOR32rr,
10250 X86::XOR32ri, X86::XOR32ri,
10251 false);
10252 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010253 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010254 X86::AND32rr, X86::AND32rr,
10255 X86::AND32ri, X86::AND32ri,
10256 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010257 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010258 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010259 X86::ADD32rr, X86::ADC32rr,
10260 X86::ADD32ri, X86::ADC32ri,
10261 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010262 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010263 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010264 X86::SUB32rr, X86::SBB32rr,
10265 X86::SUB32ri, X86::SBB32ri,
10266 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000010267 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010268 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000010269 X86::MOV32rr, X86::MOV32rr,
10270 X86::MOV32ri, X86::MOV32ri,
10271 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010272 case X86::VASTART_SAVE_XMM_REGS:
10273 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000010274
10275 case X86::VAARG_64:
10276 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000010277 }
10278}
10279
10280//===----------------------------------------------------------------------===//
10281// X86 Optimization Hooks
10282//===----------------------------------------------------------------------===//
10283
Dan Gohman475871a2008-07-27 21:46:04 +000010284void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000010285 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010286 APInt &KnownZero,
10287 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000010288 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000010289 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010290 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000010291 assert((Opc >= ISD::BUILTIN_OP_END ||
10292 Opc == ISD::INTRINSIC_WO_CHAIN ||
10293 Opc == ISD::INTRINSIC_W_CHAIN ||
10294 Opc == ISD::INTRINSIC_VOID) &&
10295 "Should use MaskedValueIsZero if you don't know whether Op"
10296 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010297
Dan Gohmanf4f92f52008-02-13 23:07:24 +000010298 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010299 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000010300 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010301 case X86ISD::ADD:
10302 case X86ISD::SUB:
10303 case X86ISD::SMUL:
10304 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000010305 case X86ISD::INC:
10306 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000010307 case X86ISD::OR:
10308 case X86ISD::XOR:
10309 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010310 // These nodes' second result is a boolean.
10311 if (Op.getResNo() == 0)
10312 break;
10313 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010314 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010315 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
10316 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000010317 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010318 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010319}
Chris Lattner259e97c2006-01-31 19:43:35 +000010320
Owen Andersonbc146b02010-09-21 20:42:50 +000010321unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
10322 unsigned Depth) const {
10323 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
10324 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
10325 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000010326
Owen Andersonbc146b02010-09-21 20:42:50 +000010327 // Fallback case.
10328 return 1;
10329}
10330
Evan Cheng206ee9d2006-07-07 08:33:52 +000010331/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000010332/// node is a GlobalAddress + offset.
10333bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000010334 const GlobalValue* &GA,
10335 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000010336 if (N->getOpcode() == X86ISD::Wrapper) {
10337 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000010338 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000010339 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000010340 return true;
10341 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000010342 }
Evan Chengad4196b2008-05-12 19:56:52 +000010343 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000010344}
10345
Evan Cheng206ee9d2006-07-07 08:33:52 +000010346/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
10347/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
10348/// if the load addresses are consecutive, non-overlapping, and in the right
Nate Begemanfdea31a2010-03-24 20:49:50 +000010349/// order.
Dan Gohman475871a2008-07-27 21:46:04 +000010350static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Nate Begeman9008ca62009-04-27 18:41:29 +000010351 const TargetLowering &TLI) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010352 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000010353 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000010354
Eli Friedman7a5e5552009-06-07 06:52:44 +000010355 if (VT.getSizeInBits() != 128)
10356 return SDValue();
10357
Nate Begemanfdea31a2010-03-24 20:49:50 +000010358 SmallVector<SDValue, 16> Elts;
10359 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000010360 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000010361
Nate Begemanfdea31a2010-03-24 20:49:50 +000010362 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000010363}
Evan Chengd880b972008-05-09 21:53:03 +000010364
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000010365/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
10366/// generation and convert it from being a bunch of shuffles and extracts
10367/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010368static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
10369 const TargetLowering &TLI) {
10370 SDValue InputVector = N->getOperand(0);
10371
10372 // Only operate on vectors of 4 elements, where the alternative shuffling
10373 // gets to be more expensive.
10374 if (InputVector.getValueType() != MVT::v4i32)
10375 return SDValue();
10376
10377 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
10378 // single use which is a sign-extend or zero-extend, and all elements are
10379 // used.
10380 SmallVector<SDNode *, 4> Uses;
10381 unsigned ExtractedElements = 0;
10382 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
10383 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
10384 if (UI.getUse().getResNo() != InputVector.getResNo())
10385 return SDValue();
10386
10387 SDNode *Extract = *UI;
10388 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
10389 return SDValue();
10390
10391 if (Extract->getValueType(0) != MVT::i32)
10392 return SDValue();
10393 if (!Extract->hasOneUse())
10394 return SDValue();
10395 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
10396 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
10397 return SDValue();
10398 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
10399 return SDValue();
10400
10401 // Record which element was extracted.
10402 ExtractedElements |=
10403 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
10404
10405 Uses.push_back(Extract);
10406 }
10407
10408 // If not all the elements were used, this may not be worthwhile.
10409 if (ExtractedElements != 15)
10410 return SDValue();
10411
10412 // Ok, we've now decided to do the transformation.
10413 DebugLoc dl = InputVector.getDebugLoc();
10414
10415 // Store the value to a temporary stack slot.
10416 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010417 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
10418 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010419
10420 // Replace each use (extract) with a load of the appropriate element.
10421 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
10422 UE = Uses.end(); UI != UE; ++UI) {
10423 SDNode *Extract = *UI;
10424
10425 // Compute the element's address.
10426 SDValue Idx = Extract->getOperand(1);
10427 unsigned EltSize =
10428 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
10429 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
10430 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
10431
Eric Christopher90eb4022010-07-22 00:26:08 +000010432 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(),
Chris Lattner51abfe42010-09-21 06:02:19 +000010433 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010434
10435 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000010436 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000010437 ScalarAddr, MachinePointerInfo(),
10438 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010439
10440 // Replace the exact with the load.
10441 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
10442 }
10443
10444 // The replacement was made in place; don't return anything.
10445 return SDValue();
10446}
10447
Chris Lattner83e6c992006-10-04 06:57:07 +000010448/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000010449static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000010450 const X86Subtarget *Subtarget) {
10451 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000010452 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000010453 // Get the LHS/RHS of the select.
10454 SDValue LHS = N->getOperand(1);
10455 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000010456
Dan Gohman670e5392009-09-21 18:03:22 +000010457 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000010458 // instructions match the semantics of the common C idiom x<y?x:y but not
10459 // x<=y?x:y, because of how they handle negative zero (which can be
10460 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000010461 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000010462 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000010463 Cond.getOpcode() == ISD::SETCC) {
10464 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010465
Chris Lattner47b4ce82009-03-11 05:48:52 +000010466 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000010467 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000010468 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
10469 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000010470 switch (CC) {
10471 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000010472 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000010473 // Converting this to a min would handle NaNs incorrectly, and swapping
10474 // the operands would cause it to handle comparisons between positive
10475 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010476 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000010477 if (!UnsafeFPMath &&
10478 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10479 break;
10480 std::swap(LHS, RHS);
10481 }
Dan Gohman670e5392009-09-21 18:03:22 +000010482 Opcode = X86ISD::FMIN;
10483 break;
10484 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000010485 // Converting this to a min would handle comparisons between positive
10486 // and negative zero incorrectly.
10487 if (!UnsafeFPMath &&
10488 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
10489 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010490 Opcode = X86ISD::FMIN;
10491 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000010492 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000010493 // Converting this to a min would handle both negative zeros and NaNs
10494 // incorrectly, but we can swap the operands to fix both.
10495 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010496 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010497 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000010498 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010499 Opcode = X86ISD::FMIN;
10500 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010501
Dan Gohman670e5392009-09-21 18:03:22 +000010502 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010503 // Converting this to a max would handle comparisons between positive
10504 // and negative zero incorrectly.
10505 if (!UnsafeFPMath &&
10506 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(LHS))
10507 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010508 Opcode = X86ISD::FMAX;
10509 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000010510 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000010511 // Converting this to a max would handle NaNs incorrectly, and swapping
10512 // the operands would cause it to handle comparisons between positive
10513 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010514 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000010515 if (!UnsafeFPMath &&
10516 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10517 break;
10518 std::swap(LHS, RHS);
10519 }
Dan Gohman670e5392009-09-21 18:03:22 +000010520 Opcode = X86ISD::FMAX;
10521 break;
10522 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010523 // Converting this to a max would handle both negative zeros and NaNs
10524 // incorrectly, but we can swap the operands to fix both.
10525 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010526 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010527 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010528 case ISD::SETGE:
10529 Opcode = X86ISD::FMAX;
10530 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000010531 }
Dan Gohman670e5392009-09-21 18:03:22 +000010532 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000010533 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
10534 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000010535 switch (CC) {
10536 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000010537 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010538 // Converting this to a min would handle comparisons between positive
10539 // and negative zero incorrectly, and swapping the operands would
10540 // cause it to handle NaNs incorrectly.
10541 if (!UnsafeFPMath &&
10542 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000010543 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010544 break;
10545 std::swap(LHS, RHS);
10546 }
Dan Gohman670e5392009-09-21 18:03:22 +000010547 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000010548 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010549 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000010550 // Converting this to a min would handle NaNs incorrectly.
10551 if (!UnsafeFPMath &&
10552 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
10553 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010554 Opcode = X86ISD::FMIN;
10555 break;
10556 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010557 // Converting this to a min would handle both negative zeros and NaNs
10558 // incorrectly, but we can swap the operands to fix both.
10559 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010560 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010561 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010562 case ISD::SETGE:
10563 Opcode = X86ISD::FMIN;
10564 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010565
Dan Gohman670e5392009-09-21 18:03:22 +000010566 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000010567 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010568 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010569 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010570 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000010571 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010572 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000010573 // Converting this to a max would handle comparisons between positive
10574 // and negative zero incorrectly, and swapping the operands would
10575 // cause it to handle NaNs incorrectly.
10576 if (!UnsafeFPMath &&
10577 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000010578 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010579 break;
10580 std::swap(LHS, RHS);
10581 }
Dan Gohman670e5392009-09-21 18:03:22 +000010582 Opcode = X86ISD::FMAX;
10583 break;
10584 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000010585 // Converting this to a max would handle both negative zeros and NaNs
10586 // incorrectly, but we can swap the operands to fix both.
10587 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010588 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010589 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000010590 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010591 Opcode = X86ISD::FMAX;
10592 break;
10593 }
Chris Lattner83e6c992006-10-04 06:57:07 +000010594 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010595
Chris Lattner47b4ce82009-03-11 05:48:52 +000010596 if (Opcode)
10597 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000010598 }
Eric Christopherfd179292009-08-27 18:07:15 +000010599
Chris Lattnerd1980a52009-03-12 06:52:53 +000010600 // If this is a select between two integer constants, try to do some
10601 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000010602 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
10603 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000010604 // Don't do this for crazy integer types.
10605 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
10606 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000010607 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000010608 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000010609
Chris Lattnercee56e72009-03-13 05:53:31 +000010610 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000010611 // Efficiently invertible.
10612 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
10613 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
10614 isa<ConstantSDNode>(Cond.getOperand(1))))) {
10615 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000010616 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000010617 }
Eric Christopherfd179292009-08-27 18:07:15 +000010618
Chris Lattnerd1980a52009-03-12 06:52:53 +000010619 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000010620 if (FalseC->getAPIntValue() == 0 &&
10621 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000010622 if (NeedsCondInvert) // Invert the condition if needed.
10623 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10624 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010625
Chris Lattnerd1980a52009-03-12 06:52:53 +000010626 // Zero extend the condition if needed.
10627 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010628
Chris Lattnercee56e72009-03-13 05:53:31 +000010629 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000010630 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000010631 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000010632 }
Eric Christopherfd179292009-08-27 18:07:15 +000010633
Chris Lattner97a29a52009-03-13 05:22:11 +000010634 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000010635 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000010636 if (NeedsCondInvert) // Invert the condition if needed.
10637 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10638 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010639
Chris Lattner97a29a52009-03-13 05:22:11 +000010640 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000010641 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
10642 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000010643 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000010644 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000010645 }
Eric Christopherfd179292009-08-27 18:07:15 +000010646
Chris Lattnercee56e72009-03-13 05:53:31 +000010647 // Optimize cases that will turn into an LEA instruction. This requires
10648 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000010649 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000010650 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000010651 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000010652
Chris Lattnercee56e72009-03-13 05:53:31 +000010653 bool isFastMultiplier = false;
10654 if (Diff < 10) {
10655 switch ((unsigned char)Diff) {
10656 default: break;
10657 case 1: // result = add base, cond
10658 case 2: // result = lea base( , cond*2)
10659 case 3: // result = lea base(cond, cond*2)
10660 case 4: // result = lea base( , cond*4)
10661 case 5: // result = lea base(cond, cond*4)
10662 case 8: // result = lea base( , cond*8)
10663 case 9: // result = lea base(cond, cond*8)
10664 isFastMultiplier = true;
10665 break;
10666 }
10667 }
Eric Christopherfd179292009-08-27 18:07:15 +000010668
Chris Lattnercee56e72009-03-13 05:53:31 +000010669 if (isFastMultiplier) {
10670 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
10671 if (NeedsCondInvert) // Invert the condition if needed.
10672 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10673 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010674
Chris Lattnercee56e72009-03-13 05:53:31 +000010675 // Zero extend the condition if needed.
10676 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
10677 Cond);
10678 // Scale the condition by the difference.
10679 if (Diff != 1)
10680 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
10681 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010682
Chris Lattnercee56e72009-03-13 05:53:31 +000010683 // Add the base if non-zero.
10684 if (FalseC->getAPIntValue() != 0)
10685 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10686 SDValue(FalseC, 0));
10687 return Cond;
10688 }
Eric Christopherfd179292009-08-27 18:07:15 +000010689 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000010690 }
10691 }
Eric Christopherfd179292009-08-27 18:07:15 +000010692
Dan Gohman475871a2008-07-27 21:46:04 +000010693 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000010694}
10695
Chris Lattnerd1980a52009-03-12 06:52:53 +000010696/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
10697static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
10698 TargetLowering::DAGCombinerInfo &DCI) {
10699 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000010700
Chris Lattnerd1980a52009-03-12 06:52:53 +000010701 // If the flag operand isn't dead, don't touch this CMOV.
10702 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
10703 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000010704
Chris Lattnerd1980a52009-03-12 06:52:53 +000010705 // If this is a select between two integer constants, try to do some
10706 // optimizations. Note that the operands are ordered the opposite of SELECT
10707 // operands.
10708 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
10709 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
10710 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
10711 // larger than FalseC (the false value).
10712 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
Eric Christopherfd179292009-08-27 18:07:15 +000010713
Chris Lattnerd1980a52009-03-12 06:52:53 +000010714 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
10715 CC = X86::GetOppositeBranchCondition(CC);
10716 std::swap(TrueC, FalseC);
10717 }
Eric Christopherfd179292009-08-27 18:07:15 +000010718
Chris Lattnerd1980a52009-03-12 06:52:53 +000010719 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000010720 // This is efficient for any integer data type (including i8/i16) and
10721 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000010722 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
10723 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010724 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10725 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010726
Chris Lattnerd1980a52009-03-12 06:52:53 +000010727 // Zero extend the condition if needed.
10728 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010729
Chris Lattnerd1980a52009-03-12 06:52:53 +000010730 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
10731 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000010732 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000010733 if (N->getNumValues() == 2) // Dead flag value?
10734 return DCI.CombineTo(N, Cond, SDValue());
10735 return Cond;
10736 }
Eric Christopherfd179292009-08-27 18:07:15 +000010737
Chris Lattnercee56e72009-03-13 05:53:31 +000010738 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
10739 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000010740 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
10741 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010742 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10743 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010744
Chris Lattner97a29a52009-03-13 05:22:11 +000010745 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000010746 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
10747 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000010748 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10749 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000010750
Chris Lattner97a29a52009-03-13 05:22:11 +000010751 if (N->getNumValues() == 2) // Dead flag value?
10752 return DCI.CombineTo(N, Cond, SDValue());
10753 return Cond;
10754 }
Eric Christopherfd179292009-08-27 18:07:15 +000010755
Chris Lattnercee56e72009-03-13 05:53:31 +000010756 // Optimize cases that will turn into an LEA instruction. This requires
10757 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000010758 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000010759 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000010760 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000010761
Chris Lattnercee56e72009-03-13 05:53:31 +000010762 bool isFastMultiplier = false;
10763 if (Diff < 10) {
10764 switch ((unsigned char)Diff) {
10765 default: break;
10766 case 1: // result = add base, cond
10767 case 2: // result = lea base( , cond*2)
10768 case 3: // result = lea base(cond, cond*2)
10769 case 4: // result = lea base( , cond*4)
10770 case 5: // result = lea base(cond, cond*4)
10771 case 8: // result = lea base( , cond*8)
10772 case 9: // result = lea base(cond, cond*8)
10773 isFastMultiplier = true;
10774 break;
10775 }
10776 }
Eric Christopherfd179292009-08-27 18:07:15 +000010777
Chris Lattnercee56e72009-03-13 05:53:31 +000010778 if (isFastMultiplier) {
10779 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
10780 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010781 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10782 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000010783 // Zero extend the condition if needed.
10784 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
10785 Cond);
10786 // Scale the condition by the difference.
10787 if (Diff != 1)
10788 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
10789 DAG.getConstant(Diff, Cond.getValueType()));
10790
10791 // Add the base if non-zero.
10792 if (FalseC->getAPIntValue() != 0)
10793 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10794 SDValue(FalseC, 0));
10795 if (N->getNumValues() == 2) // Dead flag value?
10796 return DCI.CombineTo(N, Cond, SDValue());
10797 return Cond;
10798 }
Eric Christopherfd179292009-08-27 18:07:15 +000010799 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000010800 }
10801 }
10802 return SDValue();
10803}
10804
10805
Evan Cheng0b0cd912009-03-28 05:57:29 +000010806/// PerformMulCombine - Optimize a single multiply with constant into two
10807/// in order to implement it with two cheaper instructions, e.g.
10808/// LEA + SHL, LEA + LEA.
10809static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
10810 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000010811 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
10812 return SDValue();
10813
Owen Andersone50ed302009-08-10 22:56:29 +000010814 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000010815 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000010816 return SDValue();
10817
10818 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
10819 if (!C)
10820 return SDValue();
10821 uint64_t MulAmt = C->getZExtValue();
10822 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
10823 return SDValue();
10824
10825 uint64_t MulAmt1 = 0;
10826 uint64_t MulAmt2 = 0;
10827 if ((MulAmt % 9) == 0) {
10828 MulAmt1 = 9;
10829 MulAmt2 = MulAmt / 9;
10830 } else if ((MulAmt % 5) == 0) {
10831 MulAmt1 = 5;
10832 MulAmt2 = MulAmt / 5;
10833 } else if ((MulAmt % 3) == 0) {
10834 MulAmt1 = 3;
10835 MulAmt2 = MulAmt / 3;
10836 }
10837 if (MulAmt2 &&
10838 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
10839 DebugLoc DL = N->getDebugLoc();
10840
10841 if (isPowerOf2_64(MulAmt2) &&
10842 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
10843 // If second multiplifer is pow2, issue it first. We want the multiply by
10844 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
10845 // is an add.
10846 std::swap(MulAmt1, MulAmt2);
10847
10848 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000010849 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000010850 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000010851 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000010852 else
Evan Cheng73f24c92009-03-30 21:36:47 +000010853 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000010854 DAG.getConstant(MulAmt1, VT));
10855
Eric Christopherfd179292009-08-27 18:07:15 +000010856 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000010857 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000010858 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000010859 else
Evan Cheng73f24c92009-03-30 21:36:47 +000010860 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000010861 DAG.getConstant(MulAmt2, VT));
10862
10863 // Do not add new nodes to DAG combiner worklist.
10864 DCI.CombineTo(N, NewMul, false);
10865 }
10866 return SDValue();
10867}
10868
Evan Chengad9c0a32009-12-15 00:53:42 +000010869static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
10870 SDValue N0 = N->getOperand(0);
10871 SDValue N1 = N->getOperand(1);
10872 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
10873 EVT VT = N0.getValueType();
10874
10875 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
10876 // since the result of setcc_c is all zero's or all ones.
10877 if (N1C && N0.getOpcode() == ISD::AND &&
10878 N0.getOperand(1).getOpcode() == ISD::Constant) {
10879 SDValue N00 = N0.getOperand(0);
10880 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
10881 ((N00.getOpcode() == ISD::ANY_EXTEND ||
10882 N00.getOpcode() == ISD::ZERO_EXTEND) &&
10883 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
10884 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
10885 APInt ShAmt = N1C->getAPIntValue();
10886 Mask = Mask.shl(ShAmt);
10887 if (Mask != 0)
10888 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
10889 N00, DAG.getConstant(Mask, VT));
10890 }
10891 }
10892
10893 return SDValue();
10894}
Evan Cheng0b0cd912009-03-28 05:57:29 +000010895
Nate Begeman740ab032009-01-26 00:52:55 +000010896/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
10897/// when possible.
10898static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
10899 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000010900 EVT VT = N->getValueType(0);
10901 if (!VT.isVector() && VT.isInteger() &&
10902 N->getOpcode() == ISD::SHL)
10903 return PerformSHLCombine(N, DAG);
10904
Nate Begeman740ab032009-01-26 00:52:55 +000010905 // On X86 with SSE2 support, we can transform this to a vector shift if
10906 // all elements are shifted by the same amount. We can't do this in legalize
10907 // because the a constant vector is typically transformed to a constant pool
10908 // so we have no knowledge of the shift amount.
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010909 if (!Subtarget->hasSSE2())
10910 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000010911
Owen Anderson825b72b2009-08-11 20:47:22 +000010912 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010913 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000010914
Mon P Wang3becd092009-01-28 08:12:05 +000010915 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000010916 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000010917 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000010918 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000010919 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
10920 unsigned NumElts = VT.getVectorNumElements();
10921 unsigned i = 0;
10922 for (; i != NumElts; ++i) {
10923 SDValue Arg = ShAmtOp.getOperand(i);
10924 if (Arg.getOpcode() == ISD::UNDEF) continue;
10925 BaseShAmt = Arg;
10926 break;
10927 }
10928 for (; i != NumElts; ++i) {
10929 SDValue Arg = ShAmtOp.getOperand(i);
10930 if (Arg.getOpcode() == ISD::UNDEF) continue;
10931 if (Arg != BaseShAmt) {
10932 return SDValue();
10933 }
10934 }
10935 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000010936 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000010937 SDValue InVec = ShAmtOp.getOperand(0);
10938 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
10939 unsigned NumElts = InVec.getValueType().getVectorNumElements();
10940 unsigned i = 0;
10941 for (; i != NumElts; ++i) {
10942 SDValue Arg = InVec.getOperand(i);
10943 if (Arg.getOpcode() == ISD::UNDEF) continue;
10944 BaseShAmt = Arg;
10945 break;
10946 }
10947 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
10948 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000010949 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000010950 if (C->getZExtValue() == SplatIdx)
10951 BaseShAmt = InVec.getOperand(1);
10952 }
10953 }
10954 if (BaseShAmt.getNode() == 0)
10955 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
10956 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000010957 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010958 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000010959
Mon P Wangefa42202009-09-03 19:56:25 +000010960 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000010961 if (EltVT.bitsGT(MVT::i32))
10962 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
10963 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000010964 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000010965
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010966 // The shift amount is identical so we can do a vector shift.
10967 SDValue ValOp = N->getOperand(0);
10968 switch (N->getOpcode()) {
10969 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000010970 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010971 break;
10972 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000010973 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010974 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010975 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010976 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010977 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010978 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010979 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010980 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010981 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010982 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010983 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010984 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010985 break;
10986 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000010987 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010988 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010989 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010990 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010991 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010992 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010993 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010994 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010995 break;
10996 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000010997 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010998 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010999 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011000 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011001 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011002 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011003 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011004 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011005 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011006 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011007 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011008 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011009 break;
Nate Begeman740ab032009-01-26 00:52:55 +000011010 }
11011 return SDValue();
11012}
11013
Evan Cheng760d1942010-01-04 21:22:48 +000011014static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000011015 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000011016 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000011017 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000011018 return SDValue();
11019
Evan Cheng760d1942010-01-04 21:22:48 +000011020 EVT VT = N->getValueType(0);
Evan Cheng8b1190a2010-04-28 01:18:01 +000011021 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
Evan Cheng760d1942010-01-04 21:22:48 +000011022 return SDValue();
11023
11024 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
11025 SDValue N0 = N->getOperand(0);
11026 SDValue N1 = N->getOperand(1);
11027 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
11028 std::swap(N0, N1);
11029 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
11030 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000011031 if (!N0.hasOneUse() || !N1.hasOneUse())
11032 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000011033
11034 SDValue ShAmt0 = N0.getOperand(1);
11035 if (ShAmt0.getValueType() != MVT::i8)
11036 return SDValue();
11037 SDValue ShAmt1 = N1.getOperand(1);
11038 if (ShAmt1.getValueType() != MVT::i8)
11039 return SDValue();
11040 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
11041 ShAmt0 = ShAmt0.getOperand(0);
11042 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
11043 ShAmt1 = ShAmt1.getOperand(0);
11044
11045 DebugLoc DL = N->getDebugLoc();
11046 unsigned Opc = X86ISD::SHLD;
11047 SDValue Op0 = N0.getOperand(0);
11048 SDValue Op1 = N1.getOperand(0);
11049 if (ShAmt0.getOpcode() == ISD::SUB) {
11050 Opc = X86ISD::SHRD;
11051 std::swap(Op0, Op1);
11052 std::swap(ShAmt0, ShAmt1);
11053 }
11054
Evan Cheng8b1190a2010-04-28 01:18:01 +000011055 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000011056 if (ShAmt1.getOpcode() == ISD::SUB) {
11057 SDValue Sum = ShAmt1.getOperand(0);
11058 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000011059 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
11060 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
11061 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
11062 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000011063 return DAG.getNode(Opc, DL, VT,
11064 Op0, Op1,
11065 DAG.getNode(ISD::TRUNCATE, DL,
11066 MVT::i8, ShAmt0));
11067 }
11068 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
11069 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
11070 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000011071 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000011072 return DAG.getNode(Opc, DL, VT,
11073 N0.getOperand(0), N1.getOperand(0),
11074 DAG.getNode(ISD::TRUNCATE, DL,
11075 MVT::i8, ShAmt0));
11076 }
11077
11078 return SDValue();
11079}
11080
Chris Lattner149a4e52008-02-22 02:09:43 +000011081/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011082static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000011083 const X86Subtarget *Subtarget) {
Chris Lattner149a4e52008-02-22 02:09:43 +000011084 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
11085 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000011086 // A preferable solution to the general problem is to figure out the right
11087 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000011088
11089 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng7e2ff772008-05-08 00:57:18 +000011090 StoreSDNode *St = cast<StoreSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +000011091 EVT VT = St->getValue().getValueType();
Evan Cheng536e6672009-03-12 05:59:15 +000011092 if (VT.getSizeInBits() != 64)
11093 return SDValue();
11094
Devang Patel578efa92009-06-05 21:57:13 +000011095 const Function *F = DAG.getMachineFunction().getFunction();
11096 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000011097 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000011098 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000011099 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000011100 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000011101 isa<LoadSDNode>(St->getValue()) &&
11102 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
11103 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011104 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011105 LoadSDNode *Ld = 0;
11106 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000011107 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000011108 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011109 // Must be a store of a load. We currently handle two cases: the load
11110 // is a direct child, and it's under an intervening TokenFactor. It is
11111 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000011112 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000011113 Ld = cast<LoadSDNode>(St->getChain());
11114 else if (St->getValue().hasOneUse() &&
11115 ChainVal->getOpcode() == ISD::TokenFactor) {
11116 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011117 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000011118 TokenFactorIndex = i;
11119 Ld = cast<LoadSDNode>(St->getValue());
11120 } else
11121 Ops.push_back(ChainVal->getOperand(i));
11122 }
11123 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000011124
Evan Cheng536e6672009-03-12 05:59:15 +000011125 if (!Ld || !ISD::isNormalLoad(Ld))
11126 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011127
Evan Cheng536e6672009-03-12 05:59:15 +000011128 // If this is not the MMX case, i.e. we are just turning i64 load/store
11129 // into f64 load/store, avoid the transformation if there are multiple
11130 // uses of the loaded value.
11131 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
11132 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011133
Evan Cheng536e6672009-03-12 05:59:15 +000011134 DebugLoc LdDL = Ld->getDebugLoc();
11135 DebugLoc StDL = N->getDebugLoc();
11136 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
11137 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
11138 // pair instead.
11139 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011140 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000011141 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
11142 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000011143 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000011144 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000011145 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000011146 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000011147 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000011148 Ops.size());
11149 }
Evan Cheng536e6672009-03-12 05:59:15 +000011150 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000011151 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011152 St->isVolatile(), St->isNonTemporal(),
11153 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000011154 }
Evan Cheng536e6672009-03-12 05:59:15 +000011155
11156 // Otherwise, lower to two pairs of 32-bit loads / stores.
11157 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011158 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
11159 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011160
Owen Anderson825b72b2009-08-11 20:47:22 +000011161 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011162 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011163 Ld->isVolatile(), Ld->isNonTemporal(),
11164 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000011165 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011166 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000011167 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000011168 MinAlign(Ld->getAlignment(), 4));
11169
11170 SDValue NewChain = LoLd.getValue(1);
11171 if (TokenFactorIndex != -1) {
11172 Ops.push_back(LoLd);
11173 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000011174 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000011175 Ops.size());
11176 }
11177
11178 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011179 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
11180 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011181
11182 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011183 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011184 St->isVolatile(), St->isNonTemporal(),
11185 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000011186 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011187 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000011188 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000011189 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000011190 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000011191 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000011192 }
Dan Gohman475871a2008-07-27 21:46:04 +000011193 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000011194}
11195
Chris Lattner6cf73262008-01-25 06:14:17 +000011196/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
11197/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011198static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000011199 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
11200 // F[X]OR(0.0, x) -> x
11201 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000011202 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
11203 if (C->getValueAPF().isPosZero())
11204 return N->getOperand(1);
11205 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
11206 if (C->getValueAPF().isPosZero())
11207 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000011208 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000011209}
11210
11211/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011212static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000011213 // FAND(0.0, x) -> 0.0
11214 // FAND(x, 0.0) -> 0.0
11215 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
11216 if (C->getValueAPF().isPosZero())
11217 return N->getOperand(0);
11218 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
11219 if (C->getValueAPF().isPosZero())
11220 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000011221 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000011222}
11223
Dan Gohmane5af2d32009-01-29 01:59:02 +000011224static SDValue PerformBTCombine(SDNode *N,
11225 SelectionDAG &DAG,
11226 TargetLowering::DAGCombinerInfo &DCI) {
11227 // BT ignores high bits in the bit index operand.
11228 SDValue Op1 = N->getOperand(1);
11229 if (Op1.hasOneUse()) {
11230 unsigned BitWidth = Op1.getValueSizeInBits();
11231 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
11232 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011233 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
11234 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000011235 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000011236 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
11237 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
11238 DCI.CommitTargetLoweringOpt(TLO);
11239 }
11240 return SDValue();
11241}
Chris Lattner83e6c992006-10-04 06:57:07 +000011242
Eli Friedman7a5e5552009-06-07 06:52:44 +000011243static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
11244 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000011245 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000011246 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000011247 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000011248 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000011249 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000011250 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000011251 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000011252 }
11253 return SDValue();
11254}
11255
Evan Cheng2e489c42009-12-16 00:53:11 +000011256static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
11257 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
11258 // (and (i32 x86isd::setcc_carry), 1)
11259 // This eliminates the zext. This transformation is necessary because
11260 // ISD::SETCC is always legalized to i8.
11261 DebugLoc dl = N->getDebugLoc();
11262 SDValue N0 = N->getOperand(0);
11263 EVT VT = N->getValueType(0);
11264 if (N0.getOpcode() == ISD::AND &&
11265 N0.hasOneUse() &&
11266 N0.getOperand(0).hasOneUse()) {
11267 SDValue N00 = N0.getOperand(0);
11268 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
11269 return SDValue();
11270 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
11271 if (!C || C->getZExtValue() != 1)
11272 return SDValue();
11273 return DAG.getNode(ISD::AND, dl, VT,
11274 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
11275 N00.getOperand(0), N00.getOperand(1)),
11276 DAG.getConstant(1, VT));
11277 }
11278
11279 return SDValue();
11280}
11281
Dan Gohman475871a2008-07-27 21:46:04 +000011282SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000011283 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000011284 SelectionDAG &DAG = DCI.DAG;
11285 switch (N->getOpcode()) {
11286 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011287 case ISD::EXTRACT_VECTOR_ELT:
11288 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000011289 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000011290 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000011291 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000011292 case ISD::SHL:
11293 case ISD::SRA:
11294 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000011295 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000011296 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000011297 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000011298 case X86ISD::FOR: return PerformFORCombine(N, DAG);
11299 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000011300 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000011301 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000011302 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011303 case X86ISD::SHUFPS: // Handle all target specific shuffles
11304 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000011305 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011306 case X86ISD::PUNPCKHBW:
11307 case X86ISD::PUNPCKHWD:
11308 case X86ISD::PUNPCKHDQ:
11309 case X86ISD::PUNPCKHQDQ:
11310 case X86ISD::UNPCKHPS:
11311 case X86ISD::UNPCKHPD:
11312 case X86ISD::PUNPCKLBW:
11313 case X86ISD::PUNPCKLWD:
11314 case X86ISD::PUNPCKLDQ:
11315 case X86ISD::PUNPCKLQDQ:
11316 case X86ISD::UNPCKLPS:
11317 case X86ISD::UNPCKLPD:
11318 case X86ISD::MOVHLPS:
11319 case X86ISD::MOVLHPS:
11320 case X86ISD::PSHUFD:
11321 case X86ISD::PSHUFHW:
11322 case X86ISD::PSHUFLW:
11323 case X86ISD::MOVSS:
11324 case X86ISD::MOVSD:
11325 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this);
Evan Cheng206ee9d2006-07-07 08:33:52 +000011326 }
11327
Dan Gohman475871a2008-07-27 21:46:04 +000011328 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000011329}
11330
Evan Chenge5b51ac2010-04-17 06:13:15 +000011331/// isTypeDesirableForOp - Return true if the target has native support for
11332/// the specified value type and it is 'desirable' to use the type for the
11333/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
11334/// instruction encodings are longer and some i16 instructions are slow.
11335bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
11336 if (!isTypeLegal(VT))
11337 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011338 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000011339 return true;
11340
11341 switch (Opc) {
11342 default:
11343 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000011344 case ISD::LOAD:
11345 case ISD::SIGN_EXTEND:
11346 case ISD::ZERO_EXTEND:
11347 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000011348 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000011349 case ISD::SRL:
11350 case ISD::SUB:
11351 case ISD::ADD:
11352 case ISD::MUL:
11353 case ISD::AND:
11354 case ISD::OR:
11355 case ISD::XOR:
11356 return false;
11357 }
11358}
11359
11360/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000011361/// beneficial for dag combiner to promote the specified node. If true, it
11362/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000011363bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000011364 EVT VT = Op.getValueType();
11365 if (VT != MVT::i16)
11366 return false;
11367
Evan Cheng4c26e932010-04-19 19:29:22 +000011368 bool Promote = false;
11369 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011370 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000011371 default: break;
11372 case ISD::LOAD: {
11373 LoadSDNode *LD = cast<LoadSDNode>(Op);
11374 // If the non-extending load has a single use and it's not live out, then it
11375 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011376 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
11377 Op.hasOneUse()*/) {
11378 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
11379 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
11380 // The only case where we'd want to promote LOAD (rather then it being
11381 // promoted as an operand is when it's only use is liveout.
11382 if (UI->getOpcode() != ISD::CopyToReg)
11383 return false;
11384 }
11385 }
Evan Cheng4c26e932010-04-19 19:29:22 +000011386 Promote = true;
11387 break;
11388 }
11389 case ISD::SIGN_EXTEND:
11390 case ISD::ZERO_EXTEND:
11391 case ISD::ANY_EXTEND:
11392 Promote = true;
11393 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011394 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011395 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000011396 SDValue N0 = Op.getOperand(0);
11397 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000011398 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000011399 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000011400 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011401 break;
11402 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000011403 case ISD::ADD:
11404 case ISD::MUL:
11405 case ISD::AND:
11406 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000011407 case ISD::XOR:
11408 Commute = true;
11409 // fallthrough
11410 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000011411 SDValue N0 = Op.getOperand(0);
11412 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000011413 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011414 return false;
11415 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000011416 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011417 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000011418 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011419 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000011420 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011421 }
11422 }
11423
11424 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000011425 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011426}
11427
Evan Cheng60c07e12006-07-05 22:17:51 +000011428//===----------------------------------------------------------------------===//
11429// X86 Inline Assembly Support
11430//===----------------------------------------------------------------------===//
11431
Chris Lattnerb8105652009-07-20 17:51:36 +000011432static bool LowerToBSwap(CallInst *CI) {
11433 // FIXME: this should verify that we are targetting a 486 or better. If not,
11434 // we will turn this bswap into something that will be lowered to logical ops
11435 // instead of emitting the bswap asm. For now, we don't support 486 or lower
11436 // so don't worry about this.
Eric Christopherfd179292009-08-27 18:07:15 +000011437
Chris Lattnerb8105652009-07-20 17:51:36 +000011438 // Verify this is a simple bswap.
Gabor Greife1c2b9c2010-06-30 13:03:37 +000011439 if (CI->getNumArgOperands() != 1 ||
Gabor Greif1cfe44a2010-06-26 11:51:52 +000011440 CI->getType() != CI->getArgOperand(0)->getType() ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011441 !CI->getType()->isIntegerTy())
Chris Lattnerb8105652009-07-20 17:51:36 +000011442 return false;
Eric Christopherfd179292009-08-27 18:07:15 +000011443
Chris Lattnerb8105652009-07-20 17:51:36 +000011444 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
11445 if (!Ty || Ty->getBitWidth() % 16 != 0)
11446 return false;
Eric Christopherfd179292009-08-27 18:07:15 +000011447
Chris Lattnerb8105652009-07-20 17:51:36 +000011448 // Okay, we can do this xform, do so now.
11449 const Type *Tys[] = { Ty };
11450 Module *M = CI->getParent()->getParent()->getParent();
11451 Constant *Int = Intrinsic::getDeclaration(M, Intrinsic::bswap, Tys, 1);
Eric Christopherfd179292009-08-27 18:07:15 +000011452
Gabor Greif1cfe44a2010-06-26 11:51:52 +000011453 Value *Op = CI->getArgOperand(0);
Chris Lattnerb8105652009-07-20 17:51:36 +000011454 Op = CallInst::Create(Int, Op, CI->getName(), CI);
Eric Christopherfd179292009-08-27 18:07:15 +000011455
Chris Lattnerb8105652009-07-20 17:51:36 +000011456 CI->replaceAllUsesWith(Op);
11457 CI->eraseFromParent();
11458 return true;
11459}
11460
11461bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
11462 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
John Thompson44ab89e2010-10-29 17:29:13 +000011463 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
Chris Lattnerb8105652009-07-20 17:51:36 +000011464
11465 std::string AsmStr = IA->getAsmString();
11466
11467 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000011468 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000011469 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000011470
11471 switch (AsmPieces.size()) {
11472 default: return false;
11473 case 1:
11474 AsmStr = AsmPieces[0];
11475 AsmPieces.clear();
11476 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
11477
11478 // bswap $0
11479 if (AsmPieces.size() == 2 &&
11480 (AsmPieces[0] == "bswap" ||
11481 AsmPieces[0] == "bswapq" ||
11482 AsmPieces[0] == "bswapl") &&
11483 (AsmPieces[1] == "$0" ||
11484 AsmPieces[1] == "${0:q}")) {
11485 // No need to check constraints, nothing other than the equivalent of
11486 // "=r,0" would be valid here.
11487 return LowerToBSwap(CI);
11488 }
11489 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011490 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011491 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000011492 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011493 AsmPieces[1] == "$$8," &&
11494 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000011495 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
11496 AsmPieces.clear();
Benjamin Kramer018cbd52010-03-12 13:54:59 +000011497 const std::string &Constraints = IA->getConstraintString();
11498 SplitString(StringRef(Constraints).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000011499 std::sort(AsmPieces.begin(), AsmPieces.end());
11500 if (AsmPieces.size() == 4 &&
11501 AsmPieces[0] == "~{cc}" &&
11502 AsmPieces[1] == "~{dirflag}" &&
11503 AsmPieces[2] == "~{flags}" &&
11504 AsmPieces[3] == "~{fpsr}") {
11505 return LowerToBSwap(CI);
11506 }
Chris Lattnerb8105652009-07-20 17:51:36 +000011507 }
11508 break;
11509 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000011510 if (CI->getType()->isIntegerTy(32) &&
11511 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
11512 SmallVector<StringRef, 4> Words;
11513 SplitString(AsmPieces[0], Words, " \t,");
11514 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
11515 Words[2] == "${0:w}") {
11516 Words.clear();
11517 SplitString(AsmPieces[1], Words, " \t,");
11518 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
11519 Words[2] == "$0") {
11520 Words.clear();
11521 SplitString(AsmPieces[2], Words, " \t,");
11522 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
11523 Words[2] == "${0:w}") {
11524 AsmPieces.clear();
11525 const std::string &Constraints = IA->getConstraintString();
11526 SplitString(StringRef(Constraints).substr(5), AsmPieces, ",");
11527 std::sort(AsmPieces.begin(), AsmPieces.end());
11528 if (AsmPieces.size() == 4 &&
11529 AsmPieces[0] == "~{cc}" &&
11530 AsmPieces[1] == "~{dirflag}" &&
11531 AsmPieces[2] == "~{flags}" &&
11532 AsmPieces[3] == "~{fpsr}") {
11533 return LowerToBSwap(CI);
11534 }
11535 }
11536 }
11537 }
11538 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011539 if (CI->getType()->isIntegerTy(64) &&
Owen Anderson1d0be152009-08-13 21:58:54 +000011540 Constraints.size() >= 2 &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011541 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
11542 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
11543 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
Benjamin Kramerd4f19592010-01-11 18:03:24 +000011544 SmallVector<StringRef, 4> Words;
Chris Lattnerb8105652009-07-20 17:51:36 +000011545 SplitString(AsmPieces[0], Words, " \t");
11546 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
11547 Words.clear();
11548 SplitString(AsmPieces[1], Words, " \t");
11549 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
11550 Words.clear();
11551 SplitString(AsmPieces[2], Words, " \t,");
11552 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
11553 Words[2] == "%edx") {
11554 return LowerToBSwap(CI);
11555 }
11556 }
11557 }
11558 }
11559 break;
11560 }
11561 return false;
11562}
11563
11564
11565
Chris Lattnerf4dff842006-07-11 02:54:03 +000011566/// getConstraintType - Given a constraint letter, return the type of
11567/// constraint it is for this target.
11568X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000011569X86TargetLowering::getConstraintType(const std::string &Constraint) const {
11570 if (Constraint.size() == 1) {
11571 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000011572 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000011573 case 'q':
11574 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000011575 case 'f':
11576 case 't':
11577 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000011578 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000011579 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000011580 case 'Y':
11581 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000011582 case 'a':
11583 case 'b':
11584 case 'c':
11585 case 'd':
11586 case 'S':
11587 case 'D':
11588 case 'A':
11589 return C_Register;
11590 case 'I':
11591 case 'J':
11592 case 'K':
11593 case 'L':
11594 case 'M':
11595 case 'N':
11596 case 'G':
11597 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000011598 case 'e':
11599 case 'Z':
11600 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000011601 default:
11602 break;
11603 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000011604 }
Chris Lattner4234f572007-03-25 02:14:49 +000011605 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000011606}
11607
John Thompson44ab89e2010-10-29 17:29:13 +000011608/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000011609/// This object must already have been set up with the operand type
11610/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000011611TargetLowering::ConstraintWeight
11612 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000011613 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000011614 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011615 Value *CallOperandVal = info.CallOperandVal;
11616 // If we don't have a value, we can't do a match,
11617 // but allow it at the lowest weight.
11618 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000011619 return CW_Default;
11620 const Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000011621 // Look at the constraint type.
11622 switch (*constraint) {
11623 default:
John Thompson44ab89e2010-10-29 17:29:13 +000011624 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
11625 case 'R':
11626 case 'q':
11627 case 'Q':
11628 case 'a':
11629 case 'b':
11630 case 'c':
11631 case 'd':
11632 case 'S':
11633 case 'D':
11634 case 'A':
11635 if (CallOperandVal->getType()->isIntegerTy())
11636 weight = CW_SpecificReg;
11637 break;
11638 case 'f':
11639 case 't':
11640 case 'u':
11641 if (type->isFloatingPointTy())
11642 weight = CW_SpecificReg;
11643 break;
11644 case 'y':
11645 if (type->isX86_MMXTy() && !DisableMMX && Subtarget->hasMMX())
11646 weight = CW_SpecificReg;
11647 break;
11648 case 'x':
11649 case 'Y':
11650 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1())
11651 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011652 break;
11653 case 'I':
11654 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
11655 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000011656 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011657 }
11658 break;
John Thompson44ab89e2010-10-29 17:29:13 +000011659 case 'J':
11660 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11661 if (C->getZExtValue() <= 63)
11662 weight = CW_Constant;
11663 }
11664 break;
11665 case 'K':
11666 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11667 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
11668 weight = CW_Constant;
11669 }
11670 break;
11671 case 'L':
11672 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11673 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
11674 weight = CW_Constant;
11675 }
11676 break;
11677 case 'M':
11678 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11679 if (C->getZExtValue() <= 3)
11680 weight = CW_Constant;
11681 }
11682 break;
11683 case 'N':
11684 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11685 if (C->getZExtValue() <= 0xff)
11686 weight = CW_Constant;
11687 }
11688 break;
11689 case 'G':
11690 case 'C':
11691 if (dyn_cast<ConstantFP>(CallOperandVal)) {
11692 weight = CW_Constant;
11693 }
11694 break;
11695 case 'e':
11696 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11697 if ((C->getSExtValue() >= -0x80000000LL) &&
11698 (C->getSExtValue() <= 0x7fffffffLL))
11699 weight = CW_Constant;
11700 }
11701 break;
11702 case 'Z':
11703 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11704 if (C->getZExtValue() <= 0xffffffff)
11705 weight = CW_Constant;
11706 }
11707 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011708 }
11709 return weight;
11710}
11711
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011712/// LowerXConstraint - try to replace an X constraint, which matches anything,
11713/// with another that has more specific requirements based on the type of the
11714/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000011715const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000011716LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000011717 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
11718 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000011719 if (ConstraintVT.isFloatingPoint()) {
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011720 if (Subtarget->hasSSE2())
Chris Lattner5e764232008-04-26 23:02:14 +000011721 return "Y";
11722 if (Subtarget->hasSSE1())
11723 return "x";
11724 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011725
Chris Lattner5e764232008-04-26 23:02:14 +000011726 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011727}
11728
Chris Lattner48884cd2007-08-25 00:47:38 +000011729/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
11730/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000011731void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattner48884cd2007-08-25 00:47:38 +000011732 char Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000011733 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000011734 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000011735 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000011736
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011737 switch (Constraint) {
11738 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000011739 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000011740 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011741 if (C->getZExtValue() <= 31) {
11742 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000011743 break;
11744 }
Devang Patel84f7fd22007-03-17 00:13:28 +000011745 }
Chris Lattner48884cd2007-08-25 00:47:38 +000011746 return;
Evan Cheng364091e2008-09-22 23:57:37 +000011747 case 'J':
11748 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000011749 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000011750 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11751 break;
11752 }
11753 }
11754 return;
11755 case 'K':
11756 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000011757 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000011758 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11759 break;
11760 }
11761 }
11762 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000011763 case 'N':
11764 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011765 if (C->getZExtValue() <= 255) {
11766 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000011767 break;
11768 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000011769 }
Chris Lattner48884cd2007-08-25 00:47:38 +000011770 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000011771 case 'e': {
11772 // 32-bit signed value
11773 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000011774 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
11775 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011776 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000011777 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000011778 break;
11779 }
11780 // FIXME gcc accepts some relocatable values here too, but only in certain
11781 // memory models; it's complicated.
11782 }
11783 return;
11784 }
11785 case 'Z': {
11786 // 32-bit unsigned value
11787 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000011788 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
11789 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011790 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11791 break;
11792 }
11793 }
11794 // FIXME gcc accepts some relocatable values here too, but only in certain
11795 // memory models; it's complicated.
11796 return;
11797 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011798 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011799 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000011800 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011801 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000011802 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000011803 break;
11804 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011805
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000011806 // In any sort of PIC mode addresses need to be computed at runtime by
11807 // adding in a register or some sort of table lookup. These can't
11808 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000011809 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000011810 return;
11811
Chris Lattnerdc43a882007-05-03 16:52:29 +000011812 // If we are in non-pic codegen mode, we allow the address of a global (with
11813 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000011814 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000011815 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000011816
Chris Lattner49921962009-05-08 18:23:14 +000011817 // Match either (GA), (GA+C), (GA+C1+C2), etc.
11818 while (1) {
11819 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
11820 Offset += GA->getOffset();
11821 break;
11822 } else if (Op.getOpcode() == ISD::ADD) {
11823 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
11824 Offset += C->getZExtValue();
11825 Op = Op.getOperand(0);
11826 continue;
11827 }
11828 } else if (Op.getOpcode() == ISD::SUB) {
11829 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
11830 Offset += -C->getZExtValue();
11831 Op = Op.getOperand(0);
11832 continue;
11833 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011834 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011835
Chris Lattner49921962009-05-08 18:23:14 +000011836 // Otherwise, this isn't something we can handle, reject it.
11837 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000011838 }
Eric Christopherfd179292009-08-27 18:07:15 +000011839
Dan Gohman46510a72010-04-15 01:51:59 +000011840 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011841 // If we require an extra load to get this address, as in PIC mode, we
11842 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000011843 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
11844 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011845 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000011846
Devang Patel0d881da2010-07-06 22:08:15 +000011847 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
11848 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000011849 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011850 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011851 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011852
Gabor Greifba36cb52008-08-28 21:40:38 +000011853 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000011854 Ops.push_back(Result);
11855 return;
11856 }
Dale Johannesen1784d162010-06-25 21:55:36 +000011857 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011858}
11859
Chris Lattner259e97c2006-01-31 19:43:35 +000011860std::vector<unsigned> X86TargetLowering::
Chris Lattner1efa40f2006-02-22 00:56:39 +000011861getRegClassForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000011862 EVT VT) const {
Chris Lattner259e97c2006-01-31 19:43:35 +000011863 if (Constraint.size() == 1) {
11864 // FIXME: not handling fp-stack yet!
Chris Lattner259e97c2006-01-31 19:43:35 +000011865 switch (Constraint[0]) { // GCC X86 Constraint Letters
Chris Lattnerf4dff842006-07-11 02:54:03 +000011866 default: break; // Unknown constraint letter
Evan Cheng47e9fab2009-07-17 22:13:25 +000011867 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
11868 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011869 if (VT == MVT::i32)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011870 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX,
11871 X86::ESI, X86::EDI, X86::R8D, X86::R9D,
11872 X86::R10D,X86::R11D,X86::R12D,
11873 X86::R13D,X86::R14D,X86::R15D,
11874 X86::EBP, X86::ESP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011875 else if (VT == MVT::i16)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011876 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX,
11877 X86::SI, X86::DI, X86::R8W,X86::R9W,
11878 X86::R10W,X86::R11W,X86::R12W,
11879 X86::R13W,X86::R14W,X86::R15W,
11880 X86::BP, X86::SP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011881 else if (VT == MVT::i8)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011882 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL,
11883 X86::SIL, X86::DIL, X86::R8B,X86::R9B,
11884 X86::R10B,X86::R11B,X86::R12B,
11885 X86::R13B,X86::R14B,X86::R15B,
11886 X86::BPL, X86::SPL, 0);
11887
Owen Anderson825b72b2009-08-11 20:47:22 +000011888 else if (VT == MVT::i64)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011889 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX,
11890 X86::RSI, X86::RDI, X86::R8, X86::R9,
11891 X86::R10, X86::R11, X86::R12,
11892 X86::R13, X86::R14, X86::R15,
11893 X86::RBP, X86::RSP, 0);
11894
11895 break;
11896 }
Eric Christopherfd179292009-08-27 18:07:15 +000011897 // 32-bit fallthrough
Chris Lattner259e97c2006-01-31 19:43:35 +000011898 case 'Q': // Q_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000011899 if (VT == MVT::i32)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000011900 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011901 else if (VT == MVT::i16)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000011902 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011903 else if (VT == MVT::i8)
Evan Cheng12914382007-08-13 23:27:11 +000011904 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011905 else if (VT == MVT::i64)
Chris Lattner03e6c702007-11-04 06:51:12 +000011906 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
11907 break;
Chris Lattner259e97c2006-01-31 19:43:35 +000011908 }
11909 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011910
Chris Lattner1efa40f2006-02-22 00:56:39 +000011911 return std::vector<unsigned>();
Chris Lattner259e97c2006-01-31 19:43:35 +000011912}
Chris Lattnerf76d1802006-07-31 23:26:50 +000011913
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011914std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000011915X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000011916 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000011917 // First, see if this is a constraint that directly corresponds to an LLVM
11918 // register class.
11919 if (Constraint.size() == 1) {
11920 // GCC Constraint Letters
11921 switch (Constraint[0]) {
11922 default: break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000011923 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000011924 case 'l': // INDEX_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000011925 if (VT == MVT::i8)
Chris Lattner0f65cad2007-04-09 05:49:22 +000011926 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011927 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000011928 return std::make_pair(0U, X86::GR16RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011929 if (VT == MVT::i32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000011930 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000011931 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000011932 case 'R': // LEGACY_REGS
11933 if (VT == MVT::i8)
11934 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
11935 if (VT == MVT::i16)
11936 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
11937 if (VT == MVT::i32 || !Subtarget->is64Bit())
11938 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
11939 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011940 case 'f': // FP Stack registers.
11941 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
11942 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000011943 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011944 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011945 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011946 return std::make_pair(0U, X86::RFP64RegisterClass);
11947 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000011948 case 'y': // MMX_REGS if MMX allowed.
11949 if (!Subtarget->hasMMX()) break;
11950 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000011951 case 'Y': // SSE_REGS if SSE2 allowed
11952 if (!Subtarget->hasSSE2()) break;
11953 // FALL THROUGH.
11954 case 'x': // SSE_REGS if SSE1 allowed
11955 if (!Subtarget->hasSSE1()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000011956
Owen Anderson825b72b2009-08-11 20:47:22 +000011957 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000011958 default: break;
11959 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000011960 case MVT::f32:
11961 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000011962 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011963 case MVT::f64:
11964 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000011965 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000011966 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000011967 case MVT::v16i8:
11968 case MVT::v8i16:
11969 case MVT::v4i32:
11970 case MVT::v2i64:
11971 case MVT::v4f32:
11972 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000011973 return std::make_pair(0U, X86::VR128RegisterClass);
11974 }
Chris Lattnerad043e82007-04-09 05:11:28 +000011975 break;
11976 }
11977 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011978
Chris Lattnerf76d1802006-07-31 23:26:50 +000011979 // Use the default implementation in TargetLowering to convert the register
11980 // constraint into a member of a register class.
11981 std::pair<unsigned, const TargetRegisterClass*> Res;
11982 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000011983
11984 // Not found as a standard register?
11985 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000011986 // Map st(0) -> st(7) -> ST0
11987 if (Constraint.size() == 7 && Constraint[0] == '{' &&
11988 tolower(Constraint[1]) == 's' &&
11989 tolower(Constraint[2]) == 't' &&
11990 Constraint[3] == '(' &&
11991 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
11992 Constraint[5] == ')' &&
11993 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000011994
Chris Lattner56d77c72009-09-13 22:41:48 +000011995 Res.first = X86::ST0+Constraint[4]-'0';
11996 Res.second = X86::RFP80RegisterClass;
11997 return Res;
11998 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000011999
Chris Lattner56d77c72009-09-13 22:41:48 +000012000 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000012001 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000012002 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000012003 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000012004 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000012005 }
Chris Lattner56d77c72009-09-13 22:41:48 +000012006
12007 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000012008 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000012009 Res.first = X86::EFLAGS;
12010 Res.second = X86::CCRRegisterClass;
12011 return Res;
12012 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000012013
Dale Johannesen330169f2008-11-13 21:52:36 +000012014 // 'A' means EAX + EDX.
12015 if (Constraint == "A") {
12016 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000012017 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000012018 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000012019 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000012020 return Res;
12021 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012022
Chris Lattnerf76d1802006-07-31 23:26:50 +000012023 // Otherwise, check to see if this is a register class of the wrong value
12024 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
12025 // turn into {ax},{dx}.
12026 if (Res.second->hasType(VT))
12027 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012028
Chris Lattnerf76d1802006-07-31 23:26:50 +000012029 // All of the single-register GCC register classes map their values onto
12030 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
12031 // really want an 8-bit or 32-bit register, map to the appropriate register
12032 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000012033 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012034 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012035 unsigned DestReg = 0;
12036 switch (Res.first) {
12037 default: break;
12038 case X86::AX: DestReg = X86::AL; break;
12039 case X86::DX: DestReg = X86::DL; break;
12040 case X86::CX: DestReg = X86::CL; break;
12041 case X86::BX: DestReg = X86::BL; break;
12042 }
12043 if (DestReg) {
12044 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012045 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012046 }
Owen Anderson825b72b2009-08-11 20:47:22 +000012047 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012048 unsigned DestReg = 0;
12049 switch (Res.first) {
12050 default: break;
12051 case X86::AX: DestReg = X86::EAX; break;
12052 case X86::DX: DestReg = X86::EDX; break;
12053 case X86::CX: DestReg = X86::ECX; break;
12054 case X86::BX: DestReg = X86::EBX; break;
12055 case X86::SI: DestReg = X86::ESI; break;
12056 case X86::DI: DestReg = X86::EDI; break;
12057 case X86::BP: DestReg = X86::EBP; break;
12058 case X86::SP: DestReg = X86::ESP; break;
12059 }
12060 if (DestReg) {
12061 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012062 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012063 }
Owen Anderson825b72b2009-08-11 20:47:22 +000012064 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012065 unsigned DestReg = 0;
12066 switch (Res.first) {
12067 default: break;
12068 case X86::AX: DestReg = X86::RAX; break;
12069 case X86::DX: DestReg = X86::RDX; break;
12070 case X86::CX: DestReg = X86::RCX; break;
12071 case X86::BX: DestReg = X86::RBX; break;
12072 case X86::SI: DestReg = X86::RSI; break;
12073 case X86::DI: DestReg = X86::RDI; break;
12074 case X86::BP: DestReg = X86::RBP; break;
12075 case X86::SP: DestReg = X86::RSP; break;
12076 }
12077 if (DestReg) {
12078 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012079 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012080 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000012081 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000012082 } else if (Res.second == X86::FR32RegisterClass ||
12083 Res.second == X86::FR64RegisterClass ||
12084 Res.second == X86::VR128RegisterClass) {
12085 // Handle references to XMM physical registers that got mapped into the
12086 // wrong class. This can happen with constraints like {xmm0} where the
12087 // target independent register mapper will just pick the first match it can
12088 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000012089 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000012090 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000012091 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000012092 Res.second = X86::FR64RegisterClass;
12093 else if (X86::VR128RegisterClass->hasType(VT))
12094 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000012095 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012096
Chris Lattnerf76d1802006-07-31 23:26:50 +000012097 return Res;
12098}