blob: 3e7b0bbd6ae06cf14978b5c0f7f919d0a17661ad [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::CTTZ , MVT::i8 , Custom);
289 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000290 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
291 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000292 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
293 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000294 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000295 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
296 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000297 }
298
Benjamin Kramer1292c222010-12-04 20:32:23 +0000299 if (Subtarget->hasPOPCNT()) {
300 setOperationAction(ISD::CTPOP , MVT::i8 , Promote);
301 } else {
302 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
303 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
304 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
305 if (Subtarget->is64Bit())
306 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
307 }
308
Owen Anderson825b72b2009-08-11 20:47:22 +0000309 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
310 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000311
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000312 // These should be promoted to a larger select which is supported.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000313 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000314 // X86 wants to expand cmov itself.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000315 setOperationAction(ISD::SELECT , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000316 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000317 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
318 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
319 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
320 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
321 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000322 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000323 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
324 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
325 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
326 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000327 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000328 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
329 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000330 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000331 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000332
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000333 // Darwin ABI issue.
Owen Anderson825b72b2009-08-11 20:47:22 +0000334 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
335 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
336 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
337 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000338 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000339 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
340 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000341 setOperationAction(ISD::BlockAddress , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000342 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000343 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
344 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
345 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
346 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000347 setOperationAction(ISD::BlockAddress , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000348 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000349 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Owen Anderson825b72b2009-08-11 20:47:22 +0000350 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
351 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
352 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000353 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000354 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
355 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
356 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000357 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000358
Evan Chengd2cde682008-03-10 19:38:10 +0000359 if (Subtarget->hasSSE1())
Owen Anderson825b72b2009-08-11 20:47:22 +0000360 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000361
Eric Christopher9a9d2752010-07-22 02:48:34 +0000362 // We may not have a libcall for MEMBARRIER so we should lower this.
363 setOperationAction(ISD::MEMBARRIER , MVT::Other, Custom);
Michael J. Spencerec38de22010-10-10 22:04:20 +0000364
Jim Grosbachf1ab49e2010-06-23 16:25:07 +0000365 // On X86 and X86-64, atomic operations are lowered to locked instructions.
366 // Locked instructions, in turn, have implicit fence semantics (all memory
367 // operations are flushed before issuing the locked instruction, and they
368 // are not buffered), so we can fold away the common pattern of
369 // fence-atomic-fence.
370 setShouldFoldAtomicFences(true);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000371
Mon P Wang63307c32008-05-05 19:05:59 +0000372 // Expand certain atomics
Owen Anderson825b72b2009-08-11 20:47:22 +0000373 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i8, Custom);
374 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i16, Custom);
375 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Custom);
376 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i64, Custom);
Bill Wendling5bf1b4e2008-08-20 00:28:16 +0000377
Owen Anderson825b72b2009-08-11 20:47:22 +0000378 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i8, Custom);
379 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i16, Custom);
380 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Custom);
381 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000382
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000383 if (!Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000384 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
385 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
386 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
387 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
388 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
389 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
390 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000391 }
392
Evan Cheng3c992d22006-03-07 02:02:57 +0000393 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000394 if (!Subtarget->isTargetDarwin() &&
395 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000396 !Subtarget->isTargetCygMing()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000397 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohman44066042008-07-01 00:05:16 +0000398 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000399
Owen Anderson825b72b2009-08-11 20:47:22 +0000400 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
401 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
402 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
403 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000404 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000405 setExceptionPointerRegister(X86::RAX);
406 setExceptionSelectorRegister(X86::RDX);
407 } else {
408 setExceptionPointerRegister(X86::EAX);
409 setExceptionSelectorRegister(X86::EDX);
410 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000411 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
412 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000413
Owen Anderson825b72b2009-08-11 20:47:22 +0000414 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000415
Owen Anderson825b72b2009-08-11 20:47:22 +0000416 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000417
Nate Begemanacc398c2006-01-25 18:21:52 +0000418 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000419 setOperationAction(ISD::VASTART , MVT::Other, Custom);
420 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000421 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000422 setOperationAction(ISD::VAARG , MVT::Other, Custom);
423 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000424 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000425 setOperationAction(ISD::VAARG , MVT::Other, Expand);
426 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000427 }
Evan Chengae642192007-03-02 23:16:35 +0000428
Owen Anderson825b72b2009-08-11 20:47:22 +0000429 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
430 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000431 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000432 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
Michael J. Spencere9c253e2010-10-21 01:41:01 +0000433 if (Subtarget->isTargetCygMing() || Subtarget->isTargetWindows())
Owen Anderson825b72b2009-08-11 20:47:22 +0000434 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +0000435 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000436 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000437
Evan Chengc7ce29b2009-02-13 22:36:38 +0000438 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000439 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000440 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000441 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
442 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000443
Evan Cheng223547a2006-01-31 22:28:30 +0000444 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000445 setOperationAction(ISD::FABS , MVT::f64, Custom);
446 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000447
448 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000449 setOperationAction(ISD::FNEG , MVT::f64, Custom);
450 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000451
Evan Cheng68c47cb2007-01-05 07:55:56 +0000452 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000453 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
454 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000455
Evan Chengd25e9e82006-02-02 00:28:23 +0000456 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000457 setOperationAction(ISD::FSIN , MVT::f64, Expand);
458 setOperationAction(ISD::FCOS , MVT::f64, Expand);
459 setOperationAction(ISD::FSIN , MVT::f32, Expand);
460 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000461
Chris Lattnera54aa942006-01-29 06:26:08 +0000462 // Expand FP immediates into loads from the stack, except for the special
463 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000464 addLegalFPImmediate(APFloat(+0.0)); // xorpd
465 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Evan Chengc7ce29b2009-02-13 22:36:38 +0000466 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000467 // Use SSE for f32, x87 for f64.
468 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000469 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
470 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000471
472 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000473 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000474
475 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000476 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000477
Owen Anderson825b72b2009-08-11 20:47:22 +0000478 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000479
480 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000481 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
482 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000483
484 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000485 setOperationAction(ISD::FSIN , MVT::f32, Expand);
486 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000487
Nate Begemane1795842008-02-14 08:57:00 +0000488 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000489 addLegalFPImmediate(APFloat(+0.0f)); // xorps
490 addLegalFPImmediate(APFloat(+0.0)); // FLD0
491 addLegalFPImmediate(APFloat(+1.0)); // FLD1
492 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
493 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
494
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000495 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000496 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
497 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000498 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000499 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000500 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000501 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000502 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
503 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000504
Owen Anderson825b72b2009-08-11 20:47:22 +0000505 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
506 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
507 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
508 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000509
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000510 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000511 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
512 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000513 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000514 addLegalFPImmediate(APFloat(+0.0)); // FLD0
515 addLegalFPImmediate(APFloat(+1.0)); // FLD1
516 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
517 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000518 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
519 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
520 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
521 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000522 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000523
Dale Johannesen59a58732007-08-05 18:49:15 +0000524 // Long double always uses X87.
Evan Cheng92722532009-03-26 23:06:32 +0000525 if (!UseSoftFloat) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000526 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
527 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
528 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000529 {
Benjamin Kramer98383962010-12-04 14:22:24 +0000530 APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000531 addLegalFPImmediate(TmpFlt); // FLD0
532 TmpFlt.changeSign();
533 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
Benjamin Kramer98383962010-12-04 14:22:24 +0000534
535 bool ignored;
Evan Chengc7ce29b2009-02-13 22:36:38 +0000536 APFloat TmpFlt2(+1.0);
537 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
538 &ignored);
539 addLegalFPImmediate(TmpFlt2); // FLD1
540 TmpFlt2.changeSign();
541 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
542 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000543
Evan Chengc7ce29b2009-02-13 22:36:38 +0000544 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000545 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
546 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000547 }
Dale Johannesen2f429012007-09-26 21:10:55 +0000548 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000549
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000550 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000551 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
552 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
553 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000554
Owen Anderson825b72b2009-08-11 20:47:22 +0000555 setOperationAction(ISD::FLOG, MVT::f80, Expand);
556 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
557 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
558 setOperationAction(ISD::FEXP, MVT::f80, Expand);
559 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000560
Mon P Wangf007a8b2008-11-06 05:31:54 +0000561 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000562 // (for widening) or expand (for scalarization). Then we will selectively
563 // turn on ones that can be effectively codegen'd.
Owen Anderson825b72b2009-08-11 20:47:22 +0000564 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
565 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
566 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
567 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
568 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
569 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
570 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
571 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
572 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
573 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
574 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
575 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
576 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
577 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
578 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
579 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
580 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
581 setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
582 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
583 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
584 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
585 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
586 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
587 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
588 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
589 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
590 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
591 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
592 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
593 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
594 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
595 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
596 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
597 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
598 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
599 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
600 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
601 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
602 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
603 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
604 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
605 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
606 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
607 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
608 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
609 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
610 setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
611 setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
612 setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
613 setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
Dan Gohman87862e72009-12-11 21:31:27 +0000614 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
Dan Gohman2e141d72009-12-14 23:40:38 +0000615 setOperationAction(ISD::TRUNCATE, (MVT::SimpleValueType)VT, Expand);
616 setOperationAction(ISD::SIGN_EXTEND, (MVT::SimpleValueType)VT, Expand);
617 setOperationAction(ISD::ZERO_EXTEND, (MVT::SimpleValueType)VT, Expand);
618 setOperationAction(ISD::ANY_EXTEND, (MVT::SimpleValueType)VT, Expand);
619 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
620 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
621 setTruncStoreAction((MVT::SimpleValueType)VT,
622 (MVT::SimpleValueType)InnerVT, Expand);
623 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
624 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
625 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000626 }
627
Evan Chengc7ce29b2009-02-13 22:36:38 +0000628 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
629 // with -msoft-float, disable use of MMX as well.
Evan Cheng92722532009-03-26 23:06:32 +0000630 if (!UseSoftFloat && !DisableMMX && Subtarget->hasMMX()) {
Dale Johannesene93d99c2010-10-20 21:32:10 +0000631 addRegisterClass(MVT::x86mmx, X86::VR64RegisterClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000632 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000633 }
634
Dale Johannesen0488fb62010-09-30 23:57:10 +0000635 // MMX-sized vectors (other than x86mmx) are expected to be expanded
636 // into smaller operations.
637 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
638 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
639 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
640 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
641 setOperationAction(ISD::AND, MVT::v8i8, Expand);
642 setOperationAction(ISD::AND, MVT::v4i16, Expand);
643 setOperationAction(ISD::AND, MVT::v2i32, Expand);
644 setOperationAction(ISD::AND, MVT::v1i64, Expand);
645 setOperationAction(ISD::OR, MVT::v8i8, Expand);
646 setOperationAction(ISD::OR, MVT::v4i16, Expand);
647 setOperationAction(ISD::OR, MVT::v2i32, Expand);
648 setOperationAction(ISD::OR, MVT::v1i64, Expand);
649 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
650 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
651 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
652 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
653 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
654 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
655 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
656 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
657 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
658 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
659 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
660 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
661 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000662 setOperationAction(ISD::BITCAST, MVT::v8i8, Expand);
663 setOperationAction(ISD::BITCAST, MVT::v4i16, Expand);
664 setOperationAction(ISD::BITCAST, MVT::v2i32, Expand);
665 setOperationAction(ISD::BITCAST, MVT::v1i64, Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000666
Evan Cheng92722532009-03-26 23:06:32 +0000667 if (!UseSoftFloat && Subtarget->hasSSE1()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000668 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000669
Owen Anderson825b72b2009-08-11 20:47:22 +0000670 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
671 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
672 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
673 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
674 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
675 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
676 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
677 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
678 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
679 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
680 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
681 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000682 }
683
Evan Cheng92722532009-03-26 23:06:32 +0000684 if (!UseSoftFloat && Subtarget->hasSSE2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000685 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000686
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000687 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
688 // registers cannot be used even for integer operations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000689 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
690 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
691 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
692 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000693
Owen Anderson825b72b2009-08-11 20:47:22 +0000694 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
695 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
696 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
697 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
698 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
699 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
700 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
701 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
702 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
703 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
704 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
705 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
706 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
707 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
708 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
709 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000710
Owen Anderson825b72b2009-08-11 20:47:22 +0000711 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
712 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
713 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
714 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000715
Owen Anderson825b72b2009-08-11 20:47:22 +0000716 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
717 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
718 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
719 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
720 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000721
Mon P Wangeb38ebf2010-01-24 00:05:03 +0000722 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2f64, Custom);
723 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2i64, Custom);
724 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i8, Custom);
725 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i16, Custom);
726 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
727
Evan Cheng2c3ae372006-04-12 21:21:57 +0000728 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Owen Anderson825b72b2009-08-11 20:47:22 +0000729 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
730 EVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000731 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000732 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000733 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000734 // Do not attempt to custom lower non-128-bit vectors
735 if (!VT.is128BitVector())
736 continue;
Owen Anderson825b72b2009-08-11 20:47:22 +0000737 setOperationAction(ISD::BUILD_VECTOR,
738 VT.getSimpleVT().SimpleTy, Custom);
739 setOperationAction(ISD::VECTOR_SHUFFLE,
740 VT.getSimpleVT().SimpleTy, Custom);
741 setOperationAction(ISD::EXTRACT_VECTOR_ELT,
742 VT.getSimpleVT().SimpleTy, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000743 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000744
Owen Anderson825b72b2009-08-11 20:47:22 +0000745 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
746 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
747 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
748 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
749 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
750 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000751
Nate Begemancdd1eec2008-02-12 22:51:28 +0000752 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000753 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
754 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000755 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000756
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000757 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Owen Anderson825b72b2009-08-11 20:47:22 +0000758 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) {
759 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
Owen Andersone50ed302009-08-10 22:56:29 +0000760 EVT VT = SVT;
David Greene9b9838d2009-06-29 16:47:10 +0000761
762 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000763 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000764 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +0000765
Owen Andersond6662ad2009-08-10 20:46:15 +0000766 setOperationAction(ISD::AND, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000767 AddPromotedToType (ISD::AND, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000768 setOperationAction(ISD::OR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000769 AddPromotedToType (ISD::OR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000770 setOperationAction(ISD::XOR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000771 AddPromotedToType (ISD::XOR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000772 setOperationAction(ISD::LOAD, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000773 AddPromotedToType (ISD::LOAD, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000774 setOperationAction(ISD::SELECT, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000775 AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000776 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000777
Owen Anderson825b72b2009-08-11 20:47:22 +0000778 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000779
Evan Cheng2c3ae372006-04-12 21:21:57 +0000780 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +0000781 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
782 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
783 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
784 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000785
Owen Anderson825b72b2009-08-11 20:47:22 +0000786 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
787 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000788 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000789
Nate Begeman14d12ca2008-02-11 04:19:36 +0000790 if (Subtarget->hasSSE41()) {
Dale Johannesen54feef22010-05-27 20:12:41 +0000791 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
792 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
793 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
794 setOperationAction(ISD::FRINT, MVT::f32, Legal);
795 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
796 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
797 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
798 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
799 setOperationAction(ISD::FRINT, MVT::f64, Legal);
800 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
801
Nate Begeman14d12ca2008-02-11 04:19:36 +0000802 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +0000803 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000804
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000805 // Can turn SHL into an integer multiply.
806 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
Nate Begeman51409212010-07-28 00:21:48 +0000807 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000808
Nate Begeman14d12ca2008-02-11 04:19:36 +0000809 // i8 and i16 vectors are custom , because the source register and source
810 // source memory operand types are not the same width. f32 vectors are
811 // custom since the immediate controlling the insert encodes additional
812 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +0000813 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
814 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
815 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
816 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000817
Owen Anderson825b72b2009-08-11 20:47:22 +0000818 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
819 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
820 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
821 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000822
823 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000824 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
825 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000826 }
827 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000828
Nate Begeman30a0de92008-07-17 16:51:19 +0000829 if (Subtarget->hasSSE42()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000830 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
Nate Begeman30a0de92008-07-17 16:51:19 +0000831 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000832
David Greene9b9838d2009-06-29 16:47:10 +0000833 if (!UseSoftFloat && Subtarget->hasAVX()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000834 addRegisterClass(MVT::v8f32, X86::VR256RegisterClass);
835 addRegisterClass(MVT::v4f64, X86::VR256RegisterClass);
836 addRegisterClass(MVT::v8i32, X86::VR256RegisterClass);
837 addRegisterClass(MVT::v4i64, X86::VR256RegisterClass);
Bruno Cardoso Lopes405f11b2010-08-10 01:43:16 +0000838 addRegisterClass(MVT::v32i8, X86::VR256RegisterClass);
David Greened94c1012009-06-29 22:50:51 +0000839
Owen Anderson825b72b2009-08-11 20:47:22 +0000840 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
841 setOperationAction(ISD::LOAD, MVT::v8i32, Legal);
842 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
843 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
844 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
845 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
846 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
847 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
848 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
849 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +0000850 setOperationAction(ISD::BUILD_VECTOR, MVT::v8f32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000851 //setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8f32, Custom);
852 //setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8f32, Custom);
853 //setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
854 //setOperationAction(ISD::VSETCC, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000855
856 // Operations to consider commented out -v16i16 v32i8
Owen Anderson825b72b2009-08-11 20:47:22 +0000857 //setOperationAction(ISD::ADD, MVT::v16i16, Legal);
858 setOperationAction(ISD::ADD, MVT::v8i32, Custom);
859 setOperationAction(ISD::ADD, MVT::v4i64, Custom);
860 //setOperationAction(ISD::SUB, MVT::v32i8, Legal);
861 //setOperationAction(ISD::SUB, MVT::v16i16, Legal);
862 setOperationAction(ISD::SUB, MVT::v8i32, Custom);
863 setOperationAction(ISD::SUB, MVT::v4i64, Custom);
864 //setOperationAction(ISD::MUL, MVT::v16i16, Legal);
865 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
866 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
867 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
868 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
869 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
870 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000871
Owen Anderson825b72b2009-08-11 20:47:22 +0000872 setOperationAction(ISD::VSETCC, MVT::v4f64, Custom);
873 // setOperationAction(ISD::VSETCC, MVT::v32i8, Custom);
874 // setOperationAction(ISD::VSETCC, MVT::v16i16, Custom);
875 setOperationAction(ISD::VSETCC, MVT::v8i32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000876
Owen Anderson825b72b2009-08-11 20:47:22 +0000877 // setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v32i8, Custom);
878 // setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i16, Custom);
879 // setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i16, Custom);
880 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i32, Custom);
881 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000882
Owen Anderson825b72b2009-08-11 20:47:22 +0000883 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f64, Custom);
884 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i64, Custom);
885 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f64, Custom);
886 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i64, Custom);
887 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f64, Custom);
888 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000889
890#if 0
891 // Not sure we want to do this since there are no 256-bit integer
892 // operations in AVX
893
894 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
895 // This includes 256-bit vectors
Owen Anderson825b72b2009-08-11 20:47:22 +0000896 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v4i64; ++i) {
897 EVT VT = (MVT::SimpleValueType)i;
David Greene9b9838d2009-06-29 16:47:10 +0000898
899 // Do not attempt to custom lower non-power-of-2 vectors
900 if (!isPowerOf2_32(VT.getVectorNumElements()))
901 continue;
902
903 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
904 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
905 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
906 }
907
908 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000909 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i64, Custom);
910 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i64, Custom);
Eric Christopherfd179292009-08-27 18:07:15 +0000911 }
David Greene9b9838d2009-06-29 16:47:10 +0000912#endif
913
914#if 0
915 // Not sure we want to do this since there are no 256-bit integer
916 // operations in AVX
917
918 // Promote v32i8, v16i16, v8i32 load, select, and, or, xor to v4i64.
919 // Including 256-bit vectors
Owen Anderson825b72b2009-08-11 20:47:22 +0000920 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v4i64; i++) {
921 EVT VT = (MVT::SimpleValueType)i;
David Greene9b9838d2009-06-29 16:47:10 +0000922
923 if (!VT.is256BitVector()) {
924 continue;
925 }
926 setOperationAction(ISD::AND, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000927 AddPromotedToType (ISD::AND, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000928 setOperationAction(ISD::OR, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000929 AddPromotedToType (ISD::OR, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000930 setOperationAction(ISD::XOR, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000931 AddPromotedToType (ISD::XOR, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000932 setOperationAction(ISD::LOAD, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000933 AddPromotedToType (ISD::LOAD, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000934 setOperationAction(ISD::SELECT, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000935 AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000936 }
937
Owen Anderson825b72b2009-08-11 20:47:22 +0000938 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
David Greene9b9838d2009-06-29 16:47:10 +0000939#endif
940 }
941
Evan Cheng6be2c582006-04-05 23:38:46 +0000942 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +0000943 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +0000944
Bill Wendling74c37652008-12-09 22:08:41 +0000945 // Add/Sub/Mul with overflow operations are custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000946 setOperationAction(ISD::SADDO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000947 setOperationAction(ISD::UADDO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000948 setOperationAction(ISD::SSUBO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000949 setOperationAction(ISD::USUBO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000950 setOperationAction(ISD::SMULO, MVT::i32, Custom);
Dan Gohman71c62a22010-06-02 19:13:40 +0000951
Eli Friedman962f5492010-06-02 19:35:46 +0000952 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
953 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +0000954 //
Eli Friedman962f5492010-06-02 19:35:46 +0000955 // FIXME: We really should do custom legalization for addition and
956 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
957 // than generic legalization for 64-bit multiplication-with-overflow, though.
Eli Friedmana993f0a2010-06-02 00:27:18 +0000958 if (Subtarget->is64Bit()) {
959 setOperationAction(ISD::SADDO, MVT::i64, Custom);
960 setOperationAction(ISD::UADDO, MVT::i64, Custom);
961 setOperationAction(ISD::SSUBO, MVT::i64, Custom);
962 setOperationAction(ISD::USUBO, MVT::i64, Custom);
963 setOperationAction(ISD::SMULO, MVT::i64, Custom);
964 }
Bill Wendling41ea7e72008-11-24 19:21:46 +0000965
Evan Chengd54f2d52009-03-31 19:38:51 +0000966 if (!Subtarget->is64Bit()) {
967 // These libcalls are not available in 32-bit.
968 setLibcallName(RTLIB::SHL_I128, 0);
969 setLibcallName(RTLIB::SRL_I128, 0);
970 setLibcallName(RTLIB::SRA_I128, 0);
971 }
972
Evan Cheng206ee9d2006-07-07 08:33:52 +0000973 // We have target-specific dag combine patterns for the following nodes:
974 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +0000975 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +0000976 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +0000977 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +0000978 setTargetDAGCombine(ISD::SHL);
979 setTargetDAGCombine(ISD::SRA);
980 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +0000981 setTargetDAGCombine(ISD::OR);
Chris Lattner149a4e52008-02-22 02:09:43 +0000982 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +0000983 setTargetDAGCombine(ISD::ZERO_EXTEND);
Evan Cheng0b0cd912009-03-28 05:57:29 +0000984 if (Subtarget->is64Bit())
985 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +0000986
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000987 computeRegisterProperties();
988
Evan Cheng87ed7162006-02-14 08:25:08 +0000989 // FIXME: These should be based on subtarget info. Plus, the values should
990 // be smaller when we are in optimizing for size mode.
Dan Gohman87060f52008-06-30 21:00:56 +0000991 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng255f20f2010-04-01 06:04:33 +0000992 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Dan Gohman87060f52008-06-30 21:00:56 +0000993 maxStoresPerMemmove = 3; // For @llvm.memmove -> sequence of stores
Evan Chengfb8075d2008-02-28 00:43:03 +0000994 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +0000995 benefitFromCodePlacementOpt = true;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000996}
997
Scott Michel5b8f82e2008-03-10 15:42:14 +0000998
Owen Anderson825b72b2009-08-11 20:47:22 +0000999MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
1000 return MVT::i8;
Scott Michel5b8f82e2008-03-10 15:42:14 +00001001}
1002
1003
Evan Cheng29286502008-01-23 23:17:41 +00001004/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1005/// the desired ByVal argument alignment.
1006static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) {
1007 if (MaxAlign == 16)
1008 return;
1009 if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1010 if (VTy->getBitWidth() == 128)
1011 MaxAlign = 16;
Evan Cheng29286502008-01-23 23:17:41 +00001012 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1013 unsigned EltAlign = 0;
1014 getMaxByValAlign(ATy->getElementType(), EltAlign);
1015 if (EltAlign > MaxAlign)
1016 MaxAlign = EltAlign;
1017 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
1018 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1019 unsigned EltAlign = 0;
1020 getMaxByValAlign(STy->getElementType(i), EltAlign);
1021 if (EltAlign > MaxAlign)
1022 MaxAlign = EltAlign;
1023 if (MaxAlign == 16)
1024 break;
1025 }
1026 }
1027 return;
1028}
1029
1030/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1031/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001032/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1033/// are at 4-byte boundaries.
Evan Cheng29286502008-01-23 23:17:41 +00001034unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001035 if (Subtarget->is64Bit()) {
1036 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001037 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001038 if (TyAlign > 8)
1039 return TyAlign;
1040 return 8;
1041 }
1042
Evan Cheng29286502008-01-23 23:17:41 +00001043 unsigned Align = 4;
Dale Johannesen0c191872008-02-08 19:48:20 +00001044 if (Subtarget->hasSSE1())
1045 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001046 return Align;
1047}
Chris Lattner2b02a442007-02-25 08:29:00 +00001048
Evan Chengf0df0312008-05-15 08:39:06 +00001049/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001050/// and store operations as a result of memset, memcpy, and memmove
1051/// lowering. If DstAlign is zero that means it's safe to destination
1052/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1053/// means there isn't a need to check it against alignment requirement,
1054/// probably because the source does not need to be loaded. If
1055/// 'NonScalarIntSafe' is true, that means it's safe to return a
1056/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1057/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1058/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001059/// It returns EVT::Other if the type should be determined using generic
1060/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001061EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001062X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1063 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001064 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001065 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001066 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001067 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1068 // linux. This is because the stack realignment code can't handle certain
1069 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001070 const Function *F = MF.getFunction();
Evan Chengf28f8bc2010-04-02 19:36:14 +00001071 if (NonScalarIntSafe &&
1072 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001073 if (Size >= 16 &&
1074 (Subtarget->isUnalignedMemAccessFast() ||
Chandler Carruthae1d41c2010-04-02 01:31:24 +00001075 ((DstAlign == 0 || DstAlign >= 16) &&
1076 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001077 Subtarget->getStackAlignment() >= 16) {
1078 if (Subtarget->hasSSE2())
1079 return MVT::v4i32;
Evan Chengf28f8bc2010-04-02 19:36:14 +00001080 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001081 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001082 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001083 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001084 Subtarget->getStackAlignment() >= 8 &&
Evan Chengc3b0c342010-04-08 07:37:57 +00001085 Subtarget->hasSSE2()) {
1086 // Do not use f64 to lower memcpy if source is string constant. It's
1087 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001088 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001089 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001090 }
Evan Chengf0df0312008-05-15 08:39:06 +00001091 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001092 return MVT::i64;
1093 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001094}
1095
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001096/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1097/// current function. The returned value is a member of the
1098/// MachineJumpTableInfo::JTEntryKind enum.
1099unsigned X86TargetLowering::getJumpTableEncoding() const {
1100 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1101 // symbol.
1102 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1103 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001104 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001105
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001106 // Otherwise, use the normal jump table encoding heuristics.
1107 return TargetLowering::getJumpTableEncoding();
1108}
1109
Chris Lattnerc64daab2010-01-26 05:02:42 +00001110const MCExpr *
1111X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1112 const MachineBasicBlock *MBB,
1113 unsigned uid,MCContext &Ctx) const{
1114 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1115 Subtarget->isPICStyleGOT());
1116 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1117 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001118 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1119 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001120}
1121
Evan Chengcc415862007-11-09 01:32:10 +00001122/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1123/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001124SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001125 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001126 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001127 // This doesn't have DebugLoc associated with it, but is not really the
1128 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001129 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001130 return Table;
1131}
1132
Chris Lattner589c6f62010-01-26 06:28:43 +00001133/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1134/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1135/// MCExpr.
1136const MCExpr *X86TargetLowering::
1137getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1138 MCContext &Ctx) const {
1139 // X86-64 uses RIP relative addressing based on the jump table label.
1140 if (Subtarget->isPICStyleRIPRel())
1141 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1142
1143 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001144 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001145}
1146
Bill Wendlingb4202b82009-07-01 18:50:55 +00001147/// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling20c568f2009-06-30 22:38:32 +00001148unsigned X86TargetLowering::getFunctionAlignment(const Function *F) const {
Dan Gohman25103a22009-08-18 00:20:06 +00001149 return F->hasFnAttr(Attribute::OptimizeForSize) ? 0 : 4;
Bill Wendling20c568f2009-06-30 22:38:32 +00001150}
1151
Evan Chengdee81012010-07-26 21:50:05 +00001152std::pair<const TargetRegisterClass*, uint8_t>
1153X86TargetLowering::findRepresentativeClass(EVT VT) const{
1154 const TargetRegisterClass *RRC = 0;
1155 uint8_t Cost = 1;
1156 switch (VT.getSimpleVT().SimpleTy) {
1157 default:
1158 return TargetLowering::findRepresentativeClass(VT);
1159 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1160 RRC = (Subtarget->is64Bit()
1161 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1162 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001163 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001164 RRC = X86::VR64RegisterClass;
1165 break;
1166 case MVT::f32: case MVT::f64:
1167 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1168 case MVT::v4f32: case MVT::v2f64:
1169 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1170 case MVT::v4f64:
1171 RRC = X86::VR128RegisterClass;
1172 break;
1173 }
1174 return std::make_pair(RRC, Cost);
1175}
1176
Evan Cheng70017e42010-07-24 00:39:05 +00001177unsigned
1178X86TargetLowering::getRegPressureLimit(const TargetRegisterClass *RC,
1179 MachineFunction &MF) const {
Anton Korobeynikovd0c38172010-11-18 21:19:35 +00001180 const TargetFrameInfo *TFI = MF.getTarget().getFrameInfo();
1181
1182 unsigned FPDiff = TFI->hasFP(MF) ? 1 : 0;
Evan Cheng70017e42010-07-24 00:39:05 +00001183 switch (RC->getID()) {
1184 default:
1185 return 0;
1186 case X86::GR32RegClassID:
1187 return 4 - FPDiff;
1188 case X86::GR64RegClassID:
1189 return 8 - FPDiff;
1190 case X86::VR128RegClassID:
1191 return Subtarget->is64Bit() ? 10 : 4;
1192 case X86::VR64RegClassID:
1193 return 4;
1194 }
1195}
1196
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001197bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1198 unsigned &Offset) const {
1199 if (!Subtarget->isTargetLinux())
1200 return false;
1201
1202 if (Subtarget->is64Bit()) {
1203 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1204 Offset = 0x28;
1205 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1206 AddressSpace = 256;
1207 else
1208 AddressSpace = 257;
1209 } else {
1210 // %gs:0x14 on i386
1211 Offset = 0x14;
1212 AddressSpace = 256;
1213 }
1214 return true;
1215}
1216
1217
Chris Lattner2b02a442007-02-25 08:29:00 +00001218//===----------------------------------------------------------------------===//
1219// Return Value Calling Convention Implementation
1220//===----------------------------------------------------------------------===//
1221
Chris Lattner59ed56b2007-02-28 04:55:35 +00001222#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001223
Michael J. Spencerec38de22010-10-10 22:04:20 +00001224bool
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001225X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001226 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001227 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001228 SmallVector<CCValAssign, 16> RVLocs;
1229 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001230 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001231 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001232}
1233
Dan Gohman98ca4f22009-08-05 01:29:28 +00001234SDValue
1235X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001236 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001237 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001238 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001239 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001240 MachineFunction &MF = DAG.getMachineFunction();
1241 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001242
Chris Lattner9774c912007-02-27 05:28:59 +00001243 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001244 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1245 RVLocs, *DAG.getContext());
1246 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001247
Evan Chengdcea1632010-02-04 02:40:39 +00001248 // Add the regs to the liveout set for the function.
1249 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1250 for (unsigned i = 0; i != RVLocs.size(); ++i)
1251 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1252 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001253
Dan Gohman475871a2008-07-27 21:46:04 +00001254 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001255
Dan Gohman475871a2008-07-27 21:46:04 +00001256 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001257 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1258 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001259 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1260 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001261
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001262 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001263 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1264 CCValAssign &VA = RVLocs[i];
1265 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001266 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001267 EVT ValVT = ValToCopy.getValueType();
1268
Dale Johannesenc4510512010-09-24 19:05:48 +00001269 // If this is x86-64, and we disabled SSE, we can't return FP values,
1270 // or SSE or MMX vectors.
1271 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1272 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1273 (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001274 report_fatal_error("SSE register return with SSE disabled");
1275 }
1276 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1277 // llvm-gcc has never done it right and no one has noticed, so this
1278 // should be OK for now.
1279 if (ValVT == MVT::f64 &&
Chris Lattner83069682010-08-26 05:51:22 +00001280 (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001281 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001282
Chris Lattner447ff682008-03-11 03:23:40 +00001283 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1284 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001285 if (VA.getLocReg() == X86::ST0 ||
1286 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001287 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1288 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001289 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001290 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001291 RetOps.push_back(ValToCopy);
1292 // Don't emit a copytoreg.
1293 continue;
1294 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001295
Evan Cheng242b38b2009-02-23 09:03:22 +00001296 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1297 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001298 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001299 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001300 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001301 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001302 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1303 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001304 // If we don't have SSE2 available, convert to v4f32 so the generated
1305 // register is legal.
1306 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001307 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001308 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001309 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001310 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001311
Dale Johannesendd64c412009-02-04 00:33:20 +00001312 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001313 Flag = Chain.getValue(1);
1314 }
Dan Gohman61a92132008-04-21 23:59:07 +00001315
1316 // The x86-64 ABI for returning structs by value requires that we copy
1317 // the sret argument into %rax for the return. We saved the argument into
1318 // a virtual register in the entry block, so now we copy the value out
1319 // and into %rax.
1320 if (Subtarget->is64Bit() &&
1321 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1322 MachineFunction &MF = DAG.getMachineFunction();
1323 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1324 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001325 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001326 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001327 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001328
Dale Johannesendd64c412009-02-04 00:33:20 +00001329 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001330 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001331
1332 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001333 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001334 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001335
Chris Lattner447ff682008-03-11 03:23:40 +00001336 RetOps[0] = Chain; // Update chain.
1337
1338 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001339 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001340 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001341
1342 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001343 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001344}
1345
Evan Cheng3d2125c2010-11-30 23:55:39 +00001346bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1347 if (N->getNumValues() != 1)
1348 return false;
1349 if (!N->hasNUsesOfValue(1, 0))
1350 return false;
1351
1352 SDNode *Copy = *N->use_begin();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001353 if (Copy->getOpcode() != ISD::CopyToReg &&
1354 Copy->getOpcode() != ISD::FP_EXTEND)
Evan Cheng3d2125c2010-11-30 23:55:39 +00001355 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001356
1357 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001358 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001359 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001360 if (UI->getOpcode() != X86ISD::RET_FLAG)
1361 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001362 HasRet = true;
1363 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001364
Evan Cheng1bf891a2010-12-01 22:59:46 +00001365 return HasRet;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001366}
1367
Dan Gohman98ca4f22009-08-05 01:29:28 +00001368/// LowerCallResult - Lower the result values of a call into the
1369/// appropriate copies out of appropriate physical registers.
1370///
1371SDValue
1372X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001373 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001374 const SmallVectorImpl<ISD::InputArg> &Ins,
1375 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001376 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001377
Chris Lattnere32bbf62007-02-28 07:09:55 +00001378 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001379 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001380 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001381 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Owen Andersone922c022009-07-22 00:24:57 +00001382 RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001383 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001384
Chris Lattner3085e152007-02-25 08:59:22 +00001385 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001386 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001387 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001388 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001389
Torok Edwin3f142c32009-02-01 18:15:56 +00001390 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001391 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Dan Gohman98ca4f22009-08-05 01:29:28 +00001392 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001393 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001394 }
1395
Evan Cheng79fb3b42009-02-20 20:43:02 +00001396 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001397
1398 // If this is a call to a function that returns an fp value on the floating
1399 // point stack, we must guarantee the the value is popped from the stack, so
1400 // a CopyFromReg is not good enough - the copy instruction may be eliminated
1401 // if the return value is not used. We use the FpGET_ST0 instructions
1402 // instead.
1403 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1404 // If we prefer to use the value in xmm registers, copy it out as f80 and
1405 // use a truncate to move it from fp stack reg to xmm reg.
1406 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1407 bool isST0 = VA.getLocReg() == X86::ST0;
1408 unsigned Opc = 0;
1409 if (CopyVT == MVT::f32) Opc = isST0 ? X86::FpGET_ST0_32:X86::FpGET_ST1_32;
1410 if (CopyVT == MVT::f64) Opc = isST0 ? X86::FpGET_ST0_64:X86::FpGET_ST1_64;
1411 if (CopyVT == MVT::f80) Opc = isST0 ? X86::FpGET_ST0_80:X86::FpGET_ST1_80;
1412 SDValue Ops[] = { Chain, InFlag };
1413 Chain = SDValue(DAG.getMachineNode(Opc, dl, CopyVT, MVT::Other, MVT::Flag,
1414 Ops, 2), 1);
1415 Val = Chain.getValue(0);
1416
1417 // Round the f80 to the right size, which also moves it to the appropriate
1418 // xmm register.
1419 if (CopyVT != VA.getValVT())
1420 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1421 // This truncation won't change the value.
1422 DAG.getIntPtrConstant(1));
1423 } else if (Is64Bit && CopyVT.isVector() && CopyVT.getSizeInBits() == 64) {
Evan Cheng242b38b2009-02-23 09:03:22 +00001424 // For x86-64, MMX values are returned in XMM0 / XMM1 except for v1i64.
1425 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1426 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001427 MVT::v2i64, InFlag).getValue(1);
Evan Cheng242b38b2009-02-23 09:03:22 +00001428 Val = Chain.getValue(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001429 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1430 Val, DAG.getConstant(0, MVT::i64));
Evan Cheng242b38b2009-02-23 09:03:22 +00001431 } else {
1432 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001433 MVT::i64, InFlag).getValue(1);
Evan Cheng242b38b2009-02-23 09:03:22 +00001434 Val = Chain.getValue(0);
1435 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001436 Val = DAG.getNode(ISD::BITCAST, dl, CopyVT, Val);
Evan Cheng79fb3b42009-02-20 20:43:02 +00001437 } else {
1438 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1439 CopyVT, InFlag).getValue(1);
1440 Val = Chain.getValue(0);
1441 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001442 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001443 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001444 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001445
Dan Gohman98ca4f22009-08-05 01:29:28 +00001446 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001447}
1448
1449
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001450//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001451// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001452//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001453// StdCall calling convention seems to be standard for many Windows' API
1454// routines and around. It differs from C calling convention just a little:
1455// callee should clean up the stack, not caller. Symbols should be also
1456// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001457// For info on fast calling convention see Fast Calling Convention (tail call)
1458// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001459
Dan Gohman98ca4f22009-08-05 01:29:28 +00001460/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001461/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001462static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1463 if (Outs.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 Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001467}
1468
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001469/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001470/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001471static bool
1472ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1473 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001474 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001475
Dan Gohman98ca4f22009-08-05 01:29:28 +00001476 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001477}
1478
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001479/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1480/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001481/// the specific parameter attribute. The copy will be passed as a byval
1482/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001483static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001484CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001485 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1486 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001487 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001488
Dale Johannesendd64c412009-02-04 00:33:20 +00001489 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Mon P Wang20adc9d2010-04-04 03:10:48 +00001490 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001491 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001492}
1493
Chris Lattner29689432010-03-11 00:22:57 +00001494/// IsTailCallConvention - Return true if the calling convention is one that
1495/// supports tail call optimization.
1496static bool IsTailCallConvention(CallingConv::ID CC) {
1497 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1498}
1499
Evan Cheng0c439eb2010-01-27 00:07:07 +00001500/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1501/// a tailcall target by changing its ABI.
1502static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001503 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001504}
1505
Dan Gohman98ca4f22009-08-05 01:29:28 +00001506SDValue
1507X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001508 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001509 const SmallVectorImpl<ISD::InputArg> &Ins,
1510 DebugLoc dl, SelectionDAG &DAG,
1511 const CCValAssign &VA,
1512 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001513 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001514 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001515 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001516 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001517 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001518 EVT ValVT;
1519
1520 // If value is passed by pointer we have address passed instead of the value
1521 // itself.
1522 if (VA.getLocInfo() == CCValAssign::Indirect)
1523 ValVT = VA.getLocVT();
1524 else
1525 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001526
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001527 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001528 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001529 // In case of tail call optimization mark all arguments mutable. Since they
1530 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001531 if (Flags.isByVal()) {
1532 int FI = MFI->CreateFixedObject(Flags.getByValSize(),
Evan Chenged2ae132010-07-03 00:40:23 +00001533 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001534 return DAG.getFrameIndex(FI, getPointerTy());
1535 } else {
1536 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001537 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001538 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1539 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001540 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001541 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001542 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001543}
1544
Dan Gohman475871a2008-07-27 21:46:04 +00001545SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001546X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001547 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001548 bool isVarArg,
1549 const SmallVectorImpl<ISD::InputArg> &Ins,
1550 DebugLoc dl,
1551 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001552 SmallVectorImpl<SDValue> &InVals)
1553 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001554 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001555 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001556
Gordon Henriksen86737662008-01-05 16:56:59 +00001557 const Function* Fn = MF.getFunction();
1558 if (Fn->hasExternalLinkage() &&
1559 Subtarget->isTargetCygMing() &&
1560 Fn->getName() == "main")
1561 FuncInfo->setForceFramePointer(true);
1562
Evan Cheng1bc78042006-04-26 01:20:17 +00001563 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001564 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001565 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001566
Chris Lattner29689432010-03-11 00:22:57 +00001567 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1568 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001569
Chris Lattner638402b2007-02-28 07:00:42 +00001570 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001571 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001572 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1573 ArgLocs, *DAG.getContext());
Duncan Sands45907662010-10-31 13:21:44 +00001574 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001575
Chris Lattnerf39f7712007-02-28 05:46:49 +00001576 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001577 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001578 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1579 CCValAssign &VA = ArgLocs[i];
1580 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1581 // places.
1582 assert(VA.getValNo() != LastVal &&
1583 "Don't support value assigned to multiple locs yet");
1584 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001585
Chris Lattnerf39f7712007-02-28 05:46:49 +00001586 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001587 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001588 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001589 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001590 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001591 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001592 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001593 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001594 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001595 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001596 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001597 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1598 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001599 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001600 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001601 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001602 RC = X86::VR64RegisterClass;
1603 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001604 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001605
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001606 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001607 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001608
Chris Lattnerf39f7712007-02-28 05:46:49 +00001609 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1610 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1611 // right size.
1612 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001613 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001614 DAG.getValueType(VA.getValVT()));
1615 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001616 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001617 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001618 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001619 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001620
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001621 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001622 // Handle MMX values passed in XMM regs.
1623 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001624 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1625 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001626 } else
1627 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001628 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001629 } else {
1630 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001631 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001632 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001633
1634 // If value is passed via pointer - do a load.
1635 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001636 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1637 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001638
Dan Gohman98ca4f22009-08-05 01:29:28 +00001639 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001640 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001641
Dan Gohman61a92132008-04-21 23:59:07 +00001642 // The x86-64 ABI for returning structs by value requires that we copy
1643 // the sret argument into %rax for the return. Save the argument into
1644 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001645 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001646 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1647 unsigned Reg = FuncInfo->getSRetReturnReg();
1648 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001649 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001650 FuncInfo->setSRetReturnReg(Reg);
1651 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001652 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001653 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001654 }
1655
Chris Lattnerf39f7712007-02-28 05:46:49 +00001656 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001657 // Align stack specially for tail calls.
1658 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001659 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001660
Evan Cheng1bc78042006-04-26 01:20:17 +00001661 // If the function takes variable number of arguments, make a frame index for
1662 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001663 if (isVarArg) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001664 if (!IsWin64 && (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1665 CallConv != CallingConv::X86_ThisCall))) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001666 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001667 }
1668 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001669 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1670
1671 // FIXME: We should really autogenerate these arrays
1672 static const unsigned GPR64ArgRegsWin64[] = {
1673 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001674 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001675 static const unsigned GPR64ArgRegs64Bit[] = {
1676 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1677 };
1678 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001679 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1680 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1681 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001682 const unsigned *GPR64ArgRegs;
1683 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001684
1685 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001686 // The XMM registers which might contain var arg parameters are shadowed
1687 // in their paired GPR. So we only need to save the GPR to their home
1688 // slots.
1689 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001690 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001691 } else {
1692 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1693 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001694
1695 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001696 }
1697 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1698 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001699
Devang Patel578efa92009-06-05 21:57:13 +00001700 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Evan Chengc7ce29b2009-02-13 22:36:38 +00001701 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001702 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001703 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001704 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001705 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasSSE1())
Torok Edwin3f142c32009-02-01 18:15:56 +00001706 // Kernel mode asks for SSE to be disabled, so don't push them
1707 // on the stack.
1708 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001709
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001710 if (IsWin64) {
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001711 const TargetFrameInfo &TFI = *getTargetMachine().getFrameInfo();
1712 // Get to the caller-allocated home save location. Add 8 to account
1713 // for the return address.
1714 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001715 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001716 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001717 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
1718 } else {
1719 // For X86-64, if there are vararg parameters that are passed via
1720 // registers, then we must store them to their spots on the stack so they
1721 // may be loaded by deferencing the result of va_next.
1722 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1723 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1724 FuncInfo->setRegSaveFrameIndex(
1725 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001726 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001727 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001728
Gordon Henriksen86737662008-01-05 16:56:59 +00001729 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001730 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001731 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1732 getPointerTy());
1733 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001734 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001735 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1736 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001737 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
1738 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001739 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001740 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001741 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001742 MachinePointerInfo::getFixedStack(
1743 FuncInfo->getRegSaveFrameIndex(), Offset),
1744 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001745 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001746 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001747 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001748
Dan Gohmanface41a2009-08-16 21:24:25 +00001749 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1750 // Now store the XMM (fp + vector) parameter registers.
1751 SmallVector<SDValue, 11> SaveXMMOps;
1752 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001753
Dan Gohmanface41a2009-08-16 21:24:25 +00001754 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
1755 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1756 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001757
Dan Gohman1e93df62010-04-17 14:41:14 +00001758 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1759 FuncInfo->getRegSaveFrameIndex()));
1760 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1761 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001762
Dan Gohmanface41a2009-08-16 21:24:25 +00001763 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001764 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Dan Gohmanface41a2009-08-16 21:24:25 +00001765 X86::VR128RegisterClass);
1766 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1767 SaveXMMOps.push_back(Val);
1768 }
1769 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1770 MVT::Other,
1771 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001772 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001773
1774 if (!MemOps.empty())
1775 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1776 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001777 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001778 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001779
Gordon Henriksen86737662008-01-05 16:56:59 +00001780 // Some CCs need callee pop.
Dan Gohman4d3d6e12010-05-27 18:43:40 +00001781 if (Subtarget->IsCalleePop(isVarArg, CallConv)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001782 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001783 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001784 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001785 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001786 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001787 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001788 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001789
Gordon Henriksen86737662008-01-05 16:56:59 +00001790 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001791 // RegSaveFrameIndex is X86-64 only.
1792 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001793 if (CallConv == CallingConv::X86_FastCall ||
1794 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001795 // fastcc functions can't have varargs.
1796 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001797 }
Evan Cheng25caf632006-05-23 21:06:34 +00001798
Dan Gohman98ca4f22009-08-05 01:29:28 +00001799 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001800}
1801
Dan Gohman475871a2008-07-27 21:46:04 +00001802SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001803X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1804 SDValue StackPtr, SDValue Arg,
1805 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001806 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001807 ISD::ArgFlagsTy Flags) const {
Anton Korobeynikovc7c62bb2010-09-02 22:31:32 +00001808 const unsigned FirstStackArgOffset = (Subtarget->isTargetWin64() ? 32 : 0);
1809 unsigned LocMemOffset = FirstStackArgOffset + VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001810 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001811 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001812 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001813 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001814
1815 return DAG.getStore(Chain, dl, Arg, PtrOff,
1816 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001817 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001818}
1819
Bill Wendling64e87322009-01-16 19:25:27 +00001820/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001821/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001822SDValue
1823X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001824 SDValue &OutRetAddr, SDValue Chain,
1825 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001826 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001827 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001828 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001829 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001830
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001831 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001832 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1833 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001834 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001835}
1836
1837/// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1838/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001839static SDValue
1840EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001841 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001842 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001843 // Store the return address to the appropriate stack slot.
1844 if (!FPDiff) return Chain;
1845 // Calculate the new stack slot for the return address.
1846 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001847 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001848 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001849 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001850 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001851 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001852 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001853 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001854 return Chain;
1855}
1856
Dan Gohman98ca4f22009-08-05 01:29:28 +00001857SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001858X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001859 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001860 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001861 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001862 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001863 const SmallVectorImpl<ISD::InputArg> &Ins,
1864 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001865 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001866 MachineFunction &MF = DAG.getMachineFunction();
1867 bool Is64Bit = Subtarget->is64Bit();
1868 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00001869 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001870
Evan Cheng5f941932010-02-05 02:21:12 +00001871 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00001872 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00001873 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1874 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001875 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00001876
1877 // Sibcalls are automatically detected tailcalls which do not require
1878 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00001879 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00001880 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00001881
1882 if (isTailCall)
1883 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00001884 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00001885
Chris Lattner29689432010-03-11 00:22:57 +00001886 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1887 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001888
Chris Lattner638402b2007-02-28 07:00:42 +00001889 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00001890 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001891 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1892 ArgLocs, *DAG.getContext());
Duncan Sands45907662010-10-31 13:21:44 +00001893 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001894
Chris Lattner423c5f42007-02-28 05:31:48 +00001895 // Get a count of how many bytes are to be pushed on the stack.
1896 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00001897 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00001898 // This is a sibcall. The memory operands are available in caller's
1899 // own caller's stack.
1900 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00001901 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00001902 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001903
Gordon Henriksen86737662008-01-05 16:56:59 +00001904 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00001905 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001906 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00001907 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00001908 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1909 FPDiff = NumBytesCallerPushed - NumBytes;
1910
1911 // Set the delta of movement of the returnaddr stackslot.
1912 // But only set if delta is greater than previous delta.
1913 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1914 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
1915 }
1916
Evan Chengf22f9b32010-02-06 03:28:46 +00001917 if (!IsSibcall)
1918 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001919
Dan Gohman475871a2008-07-27 21:46:04 +00001920 SDValue RetAddrFrIdx;
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001921 // Load return adress for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00001922 if (isTailCall && FPDiff)
1923 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
1924 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00001925
Dan Gohman475871a2008-07-27 21:46:04 +00001926 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1927 SmallVector<SDValue, 8> MemOpChains;
1928 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00001929
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001930 // Walk the register/memloc assignments, inserting copies/loads. In the case
1931 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00001932 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1933 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001934 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00001935 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00001936 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00001937 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00001938
Chris Lattner423c5f42007-02-28 05:31:48 +00001939 // Promote the value if needed.
1940 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001941 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00001942 case CCValAssign::Full: break;
1943 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001944 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001945 break;
1946 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001947 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001948 break;
1949 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001950 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
1951 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001952 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00001953 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
1954 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001955 } else
1956 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
1957 break;
1958 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001959 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001960 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001961 case CCValAssign::Indirect: {
1962 // Store the argument.
1963 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00001964 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001965 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00001966 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001967 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001968 Arg = SpillSlot;
1969 break;
1970 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00001971 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001972
Chris Lattner423c5f42007-02-28 05:31:48 +00001973 if (VA.isRegLoc()) {
1974 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00001975 if (isVarArg && Subtarget->isTargetWin64()) {
1976 // Win64 ABI requires argument XMM reg to be copied to the corresponding
1977 // shadow reg if callee is a varargs function.
1978 unsigned ShadowReg = 0;
1979 switch (VA.getLocReg()) {
1980 case X86::XMM0: ShadowReg = X86::RCX; break;
1981 case X86::XMM1: ShadowReg = X86::RDX; break;
1982 case X86::XMM2: ShadowReg = X86::R8; break;
1983 case X86::XMM3: ShadowReg = X86::R9; break;
1984 }
1985 if (ShadowReg)
1986 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
1987 }
Evan Chengf22f9b32010-02-06 03:28:46 +00001988 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00001989 assert(VA.isMemLoc());
1990 if (StackPtr.getNode() == 0)
1991 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
1992 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
1993 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001994 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001995 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001996
Evan Cheng32fe1032006-05-25 00:59:30 +00001997 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00001998 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001999 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002000
Evan Cheng347d5f72006-04-28 21:29:37 +00002001 // Build a sequence of copy-to-reg nodes chained together with token chain
2002 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002003 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002004 // Tail call byval lowering might overwrite argument registers so in case of
2005 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002006 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002007 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002008 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002009 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002010 InFlag = Chain.getValue(1);
2011 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002012
Chris Lattner88e1fd52009-07-09 04:24:46 +00002013 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002014 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2015 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002016 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002017 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2018 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002019 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002020 InFlag);
2021 InFlag = Chain.getValue(1);
2022 } else {
2023 // If we are tail calling and generating PIC/GOT style code load the
2024 // address of the callee into ECX. The value in ecx is used as target of
2025 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2026 // for tail calls on PIC/GOT architectures. Normally we would just put the
2027 // address of GOT into ebx and then call target@PLT. But for tail calls
2028 // ebx would be restored (since ebx is callee saved) before jumping to the
2029 // target@PLT.
2030
2031 // Note: The actual moving to ECX is done further down.
2032 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2033 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2034 !G->getGlobal()->hasProtectedVisibility())
2035 Callee = LowerGlobalAddress(Callee, DAG);
2036 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002037 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002038 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002039 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002040
Nate Begemanc8ea6732010-07-21 20:49:52 +00002041 if (Is64Bit && isVarArg && !Subtarget->isTargetWin64()) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002042 // From AMD64 ABI document:
2043 // For calls that may call functions that use varargs or stdargs
2044 // (prototype-less calls or calls to functions containing ellipsis (...) in
2045 // the declaration) %al is used as hidden argument to specify the number
2046 // of SSE registers used. The contents of %al do not need to match exactly
2047 // the number of registers, but must be an ubound on the number of SSE
2048 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002049
Gordon Henriksen86737662008-01-05 16:56:59 +00002050 // Count the number of XMM registers allocated.
2051 static const unsigned XMMArgRegs[] = {
2052 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2053 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2054 };
2055 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Scott Michelfdc40a02009-02-17 22:15:04 +00002056 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002057 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002058
Dale Johannesendd64c412009-02-04 00:33:20 +00002059 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002060 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002061 InFlag = Chain.getValue(1);
2062 }
2063
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002064
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002065 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002066 if (isTailCall) {
2067 // Force all the incoming stack arguments to be loaded from the stack
2068 // before any new outgoing arguments are stored to the stack, because the
2069 // outgoing stack slots may alias the incoming argument stack slots, and
2070 // the alias isn't otherwise explicit. This is slightly more conservative
2071 // than necessary, because it means that each store effectively depends
2072 // on every argument instead of just those arguments it would clobber.
2073 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2074
Dan Gohman475871a2008-07-27 21:46:04 +00002075 SmallVector<SDValue, 8> MemOpChains2;
2076 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002077 int FI = 0;
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002078 // Do not flag preceeding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002079 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002080 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002081 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2082 CCValAssign &VA = ArgLocs[i];
2083 if (VA.isRegLoc())
2084 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002085 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002086 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002087 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002088 // Create frame index.
2089 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002090 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002091 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002092 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002093
Duncan Sands276dcbd2008-03-21 09:14:45 +00002094 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002095 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002096 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002097 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002098 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002099 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002100 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002101
Dan Gohman98ca4f22009-08-05 01:29:28 +00002102 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2103 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002104 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002105 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002106 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002107 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002108 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002109 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002110 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002111 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002112 }
2113 }
2114
2115 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002116 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002117 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002118
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002119 // Copy arguments to their registers.
2120 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002121 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002122 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002123 InFlag = Chain.getValue(1);
2124 }
Dan Gohman475871a2008-07-27 21:46:04 +00002125 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002126
Gordon Henriksen86737662008-01-05 16:56:59 +00002127 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002128 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002129 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002130 }
2131
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002132 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2133 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2134 // In the 64-bit large code model, we have to make all calls
2135 // through a register, since the call instruction's 32-bit
2136 // pc-relative offset may not be large enough to hold the whole
2137 // address.
2138 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002139 // If the callee is a GlobalAddress node (quite common, every direct call
2140 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2141 // it.
2142
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002143 // We should use extra load for direct calls to dllimported functions in
2144 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002145 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002146 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002147 unsigned char OpFlags = 0;
Eric Christopherfd179292009-08-27 18:07:15 +00002148
Chris Lattner48a7d022009-07-09 05:02:21 +00002149 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2150 // external symbols most go through the PLT in PIC mode. If the symbol
2151 // has hidden or protected visibility, or if it is static or local, then
2152 // we don't need to use the PLT - we can directly call it.
2153 if (Subtarget->isTargetELF() &&
2154 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002155 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002156 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002157 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002158 (GV->isDeclaration() || GV->isWeakForLinker()) &&
2159 Subtarget->getDarwinVers() < 9) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002160 // PC-relative references to external symbols should go through $stub,
2161 // unless we're building with the leopard linker or later, which
2162 // automatically synthesizes these stubs.
2163 OpFlags = X86II::MO_DARWIN_STUB;
2164 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002165
Devang Patel0d881da2010-07-06 22:08:15 +00002166 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002167 G->getOffset(), OpFlags);
2168 }
Bill Wendling056292f2008-09-16 21:48:12 +00002169 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002170 unsigned char OpFlags = 0;
2171
Evan Cheng1bf891a2010-12-01 22:59:46 +00002172 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2173 // external symbols should go through the PLT.
2174 if (Subtarget->isTargetELF() &&
2175 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2176 OpFlags = X86II::MO_PLT;
2177 } else if (Subtarget->isPICStyleStubAny() &&
2178 Subtarget->getDarwinVers() < 9) {
2179 // PC-relative references to external symbols should go through $stub,
2180 // unless we're building with the leopard linker or later, which
2181 // automatically synthesizes these stubs.
2182 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002183 }
Eric Christopherfd179292009-08-27 18:07:15 +00002184
Chris Lattner48a7d022009-07-09 05:02:21 +00002185 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2186 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002187 }
2188
Chris Lattnerd96d0722007-02-25 06:40:16 +00002189 // Returns a chain & a flag for retval copy to use.
Owen Anderson825b72b2009-08-11 20:47:22 +00002190 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00002191 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002192
Evan Chengf22f9b32010-02-06 03:28:46 +00002193 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002194 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2195 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002196 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002197 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002198
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002199 Ops.push_back(Chain);
2200 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002201
Dan Gohman98ca4f22009-08-05 01:29:28 +00002202 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002203 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002204
Gordon Henriksen86737662008-01-05 16:56:59 +00002205 // Add argument registers to the end of the list so that they are known live
2206 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002207 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2208 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2209 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002210
Evan Cheng586ccac2008-03-18 23:36:35 +00002211 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002212 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002213 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2214
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002215 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
2216 if (Is64Bit && isVarArg && !Subtarget->isTargetWin64())
Owen Anderson825b72b2009-08-11 20:47:22 +00002217 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002218
Gabor Greifba36cb52008-08-28 21:40:38 +00002219 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002220 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002221
Dan Gohman98ca4f22009-08-05 01:29:28 +00002222 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002223 // We used to do:
2224 //// If this is the first return lowered for this function, add the regs
2225 //// to the liveout set for the function.
2226 // This isn't right, although it's probably harmless on x86; liveouts
2227 // should be computed from returns not tail calls. Consider a void
2228 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002229 return DAG.getNode(X86ISD::TC_RETURN, dl,
2230 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002231 }
2232
Dale Johannesenace16102009-02-03 19:33:06 +00002233 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002234 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002235
Chris Lattner2d297092006-05-23 18:50:38 +00002236 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002237 unsigned NumBytesForCalleeToPush;
Dan Gohman4d3d6e12010-05-27 18:43:40 +00002238 if (Subtarget->IsCalleePop(isVarArg, CallConv))
Gordon Henriksen86737662008-01-05 16:56:59 +00002239 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002240 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002241 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002242 // pops the hidden struct pointer, so we have to push it back.
2243 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002244 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002245 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002246 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002247
Gordon Henriksenae636f82008-01-03 16:47:34 +00002248 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002249 if (!IsSibcall) {
2250 Chain = DAG.getCALLSEQ_END(Chain,
2251 DAG.getIntPtrConstant(NumBytes, true),
2252 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2253 true),
2254 InFlag);
2255 InFlag = Chain.getValue(1);
2256 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002257
Chris Lattner3085e152007-02-25 08:59:22 +00002258 // Handle result values, copying them out of physregs into vregs that we
2259 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002260 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2261 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002262}
2263
Evan Cheng25ab6902006-09-08 06:48:29 +00002264
2265//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002266// Fast Calling Convention (tail call) implementation
2267//===----------------------------------------------------------------------===//
2268
2269// Like std call, callee cleans arguments, convention except that ECX is
2270// reserved for storing the tail called function address. Only 2 registers are
2271// free for argument passing (inreg). Tail call optimization is performed
2272// provided:
2273// * tailcallopt is enabled
2274// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002275// On X86_64 architecture with GOT-style position independent code only local
2276// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002277// To keep the stack aligned according to platform abi the function
2278// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2279// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002280// If a tail called function callee has more arguments than the caller the
2281// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002282// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002283// original REtADDR, but before the saved framepointer or the spilled registers
2284// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2285// stack layout:
2286// arg1
2287// arg2
2288// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002289// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002290// move area ]
2291// (possible EBP)
2292// ESI
2293// EDI
2294// local1 ..
2295
2296/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2297/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002298unsigned
2299X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2300 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002301 MachineFunction &MF = DAG.getMachineFunction();
2302 const TargetMachine &TM = MF.getTarget();
2303 const TargetFrameInfo &TFI = *TM.getFrameInfo();
2304 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002305 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002306 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002307 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002308 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2309 // Number smaller than 12 so just add the difference.
2310 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2311 } else {
2312 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002313 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002314 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002315 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002316 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002317}
2318
Evan Cheng5f941932010-02-05 02:21:12 +00002319/// MatchingStackOffset - Return true if the given stack call argument is
2320/// already available in the same position (relatively) of the caller's
2321/// incoming argument stack.
2322static
2323bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2324 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2325 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002326 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2327 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002328 if (Arg.getOpcode() == ISD::CopyFromReg) {
2329 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
2330 if (!VR || TargetRegisterInfo::isPhysicalRegister(VR))
2331 return false;
2332 MachineInstr *Def = MRI->getVRegDef(VR);
2333 if (!Def)
2334 return false;
2335 if (!Flags.isByVal()) {
2336 if (!TII->isLoadFromStackSlot(Def, FI))
2337 return false;
2338 } else {
2339 unsigned Opcode = Def->getOpcode();
2340 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2341 Def->getOperand(1).isFI()) {
2342 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002343 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002344 } else
2345 return false;
2346 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002347 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2348 if (Flags.isByVal())
2349 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002350 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002351 // define @foo(%struct.X* %A) {
2352 // tail call @bar(%struct.X* byval %A)
2353 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002354 return false;
2355 SDValue Ptr = Ld->getBasePtr();
2356 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2357 if (!FINode)
2358 return false;
2359 FI = FINode->getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002360 } else
2361 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002362
Evan Cheng4cae1332010-03-05 08:38:04 +00002363 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002364 if (!MFI->isFixedObjectIndex(FI))
2365 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002366 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002367}
2368
Dan Gohman98ca4f22009-08-05 01:29:28 +00002369/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2370/// for tail call optimization. Targets which want to do tail call
2371/// optimization should implement this function.
2372bool
2373X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002374 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002375 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002376 bool isCalleeStructRet,
2377 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002378 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002379 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002380 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002381 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002382 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002383 CalleeCC != CallingConv::C)
2384 return false;
2385
Evan Cheng7096ae42010-01-29 06:45:59 +00002386 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002387 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002388 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002389 CallingConv::ID CallerCC = CallerF->getCallingConv();
2390 bool CCMatch = CallerCC == CalleeCC;
2391
Dan Gohman1797ed52010-02-08 20:27:50 +00002392 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002393 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002394 return true;
2395 return false;
2396 }
2397
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002398 // Look for obvious safe cases to perform tail call optimization that do not
2399 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002400
Evan Cheng2c12cb42010-03-26 16:26:03 +00002401 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2402 // emit a special epilogue.
2403 if (RegInfo->needsStackRealignment(MF))
2404 return false;
2405
Eric Christopher90eb4022010-07-22 00:26:08 +00002406 // Do not sibcall optimize vararg calls unless the call site is not passing
2407 // any arguments.
Evan Cheng3c262ee2010-03-26 02:13:13 +00002408 if (isVarArg && !Outs.empty())
Evan Cheng843bd692010-01-31 06:44:49 +00002409 return false;
2410
Evan Chenga375d472010-03-15 18:54:48 +00002411 // Also avoid sibcall optimization if either caller or callee uses struct
2412 // return semantics.
2413 if (isCalleeStructRet || isCallerStructRet)
2414 return false;
2415
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002416 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2417 // Therefore if it's not used by the call it is not safe to optimize this into
2418 // a sibcall.
2419 bool Unused = false;
2420 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2421 if (!Ins[i].Used) {
2422 Unused = true;
2423 break;
2424 }
2425 }
2426 if (Unused) {
2427 SmallVector<CCValAssign, 16> RVLocs;
2428 CCState CCInfo(CalleeCC, false, getTargetMachine(),
2429 RVLocs, *DAG.getContext());
2430 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002431 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002432 CCValAssign &VA = RVLocs[i];
2433 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2434 return false;
2435 }
2436 }
2437
Evan Cheng13617962010-04-30 01:12:32 +00002438 // If the calling conventions do not match, then we'd better make sure the
2439 // results are returned in the same way as what the caller expects.
2440 if (!CCMatch) {
2441 SmallVector<CCValAssign, 16> RVLocs1;
2442 CCState CCInfo1(CalleeCC, false, getTargetMachine(),
2443 RVLocs1, *DAG.getContext());
2444 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2445
2446 SmallVector<CCValAssign, 16> RVLocs2;
2447 CCState CCInfo2(CallerCC, false, getTargetMachine(),
2448 RVLocs2, *DAG.getContext());
2449 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2450
2451 if (RVLocs1.size() != RVLocs2.size())
2452 return false;
2453 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2454 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2455 return false;
2456 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2457 return false;
2458 if (RVLocs1[i].isRegLoc()) {
2459 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2460 return false;
2461 } else {
2462 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2463 return false;
2464 }
2465 }
2466 }
2467
Evan Chenga6bff982010-01-30 01:22:00 +00002468 // If the callee takes no arguments then go on to check the results of the
2469 // call.
2470 if (!Outs.empty()) {
2471 // Check if stack adjustment is needed. For now, do not do this if any
2472 // argument is passed on the stack.
2473 SmallVector<CCValAssign, 16> ArgLocs;
2474 CCState CCInfo(CalleeCC, isVarArg, getTargetMachine(),
2475 ArgLocs, *DAG.getContext());
Duncan Sands45907662010-10-31 13:21:44 +00002476 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Evan Chengb2c92902010-02-02 02:22:50 +00002477 if (CCInfo.getNextStackOffset()) {
2478 MachineFunction &MF = DAG.getMachineFunction();
2479 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2480 return false;
2481 if (Subtarget->isTargetWin64())
2482 // Win64 ABI has additional complications.
2483 return false;
2484
2485 // Check if the arguments are already laid out in the right way as
2486 // the caller's fixed stack objects.
2487 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002488 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2489 const X86InstrInfo *TII =
2490 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002491 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2492 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002493 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002494 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002495 if (VA.getLocInfo() == CCValAssign::Indirect)
2496 return false;
2497 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002498 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2499 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002500 return false;
2501 }
2502 }
2503 }
Evan Cheng9c044672010-05-29 01:35:22 +00002504
2505 // If the tailcall address may be in a register, then make sure it's
2506 // possible to register allocate for it. In 32-bit, the call address can
2507 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002508 // callee-saved registers are restored. These happen to be the same
2509 // registers used to pass 'inreg' arguments so watch out for those.
2510 if (!Subtarget->is64Bit() &&
2511 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002512 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002513 unsigned NumInRegs = 0;
2514 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2515 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002516 if (!VA.isRegLoc())
2517 continue;
2518 unsigned Reg = VA.getLocReg();
2519 switch (Reg) {
2520 default: break;
2521 case X86::EAX: case X86::EDX: case X86::ECX:
2522 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002523 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002524 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002525 }
2526 }
2527 }
Evan Chenga6bff982010-01-30 01:22:00 +00002528 }
Evan Chengb1712452010-01-27 06:25:16 +00002529
Dale Johannesend155d7e2010-10-25 22:17:05 +00002530 // An stdcall caller is expected to clean up its arguments; the callee
Dale Johannesen0e034562010-11-12 00:43:18 +00002531 // isn't going to do that.
Dale Johannesend155d7e2010-10-25 22:17:05 +00002532 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2533 return false;
2534
Evan Cheng86809cc2010-02-03 03:28:02 +00002535 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002536}
2537
Dan Gohman3df24e62008-09-03 23:12:08 +00002538FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002539X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2540 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002541}
2542
2543
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002544//===----------------------------------------------------------------------===//
2545// Other Lowering Hooks
2546//===----------------------------------------------------------------------===//
2547
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002548static bool MayFoldLoad(SDValue Op) {
2549 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2550}
2551
2552static bool MayFoldIntoStore(SDValue Op) {
2553 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2554}
2555
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002556static bool isTargetShuffle(unsigned Opcode) {
2557 switch(Opcode) {
2558 default: return false;
2559 case X86ISD::PSHUFD:
2560 case X86ISD::PSHUFHW:
2561 case X86ISD::PSHUFLW:
2562 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002563 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002564 case X86ISD::SHUFPS:
2565 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002566 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002567 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002568 case X86ISD::MOVLPS:
2569 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002570 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002571 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002572 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002573 case X86ISD::MOVSS:
2574 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002575 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002576 case X86ISD::UNPCKLPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002577 case X86ISD::PUNPCKLWD:
2578 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002579 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002580 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002581 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002582 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002583 case X86ISD::PUNPCKHWD:
2584 case X86ISD::PUNPCKHBW:
2585 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002586 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002587 return true;
2588 }
2589 return false;
2590}
2591
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002592static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002593 SDValue V1, SelectionDAG &DAG) {
2594 switch(Opc) {
2595 default: llvm_unreachable("Unknown x86 shuffle node");
2596 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002597 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002598 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002599 return DAG.getNode(Opc, dl, VT, V1);
2600 }
2601
2602 return SDValue();
2603}
2604
2605static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002606 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002607 switch(Opc) {
2608 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002609 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002610 case X86ISD::PSHUFHW:
2611 case X86ISD::PSHUFLW:
2612 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2613 }
2614
2615 return SDValue();
2616}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002617
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002618static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2619 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2620 switch(Opc) {
2621 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002622 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002623 case X86ISD::SHUFPD:
2624 case X86ISD::SHUFPS:
2625 return DAG.getNode(Opc, dl, VT, V1, V2,
2626 DAG.getConstant(TargetMask, MVT::i8));
2627 }
2628 return SDValue();
2629}
2630
2631static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2632 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2633 switch(Opc) {
2634 default: llvm_unreachable("Unknown x86 shuffle node");
2635 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002636 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002637 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002638 case X86ISD::MOVLPS:
2639 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002640 case X86ISD::MOVSS:
2641 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002642 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002643 case X86ISD::UNPCKLPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002644 case X86ISD::PUNPCKLWD:
2645 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002646 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002647 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002648 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002649 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002650 case X86ISD::PUNPCKHWD:
2651 case X86ISD::PUNPCKHBW:
2652 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002653 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002654 return DAG.getNode(Opc, dl, VT, V1, V2);
2655 }
2656 return SDValue();
2657}
2658
Dan Gohmand858e902010-04-17 15:26:15 +00002659SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002660 MachineFunction &MF = DAG.getMachineFunction();
2661 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2662 int ReturnAddrIndex = FuncInfo->getRAIndex();
2663
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002664 if (ReturnAddrIndex == 0) {
2665 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002666 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002667 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002668 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002669 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002670 }
2671
Evan Cheng25ab6902006-09-08 06:48:29 +00002672 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002673}
2674
2675
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002676bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2677 bool hasSymbolicDisplacement) {
2678 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002679 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002680 return false;
2681
2682 // If we don't have a symbolic displacement - we don't have any extra
2683 // restrictions.
2684 if (!hasSymbolicDisplacement)
2685 return true;
2686
2687 // FIXME: Some tweaks might be needed for medium code model.
2688 if (M != CodeModel::Small && M != CodeModel::Kernel)
2689 return false;
2690
2691 // For small code model we assume that latest object is 16MB before end of 31
2692 // bits boundary. We may also accept pretty large negative constants knowing
2693 // that all objects are in the positive half of address space.
2694 if (M == CodeModel::Small && Offset < 16*1024*1024)
2695 return true;
2696
2697 // For kernel code model we know that all object resist in the negative half
2698 // of 32bits address space. We may not accept negative offsets, since they may
2699 // be just off and we may accept pretty large positive ones.
2700 if (M == CodeModel::Kernel && Offset > 0)
2701 return true;
2702
2703 return false;
2704}
2705
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002706/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2707/// specific condition code, returning the condition code and the LHS/RHS of the
2708/// comparison to make.
2709static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2710 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002711 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002712 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2713 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2714 // X > -1 -> X == 0, jump !sign.
2715 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002716 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002717 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2718 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002719 return X86::COND_S;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002720 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002721 // X < 1 -> X <= 0
2722 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002723 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002724 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002725 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002726
Evan Chengd9558e02006-01-06 00:43:03 +00002727 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002728 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002729 case ISD::SETEQ: return X86::COND_E;
2730 case ISD::SETGT: return X86::COND_G;
2731 case ISD::SETGE: return X86::COND_GE;
2732 case ISD::SETLT: return X86::COND_L;
2733 case ISD::SETLE: return X86::COND_LE;
2734 case ISD::SETNE: return X86::COND_NE;
2735 case ISD::SETULT: return X86::COND_B;
2736 case ISD::SETUGT: return X86::COND_A;
2737 case ISD::SETULE: return X86::COND_BE;
2738 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002739 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002740 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002741
Chris Lattner4c78e022008-12-23 23:42:27 +00002742 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002743
Chris Lattner4c78e022008-12-23 23:42:27 +00002744 // If LHS is a foldable load, but RHS is not, flip the condition.
2745 if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) &&
2746 !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) {
2747 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2748 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002749 }
2750
Chris Lattner4c78e022008-12-23 23:42:27 +00002751 switch (SetCCOpcode) {
2752 default: break;
2753 case ISD::SETOLT:
2754 case ISD::SETOLE:
2755 case ISD::SETUGT:
2756 case ISD::SETUGE:
2757 std::swap(LHS, RHS);
2758 break;
2759 }
2760
2761 // On a floating point condition, the flags are set as follows:
2762 // ZF PF CF op
2763 // 0 | 0 | 0 | X > Y
2764 // 0 | 0 | 1 | X < Y
2765 // 1 | 0 | 0 | X == Y
2766 // 1 | 1 | 1 | unordered
2767 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002768 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002769 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002770 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002771 case ISD::SETOLT: // flipped
2772 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002773 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002774 case ISD::SETOLE: // flipped
2775 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002776 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002777 case ISD::SETUGT: // flipped
2778 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002779 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002780 case ISD::SETUGE: // flipped
2781 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002782 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002783 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002784 case ISD::SETNE: return X86::COND_NE;
2785 case ISD::SETUO: return X86::COND_P;
2786 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00002787 case ISD::SETOEQ:
2788 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00002789 }
Evan Chengd9558e02006-01-06 00:43:03 +00002790}
2791
Evan Cheng4a460802006-01-11 00:33:36 +00002792/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2793/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002794/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002795static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002796 switch (X86CC) {
2797 default:
2798 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00002799 case X86::COND_B:
2800 case X86::COND_BE:
2801 case X86::COND_E:
2802 case X86::COND_P:
2803 case X86::COND_A:
2804 case X86::COND_AE:
2805 case X86::COND_NE:
2806 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00002807 return true;
2808 }
2809}
2810
Evan Chengeb2f9692009-10-27 19:56:55 +00002811/// isFPImmLegal - Returns true if the target can instruction select the
2812/// specified FP immediate natively. If false, the legalizer will
2813/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00002814bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00002815 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
2816 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
2817 return true;
2818 }
2819 return false;
2820}
2821
Nate Begeman9008ca62009-04-27 18:41:29 +00002822/// isUndefOrInRange - Return true if Val is undef or if its value falls within
2823/// the specified range (L, H].
2824static bool isUndefOrInRange(int Val, int Low, int Hi) {
2825 return (Val < 0) || (Val >= Low && Val < Hi);
2826}
2827
2828/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
2829/// specified value.
2830static bool isUndefOrEqual(int Val, int CmpVal) {
2831 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00002832 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00002833 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00002834}
2835
Nate Begeman9008ca62009-04-27 18:41:29 +00002836/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
2837/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
2838/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00002839static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00002840 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00002841 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00002842 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00002843 return (Mask[0] < 2 && Mask[1] < 2);
2844 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002845}
2846
Nate Begeman9008ca62009-04-27 18:41:29 +00002847bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002848 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002849 N->getMask(M);
2850 return ::isPSHUFDMask(M, N->getValueType(0));
2851}
Evan Cheng0188ecb2006-03-22 18:59:22 +00002852
Nate Begeman9008ca62009-04-27 18:41:29 +00002853/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
2854/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00002855static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002856 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00002857 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002858
Nate Begeman9008ca62009-04-27 18:41:29 +00002859 // Lower quadword copied in order or undef.
2860 for (int i = 0; i != 4; ++i)
2861 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00002862 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002863
Evan Cheng506d3df2006-03-29 23:07:14 +00002864 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00002865 for (int i = 4; i != 8; ++i)
2866 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00002867 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002868
Evan Cheng506d3df2006-03-29 23:07:14 +00002869 return true;
2870}
2871
Nate Begeman9008ca62009-04-27 18:41:29 +00002872bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002873 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002874 N->getMask(M);
2875 return ::isPSHUFHWMask(M, N->getValueType(0));
2876}
Evan Cheng506d3df2006-03-29 23:07:14 +00002877
Nate Begeman9008ca62009-04-27 18:41:29 +00002878/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
2879/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00002880static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002881 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00002882 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002883
Rafael Espindola15684b22009-04-24 12:40:33 +00002884 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00002885 for (int i = 4; i != 8; ++i)
2886 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00002887 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002888
Rafael Espindola15684b22009-04-24 12:40:33 +00002889 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00002890 for (int i = 0; i != 4; ++i)
2891 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00002892 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002893
Rafael Espindola15684b22009-04-24 12:40:33 +00002894 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00002895}
2896
Nate Begeman9008ca62009-04-27 18:41:29 +00002897bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002898 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002899 N->getMask(M);
2900 return ::isPSHUFLWMask(M, N->getValueType(0));
2901}
2902
Nate Begemana09008b2009-10-19 02:17:23 +00002903/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
2904/// is suitable for input to PALIGNR.
2905static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
2906 bool hasSSSE3) {
2907 int i, e = VT.getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00002908
Nate Begemana09008b2009-10-19 02:17:23 +00002909 // Do not handle v2i64 / v2f64 shuffles with palignr.
2910 if (e < 4 || !hasSSSE3)
2911 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002912
Nate Begemana09008b2009-10-19 02:17:23 +00002913 for (i = 0; i != e; ++i)
2914 if (Mask[i] >= 0)
2915 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002916
Nate Begemana09008b2009-10-19 02:17:23 +00002917 // All undef, not a palignr.
2918 if (i == e)
2919 return false;
2920
2921 // Determine if it's ok to perform a palignr with only the LHS, since we
2922 // don't have access to the actual shuffle elements to see if RHS is undef.
2923 bool Unary = Mask[i] < (int)e;
2924 bool NeedsUnary = false;
2925
2926 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002927
Nate Begemana09008b2009-10-19 02:17:23 +00002928 // Check the rest of the elements to see if they are consecutive.
2929 for (++i; i != e; ++i) {
2930 int m = Mask[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00002931 if (m < 0)
Nate Begemana09008b2009-10-19 02:17:23 +00002932 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002933
Nate Begemana09008b2009-10-19 02:17:23 +00002934 Unary = Unary && (m < (int)e);
2935 NeedsUnary = NeedsUnary || (m < s);
2936
2937 if (NeedsUnary && !Unary)
2938 return false;
2939 if (Unary && m != ((s+i) & (e-1)))
2940 return false;
2941 if (!Unary && m != (s+i))
2942 return false;
2943 }
2944 return true;
2945}
2946
2947bool X86::isPALIGNRMask(ShuffleVectorSDNode *N) {
2948 SmallVector<int, 8> M;
2949 N->getMask(M);
2950 return ::isPALIGNRMask(M, N->getValueType(0), true);
2951}
2952
Evan Cheng14aed5e2006-03-24 01:18:28 +00002953/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
2954/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersone50ed302009-08-10 22:56:29 +00002955static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002956 int NumElems = VT.getVectorNumElements();
2957 if (NumElems != 2 && NumElems != 4)
2958 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002959
Nate Begeman9008ca62009-04-27 18:41:29 +00002960 int Half = NumElems / 2;
2961 for (int i = 0; i < Half; ++i)
2962 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002963 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002964 for (int i = Half; i < NumElems; ++i)
2965 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002966 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002967
Evan Cheng14aed5e2006-03-24 01:18:28 +00002968 return true;
2969}
2970
Nate Begeman9008ca62009-04-27 18:41:29 +00002971bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
2972 SmallVector<int, 8> M;
2973 N->getMask(M);
2974 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00002975}
2976
Evan Cheng213d2cf2007-05-17 18:45:50 +00002977/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00002978/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
2979/// half elements to come from vector 1 (which would equal the dest.) and
2980/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00002981static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002982 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00002983
2984 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00002985 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002986
Nate Begeman9008ca62009-04-27 18:41:29 +00002987 int Half = NumElems / 2;
2988 for (int i = 0; i < Half; ++i)
2989 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002990 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002991 for (int i = Half; i < NumElems; ++i)
2992 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002993 return false;
2994 return true;
2995}
2996
Nate Begeman9008ca62009-04-27 18:41:29 +00002997static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
2998 SmallVector<int, 8> M;
2999 N->getMask(M);
3000 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003001}
3002
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003003/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3004/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003005bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
3006 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003007 return false;
3008
Evan Cheng2064a2b2006-03-28 06:50:32 +00003009 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003010 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3011 isUndefOrEqual(N->getMaskElt(1), 7) &&
3012 isUndefOrEqual(N->getMaskElt(2), 2) &&
3013 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003014}
3015
Nate Begeman0b10b912009-11-07 23:17:15 +00003016/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3017/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3018/// <2, 3, 2, 3>
3019bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
3020 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00003021
Nate Begeman0b10b912009-11-07 23:17:15 +00003022 if (NumElems != 4)
3023 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003024
Nate Begeman0b10b912009-11-07 23:17:15 +00003025 return isUndefOrEqual(N->getMaskElt(0), 2) &&
3026 isUndefOrEqual(N->getMaskElt(1), 3) &&
3027 isUndefOrEqual(N->getMaskElt(2), 2) &&
3028 isUndefOrEqual(N->getMaskElt(3), 3);
3029}
3030
Evan Cheng5ced1d82006-04-06 23:23:56 +00003031/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3032/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003033bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3034 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003035
Evan Cheng5ced1d82006-04-06 23:23:56 +00003036 if (NumElems != 2 && NumElems != 4)
3037 return false;
3038
Evan Chengc5cdff22006-04-07 21:53:05 +00003039 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003040 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003041 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003042
Evan Chengc5cdff22006-04-07 21:53:05 +00003043 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003044 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003045 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003046
3047 return true;
3048}
3049
Nate Begeman0b10b912009-11-07 23:17:15 +00003050/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3051/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3052bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003053 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003054
Evan Cheng5ced1d82006-04-06 23:23:56 +00003055 if (NumElems != 2 && NumElems != 4)
3056 return false;
3057
Evan Chengc5cdff22006-04-07 21:53:05 +00003058 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003059 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003060 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003061
Nate Begeman9008ca62009-04-27 18:41:29 +00003062 for (unsigned i = 0; i < NumElems/2; ++i)
3063 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003064 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003065
3066 return true;
3067}
3068
Evan Cheng0038e592006-03-28 00:39:58 +00003069/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3070/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003071static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003072 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003073 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003074 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng0038e592006-03-28 00:39:58 +00003075 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003076
Nate Begeman9008ca62009-04-27 18:41:29 +00003077 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3078 int BitI = Mask[i];
3079 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00003080 if (!isUndefOrEqual(BitI, j))
3081 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003082 if (V2IsSplat) {
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003083 if (!isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003084 return false;
3085 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003086 if (!isUndefOrEqual(BitI1, j + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003087 return false;
3088 }
Evan Cheng0038e592006-03-28 00:39:58 +00003089 }
Evan Cheng0038e592006-03-28 00:39:58 +00003090 return true;
3091}
3092
Nate Begeman9008ca62009-04-27 18:41:29 +00003093bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3094 SmallVector<int, 8> M;
3095 N->getMask(M);
3096 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003097}
3098
Evan Cheng4fcb9222006-03-28 02:43:26 +00003099/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3100/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003101static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003102 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003103 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003104 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003105 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003106
Nate Begeman9008ca62009-04-27 18:41:29 +00003107 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3108 int BitI = Mask[i];
3109 int BitI1 = Mask[i+1];
Chris Lattner5a88b832007-02-25 07:10:00 +00003110 if (!isUndefOrEqual(BitI, j + NumElts/2))
Evan Chengc5cdff22006-04-07 21:53:05 +00003111 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003112 if (V2IsSplat) {
Chris Lattner5a88b832007-02-25 07:10:00 +00003113 if (isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003114 return false;
3115 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003116 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003117 return false;
3118 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003119 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003120 return true;
3121}
3122
Nate Begeman9008ca62009-04-27 18:41:29 +00003123bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3124 SmallVector<int, 8> M;
3125 N->getMask(M);
3126 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003127}
3128
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003129/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3130/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3131/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003132static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003133 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003134 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003135 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003136
Nate Begeman9008ca62009-04-27 18:41:29 +00003137 for (int i = 0, j = 0; i != NumElems; i += 2, ++j) {
3138 int BitI = Mask[i];
3139 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00003140 if (!isUndefOrEqual(BitI, j))
3141 return false;
3142 if (!isUndefOrEqual(BitI1, j))
3143 return false;
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003144 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003145 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003146}
3147
Nate Begeman9008ca62009-04-27 18:41:29 +00003148bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3149 SmallVector<int, 8> M;
3150 N->getMask(M);
3151 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3152}
3153
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003154/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3155/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3156/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003157static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003158 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003159 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3160 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003161
Nate Begeman9008ca62009-04-27 18:41:29 +00003162 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3163 int BitI = Mask[i];
3164 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003165 if (!isUndefOrEqual(BitI, j))
3166 return false;
3167 if (!isUndefOrEqual(BitI1, j))
3168 return false;
3169 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003170 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003171}
3172
Nate Begeman9008ca62009-04-27 18:41:29 +00003173bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3174 SmallVector<int, 8> M;
3175 N->getMask(M);
3176 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3177}
3178
Evan Cheng017dcc62006-04-21 01:05:10 +00003179/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3180/// specifies a shuffle of elements that is suitable for input to MOVSS,
3181/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003182static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003183 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003184 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003185
3186 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003187
Nate Begeman9008ca62009-04-27 18:41:29 +00003188 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003189 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003190
Nate Begeman9008ca62009-04-27 18:41:29 +00003191 for (int i = 1; i < NumElts; ++i)
3192 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003193 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003194
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003195 return true;
3196}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003197
Nate Begeman9008ca62009-04-27 18:41:29 +00003198bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3199 SmallVector<int, 8> M;
3200 N->getMask(M);
3201 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003202}
3203
Evan Cheng017dcc62006-04-21 01:05:10 +00003204/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3205/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003206/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003207static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003208 bool V2IsSplat = false, bool V2IsUndef = false) {
3209 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003210 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003211 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003212
Nate Begeman9008ca62009-04-27 18:41:29 +00003213 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003214 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003215
Nate Begeman9008ca62009-04-27 18:41:29 +00003216 for (int i = 1; i < NumOps; ++i)
3217 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3218 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3219 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003220 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003221
Evan Cheng39623da2006-04-20 08:58:49 +00003222 return true;
3223}
3224
Nate Begeman9008ca62009-04-27 18:41:29 +00003225static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003226 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003227 SmallVector<int, 8> M;
3228 N->getMask(M);
3229 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003230}
3231
Evan Chengd9539472006-04-14 21:59:03 +00003232/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3233/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003234bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N) {
3235 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003236 return false;
3237
3238 // Expect 1, 1, 3, 3
Rafael Espindola15684b22009-04-24 12:40:33 +00003239 for (unsigned i = 0; i < 2; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003240 int Elt = N->getMaskElt(i);
3241 if (Elt >= 0 && Elt != 1)
3242 return false;
Rafael Espindola15684b22009-04-24 12:40:33 +00003243 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003244
3245 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003246 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003247 int Elt = N->getMaskElt(i);
3248 if (Elt >= 0 && Elt != 3)
3249 return false;
3250 if (Elt == 3)
3251 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003252 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003253 // Don't use movshdup if it can be done with a shufps.
Nate Begeman9008ca62009-04-27 18:41:29 +00003254 // FIXME: verify that matching u, u, 3, 3 is what we want.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003255 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003256}
3257
3258/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3259/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003260bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N) {
3261 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003262 return false;
3263
3264 // Expect 0, 0, 2, 2
Nate Begeman9008ca62009-04-27 18:41:29 +00003265 for (unsigned i = 0; i < 2; ++i)
3266 if (N->getMaskElt(i) > 0)
3267 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003268
3269 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003270 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003271 int Elt = N->getMaskElt(i);
3272 if (Elt >= 0 && Elt != 2)
3273 return false;
3274 if (Elt == 2)
3275 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003276 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003277 // Don't use movsldup if it can be done with a shufps.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003278 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003279}
3280
Evan Cheng0b457f02008-09-25 20:50:48 +00003281/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3282/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003283bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3284 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopherfd179292009-08-27 18:07:15 +00003285
Nate Begeman9008ca62009-04-27 18:41:29 +00003286 for (int i = 0; i < e; ++i)
3287 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003288 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003289 for (int i = 0; i < e; ++i)
3290 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003291 return false;
3292 return true;
3293}
3294
Evan Cheng63d33002006-03-22 08:01:21 +00003295/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003296/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003297unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003298 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3299 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3300
Evan Chengb9df0ca2006-03-22 02:53:00 +00003301 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3302 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003303 for (int i = 0; i < NumOperands; ++i) {
3304 int Val = SVOp->getMaskElt(NumOperands-i-1);
3305 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003306 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003307 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003308 if (i != NumOperands - 1)
3309 Mask <<= Shift;
3310 }
Evan Cheng63d33002006-03-22 08:01:21 +00003311 return Mask;
3312}
3313
Evan Cheng506d3df2006-03-29 23:07:14 +00003314/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003315/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003316unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003317 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003318 unsigned Mask = 0;
3319 // 8 nodes, but we only care about the last 4.
3320 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003321 int Val = SVOp->getMaskElt(i);
3322 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003323 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003324 if (i != 4)
3325 Mask <<= 2;
3326 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003327 return Mask;
3328}
3329
3330/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003331/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003332unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003333 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003334 unsigned Mask = 0;
3335 // 8 nodes, but we only care about the first 4.
3336 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003337 int Val = SVOp->getMaskElt(i);
3338 if (Val >= 0)
3339 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00003340 if (i != 0)
3341 Mask <<= 2;
3342 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003343 return Mask;
3344}
3345
Nate Begemana09008b2009-10-19 02:17:23 +00003346/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3347/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3348unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3349 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3350 EVT VVT = N->getValueType(0);
3351 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3352 int Val = 0;
3353
3354 unsigned i, e;
3355 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3356 Val = SVOp->getMaskElt(i);
3357 if (Val >= 0)
3358 break;
3359 }
3360 return (Val - i) * EltSize;
3361}
3362
Evan Cheng37b73872009-07-30 08:33:02 +00003363/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3364/// constant +0.0.
3365bool X86::isZeroNode(SDValue Elt) {
3366 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00003367 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00003368 (isa<ConstantFPSDNode>(Elt) &&
3369 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3370}
3371
Nate Begeman9008ca62009-04-27 18:41:29 +00003372/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3373/// their permute mask.
3374static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3375 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003376 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003377 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00003378 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00003379
Nate Begeman5a5ca152009-04-29 05:20:52 +00003380 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003381 int idx = SVOp->getMaskElt(i);
3382 if (idx < 0)
3383 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003384 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003385 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003386 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003387 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003388 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003389 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3390 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003391}
3392
Evan Cheng779ccea2007-12-07 21:30:01 +00003393/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3394/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00003395static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00003396 unsigned NumElems = VT.getVectorNumElements();
3397 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003398 int idx = Mask[i];
3399 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003400 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003401 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003402 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003403 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003404 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003405 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003406}
3407
Evan Cheng533a0aa2006-04-19 20:35:22 +00003408/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3409/// match movhlps. The lower half elements should come from upper half of
3410/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003411/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00003412static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
3413 if (Op->getValueType(0).getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00003414 return false;
3415 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003416 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003417 return false;
3418 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003419 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003420 return false;
3421 return true;
3422}
3423
Evan Cheng5ced1d82006-04-06 23:23:56 +00003424/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00003425/// is promoted to a vector. It also returns the LoadSDNode by reference if
3426/// required.
3427static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00003428 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3429 return false;
3430 N = N->getOperand(0).getNode();
3431 if (!ISD::isNON_EXTLoad(N))
3432 return false;
3433 if (LD)
3434 *LD = cast<LoadSDNode>(N);
3435 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003436}
3437
Evan Cheng533a0aa2006-04-19 20:35:22 +00003438/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3439/// match movlp{s|d}. The lower half elements should come from lower half of
3440/// V1 (and in order), and the upper half elements should come from the upper
3441/// half of V2 (and in order). And since V1 will become the source of the
3442/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003443static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3444 ShuffleVectorSDNode *Op) {
Evan Cheng466685d2006-10-09 20:57:25 +00003445 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003446 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00003447 // Is V2 is a vector load, don't do this transformation. We will try to use
3448 // load folding shufps op.
3449 if (ISD::isNON_EXTLoad(V2))
3450 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003451
Nate Begeman5a5ca152009-04-29 05:20:52 +00003452 unsigned NumElems = Op->getValueType(0).getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003453
Evan Cheng533a0aa2006-04-19 20:35:22 +00003454 if (NumElems != 2 && NumElems != 4)
3455 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003456 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003457 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003458 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003459 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003460 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003461 return false;
3462 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003463}
3464
Evan Cheng39623da2006-04-20 08:58:49 +00003465/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
3466/// all the same.
3467static bool isSplatVector(SDNode *N) {
3468 if (N->getOpcode() != ISD::BUILD_VECTOR)
3469 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003470
Dan Gohman475871a2008-07-27 21:46:04 +00003471 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00003472 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
3473 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003474 return false;
3475 return true;
3476}
3477
Evan Cheng213d2cf2007-05-17 18:45:50 +00003478/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00003479/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00003480/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00003481static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00003482 SDValue V1 = N->getOperand(0);
3483 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003484 unsigned NumElems = N->getValueType(0).getVectorNumElements();
3485 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003486 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003487 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003488 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00003489 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
3490 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003491 if (Opc != ISD::BUILD_VECTOR ||
3492 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00003493 return false;
3494 } else if (Idx >= 0) {
3495 unsigned Opc = V1.getOpcode();
3496 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
3497 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003498 if (Opc != ISD::BUILD_VECTOR ||
3499 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00003500 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00003501 }
3502 }
3503 return true;
3504}
3505
3506/// getZeroVector - Returns a vector of specified type with all zero elements.
3507///
Owen Andersone50ed302009-08-10 22:56:29 +00003508static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003509 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003510 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003511
Dale Johannesen0488fb62010-09-30 23:57:10 +00003512 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003513 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00003514 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003515 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003516 if (HasSSE2) { // SSE2
3517 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3518 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
3519 } else { // SSE1
3520 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
3521 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
3522 }
3523 } else if (VT.getSizeInBits() == 256) { // AVX
3524 // 256-bit logic and arithmetic instructions in AVX are
3525 // all floating-point, no support for integer ops. Default
3526 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00003527 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003528 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
3529 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00003530 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003531 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00003532}
3533
Chris Lattner8a594482007-11-25 00:24:49 +00003534/// getOnesVector - Returns a vector of specified type with all bits set.
3535///
Owen Andersone50ed302009-08-10 22:56:29 +00003536static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003537 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003538
Chris Lattner8a594482007-11-25 00:24:49 +00003539 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
3540 // type. This ensures they get CSE'd.
Owen Anderson825b72b2009-08-11 20:47:22 +00003541 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +00003542 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003543 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003544 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00003545}
3546
3547
Evan Cheng39623da2006-04-20 08:58:49 +00003548/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
3549/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00003550static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003551 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003552 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003553
Evan Cheng39623da2006-04-20 08:58:49 +00003554 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003555 SmallVector<int, 8> MaskVec;
3556 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00003557
Nate Begeman5a5ca152009-04-29 05:20:52 +00003558 for (unsigned i = 0; i != NumElems; ++i) {
3559 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003560 MaskVec[i] = NumElems;
3561 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00003562 }
Evan Cheng39623da2006-04-20 08:58:49 +00003563 }
Evan Cheng39623da2006-04-20 08:58:49 +00003564 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00003565 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
3566 SVOp->getOperand(1), &MaskVec[0]);
3567 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00003568}
3569
Evan Cheng017dcc62006-04-21 01:05:10 +00003570/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
3571/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00003572static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003573 SDValue V2) {
3574 unsigned NumElems = VT.getVectorNumElements();
3575 SmallVector<int, 8> Mask;
3576 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00003577 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003578 Mask.push_back(i);
3579 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00003580}
3581
Nate Begeman9008ca62009-04-27 18:41:29 +00003582/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003583static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003584 SDValue V2) {
3585 unsigned NumElems = VT.getVectorNumElements();
3586 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00003587 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003588 Mask.push_back(i);
3589 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00003590 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003591 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00003592}
3593
Nate Begeman9008ca62009-04-27 18:41:29 +00003594/// getUnpackhMask - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003595static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003596 SDValue V2) {
3597 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00003598 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00003599 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00003600 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003601 Mask.push_back(i + Half);
3602 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00003603 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003604 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00003605}
3606
Bruno Cardoso Lopesbb0a9482010-08-13 17:50:47 +00003607/// PromoteSplat - Promote a splat of v4i32, v8i16 or v16i8 to v4f32.
3608static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003609 EVT PVT = MVT::v4f32;
Owen Andersone50ed302009-08-10 22:56:29 +00003610 EVT VT = SV->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00003611 DebugLoc dl = SV->getDebugLoc();
3612 SDValue V1 = SV->getOperand(0);
3613 int NumElems = VT.getVectorNumElements();
3614 int EltNo = SV->getSplatIndex();
Rafael Espindola15684b22009-04-24 12:40:33 +00003615
Nate Begeman9008ca62009-04-27 18:41:29 +00003616 // unpack elements to the correct location
3617 while (NumElems > 4) {
3618 if (EltNo < NumElems/2) {
3619 V1 = getUnpackl(DAG, dl, VT, V1, V1);
3620 } else {
3621 V1 = getUnpackh(DAG, dl, VT, V1, V1);
3622 EltNo -= NumElems/2;
3623 }
3624 NumElems >>= 1;
3625 }
Eric Christopherfd179292009-08-27 18:07:15 +00003626
Nate Begeman9008ca62009-04-27 18:41:29 +00003627 // Perform the splat.
3628 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003629 V1 = DAG.getNode(ISD::BITCAST, dl, PVT, V1);
Nate Begeman9008ca62009-04-27 18:41:29 +00003630 V1 = DAG.getVectorShuffle(PVT, dl, V1, DAG.getUNDEF(PVT), &SplatMask[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003631 return DAG.getNode(ISD::BITCAST, dl, VT, V1);
Evan Chengc575ca22006-04-17 20:43:08 +00003632}
3633
Evan Chengba05f722006-04-21 23:03:30 +00003634/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00003635/// vector of zero or undef vector. This produces a shuffle where the low
3636/// element of V2 is swizzled into the zero/undef vector, landing at element
3637/// Idx. This produces a shuffle mask like 4,1,2,3 (idx=0) or 0,1,2,4 (idx=3).
Dan Gohman475871a2008-07-27 21:46:04 +00003638static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00003639 bool isZero, bool HasSSE2,
3640 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003641 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003642 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00003643 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
3644 unsigned NumElems = VT.getVectorNumElements();
3645 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00003646 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003647 // If this is the insertion idx, put the low elt of V2 here.
3648 MaskVec.push_back(i == Idx ? NumElems : i);
3649 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00003650}
3651
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003652/// getShuffleScalarElt - Returns the scalar element that will make up the ith
3653/// element of the result of the vector shuffle.
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003654SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
3655 unsigned Depth) {
3656 if (Depth == 6)
3657 return SDValue(); // Limit search depth.
3658
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003659 SDValue V = SDValue(N, 0);
3660 EVT VT = V.getValueType();
3661 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003662
3663 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
3664 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
3665 Index = SV->getMaskElt(Index);
3666
3667 if (Index < 0)
3668 return DAG.getUNDEF(VT.getVectorElementType());
3669
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003670 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003671 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003672 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00003673 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003674
3675 // Recurse into target specific vector shuffles to find scalars.
3676 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003677 int NumElems = VT.getVectorNumElements();
3678 SmallVector<unsigned, 16> ShuffleMask;
3679 SDValue ImmN;
3680
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003681 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003682 case X86ISD::SHUFPS:
3683 case X86ISD::SHUFPD:
3684 ImmN = N->getOperand(N->getNumOperands()-1);
3685 DecodeSHUFPSMask(NumElems,
3686 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3687 ShuffleMask);
3688 break;
3689 case X86ISD::PUNPCKHBW:
3690 case X86ISD::PUNPCKHWD:
3691 case X86ISD::PUNPCKHDQ:
3692 case X86ISD::PUNPCKHQDQ:
3693 DecodePUNPCKHMask(NumElems, ShuffleMask);
3694 break;
3695 case X86ISD::UNPCKHPS:
3696 case X86ISD::UNPCKHPD:
3697 DecodeUNPCKHPMask(NumElems, ShuffleMask);
3698 break;
3699 case X86ISD::PUNPCKLBW:
3700 case X86ISD::PUNPCKLWD:
3701 case X86ISD::PUNPCKLDQ:
3702 case X86ISD::PUNPCKLQDQ:
3703 DecodePUNPCKLMask(NumElems, ShuffleMask);
3704 break;
3705 case X86ISD::UNPCKLPS:
3706 case X86ISD::UNPCKLPD:
3707 DecodeUNPCKLPMask(NumElems, ShuffleMask);
3708 break;
3709 case X86ISD::MOVHLPS:
3710 DecodeMOVHLPSMask(NumElems, ShuffleMask);
3711 break;
3712 case X86ISD::MOVLHPS:
3713 DecodeMOVLHPSMask(NumElems, ShuffleMask);
3714 break;
3715 case X86ISD::PSHUFD:
3716 ImmN = N->getOperand(N->getNumOperands()-1);
3717 DecodePSHUFMask(NumElems,
3718 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3719 ShuffleMask);
3720 break;
3721 case X86ISD::PSHUFHW:
3722 ImmN = N->getOperand(N->getNumOperands()-1);
3723 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3724 ShuffleMask);
3725 break;
3726 case X86ISD::PSHUFLW:
3727 ImmN = N->getOperand(N->getNumOperands()-1);
3728 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3729 ShuffleMask);
3730 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003731 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003732 case X86ISD::MOVSD: {
3733 // The index 0 always comes from the first element of the second source,
3734 // this is why MOVSS and MOVSD are used in the first place. The other
3735 // elements come from the other positions of the first source vector.
3736 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003737 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
3738 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003739 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003740 default:
3741 assert("not implemented for target shuffle node");
3742 return SDValue();
3743 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003744
3745 Index = ShuffleMask[Index];
3746 if (Index < 0)
3747 return DAG.getUNDEF(VT.getVectorElementType());
3748
3749 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
3750 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
3751 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003752 }
3753
3754 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003755 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003756 V = V.getOperand(0);
3757 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003758 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003759
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003760 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003761 return SDValue();
3762 }
3763
3764 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
3765 return (Index == 0) ? V.getOperand(0)
3766 : DAG.getUNDEF(VT.getVectorElementType());
3767
3768 if (V.getOpcode() == ISD::BUILD_VECTOR)
3769 return V.getOperand(Index);
3770
3771 return SDValue();
3772}
3773
3774/// getNumOfConsecutiveZeros - Return the number of elements of a vector
3775/// shuffle operation which come from a consecutively from a zero. The
3776/// search can start in two diferent directions, from left or right.
3777static
3778unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
3779 bool ZerosFromLeft, SelectionDAG &DAG) {
3780 int i = 0;
3781
3782 while (i < NumElems) {
3783 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003784 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003785 if (!(Elt.getNode() &&
3786 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
3787 break;
3788 ++i;
3789 }
3790
3791 return i;
3792}
3793
3794/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
3795/// MaskE correspond consecutively to elements from one of the vector operands,
3796/// starting from its index OpIdx. Also tell OpNum which source vector operand.
3797static
3798bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
3799 int OpIdx, int NumElems, unsigned &OpNum) {
3800 bool SeenV1 = false;
3801 bool SeenV2 = false;
3802
3803 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
3804 int Idx = SVOp->getMaskElt(i);
3805 // Ignore undef indicies
3806 if (Idx < 0)
3807 continue;
3808
3809 if (Idx < NumElems)
3810 SeenV1 = true;
3811 else
3812 SeenV2 = true;
3813
3814 // Only accept consecutive elements from the same vector
3815 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
3816 return false;
3817 }
3818
3819 OpNum = SeenV1 ? 0 : 1;
3820 return true;
3821}
3822
3823/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
3824/// logical left shift of a vector.
3825static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
3826 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
3827 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
3828 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
3829 false /* check zeros from right */, DAG);
3830 unsigned OpSrc;
3831
3832 if (!NumZeros)
3833 return false;
3834
3835 // Considering the elements in the mask that are not consecutive zeros,
3836 // check if they consecutively come from only one of the source vectors.
3837 //
3838 // V1 = {X, A, B, C} 0
3839 // \ \ \ /
3840 // vector_shuffle V1, V2 <1, 2, 3, X>
3841 //
3842 if (!isShuffleMaskConsecutive(SVOp,
3843 0, // Mask Start Index
3844 NumElems-NumZeros-1, // Mask End Index
3845 NumZeros, // Where to start looking in the src vector
3846 NumElems, // Number of elements in vector
3847 OpSrc)) // Which source operand ?
3848 return false;
3849
3850 isLeft = false;
3851 ShAmt = NumZeros;
3852 ShVal = SVOp->getOperand(OpSrc);
3853 return true;
3854}
3855
3856/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
3857/// logical left shift of a vector.
3858static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
3859 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
3860 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
3861 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
3862 true /* check zeros from left */, DAG);
3863 unsigned OpSrc;
3864
3865 if (!NumZeros)
3866 return false;
3867
3868 // Considering the elements in the mask that are not consecutive zeros,
3869 // check if they consecutively come from only one of the source vectors.
3870 //
3871 // 0 { A, B, X, X } = V2
3872 // / \ / /
3873 // vector_shuffle V1, V2 <X, X, 4, 5>
3874 //
3875 if (!isShuffleMaskConsecutive(SVOp,
3876 NumZeros, // Mask Start Index
3877 NumElems-1, // Mask End Index
3878 0, // Where to start looking in the src vector
3879 NumElems, // Number of elements in vector
3880 OpSrc)) // Which source operand ?
3881 return false;
3882
3883 isLeft = true;
3884 ShAmt = NumZeros;
3885 ShVal = SVOp->getOperand(OpSrc);
3886 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00003887}
3888
3889/// isVectorShift - Returns true if the shuffle can be implemented as a
3890/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003891static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00003892 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003893 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
3894 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
3895 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00003896
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003897 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00003898}
3899
Evan Chengc78d3b42006-04-24 18:01:45 +00003900/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
3901///
Dan Gohman475871a2008-07-27 21:46:04 +00003902static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00003903 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00003904 SelectionDAG &DAG,
3905 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003906 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00003907 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003908
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003909 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003910 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003911 bool First = true;
3912 for (unsigned i = 0; i < 16; ++i) {
3913 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
3914 if (ThisIsNonZero && First) {
3915 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003916 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003917 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003918 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003919 First = false;
3920 }
3921
3922 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00003923 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003924 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
3925 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003926 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003927 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00003928 }
3929 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003930 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
3931 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
3932 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00003933 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003934 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00003935 } else
3936 ThisElt = LastElt;
3937
Gabor Greifba36cb52008-08-28 21:40:38 +00003938 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00003939 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00003940 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00003941 }
3942 }
3943
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003944 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00003945}
3946
Bill Wendlinga348c562007-03-22 18:42:45 +00003947/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00003948///
Dan Gohman475871a2008-07-27 21:46:04 +00003949static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00003950 unsigned NumNonZero, unsigned NumZero,
3951 SelectionDAG &DAG,
3952 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003953 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00003954 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003955
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003956 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003957 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003958 bool First = true;
3959 for (unsigned i = 0; i < 8; ++i) {
3960 bool isNonZero = (NonZeros & (1 << i)) != 0;
3961 if (isNonZero) {
3962 if (First) {
3963 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003964 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003965 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003966 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003967 First = false;
3968 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003969 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003970 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00003971 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00003972 }
3973 }
3974
3975 return V;
3976}
3977
Evan Chengf26ffe92008-05-29 08:22:04 +00003978/// getVShift - Return a vector logical shift node.
3979///
Owen Andersone50ed302009-08-10 22:56:29 +00003980static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00003981 unsigned NumBits, SelectionDAG &DAG,
3982 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003983 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00003984 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003985 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
3986 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00003987 DAG.getNode(Opc, dl, ShVT, SrcOp,
Gabor Greif327ef032008-08-28 23:19:51 +00003988 DAG.getConstant(NumBits, TLI.getShiftAmountTy())));
Evan Chengf26ffe92008-05-29 08:22:04 +00003989}
3990
Dan Gohman475871a2008-07-27 21:46:04 +00003991SDValue
Evan Chengc3630942009-12-09 21:00:30 +00003992X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00003993 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00003994
Evan Chengc3630942009-12-09 21:00:30 +00003995 // Check if the scalar load can be widened into a vector load. And if
3996 // the address is "base + cst" see if the cst can be "absorbed" into
3997 // the shuffle mask.
3998 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
3999 SDValue Ptr = LD->getBasePtr();
4000 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4001 return SDValue();
4002 EVT PVT = LD->getValueType(0);
4003 if (PVT != MVT::i32 && PVT != MVT::f32)
4004 return SDValue();
4005
4006 int FI = -1;
4007 int64_t Offset = 0;
4008 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4009 FI = FINode->getIndex();
4010 Offset = 0;
4011 } else if (Ptr.getOpcode() == ISD::ADD &&
4012 isa<ConstantSDNode>(Ptr.getOperand(1)) &&
4013 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4014 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4015 Offset = Ptr.getConstantOperandVal(1);
4016 Ptr = Ptr.getOperand(0);
4017 } else {
4018 return SDValue();
4019 }
4020
4021 SDValue Chain = LD->getChain();
4022 // Make sure the stack object alignment is at least 16.
4023 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
4024 if (DAG.InferPtrAlignment(Ptr) < 16) {
4025 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004026 // Can't change the alignment. FIXME: It's possible to compute
4027 // the exact stack offset and reference FI + adjust offset instead.
4028 // If someone *really* cares about this. That's the way to implement it.
4029 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004030 } else {
4031 MFI->setObjectAlignment(FI, 16);
4032 }
4033 }
4034
4035 // (Offset % 16) must be multiple of 4. Then address is then
4036 // Ptr + (Offset & ~15).
4037 if (Offset < 0)
4038 return SDValue();
4039 if ((Offset % 16) & 3)
4040 return SDValue();
4041 int64_t StartOffset = Offset & ~15;
4042 if (StartOffset)
4043 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4044 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4045
4046 int EltNo = (Offset - StartOffset) >> 2;
4047 int Mask[4] = { EltNo, EltNo, EltNo, EltNo };
4048 EVT VT = (PVT == MVT::i32) ? MVT::v4i32 : MVT::v4f32;
Chris Lattner51abfe42010-09-21 06:02:19 +00004049 SDValue V1 = DAG.getLoad(VT, dl, Chain, Ptr,
4050 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004051 false, false, 0);
Evan Chengc3630942009-12-09 21:00:30 +00004052 // Canonicalize it to a v4i32 shuffle.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004053 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, V1);
4054 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Chengc3630942009-12-09 21:00:30 +00004055 DAG.getVectorShuffle(MVT::v4i32, dl, V1,
Chris Lattner51abfe42010-09-21 06:02:19 +00004056 DAG.getUNDEF(MVT::v4i32),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004057 }
4058
4059 return SDValue();
4060}
4061
Michael J. Spencerec38de22010-10-10 22:04:20 +00004062/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4063/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004064/// load which has the same value as a build_vector whose operands are 'elts'.
4065///
4066/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004067///
Nate Begeman1449f292010-03-24 22:19:06 +00004068/// FIXME: we'd also like to handle the case where the last elements are zero
4069/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4070/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004071static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004072 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004073 EVT EltVT = VT.getVectorElementType();
4074 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004075
Nate Begemanfdea31a2010-03-24 20:49:50 +00004076 LoadSDNode *LDBase = NULL;
4077 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004078
Nate Begeman1449f292010-03-24 22:19:06 +00004079 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004080 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004081 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004082 for (unsigned i = 0; i < NumElems; ++i) {
4083 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004084
Nate Begemanfdea31a2010-03-24 20:49:50 +00004085 if (!Elt.getNode() ||
4086 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4087 return SDValue();
4088 if (!LDBase) {
4089 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4090 return SDValue();
4091 LDBase = cast<LoadSDNode>(Elt.getNode());
4092 LastLoadedElt = i;
4093 continue;
4094 }
4095 if (Elt.getOpcode() == ISD::UNDEF)
4096 continue;
4097
4098 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4099 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4100 return SDValue();
4101 LastLoadedElt = i;
4102 }
Nate Begeman1449f292010-03-24 22:19:06 +00004103
4104 // If we have found an entire vector of loads and undefs, then return a large
4105 // load of the entire vector width starting at the base pointer. If we found
4106 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004107 if (LastLoadedElt == NumElems - 1) {
4108 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004109 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004110 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004111 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004112 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004113 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004114 LDBase->isVolatile(), LDBase->isNonTemporal(),
4115 LDBase->getAlignment());
4116 } else if (NumElems == 4 && LastLoadedElt == 1) {
4117 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4118 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004119 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4120 Ops, 2, MVT::i32,
4121 LDBase->getMemOperand());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004122 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004123 }
4124 return SDValue();
4125}
4126
Evan Chengc3630942009-12-09 21:00:30 +00004127SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004128X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004129 DebugLoc dl = Op.getDebugLoc();
Chris Lattner6e80e442010-08-28 17:15:43 +00004130 // All zero's are handled with pxor in SSE2 and above, xorps in SSE1.
4131 // All one's are handled with pcmpeqd. In AVX, zero's are handled with
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004132 // vpxor in 128-bit and xor{pd,ps} in 256-bit, but no 256 version of pcmpeqd
4133 // is present, so AllOnes is ignored.
4134 if (ISD::isBuildVectorAllZeros(Op.getNode()) ||
4135 (Op.getValueType().getSizeInBits() != 256 &&
4136 ISD::isBuildVectorAllOnes(Op.getNode()))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004137 // Canonicalize this to <4 x i32> (SSE) to
Chris Lattner8a594482007-11-25 00:24:49 +00004138 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
4139 // eliminated on x86-32 hosts.
Dale Johannesen0488fb62010-09-30 23:57:10 +00004140 if (Op.getValueType() == MVT::v4i32)
Chris Lattner8a594482007-11-25 00:24:49 +00004141 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004142
Gabor Greifba36cb52008-08-28 21:40:38 +00004143 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00004144 return getOnesVector(Op.getValueType(), DAG, dl);
4145 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00004146 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004147
Owen Andersone50ed302009-08-10 22:56:29 +00004148 EVT VT = Op.getValueType();
4149 EVT ExtVT = VT.getVectorElementType();
4150 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004151
4152 unsigned NumElems = Op.getNumOperands();
4153 unsigned NumZero = 0;
4154 unsigned NumNonZero = 0;
4155 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004156 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004157 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004158 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004159 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00004160 if (Elt.getOpcode() == ISD::UNDEF)
4161 continue;
4162 Values.insert(Elt);
4163 if (Elt.getOpcode() != ISD::Constant &&
4164 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004165 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00004166 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00004167 NumZero++;
4168 else {
4169 NonZeros |= (1 << i);
4170 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004171 }
4172 }
4173
Chris Lattner97a2a562010-08-26 05:24:29 +00004174 // All undef vector. Return an UNDEF. All zero vectors were handled above.
4175 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00004176 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004177
Chris Lattner67f453a2008-03-09 05:42:06 +00004178 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00004179 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004180 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00004181 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00004182
Chris Lattner62098042008-03-09 01:05:04 +00004183 // If this is an insertion of an i64 value on x86-32, and if the top bits of
4184 // the value are obviously zero, truncate the value to i32 and do the
4185 // insertion that way. Only do this if the value is non-constant or if the
4186 // value is a constant being inserted into element 0. It is cheaper to do
4187 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00004188 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00004189 (!IsAllConstants || Idx == 0)) {
4190 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004191 // Handle SSE only.
4192 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4193 EVT VecVT = MVT::v4i32;
4194 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004195
Chris Lattner62098042008-03-09 01:05:04 +00004196 // Truncate the value (which may itself be a constant) to i32, and
4197 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00004198 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00004199 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00004200 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4201 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004202
Chris Lattner62098042008-03-09 01:05:04 +00004203 // Now we have our 32-bit value zero extended in the low element of
4204 // a vector. If Idx != 0, swizzle it into place.
4205 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004206 SmallVector<int, 4> Mask;
4207 Mask.push_back(Idx);
4208 for (unsigned i = 1; i != VecElts; ++i)
4209 Mask.push_back(i);
4210 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00004211 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00004212 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004213 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004214 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00004215 }
4216 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004217
Chris Lattner19f79692008-03-08 22:59:52 +00004218 // If we have a constant or non-constant insertion into the low element of
4219 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4220 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00004221 // depending on what the source datatype is.
4222 if (Idx == 0) {
4223 if (NumZero == 0) {
4224 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00004225 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4226 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00004227 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4228 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4229 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4230 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00004231 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4232 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00004233 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4234 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00004235 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4236 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4237 Subtarget->hasSSE2(), DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004238 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00004239 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004240 }
Evan Chengf26ffe92008-05-29 08:22:04 +00004241
4242 // Is it a vector logical left shift?
4243 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00004244 X86::isZeroNode(Op.getOperand(0)) &&
4245 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004246 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004247 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004248 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004249 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00004250 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004251 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004252
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004253 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00004254 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004255
Chris Lattner19f79692008-03-08 22:59:52 +00004256 // Otherwise, if this is a vector with i32 or f32 elements, and the element
4257 // is a non-constant being inserted into an element other than the low one,
4258 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
4259 // movd/movss) to move this into the low element, then shuffle it into
4260 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004261 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00004262 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00004263
Evan Cheng0db9fe62006-04-25 20:13:52 +00004264 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00004265 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4266 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00004267 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004268 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00004269 MaskVec.push_back(i == Idx ? 0 : 1);
4270 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004271 }
4272 }
4273
Chris Lattner67f453a2008-03-09 05:42:06 +00004274 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00004275 if (Values.size() == 1) {
4276 if (EVTBits == 32) {
4277 // Instead of a shuffle like this:
4278 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4279 // Check if it's possible to issue this instead.
4280 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4281 unsigned Idx = CountTrailingZeros_32(NonZeros);
4282 SDValue Item = Op.getOperand(Idx);
4283 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4284 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4285 }
Dan Gohman475871a2008-07-27 21:46:04 +00004286 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004287 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004288
Dan Gohmana3941172007-07-24 22:55:08 +00004289 // A vector full of immediates; various special cases are already
4290 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004291 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00004292 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00004293
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004294 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004295 if (EVTBits == 64) {
4296 if (NumNonZero == 1) {
4297 // One half is zero or undef.
4298 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00004299 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004300 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00004301 return getShuffleVectorZeroOrUndef(V2, Idx, true,
4302 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00004303 }
Dan Gohman475871a2008-07-27 21:46:04 +00004304 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00004305 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004306
4307 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00004308 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004309 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00004310 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004311 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004312 }
4313
Bill Wendling826f36f2007-03-28 00:57:11 +00004314 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004315 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00004316 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004317 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004318 }
4319
4320 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004321 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00004322 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004323 if (NumElems == 4 && NumZero > 0) {
4324 for (unsigned i = 0; i < 4; ++i) {
4325 bool isZero = !(NonZeros & (1 << i));
4326 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00004327 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004328 else
Dale Johannesenace16102009-02-03 19:33:06 +00004329 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004330 }
4331
4332 for (unsigned i = 0; i < 2; ++i) {
4333 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
4334 default: break;
4335 case 0:
4336 V[i] = V[i*2]; // Must be a zero vector.
4337 break;
4338 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00004339 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004340 break;
4341 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00004342 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004343 break;
4344 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00004345 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004346 break;
4347 }
4348 }
4349
Nate Begeman9008ca62009-04-27 18:41:29 +00004350 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004351 bool Reverse = (NonZeros & 0x3) == 2;
4352 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004353 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004354 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
4355 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004356 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
4357 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004358 }
4359
Nate Begemanfdea31a2010-03-24 20:49:50 +00004360 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
4361 // Check for a build vector of consecutive loads.
4362 for (unsigned i = 0; i < NumElems; ++i)
4363 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004364
Nate Begemanfdea31a2010-03-24 20:49:50 +00004365 // Check for elements which are consecutive loads.
4366 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
4367 if (LD.getNode())
4368 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004369
4370 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004371 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00004372 SDValue Result;
4373 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
4374 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
4375 else
4376 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004377
Chris Lattner24faf612010-08-28 17:59:08 +00004378 for (unsigned i = 1; i < NumElems; ++i) {
4379 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
4380 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00004381 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00004382 }
4383 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00004384 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00004385
Chris Lattner6e80e442010-08-28 17:15:43 +00004386 // Otherwise, expand into a number of unpckl*, start by extending each of
4387 // our (non-undef) elements to the full vector width with the element in the
4388 // bottom slot of the vector (which generates no code for SSE).
4389 for (unsigned i = 0; i < NumElems; ++i) {
4390 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
4391 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
4392 else
4393 V[i] = DAG.getUNDEF(VT);
4394 }
4395
4396 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004397 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
4398 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
4399 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00004400 unsigned EltStride = NumElems >> 1;
4401 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00004402 for (unsigned i = 0; i < EltStride; ++i) {
4403 // If V[i+EltStride] is undef and this is the first round of mixing,
4404 // then it is safe to just drop this shuffle: V[i] is already in the
4405 // right place, the one element (since it's the first round) being
4406 // inserted as undef can be dropped. This isn't safe for successive
4407 // rounds because they will permute elements within both vectors.
4408 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
4409 EltStride == NumElems/2)
4410 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004411
Chris Lattner6e80e442010-08-28 17:15:43 +00004412 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00004413 }
Chris Lattner6e80e442010-08-28 17:15:43 +00004414 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004415 }
4416 return V[0];
4417 }
Dan Gohman475871a2008-07-27 21:46:04 +00004418 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004419}
4420
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004421SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004422X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004423 // We support concatenate two MMX registers and place them in a MMX
4424 // register. This is better than doing a stack convert.
4425 DebugLoc dl = Op.getDebugLoc();
4426 EVT ResVT = Op.getValueType();
4427 assert(Op.getNumOperands() == 2);
4428 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
4429 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
4430 int Mask[2];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004431 SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004432 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4433 InVec = Op.getOperand(1);
4434 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
4435 unsigned NumElts = ResVT.getVectorNumElements();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004436 VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004437 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
4438 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
4439 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004440 InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004441 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4442 Mask[0] = 0; Mask[1] = 2;
4443 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
4444 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004445 return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004446}
4447
Nate Begemanb9a47b82009-02-23 08:49:38 +00004448// v8i16 shuffles - Prefer shuffles in the following order:
4449// 1. [all] pshuflw, pshufhw, optional move
4450// 2. [ssse3] 1 x pshufb
4451// 3. [ssse3] 2 x pshufb + 1 x por
4452// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004453SDValue
4454X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
4455 SelectionDAG &DAG) const {
4456 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00004457 SDValue V1 = SVOp->getOperand(0);
4458 SDValue V2 = SVOp->getOperand(1);
4459 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004460 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00004461
Nate Begemanb9a47b82009-02-23 08:49:38 +00004462 // Determine if more than 1 of the words in each of the low and high quadwords
4463 // of the result come from the same quadword of one of the two inputs. Undef
4464 // mask values count as coming from any quadword, for better codegen.
4465 SmallVector<unsigned, 4> LoQuad(4);
4466 SmallVector<unsigned, 4> HiQuad(4);
4467 BitVector InputQuads(4);
4468 for (unsigned i = 0; i < 8; ++i) {
4469 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00004470 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004471 MaskVals.push_back(EltIdx);
4472 if (EltIdx < 0) {
4473 ++Quad[0];
4474 ++Quad[1];
4475 ++Quad[2];
4476 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00004477 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004478 }
4479 ++Quad[EltIdx / 4];
4480 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00004481 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004482
Nate Begemanb9a47b82009-02-23 08:49:38 +00004483 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004484 unsigned MaxQuad = 1;
4485 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004486 if (LoQuad[i] > MaxQuad) {
4487 BestLoQuad = i;
4488 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004489 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004490 }
4491
Nate Begemanb9a47b82009-02-23 08:49:38 +00004492 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004493 MaxQuad = 1;
4494 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004495 if (HiQuad[i] > MaxQuad) {
4496 BestHiQuad = i;
4497 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004498 }
4499 }
4500
Nate Begemanb9a47b82009-02-23 08:49:38 +00004501 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00004502 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00004503 // single pshufb instruction is necessary. If There are more than 2 input
4504 // quads, disable the next transformation since it does not help SSSE3.
4505 bool V1Used = InputQuads[0] || InputQuads[1];
4506 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004507 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004508 if (InputQuads.count() == 2 && V1Used && V2Used) {
4509 BestLoQuad = InputQuads.find_first();
4510 BestHiQuad = InputQuads.find_next(BestLoQuad);
4511 }
4512 if (InputQuads.count() > 2) {
4513 BestLoQuad = -1;
4514 BestHiQuad = -1;
4515 }
4516 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004517
Nate Begemanb9a47b82009-02-23 08:49:38 +00004518 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
4519 // the shuffle mask. If a quad is scored as -1, that means that it contains
4520 // words from all 4 input quadwords.
4521 SDValue NewV;
4522 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004523 SmallVector<int, 8> MaskV;
4524 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
4525 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00004526 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004527 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
4528 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
4529 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004530
Nate Begemanb9a47b82009-02-23 08:49:38 +00004531 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
4532 // source words for the shuffle, to aid later transformations.
4533 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00004534 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00004535 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004536 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00004537 if (idx != (int)i)
4538 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004539 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00004540 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004541 AllWordsInNewV = false;
4542 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00004543 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004544
Nate Begemanb9a47b82009-02-23 08:49:38 +00004545 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
4546 if (AllWordsInNewV) {
4547 for (int i = 0; i != 8; ++i) {
4548 int idx = MaskVals[i];
4549 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004550 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004551 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004552 if ((idx != i) && idx < 4)
4553 pshufhw = false;
4554 if ((idx != i) && idx > 3)
4555 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00004556 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00004557 V1 = NewV;
4558 V2Used = false;
4559 BestLoQuad = 0;
4560 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004561 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004562
Nate Begemanb9a47b82009-02-23 08:49:38 +00004563 // If we've eliminated the use of V2, and the new mask is a pshuflw or
4564 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00004565 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004566 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
4567 unsigned TargetMask = 0;
4568 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00004569 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004570 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
4571 X86::getShufflePSHUFLWImmediate(NewV.getNode());
4572 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004573 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00004574 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004575 }
Eric Christopherfd179292009-08-27 18:07:15 +00004576
Nate Begemanb9a47b82009-02-23 08:49:38 +00004577 // If we have SSSE3, and all words of the result are from 1 input vector,
4578 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
4579 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004580 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004581 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004582
Nate Begemanb9a47b82009-02-23 08:49:38 +00004583 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00004584 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00004585 // mask, and elements that come from V1 in the V2 mask, so that the two
4586 // results can be OR'd together.
4587 bool TwoInputs = V1Used && V2Used;
4588 for (unsigned i = 0; i != 8; ++i) {
4589 int EltIdx = MaskVals[i] * 2;
4590 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004591 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4592 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004593 continue;
4594 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004595 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
4596 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004597 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004598 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004599 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004600 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004601 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004602 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004603 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004604
Nate Begemanb9a47b82009-02-23 08:49:38 +00004605 // Calculate the shuffle mask for the second input, shuffle it, and
4606 // OR it with the first shuffled input.
4607 pshufbMask.clear();
4608 for (unsigned i = 0; i != 8; ++i) {
4609 int EltIdx = MaskVals[i] * 2;
4610 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004611 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4612 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004613 continue;
4614 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004615 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
4616 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004617 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004618 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00004619 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004620 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004621 MVT::v16i8, &pshufbMask[0], 16));
4622 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004623 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004624 }
4625
4626 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
4627 // and update MaskVals with new element order.
4628 BitVector InOrder(8);
4629 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004630 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004631 for (int i = 0; i != 4; ++i) {
4632 int idx = MaskVals[i];
4633 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004634 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004635 InOrder.set(i);
4636 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004637 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004638 InOrder.set(i);
4639 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004640 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004641 }
4642 }
4643 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004644 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00004645 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004646 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004647
4648 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4649 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
4650 NewV.getOperand(0),
4651 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
4652 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004653 }
Eric Christopherfd179292009-08-27 18:07:15 +00004654
Nate Begemanb9a47b82009-02-23 08:49:38 +00004655 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
4656 // and update MaskVals with the new element order.
4657 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004658 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004659 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004660 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004661 for (unsigned i = 4; i != 8; ++i) {
4662 int idx = MaskVals[i];
4663 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004664 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004665 InOrder.set(i);
4666 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004667 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004668 InOrder.set(i);
4669 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004670 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004671 }
4672 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004673 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004674 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004675
4676 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4677 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
4678 NewV.getOperand(0),
4679 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
4680 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004681 }
Eric Christopherfd179292009-08-27 18:07:15 +00004682
Nate Begemanb9a47b82009-02-23 08:49:38 +00004683 // In case BestHi & BestLo were both -1, which means each quadword has a word
4684 // from each of the four input quadwords, calculate the InOrder bitvector now
4685 // before falling through to the insert/extract cleanup.
4686 if (BestLoQuad == -1 && BestHiQuad == -1) {
4687 NewV = V1;
4688 for (int i = 0; i != 8; ++i)
4689 if (MaskVals[i] < 0 || MaskVals[i] == i)
4690 InOrder.set(i);
4691 }
Eric Christopherfd179292009-08-27 18:07:15 +00004692
Nate Begemanb9a47b82009-02-23 08:49:38 +00004693 // The other elements are put in the right place using pextrw and pinsrw.
4694 for (unsigned i = 0; i != 8; ++i) {
4695 if (InOrder[i])
4696 continue;
4697 int EltIdx = MaskVals[i];
4698 if (EltIdx < 0)
4699 continue;
4700 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00004701 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004702 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00004703 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004704 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00004705 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004706 DAG.getIntPtrConstant(i));
4707 }
4708 return NewV;
4709}
4710
4711// v16i8 shuffles - Prefer shuffles in the following order:
4712// 1. [ssse3] 1 x pshufb
4713// 2. [ssse3] 2 x pshufb + 1 x por
4714// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
4715static
Nate Begeman9008ca62009-04-27 18:41:29 +00004716SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00004717 SelectionDAG &DAG,
4718 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004719 SDValue V1 = SVOp->getOperand(0);
4720 SDValue V2 = SVOp->getOperand(1);
4721 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004722 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00004723 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00004724
Nate Begemanb9a47b82009-02-23 08:49:38 +00004725 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00004726 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00004727 // present, fall back to case 3.
4728 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
4729 bool V1Only = true;
4730 bool V2Only = true;
4731 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004732 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00004733 if (EltIdx < 0)
4734 continue;
4735 if (EltIdx < 16)
4736 V2Only = false;
4737 else
4738 V1Only = false;
4739 }
Eric Christopherfd179292009-08-27 18:07:15 +00004740
Nate Begemanb9a47b82009-02-23 08:49:38 +00004741 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
4742 if (TLI.getSubtarget()->hasSSSE3()) {
4743 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004744
Nate Begemanb9a47b82009-02-23 08:49:38 +00004745 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00004746 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00004747 //
4748 // Otherwise, we have elements from both input vectors, and must zero out
4749 // elements that come from V2 in the first mask, and V1 in the second mask
4750 // so that we can OR them together.
4751 bool TwoInputs = !(V1Only || V2Only);
4752 for (unsigned i = 0; i != 16; ++i) {
4753 int EltIdx = MaskVals[i];
4754 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004755 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004756 continue;
4757 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004758 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004759 }
4760 // If all the elements are from V2, assign it to V1 and return after
4761 // building the first pshufb.
4762 if (V2Only)
4763 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00004764 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004765 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004766 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004767 if (!TwoInputs)
4768 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00004769
Nate Begemanb9a47b82009-02-23 08:49:38 +00004770 // Calculate the shuffle mask for the second input, shuffle it, and
4771 // OR it with the first shuffled input.
4772 pshufbMask.clear();
4773 for (unsigned i = 0; i != 16; ++i) {
4774 int EltIdx = MaskVals[i];
4775 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004776 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004777 continue;
4778 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004779 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004780 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004781 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004782 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004783 MVT::v16i8, &pshufbMask[0], 16));
4784 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004785 }
Eric Christopherfd179292009-08-27 18:07:15 +00004786
Nate Begemanb9a47b82009-02-23 08:49:38 +00004787 // No SSSE3 - Calculate in place words and then fix all out of place words
4788 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
4789 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004790 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
4791 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004792 SDValue NewV = V2Only ? V2 : V1;
4793 for (int i = 0; i != 8; ++i) {
4794 int Elt0 = MaskVals[i*2];
4795 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00004796
Nate Begemanb9a47b82009-02-23 08:49:38 +00004797 // This word of the result is all undef, skip it.
4798 if (Elt0 < 0 && Elt1 < 0)
4799 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004800
Nate Begemanb9a47b82009-02-23 08:49:38 +00004801 // This word of the result is already in the correct place, skip it.
4802 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
4803 continue;
4804 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
4805 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004806
Nate Begemanb9a47b82009-02-23 08:49:38 +00004807 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
4808 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
4809 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00004810
4811 // If Elt0 and Elt1 are defined, are consecutive, and can be load
4812 // using a single extract together, load it and store it.
4813 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004814 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00004815 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00004816 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00004817 DAG.getIntPtrConstant(i));
4818 continue;
4819 }
4820
Nate Begemanb9a47b82009-02-23 08:49:38 +00004821 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00004822 // source byte is not also odd, shift the extracted word left 8 bits
4823 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00004824 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004825 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004826 DAG.getIntPtrConstant(Elt1 / 2));
4827 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004828 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004829 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00004830 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004831 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
4832 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004833 }
4834 // If Elt0 is defined, extract it from the appropriate source. If the
4835 // source byte is not also even, shift the extracted word right 8 bits. If
4836 // Elt1 was also defined, OR the extracted values together before
4837 // inserting them in the result.
4838 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004839 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004840 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
4841 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004842 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004843 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00004844 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004845 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
4846 DAG.getConstant(0x00FF, MVT::i16));
4847 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00004848 : InsElt0;
4849 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004850 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004851 DAG.getIntPtrConstant(i));
4852 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004853 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004854}
4855
Evan Cheng7a831ce2007-12-15 03:00:47 +00004856/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004857/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00004858/// done when every pair / quad of shuffle mask elements point to elements in
4859/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004860/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00004861static
Nate Begeman9008ca62009-04-27 18:41:29 +00004862SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00004863 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00004864 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00004865 SDValue V1 = SVOp->getOperand(0);
4866 SDValue V2 = SVOp->getOperand(1);
4867 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00004868 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004869 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00004870 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004871 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00004872 case MVT::v4f32: NewVT = MVT::v2f64; break;
4873 case MVT::v4i32: NewVT = MVT::v2i64; break;
4874 case MVT::v8i16: NewVT = MVT::v4i32; break;
4875 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00004876 }
4877
Nate Begeman9008ca62009-04-27 18:41:29 +00004878 int Scale = NumElems / NewWidth;
4879 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00004880 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004881 int StartIdx = -1;
4882 for (int j = 0; j < Scale; ++j) {
4883 int EltIdx = SVOp->getMaskElt(i+j);
4884 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004885 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00004886 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00004887 StartIdx = EltIdx - (EltIdx % Scale);
4888 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00004889 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00004890 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004891 if (StartIdx == -1)
4892 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00004893 else
Nate Begeman9008ca62009-04-27 18:41:29 +00004894 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004895 }
4896
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004897 V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
4898 V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00004899 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004900}
4901
Evan Chengd880b972008-05-09 21:53:03 +00004902/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004903///
Owen Andersone50ed302009-08-10 22:56:29 +00004904static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00004905 SDValue SrcOp, SelectionDAG &DAG,
4906 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004907 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004908 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00004909 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00004910 LD = dyn_cast<LoadSDNode>(SrcOp);
4911 if (!LD) {
4912 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
4913 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00004914 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00004915 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00004916 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004917 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00004918 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004919 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00004920 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004921 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004922 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
4923 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
4924 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00004925 SrcOp.getOperand(0)
4926 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00004927 }
4928 }
4929 }
4930
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004931 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004932 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004933 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00004934 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00004935}
4936
Evan Chengace3c172008-07-22 21:13:36 +00004937/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
4938/// shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004939static SDValue
Nate Begeman9008ca62009-04-27 18:41:29 +00004940LowerVECTOR_SHUFFLE_4wide(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
4941 SDValue V1 = SVOp->getOperand(0);
4942 SDValue V2 = SVOp->getOperand(1);
4943 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00004944 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00004945
Evan Chengace3c172008-07-22 21:13:36 +00004946 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00004947 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00004948 SmallVector<int, 8> Mask1(4U, -1);
4949 SmallVector<int, 8> PermMask;
4950 SVOp->getMask(PermMask);
4951
Evan Chengace3c172008-07-22 21:13:36 +00004952 unsigned NumHi = 0;
4953 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00004954 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004955 int Idx = PermMask[i];
4956 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00004957 Locs[i] = std::make_pair(-1, -1);
4958 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004959 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
4960 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00004961 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00004962 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004963 NumLo++;
4964 } else {
4965 Locs[i] = std::make_pair(1, NumHi);
4966 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00004967 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004968 NumHi++;
4969 }
4970 }
4971 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004972
Evan Chengace3c172008-07-22 21:13:36 +00004973 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004974 // If no more than two elements come from either vector. This can be
4975 // implemented with two shuffles. First shuffle gather the elements.
4976 // The second shuffle, which takes the first shuffle as both of its
4977 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00004978 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004979
Nate Begeman9008ca62009-04-27 18:41:29 +00004980 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00004981
Evan Chengace3c172008-07-22 21:13:36 +00004982 for (unsigned i = 0; i != 4; ++i) {
4983 if (Locs[i].first == -1)
4984 continue;
4985 else {
4986 unsigned Idx = (i < 2) ? 0 : 4;
4987 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00004988 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004989 }
4990 }
4991
Nate Begeman9008ca62009-04-27 18:41:29 +00004992 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004993 } else if (NumLo == 3 || NumHi == 3) {
4994 // Otherwise, we must have three elements from one vector, call it X, and
4995 // one element from the other, call it Y. First, use a shufps to build an
4996 // intermediate vector with the one element from Y and the element from X
4997 // that will be in the same half in the final destination (the indexes don't
4998 // matter). Then, use a shufps to build the final vector, taking the half
4999 // containing the element from Y from the intermediate, and the other half
5000 // from X.
5001 if (NumHi == 3) {
5002 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00005003 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005004 std::swap(V1, V2);
5005 }
5006
5007 // Find the element from V2.
5008 unsigned HiIndex;
5009 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005010 int Val = PermMask[HiIndex];
5011 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005012 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005013 if (Val >= 4)
5014 break;
5015 }
5016
Nate Begeman9008ca62009-04-27 18:41:29 +00005017 Mask1[0] = PermMask[HiIndex];
5018 Mask1[1] = -1;
5019 Mask1[2] = PermMask[HiIndex^1];
5020 Mask1[3] = -1;
5021 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005022
5023 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005024 Mask1[0] = PermMask[0];
5025 Mask1[1] = PermMask[1];
5026 Mask1[2] = HiIndex & 1 ? 6 : 4;
5027 Mask1[3] = HiIndex & 1 ? 4 : 6;
5028 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005029 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005030 Mask1[0] = HiIndex & 1 ? 2 : 0;
5031 Mask1[1] = HiIndex & 1 ? 0 : 2;
5032 Mask1[2] = PermMask[2];
5033 Mask1[3] = PermMask[3];
5034 if (Mask1[2] >= 0)
5035 Mask1[2] += 4;
5036 if (Mask1[3] >= 0)
5037 Mask1[3] += 4;
5038 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005039 }
Evan Chengace3c172008-07-22 21:13:36 +00005040 }
5041
5042 // Break it into (shuffle shuffle_hi, shuffle_lo).
5043 Locs.clear();
Nate Begeman9008ca62009-04-27 18:41:29 +00005044 SmallVector<int,8> LoMask(4U, -1);
5045 SmallVector<int,8> HiMask(4U, -1);
5046
5047 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00005048 unsigned MaskIdx = 0;
5049 unsigned LoIdx = 0;
5050 unsigned HiIdx = 2;
5051 for (unsigned i = 0; i != 4; ++i) {
5052 if (i == 2) {
5053 MaskPtr = &HiMask;
5054 MaskIdx = 1;
5055 LoIdx = 0;
5056 HiIdx = 2;
5057 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005058 int Idx = PermMask[i];
5059 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005060 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005061 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005062 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005063 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005064 LoIdx++;
5065 } else {
5066 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005067 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005068 HiIdx++;
5069 }
5070 }
5071
Nate Begeman9008ca62009-04-27 18:41:29 +00005072 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5073 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5074 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00005075 for (unsigned i = 0; i != 4; ++i) {
5076 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005077 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00005078 } else {
5079 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005080 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00005081 }
5082 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005083 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00005084}
5085
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005086static bool MayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005087 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005088 V = V.getOperand(0);
5089 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5090 V = V.getOperand(0);
5091 if (MayFoldLoad(V))
5092 return true;
5093 return false;
5094}
5095
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005096// FIXME: the version above should always be used. Since there's
5097// a bug where several vector shuffles can't be folded because the
5098// DAG is not updated during lowering and a node claims to have two
5099// uses while it only has one, use this version, and let isel match
5100// another instruction if the load really happens to have more than
5101// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00005102// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005103static bool RelaxedMayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005104 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005105 V = V.getOperand(0);
5106 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5107 V = V.getOperand(0);
5108 if (ISD::isNormalLoad(V.getNode()))
5109 return true;
5110 return false;
5111}
5112
5113/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5114/// a vector extract, and if both can be later optimized into a single load.
5115/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5116/// here because otherwise a target specific shuffle node is going to be
5117/// emitted for this shuffle, and the optimization not done.
5118/// FIXME: This is probably not the best approach, but fix the problem
5119/// until the right path is decided.
5120static
5121bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5122 const TargetLowering &TLI) {
5123 EVT VT = V.getValueType();
5124 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5125
5126 // Be sure that the vector shuffle is present in a pattern like this:
5127 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5128 if (!V.hasOneUse())
5129 return false;
5130
5131 SDNode *N = *V.getNode()->use_begin();
5132 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5133 return false;
5134
5135 SDValue EltNo = N->getOperand(1);
5136 if (!isa<ConstantSDNode>(EltNo))
5137 return false;
5138
5139 // If the bit convert changed the number of elements, it is unsafe
5140 // to examine the mask.
5141 bool HasShuffleIntoBitcast = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005142 if (V.getOpcode() == ISD::BITCAST) {
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005143 EVT SrcVT = V.getOperand(0).getValueType();
5144 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5145 return false;
5146 V = V.getOperand(0);
5147 HasShuffleIntoBitcast = true;
5148 }
5149
5150 // Select the input vector, guarding against out of range extract vector.
5151 unsigned NumElems = VT.getVectorNumElements();
5152 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5153 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5154 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5155
5156 // Skip one more bit_convert if necessary
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005157 if (V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005158 V = V.getOperand(0);
5159
5160 if (ISD::isNormalLoad(V.getNode())) {
5161 // Is the original load suitable?
5162 LoadSDNode *LN0 = cast<LoadSDNode>(V);
5163
5164 // FIXME: avoid the multi-use bug that is preventing lots of
5165 // of foldings to be detected, this is still wrong of course, but
5166 // give the temporary desired behavior, and if it happens that
5167 // the load has real more uses, during isel it will not fold, and
5168 // will generate poor code.
5169 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
5170 return false;
5171
5172 if (!HasShuffleIntoBitcast)
5173 return true;
5174
5175 // If there's a bitcast before the shuffle, check if the load type and
5176 // alignment is valid.
5177 unsigned Align = LN0->getAlignment();
5178 unsigned NewAlign =
5179 TLI.getTargetData()->getABITypeAlignment(
5180 VT.getTypeForEVT(*DAG.getContext()));
5181
5182 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
5183 return false;
5184 }
5185
5186 return true;
5187}
5188
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005189static
Evan Cheng835580f2010-10-07 20:50:20 +00005190SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
5191 EVT VT = Op.getValueType();
5192
5193 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005194 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
5195 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00005196 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
5197 V1, DAG));
5198}
5199
5200static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005201SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
5202 bool HasSSE2) {
5203 SDValue V1 = Op.getOperand(0);
5204 SDValue V2 = Op.getOperand(1);
5205 EVT VT = Op.getValueType();
5206
5207 assert(VT != MVT::v2i64 && "unsupported shuffle type");
5208
5209 if (HasSSE2 && VT == MVT::v2f64)
5210 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
5211
5212 // v4f32 or v4i32
5213 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
5214}
5215
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005216static
5217SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
5218 SDValue V1 = Op.getOperand(0);
5219 SDValue V2 = Op.getOperand(1);
5220 EVT VT = Op.getValueType();
5221
5222 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
5223 "unsupported shuffle type");
5224
5225 if (V2.getOpcode() == ISD::UNDEF)
5226 V2 = V1;
5227
5228 // v4i32 or v4f32
5229 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
5230}
5231
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005232static
5233SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
5234 SDValue V1 = Op.getOperand(0);
5235 SDValue V2 = Op.getOperand(1);
5236 EVT VT = Op.getValueType();
5237 unsigned NumElems = VT.getVectorNumElements();
5238
5239 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
5240 // operand of these instructions is only memory, so check if there's a
5241 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
5242 // same masks.
5243 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005244
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00005245 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005246 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005247 CanFoldLoad = true;
5248
5249 // When V1 is a load, it can be folded later into a store in isel, example:
5250 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
5251 // turns into:
5252 // (MOVLPSmr addr:$src1, VR128:$src2)
5253 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005254 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005255 CanFoldLoad = true;
5256
5257 if (CanFoldLoad) {
5258 if (HasSSE2 && NumElems == 2)
5259 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
5260
5261 if (NumElems == 4)
5262 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
5263 }
5264
5265 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5266 // movl and movlp will both match v2i64, but v2i64 is never matched by
5267 // movl earlier because we make it strict to avoid messing with the movlp load
5268 // folding logic (see the code above getMOVLP call). Match it here then,
5269 // this is horrible, but will stay like this until we move all shuffle
5270 // matching to x86 specific nodes. Note that for the 1st condition all
5271 // types are matched with movsd.
5272 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
5273 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5274 else if (HasSSE2)
5275 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5276
5277
5278 assert(VT != MVT::v4i32 && "unsupported shuffle type");
5279
5280 // Invert the operand order and use SHUFPS to match it.
5281 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
5282 X86::getShuffleSHUFImmediate(SVOp), DAG);
5283}
5284
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005285static inline unsigned getUNPCKLOpcode(EVT VT) {
5286 switch(VT.getSimpleVT().SimpleTy) {
5287 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
5288 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
5289 case MVT::v4f32: return X86ISD::UNPCKLPS;
5290 case MVT::v2f64: return X86ISD::UNPCKLPD;
5291 case MVT::v16i8: return X86ISD::PUNPCKLBW;
5292 case MVT::v8i16: return X86ISD::PUNPCKLWD;
5293 default:
5294 llvm_unreachable("Unknow type for unpckl");
5295 }
5296 return 0;
5297}
5298
5299static inline unsigned getUNPCKHOpcode(EVT VT) {
5300 switch(VT.getSimpleVT().SimpleTy) {
5301 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
5302 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
5303 case MVT::v4f32: return X86ISD::UNPCKHPS;
5304 case MVT::v2f64: return X86ISD::UNPCKHPD;
5305 case MVT::v16i8: return X86ISD::PUNPCKHBW;
5306 case MVT::v8i16: return X86ISD::PUNPCKHWD;
5307 default:
5308 llvm_unreachable("Unknow type for unpckh");
5309 }
5310 return 0;
5311}
5312
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005313static
5314SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005315 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005316 const X86Subtarget *Subtarget) {
5317 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5318 EVT VT = Op.getValueType();
5319 DebugLoc dl = Op.getDebugLoc();
5320 SDValue V1 = Op.getOperand(0);
5321 SDValue V2 = Op.getOperand(1);
5322
5323 if (isZeroShuffle(SVOp))
5324 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
5325
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005326 // Handle splat operations
5327 if (SVOp->isSplat()) {
5328 // Special case, this is the only place now where it's
5329 // allowed to return a vector_shuffle operation without
5330 // using a target specific node, because *hopefully* it
5331 // will be optimized away by the dag combiner.
5332 if (VT.getVectorNumElements() <= 4 &&
5333 CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
5334 return Op;
5335
5336 // Handle splats by matching through known masks
5337 if (VT.getVectorNumElements() <= 4)
5338 return SDValue();
5339
Evan Cheng835580f2010-10-07 20:50:20 +00005340 // Canonicalize all of the remaining to v4f32.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005341 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005342 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005343
5344 // If the shuffle can be profitably rewritten as a narrower shuffle, then
5345 // do it!
5346 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
5347 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5348 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005349 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005350 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
5351 // FIXME: Figure out a cleaner way to do this.
5352 // Try to make use of movq to zero out the top part.
5353 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
5354 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5355 if (NewOp.getNode()) {
5356 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
5357 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
5358 DAG, Subtarget, dl);
5359 }
5360 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
5361 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5362 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
5363 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
5364 DAG, Subtarget, dl);
5365 }
5366 }
5367 return SDValue();
5368}
5369
Dan Gohman475871a2008-07-27 21:46:04 +00005370SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005371X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00005372 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005373 SDValue V1 = Op.getOperand(0);
5374 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005375 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005376 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00005377 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005378 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005379 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
5380 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00005381 bool V1IsSplat = false;
5382 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005383 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005384 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005385 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005386 MachineFunction &MF = DAG.getMachineFunction();
5387 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005388
Dale Johannesen0488fb62010-09-30 23:57:10 +00005389 // Shuffle operations on MMX not supported.
5390 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00005391 return Op;
5392
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005393 // Vector shuffle lowering takes 3 steps:
5394 //
5395 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
5396 // narrowing and commutation of operands should be handled.
5397 // 2) Matching of shuffles with known shuffle masks to x86 target specific
5398 // shuffle nodes.
5399 // 3) Rewriting of unmatched masks into new generic shuffle operations,
5400 // so the shuffle can be broken into other shuffles and the legalizer can
5401 // try the lowering again.
5402 //
5403 // The general ideia is that no vector_shuffle operation should be left to
5404 // be matched during isel, all of them must be converted to a target specific
5405 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00005406
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005407 // Normalize the input vectors. Here splats, zeroed vectors, profitable
5408 // narrowing and commutation of operands should be handled. The actual code
5409 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005410 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005411 if (NewOp.getNode())
5412 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00005413
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005414 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
5415 // unpckh_undef). Only use pshufd if speed is more important than size.
5416 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
5417 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5418 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
5419 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
5420 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5421 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00005422
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005423 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00005424 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00005425 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005426
Dale Johannesen0488fb62010-09-30 23:57:10 +00005427 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005428 return getMOVHighToLow(Op, dl, DAG);
5429
5430 // Use to match splats
5431 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
5432 (VT == MVT::v2f64 || VT == MVT::v2i64))
5433 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5434
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005435 if (X86::isPSHUFDMask(SVOp)) {
5436 // The actual implementation will match the mask in the if above and then
5437 // during isel it can match several different instructions, not only pshufd
5438 // as its name says, sad but true, emulate the behavior for now...
5439 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
5440 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
5441
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005442 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5443
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005444 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005445 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
5446
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005447 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005448 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
5449 TargetMask, DAG);
5450
5451 if (VT == MVT::v4f32)
5452 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
5453 TargetMask, DAG);
5454 }
Eric Christopherfd179292009-08-27 18:07:15 +00005455
Evan Chengf26ffe92008-05-29 08:22:04 +00005456 // Check if this can be converted into a logical shift.
5457 bool isLeft = false;
5458 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00005459 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00005460 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00005461 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00005462 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005463 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00005464 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005465 EVT EltVT = VT.getVectorElementType();
5466 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005467 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005468 }
Eric Christopherfd179292009-08-27 18:07:15 +00005469
Nate Begeman9008ca62009-04-27 18:41:29 +00005470 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005471 if (V1IsUndef)
5472 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00005473 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00005474 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00005475 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005476 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005477 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5478
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005479 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005480 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5481 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00005482 }
Eric Christopherfd179292009-08-27 18:07:15 +00005483
Nate Begeman9008ca62009-04-27 18:41:29 +00005484 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00005485 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
5486 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005487
Dale Johannesen0488fb62010-09-30 23:57:10 +00005488 if (X86::isMOVHLPSMask(SVOp))
5489 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005490
Dale Johannesen0488fb62010-09-30 23:57:10 +00005491 if (X86::isMOVSHDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5492 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005493
Dale Johannesen0488fb62010-09-30 23:57:10 +00005494 if (X86::isMOVSLDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5495 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00005496
Dale Johannesen0488fb62010-09-30 23:57:10 +00005497 if (X86::isMOVLPMask(SVOp))
5498 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005499
Nate Begeman9008ca62009-04-27 18:41:29 +00005500 if (ShouldXformToMOVHLPS(SVOp) ||
5501 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
5502 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005503
Evan Chengf26ffe92008-05-29 08:22:04 +00005504 if (isShift) {
5505 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005506 EVT EltVT = VT.getVectorElementType();
5507 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005508 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005509 }
Eric Christopherfd179292009-08-27 18:07:15 +00005510
Evan Cheng9eca5e82006-10-25 21:49:50 +00005511 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00005512 // FIXME: This should also accept a bitcast of a splat? Be careful, not
5513 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00005514 V1IsSplat = isSplatVector(V1.getNode());
5515 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005516
Chris Lattner8a594482007-11-25 00:24:49 +00005517 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00005518 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005519 Op = CommuteVectorShuffle(SVOp, DAG);
5520 SVOp = cast<ShuffleVectorSDNode>(Op);
5521 V1 = SVOp->getOperand(0);
5522 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00005523 std::swap(V1IsSplat, V2IsSplat);
5524 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005525 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00005526 }
5527
Nate Begeman9008ca62009-04-27 18:41:29 +00005528 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
5529 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00005530 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00005531 return V1;
5532 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
5533 // the instruction selector will not match, so get a canonical MOVL with
5534 // swapped operands to undo the commute.
5535 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00005536 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005537
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005538 if (X86::isUNPCKLMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005539 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005540
5541 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005542 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00005543
Evan Cheng9bbbb982006-10-25 20:48:19 +00005544 if (V2IsSplat) {
5545 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00005546 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00005547 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00005548 SDValue NewMask = NormalizeMask(SVOp, DAG);
5549 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
5550 if (NSVOp != SVOp) {
5551 if (X86::isUNPCKLMask(NSVOp, true)) {
5552 return NewMask;
5553 } else if (X86::isUNPCKHMask(NSVOp, true)) {
5554 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005555 }
5556 }
5557 }
5558
Evan Cheng9eca5e82006-10-25 21:49:50 +00005559 if (Commuted) {
5560 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00005561 // FIXME: this seems wrong.
5562 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
5563 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005564
5565 if (X86::isUNPCKLMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005566 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005567
5568 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005569 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005570 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005571
Nate Begeman9008ca62009-04-27 18:41:29 +00005572 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00005573 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00005574 return CommuteVectorShuffle(SVOp, DAG);
5575
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00005576 // The checks below are all present in isShuffleMaskLegal, but they are
5577 // inlined here right now to enable us to directly emit target specific
5578 // nodes, and remove one by one until they don't return Op anymore.
5579 SmallVector<int, 16> M;
5580 SVOp->getMask(M);
5581
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005582 if (isPALIGNRMask(M, VT, HasSSSE3))
5583 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
5584 X86::getShufflePALIGNRImmediate(SVOp),
5585 DAG);
5586
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00005587 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
5588 SVOp->getSplatIndex() == 0 && V2IsUndef) {
5589 if (VT == MVT::v2f64)
5590 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
5591 if (VT == MVT::v2i64)
5592 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
5593 }
5594
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00005595 if (isPSHUFHWMask(M, VT))
5596 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
5597 X86::getShufflePSHUFHWImmediate(SVOp),
5598 DAG);
5599
5600 if (isPSHUFLWMask(M, VT))
5601 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
5602 X86::getShufflePSHUFLWImmediate(SVOp),
5603 DAG);
5604
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00005605 if (isSHUFPMask(M, VT)) {
5606 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5607 if (VT == MVT::v4f32 || VT == MVT::v4i32)
5608 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
5609 TargetMask, DAG);
5610 if (VT == MVT::v2f64 || VT == MVT::v2i64)
5611 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
5612 TargetMask, DAG);
5613 }
5614
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005615 if (X86::isUNPCKL_v_undef_Mask(SVOp))
5616 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5617 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
5618 if (X86::isUNPCKH_v_undef_Mask(SVOp))
5619 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5620 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5621
Evan Cheng14b32e12007-12-11 01:46:18 +00005622 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
Owen Anderson825b72b2009-08-11 20:47:22 +00005623 if (VT == MVT::v8i16) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005624 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005625 if (NewOp.getNode())
Evan Cheng14b32e12007-12-11 01:46:18 +00005626 return NewOp;
5627 }
5628
Owen Anderson825b72b2009-08-11 20:47:22 +00005629 if (VT == MVT::v16i8) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005630 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005631 if (NewOp.getNode())
5632 return NewOp;
5633 }
Eric Christopherfd179292009-08-27 18:07:15 +00005634
Dale Johannesen0488fb62010-09-30 23:57:10 +00005635 // Handle all 4 wide cases with a number of shuffles.
5636 if (NumElems == 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005637 return LowerVECTOR_SHUFFLE_4wide(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005638
Dan Gohman475871a2008-07-27 21:46:04 +00005639 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005640}
5641
Dan Gohman475871a2008-07-27 21:46:04 +00005642SDValue
5643X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00005644 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005645 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005646 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005647 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005648 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005649 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005650 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005651 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005652 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005653 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00005654 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
5655 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
5656 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005657 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
5658 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005659 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005660 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00005661 Op.getOperand(0)),
5662 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00005663 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005664 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005665 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005666 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005667 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00005668 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00005669 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
5670 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005671 // result has a single use which is a store or a bitcast to i32. And in
5672 // the case of a store, it's not worth it if the index is a constant 0,
5673 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00005674 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00005675 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00005676 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005677 if ((User->getOpcode() != ISD::STORE ||
5678 (isa<ConstantSDNode>(Op.getOperand(1)) &&
5679 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005680 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00005681 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00005682 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00005683 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005684 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00005685 Op.getOperand(0)),
5686 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005687 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Owen Anderson825b72b2009-08-11 20:47:22 +00005688 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00005689 // ExtractPS works with constant index.
5690 if (isa<ConstantSDNode>(Op.getOperand(1)))
5691 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00005692 }
Dan Gohman475871a2008-07-27 21:46:04 +00005693 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005694}
5695
5696
Dan Gohman475871a2008-07-27 21:46:04 +00005697SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005698X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
5699 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005700 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00005701 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005702
Evan Cheng62a3f152008-03-24 21:52:23 +00005703 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005704 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005705 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00005706 return Res;
5707 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00005708
Owen Andersone50ed302009-08-10 22:56:29 +00005709 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005710 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005711 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005712 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005713 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005714 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005715 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005716 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
5717 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005718 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005719 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00005720 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005721 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00005722 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00005723 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00005724 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00005725 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00005726 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005727 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005728 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005729 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005730 if (Idx == 0)
5731 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00005732
Evan Cheng0db9fe62006-04-25 20:13:52 +00005733 // SHUFPS the element to the lowest double word, then movss.
Nate Begeman9008ca62009-04-27 18:41:29 +00005734 int Mask[4] = { Idx, -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00005735 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00005736 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00005737 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00005738 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00005739 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00005740 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00005741 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
5742 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
5743 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005744 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005745 if (Idx == 0)
5746 return Op;
5747
5748 // UNPCKHPD the element to the lowest double word, then movsd.
5749 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
5750 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00005751 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00005752 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00005753 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00005754 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00005755 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00005756 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005757 }
5758
Dan Gohman475871a2008-07-27 21:46:04 +00005759 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005760}
5761
Dan Gohman475871a2008-07-27 21:46:04 +00005762SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005763X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
5764 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005765 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00005766 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005767 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005768
Dan Gohman475871a2008-07-27 21:46:04 +00005769 SDValue N0 = Op.getOperand(0);
5770 SDValue N1 = Op.getOperand(1);
5771 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00005772
Dan Gohman8a55ce42009-09-23 21:02:20 +00005773 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00005774 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00005775 unsigned Opc;
5776 if (VT == MVT::v8i16)
5777 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00005778 else if (VT == MVT::v16i8)
5779 Opc = X86ISD::PINSRB;
5780 else
5781 Opc = X86ISD::PINSRB;
5782
Nate Begeman14d12ca2008-02-11 04:19:36 +00005783 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
5784 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00005785 if (N1.getValueType() != MVT::i32)
5786 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
5787 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005788 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00005789 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00005790 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00005791 // Bits [7:6] of the constant are the source select. This will always be
5792 // zero here. The DAG Combiner may combine an extract_elt index into these
5793 // bits. For example (insert (extract, 3), 2) could be matched by putting
5794 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00005795 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00005796 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00005797 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00005798 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005799 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00005800 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00005801 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00005802 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00005803 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00005804 // PINSR* works with constant index.
5805 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00005806 }
Dan Gohman475871a2008-07-27 21:46:04 +00005807 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005808}
5809
Dan Gohman475871a2008-07-27 21:46:04 +00005810SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005811X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005812 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00005813 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005814
5815 if (Subtarget->hasSSE41())
5816 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
5817
Dan Gohman8a55ce42009-09-23 21:02:20 +00005818 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00005819 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00005820
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005821 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00005822 SDValue N0 = Op.getOperand(0);
5823 SDValue N1 = Op.getOperand(1);
5824 SDValue N2 = Op.getOperand(2);
Evan Cheng794405e2007-12-12 07:55:34 +00005825
Dan Gohman8a55ce42009-09-23 21:02:20 +00005826 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00005827 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
5828 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00005829 if (N1.getValueType() != MVT::i32)
5830 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
5831 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005832 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00005833 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005834 }
Dan Gohman475871a2008-07-27 21:46:04 +00005835 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005836}
5837
Dan Gohman475871a2008-07-27 21:46:04 +00005838SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005839X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005840 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00005841
Chris Lattnerf172ecd2010-07-04 23:07:25 +00005842 if (Op.getValueType() == MVT::v1i64 &&
5843 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00005844 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00005845
Owen Anderson825b72b2009-08-11 20:47:22 +00005846 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00005847 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
5848 "Expected an SSE type!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005849 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00005850 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005851}
5852
Bill Wendling056292f2008-09-16 21:48:12 +00005853// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
5854// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
5855// one of the above mentioned nodes. It has to be wrapped because otherwise
5856// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
5857// be used to form addressing mode. These wrapped nodes will be selected
5858// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00005859SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005860X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005861 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00005862
Chris Lattner41621a22009-06-26 19:22:52 +00005863 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5864 // global base reg.
5865 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00005866 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005867 CodeModel::Model M = getTargetMachine().getCodeModel();
5868
Chris Lattner4f066492009-07-11 20:29:19 +00005869 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005870 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005871 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005872 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005873 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005874 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005875 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005876
Evan Cheng1606e8e2009-03-13 07:51:59 +00005877 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00005878 CP->getAlignment(),
5879 CP->getOffset(), OpFlag);
5880 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00005881 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005882 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00005883 if (OpFlag) {
5884 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005885 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005886 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005887 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005888 }
5889
5890 return Result;
5891}
5892
Dan Gohmand858e902010-04-17 15:26:15 +00005893SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00005894 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00005895
Chris Lattner18c59872009-06-27 04:16:01 +00005896 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5897 // global base reg.
5898 unsigned char OpFlag = 0;
5899 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005900 CodeModel::Model M = getTargetMachine().getCodeModel();
5901
Chris Lattner4f066492009-07-11 20:29:19 +00005902 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005903 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005904 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005905 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005906 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005907 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005908 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005909
Chris Lattner18c59872009-06-27 04:16:01 +00005910 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
5911 OpFlag);
5912 DebugLoc DL = JT->getDebugLoc();
5913 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005914
Chris Lattner18c59872009-06-27 04:16:01 +00005915 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00005916 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00005917 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
5918 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005919 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00005920 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005921
Chris Lattner18c59872009-06-27 04:16:01 +00005922 return Result;
5923}
5924
5925SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005926X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00005927 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00005928
Chris Lattner18c59872009-06-27 04:16:01 +00005929 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5930 // global base reg.
5931 unsigned char OpFlag = 0;
5932 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005933 CodeModel::Model M = getTargetMachine().getCodeModel();
5934
Chris Lattner4f066492009-07-11 20:29:19 +00005935 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005936 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005937 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005938 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005939 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005940 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005941 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005942
Chris Lattner18c59872009-06-27 04:16:01 +00005943 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00005944
Chris Lattner18c59872009-06-27 04:16:01 +00005945 DebugLoc DL = Op.getDebugLoc();
5946 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005947
5948
Chris Lattner18c59872009-06-27 04:16:01 +00005949 // With PIC, the address is actually $g + Offset.
5950 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00005951 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00005952 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
5953 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005954 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00005955 Result);
5956 }
Eric Christopherfd179292009-08-27 18:07:15 +00005957
Chris Lattner18c59872009-06-27 04:16:01 +00005958 return Result;
5959}
5960
Dan Gohman475871a2008-07-27 21:46:04 +00005961SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005962X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00005963 // Create the TargetBlockAddressAddress node.
5964 unsigned char OpFlags =
5965 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00005966 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00005967 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00005968 DebugLoc dl = Op.getDebugLoc();
5969 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
5970 /*isTarget=*/true, OpFlags);
5971
Dan Gohmanf705adb2009-10-30 01:28:02 +00005972 if (Subtarget->isPICStyleRIPRel() &&
5973 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00005974 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
5975 else
5976 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00005977
Dan Gohman29cbade2009-11-20 23:18:13 +00005978 // With PIC, the address is actually $g + Offset.
5979 if (isGlobalRelativeToPICBase(OpFlags)) {
5980 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
5981 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
5982 Result);
5983 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00005984
5985 return Result;
5986}
5987
5988SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00005989X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00005990 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00005991 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00005992 // Create the TargetGlobalAddress node, folding in the constant
5993 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00005994 unsigned char OpFlags =
5995 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005996 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00005997 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005998 if (OpFlags == X86II::MO_NO_FLAG &&
5999 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00006000 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00006001 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00006002 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006003 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00006004 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006005 }
Eric Christopherfd179292009-08-27 18:07:15 +00006006
Chris Lattner4f066492009-07-11 20:29:19 +00006007 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006008 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00006009 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6010 else
6011 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00006012
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006013 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00006014 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006015 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6016 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006017 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006018 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006019
Chris Lattner36c25012009-07-10 07:34:39 +00006020 // For globals that require a load from a stub to get the address, emit the
6021 // load.
6022 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00006023 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006024 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006025
Dan Gohman6520e202008-10-18 02:06:02 +00006026 // If there was a non-zero offset that we didn't fold, create an explicit
6027 // addition for it.
6028 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006029 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00006030 DAG.getConstant(Offset, getPointerTy()));
6031
Evan Cheng0db9fe62006-04-25 20:13:52 +00006032 return Result;
6033}
6034
Evan Chengda43bcf2008-09-24 00:05:32 +00006035SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006036X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00006037 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00006038 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006039 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00006040}
6041
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006042static SDValue
6043GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00006044 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00006045 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006046 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Owen Anderson825b72b2009-08-11 20:47:22 +00006047 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006048 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006049 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006050 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006051 GA->getOffset(),
6052 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006053 if (InFlag) {
6054 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006055 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006056 } else {
6057 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006058 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006059 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006060
6061 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00006062 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006063
Rafael Espindola15f1b662009-04-24 12:59:40 +00006064 SDValue Flag = Chain.getValue(1);
6065 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006066}
6067
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006068// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006069static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006070LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006071 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00006072 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00006073 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
6074 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006075 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006076 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006077 InFlag = Chain.getValue(1);
6078
Chris Lattnerb903bed2009-06-26 21:20:29 +00006079 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006080}
6081
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006082// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006083static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006084LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006085 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006086 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
6087 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006088}
6089
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006090// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
6091// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00006092static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006093 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00006094 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006095 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00006096
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006097 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
6098 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
6099 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00006100
Michael J. Spencerec38de22010-10-10 22:04:20 +00006101 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006102 DAG.getIntPtrConstant(0),
6103 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00006104
Chris Lattnerb903bed2009-06-26 21:20:29 +00006105 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006106 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
6107 // initialexec.
6108 unsigned WrapperKind = X86ISD::Wrapper;
6109 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006110 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00006111 } else if (is64Bit) {
6112 assert(model == TLSModel::InitialExec);
6113 OperandFlags = X86II::MO_GOTTPOFF;
6114 WrapperKind = X86ISD::WrapperRIP;
6115 } else {
6116 assert(model == TLSModel::InitialExec);
6117 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00006118 }
Eric Christopherfd179292009-08-27 18:07:15 +00006119
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006120 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
6121 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00006122 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00006123 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006124 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006125 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006126
Rafael Espindola9a580232009-02-27 13:37:18 +00006127 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006128 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006129 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006130
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006131 // The address of the thread local variable is the add of the thread
6132 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00006133 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006134}
6135
Dan Gohman475871a2008-07-27 21:46:04 +00006136SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006137X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00006138
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006139 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00006140 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00006141
Eric Christopher30ef0e52010-06-03 04:07:48 +00006142 if (Subtarget->isTargetELF()) {
6143 // TODO: implement the "local dynamic" model
6144 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00006145
Eric Christopher30ef0e52010-06-03 04:07:48 +00006146 // If GV is an alias then use the aliasee for determining
6147 // thread-localness.
6148 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
6149 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006150
6151 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00006152 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006153
Eric Christopher30ef0e52010-06-03 04:07:48 +00006154 switch (model) {
6155 case TLSModel::GeneralDynamic:
6156 case TLSModel::LocalDynamic: // not implemented
6157 if (Subtarget->is64Bit())
6158 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
6159 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006160
Eric Christopher30ef0e52010-06-03 04:07:48 +00006161 case TLSModel::InitialExec:
6162 case TLSModel::LocalExec:
6163 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
6164 Subtarget->is64Bit());
6165 }
6166 } else if (Subtarget->isTargetDarwin()) {
6167 // Darwin only has one model of TLS. Lower to that.
6168 unsigned char OpFlag = 0;
6169 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
6170 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006171
Eric Christopher30ef0e52010-06-03 04:07:48 +00006172 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6173 // global base reg.
6174 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
6175 !Subtarget->is64Bit();
6176 if (PIC32)
6177 OpFlag = X86II::MO_TLVP_PIC_BASE;
6178 else
6179 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006180 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006181 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopher30ef0e52010-06-03 04:07:48 +00006182 getPointerTy(),
6183 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00006184 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006185
Eric Christopher30ef0e52010-06-03 04:07:48 +00006186 // With PIC32, the address is actually $g + Offset.
6187 if (PIC32)
6188 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6189 DAG.getNode(X86ISD::GlobalBaseReg,
6190 DebugLoc(), getPointerTy()),
6191 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006192
Eric Christopher30ef0e52010-06-03 04:07:48 +00006193 // Lowering the machine isd will make sure everything is in the right
6194 // location.
6195 SDValue Args[] = { Offset };
6196 SDValue Chain = DAG.getNode(X86ISD::TLSCALL, DL, MVT::Other, Args, 1);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006197
Eric Christopher30ef0e52010-06-03 04:07:48 +00006198 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
6199 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6200 MFI->setAdjustsStack(true);
Eric Christopherfd179292009-08-27 18:07:15 +00006201
Eric Christopher30ef0e52010-06-03 04:07:48 +00006202 // And our return value (tls address) is in the standard call return value
6203 // location.
6204 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
6205 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006206 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006207
Eric Christopher30ef0e52010-06-03 04:07:48 +00006208 assert(false &&
6209 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00006210
Torok Edwinc23197a2009-07-14 16:55:14 +00006211 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00006212 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006213}
6214
Evan Cheng0db9fe62006-04-25 20:13:52 +00006215
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006216/// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00006217/// take a 2 x i32 value to shift plus a shift amount.
Dan Gohmand858e902010-04-17 15:26:15 +00006218SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00006219 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00006220 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006221 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006222 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006223 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00006224 SDValue ShOpLo = Op.getOperand(0);
6225 SDValue ShOpHi = Op.getOperand(1);
6226 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00006227 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00006228 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00006229 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00006230
Dan Gohman475871a2008-07-27 21:46:04 +00006231 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006232 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006233 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
6234 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006235 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006236 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
6237 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006238 }
Evan Chenge3413162006-01-09 18:33:28 +00006239
Owen Anderson825b72b2009-08-11 20:47:22 +00006240 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
6241 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00006242 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00006243 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00006244
Dan Gohman475871a2008-07-27 21:46:04 +00006245 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00006246 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00006247 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
6248 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00006249
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006250 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006251 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6252 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006253 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006254 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6255 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006256 }
6257
Dan Gohman475871a2008-07-27 21:46:04 +00006258 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00006259 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006260}
Evan Chenga3195e82006-01-12 22:54:21 +00006261
Dan Gohmand858e902010-04-17 15:26:15 +00006262SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
6263 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006264 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00006265
Dale Johannesen0488fb62010-09-30 23:57:10 +00006266 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006267 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006268
Owen Anderson825b72b2009-08-11 20:47:22 +00006269 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00006270 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00006271
Eli Friedman36df4992009-05-27 00:47:34 +00006272 // These are really Legal; return the operand so the caller accepts it as
6273 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006274 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00006275 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00006276 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00006277 Subtarget->is64Bit()) {
6278 return Op;
6279 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006280
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006281 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006282 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006283 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00006284 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006285 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00006286 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00006287 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006288 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006289 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006290 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
6291}
Evan Cheng0db9fe62006-04-25 20:13:52 +00006292
Owen Andersone50ed302009-08-10 22:56:29 +00006293SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00006294 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00006295 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006296 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00006297 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00006298 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00006299 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006300 if (useSSE)
Owen Anderson825b72b2009-08-11 20:47:22 +00006301 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
Chris Lattner5a88b832007-02-25 07:10:00 +00006302 else
Owen Anderson825b72b2009-08-11 20:47:22 +00006303 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006304
Chris Lattner492a43e2010-09-22 01:28:21 +00006305 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006306
Chris Lattner492a43e2010-09-22 01:28:21 +00006307 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6308 MachineMemOperand *MMO =
6309 DAG.getMachineFunction()
6310 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6311 MachineMemOperand::MOLoad, ByteSize, ByteSize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006312
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006313 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006314 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
6315 X86ISD::FILD, DL,
6316 Tys, Ops, array_lengthof(Ops),
6317 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006318
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006319 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006320 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00006321 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006322
6323 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
6324 // shouldn't be necessary except that RFP cannot be live across
6325 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006326 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006327 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
6328 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006329 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00006330 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006331 SDValue Ops[] = {
6332 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
6333 };
Chris Lattner492a43e2010-09-22 01:28:21 +00006334 MachineMemOperand *MMO =
6335 DAG.getMachineFunction()
6336 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006337 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006338
Chris Lattner492a43e2010-09-22 01:28:21 +00006339 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
6340 Ops, array_lengthof(Ops),
6341 Op.getValueType(), MMO);
6342 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006343 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006344 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006345 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006346
Evan Cheng0db9fe62006-04-25 20:13:52 +00006347 return Result;
6348}
6349
Bill Wendling8b8a6362009-01-17 03:56:04 +00006350// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006351SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
6352 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00006353 // This algorithm is not obvious. Here it is in C code, more or less:
6354 /*
6355 double uint64_to_double( uint32_t hi, uint32_t lo ) {
6356 static const __m128i exp = { 0x4330000045300000ULL, 0 };
6357 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00006358
Bill Wendling8b8a6362009-01-17 03:56:04 +00006359 // Copy ints to xmm registers.
6360 __m128i xh = _mm_cvtsi32_si128( hi );
6361 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00006362
Bill Wendling8b8a6362009-01-17 03:56:04 +00006363 // Combine into low half of a single xmm register.
6364 __m128i x = _mm_unpacklo_epi32( xh, xl );
6365 __m128d d;
6366 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00006367
Bill Wendling8b8a6362009-01-17 03:56:04 +00006368 // Merge in appropriate exponents to give the integer bits the right
6369 // magnitude.
6370 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00006371
Bill Wendling8b8a6362009-01-17 03:56:04 +00006372 // Subtract away the biases to deal with the IEEE-754 double precision
6373 // implicit 1.
6374 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00006375
Bill Wendling8b8a6362009-01-17 03:56:04 +00006376 // All conversions up to here are exact. The correctly rounded result is
6377 // calculated using the current rounding mode using the following
6378 // horizontal add.
6379 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
6380 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
6381 // store doesn't really need to be here (except
6382 // maybe to zero the other double)
6383 return sd;
6384 }
6385 */
Dale Johannesen040225f2008-10-21 23:07:49 +00006386
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006387 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00006388 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00006389
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006390 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00006391 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00006392 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
6393 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
6394 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
6395 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006396 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006397 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006398
Bill Wendling8b8a6362009-01-17 03:56:04 +00006399 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00006400 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006401 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00006402 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006403 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006404 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006405 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006406
Owen Anderson825b72b2009-08-11 20:47:22 +00006407 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6408 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006409 Op.getOperand(0),
6410 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006411 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6412 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006413 Op.getOperand(0),
6414 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006415 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
6416 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00006417 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006418 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006419 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006420 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
Owen Anderson825b72b2009-08-11 20:47:22 +00006421 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00006422 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006423 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006424 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006425
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006426 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00006427 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00006428 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
6429 DAG.getUNDEF(MVT::v2f64), ShufMask);
6430 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
6431 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006432 DAG.getIntPtrConstant(0));
6433}
6434
Bill Wendling8b8a6362009-01-17 03:56:04 +00006435// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006436SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
6437 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006438 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006439 // FP constant to bias correct the final result.
6440 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00006441 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006442
6443 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00006444 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6445 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling8b8a6362009-01-17 03:56:04 +00006446 Op.getOperand(0),
6447 DAG.getIntPtrConstant(0)));
6448
Owen Anderson825b72b2009-08-11 20:47:22 +00006449 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006450 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006451 DAG.getIntPtrConstant(0));
6452
6453 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006454 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006455 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006456 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006457 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006458 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006459 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006460 MVT::v2f64, Bias)));
6461 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006462 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006463 DAG.getIntPtrConstant(0));
6464
6465 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006466 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006467
6468 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00006469 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00006470
Owen Anderson825b72b2009-08-11 20:47:22 +00006471 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006472 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00006473 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00006474 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006475 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00006476 }
6477
6478 // Handle final rounding.
6479 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00006480}
6481
Dan Gohmand858e902010-04-17 15:26:15 +00006482SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
6483 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00006484 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006485 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006486
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006487 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00006488 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
6489 // the optimization here.
6490 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00006491 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00006492
Owen Andersone50ed302009-08-10 22:56:29 +00006493 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006494 EVT DstVT = Op.getValueType();
6495 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006496 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006497 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006498 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00006499
6500 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00006501 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006502 if (SrcVT == MVT::i32) {
6503 SDValue WordOff = DAG.getConstant(4, getPointerTy());
6504 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
6505 getPointerTy(), StackSlot, WordOff);
6506 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006507 StackSlot, MachinePointerInfo(),
6508 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006509 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006510 OffsetSlot, MachinePointerInfo(),
6511 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006512 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
6513 return Fild;
6514 }
6515
6516 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
6517 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006518 StackSlot, MachinePointerInfo(),
6519 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006520 // For i64 source, we need to add the appropriate power of 2 if the input
6521 // was negative. This is the same as the optimization in
6522 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
6523 // we must be careful to do the computation in x87 extended precision, not
6524 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00006525 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6526 MachineMemOperand *MMO =
6527 DAG.getMachineFunction()
6528 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6529 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006530
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006531 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
6532 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006533 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
6534 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006535
6536 APInt FF(32, 0x5F800000ULL);
6537
6538 // Check whether the sign bit is set.
6539 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
6540 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
6541 ISD::SETLT);
6542
6543 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
6544 SDValue FudgePtr = DAG.getConstantPool(
6545 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
6546 getPointerTy());
6547
6548 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
6549 SDValue Zero = DAG.getIntPtrConstant(0);
6550 SDValue Four = DAG.getIntPtrConstant(4);
6551 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
6552 Zero, Four);
6553 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
6554
6555 // Load the value out, extending it from f32 to f80.
6556 // FIXME: Avoid the extend by constructing the right constant pool?
Evan Chengbcc80172010-07-07 22:15:37 +00006557 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, MVT::f80, dl, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00006558 FudgePtr, MachinePointerInfo::getConstantPool(),
6559 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006560 // Extend everything to 80 bits to force it to be done on x87.
6561 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
6562 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00006563}
6564
Dan Gohman475871a2008-07-27 21:46:04 +00006565std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00006566FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00006567 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00006568
Owen Andersone50ed302009-08-10 22:56:29 +00006569 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00006570
6571 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006572 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
6573 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00006574 }
6575
Owen Anderson825b72b2009-08-11 20:47:22 +00006576 assert(DstTy.getSimpleVT() <= MVT::i64 &&
6577 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00006578 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00006579
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006580 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006581 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00006582 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00006583 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00006584 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00006585 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00006586 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00006587 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006588
Evan Cheng87c89352007-10-15 20:11:21 +00006589 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
6590 // stack slot.
6591 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00006592 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00006593 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006594 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00006595
Michael J. Spencerec38de22010-10-10 22:04:20 +00006596
6597
Evan Cheng0db9fe62006-04-25 20:13:52 +00006598 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00006599 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00006600 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00006601 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
6602 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
6603 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006604 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006605
Dan Gohman475871a2008-07-27 21:46:04 +00006606 SDValue Chain = DAG.getEntryNode();
6607 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00006608 EVT TheVT = Op.getOperand(0).getValueType();
6609 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006610 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00006611 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006612 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006613 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00006614 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00006615 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00006616 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00006617 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00006618
Chris Lattner492a43e2010-09-22 01:28:21 +00006619 MachineMemOperand *MMO =
6620 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6621 MachineMemOperand::MOLoad, MemSize, MemSize);
6622 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
6623 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006624 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00006625 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006626 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
6627 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006628
Chris Lattner07290932010-09-22 01:05:16 +00006629 MachineMemOperand *MMO =
6630 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6631 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006632
Evan Cheng0db9fe62006-04-25 20:13:52 +00006633 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00006634 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00006635 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
6636 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00006637
Chris Lattner27a6c732007-11-24 07:07:01 +00006638 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006639}
6640
Dan Gohmand858e902010-04-17 15:26:15 +00006641SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
6642 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00006643 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006644 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006645
Eli Friedman948e95a2009-05-23 09:59:16 +00006646 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00006647 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00006648 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
6649 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00006650
Chris Lattner27a6c732007-11-24 07:07:01 +00006651 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006652 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00006653 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00006654}
6655
Dan Gohmand858e902010-04-17 15:26:15 +00006656SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
6657 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00006658 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
6659 SDValue FIST = Vals.first, StackSlot = Vals.second;
6660 assert(FIST.getNode() && "Unexpected failure");
6661
6662 // Load the result.
6663 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00006664 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006665}
6666
Dan Gohmand858e902010-04-17 15:26:15 +00006667SDValue X86TargetLowering::LowerFABS(SDValue Op,
6668 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006669 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006670 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006671 EVT VT = Op.getValueType();
6672 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006673 if (VT.isVector())
6674 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006675 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006676 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006677 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00006678 CV.push_back(C);
6679 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006680 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006681 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00006682 CV.push_back(C);
6683 CV.push_back(C);
6684 CV.push_back(C);
6685 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006686 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006687 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006688 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006689 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006690 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006691 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006692 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006693}
6694
Dan Gohmand858e902010-04-17 15:26:15 +00006695SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006696 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006697 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006698 EVT VT = Op.getValueType();
6699 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00006700 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00006701 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006702 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006703 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006704 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00006705 CV.push_back(C);
6706 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006707 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006708 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00006709 CV.push_back(C);
6710 CV.push_back(C);
6711 CV.push_back(C);
6712 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006713 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006714 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006715 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006716 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006717 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006718 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006719 if (VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006720 return DAG.getNode(ISD::BITCAST, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00006721 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006722 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006723 Op.getOperand(0)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006724 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00006725 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006726 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00006727 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006728}
6729
Dan Gohmand858e902010-04-17 15:26:15 +00006730SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006731 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00006732 SDValue Op0 = Op.getOperand(0);
6733 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006734 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006735 EVT VT = Op.getValueType();
6736 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00006737
6738 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006739 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006740 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00006741 SrcVT = VT;
6742 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006743 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006744 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006745 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006746 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006747 }
6748
6749 // At this point the operands and the result should have the same
6750 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00006751
Evan Cheng68c47cb2007-01-05 07:55:56 +00006752 // First get the sign bit of second operand.
6753 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006754 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006755 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
6756 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006757 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006758 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
6759 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6760 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6761 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006762 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006763 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006764 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006765 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006766 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006767 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006768 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006769
6770 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006771 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006772 // Op0 is MVT::f32, Op1 is MVT::f64.
6773 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
6774 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
6775 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006776 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00006777 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00006778 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006779 }
6780
Evan Cheng73d6cf12007-01-05 21:37:56 +00006781 // Clear first operand sign bit.
6782 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00006783 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006784 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
6785 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00006786 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006787 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
6788 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6789 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6790 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00006791 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006792 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006793 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006794 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006795 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006796 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006797 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00006798
6799 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00006800 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006801}
6802
Dan Gohman076aee32009-03-04 19:44:21 +00006803/// Emit nodes that will be selected as "test Op0,Op0", or something
6804/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00006805SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00006806 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00006807 DebugLoc dl = Op.getDebugLoc();
6808
Dan Gohman31125812009-03-07 01:58:32 +00006809 // CF and OF aren't always set the way we want. Determine which
6810 // of these we need.
6811 bool NeedCF = false;
6812 bool NeedOF = false;
6813 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006814 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00006815 case X86::COND_A: case X86::COND_AE:
6816 case X86::COND_B: case X86::COND_BE:
6817 NeedCF = true;
6818 break;
6819 case X86::COND_G: case X86::COND_GE:
6820 case X86::COND_L: case X86::COND_LE:
6821 case X86::COND_O: case X86::COND_NO:
6822 NeedOF = true;
6823 break;
Dan Gohman31125812009-03-07 01:58:32 +00006824 }
6825
Dan Gohman076aee32009-03-04 19:44:21 +00006826 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00006827 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
6828 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006829 if (Op.getResNo() != 0 || NeedOF || NeedCF)
6830 // Emit a CMP with 0, which is the TEST pattern.
6831 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
6832 DAG.getConstant(0, Op.getValueType()));
6833
6834 unsigned Opcode = 0;
6835 unsigned NumOperands = 0;
6836 switch (Op.getNode()->getOpcode()) {
6837 case ISD::ADD:
6838 // Due to an isel shortcoming, be conservative if this add is likely to be
6839 // selected as part of a load-modify-store instruction. When the root node
6840 // in a match is a store, isel doesn't know how to remap non-chain non-flag
6841 // uses of other nodes in the match, such as the ADD in this case. This
6842 // leads to the ADD being left around and reselected, with the result being
6843 // two adds in the output. Alas, even if none our users are stores, that
6844 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
6845 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
6846 // climbing the DAG back to the root, and it doesn't seem to be worth the
6847 // effort.
6848 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00006849 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006850 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
6851 goto default_case;
6852
6853 if (ConstantSDNode *C =
6854 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
6855 // An add of one will be selected as an INC.
6856 if (C->getAPIntValue() == 1) {
6857 Opcode = X86ISD::INC;
6858 NumOperands = 1;
6859 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00006860 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006861
6862 // An add of negative one (subtract of one) will be selected as a DEC.
6863 if (C->getAPIntValue().isAllOnesValue()) {
6864 Opcode = X86ISD::DEC;
6865 NumOperands = 1;
6866 break;
6867 }
Dan Gohman076aee32009-03-04 19:44:21 +00006868 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006869
6870 // Otherwise use a regular EFLAGS-setting add.
6871 Opcode = X86ISD::ADD;
6872 NumOperands = 2;
6873 break;
6874 case ISD::AND: {
6875 // If the primary and result isn't used, don't bother using X86ISD::AND,
6876 // because a TEST instruction will be better.
6877 bool NonFlagUse = false;
6878 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
6879 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
6880 SDNode *User = *UI;
6881 unsigned UOpNo = UI.getOperandNo();
6882 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
6883 // Look pass truncate.
6884 UOpNo = User->use_begin().getOperandNo();
6885 User = *User->use_begin();
6886 }
6887
6888 if (User->getOpcode() != ISD::BRCOND &&
6889 User->getOpcode() != ISD::SETCC &&
6890 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
6891 NonFlagUse = true;
6892 break;
6893 }
Dan Gohman076aee32009-03-04 19:44:21 +00006894 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006895
6896 if (!NonFlagUse)
6897 break;
6898 }
6899 // FALL THROUGH
6900 case ISD::SUB:
6901 case ISD::OR:
6902 case ISD::XOR:
6903 // Due to the ISEL shortcoming noted above, be conservative if this op is
6904 // likely to be selected as part of a load-modify-store instruction.
6905 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
6906 UE = Op.getNode()->use_end(); UI != UE; ++UI)
6907 if (UI->getOpcode() == ISD::STORE)
6908 goto default_case;
6909
6910 // Otherwise use a regular EFLAGS-setting instruction.
6911 switch (Op.getNode()->getOpcode()) {
6912 default: llvm_unreachable("unexpected operator!");
6913 case ISD::SUB: Opcode = X86ISD::SUB; break;
6914 case ISD::OR: Opcode = X86ISD::OR; break;
6915 case ISD::XOR: Opcode = X86ISD::XOR; break;
6916 case ISD::AND: Opcode = X86ISD::AND; break;
6917 }
6918
6919 NumOperands = 2;
6920 break;
6921 case X86ISD::ADD:
6922 case X86ISD::SUB:
6923 case X86ISD::INC:
6924 case X86ISD::DEC:
6925 case X86ISD::OR:
6926 case X86ISD::XOR:
6927 case X86ISD::AND:
6928 return SDValue(Op.getNode(), 1);
6929 default:
6930 default_case:
6931 break;
Dan Gohman076aee32009-03-04 19:44:21 +00006932 }
6933
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006934 if (Opcode == 0)
6935 // Emit a CMP with 0, which is the TEST pattern.
6936 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
6937 DAG.getConstant(0, Op.getValueType()));
6938
6939 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
6940 SmallVector<SDValue, 4> Ops;
6941 for (unsigned i = 0; i != NumOperands; ++i)
6942 Ops.push_back(Op.getOperand(i));
6943
6944 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
6945 DAG.ReplaceAllUsesWith(Op, New);
6946 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00006947}
6948
6949/// Emit nodes that will be selected as "cmp Op0,Op1", or something
6950/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00006951SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00006952 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00006953 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
6954 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00006955 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00006956
6957 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00006958 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00006959}
6960
Evan Chengd40d03e2010-01-06 19:38:29 +00006961/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
6962/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00006963SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
6964 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006965 SDValue Op0 = And.getOperand(0);
6966 SDValue Op1 = And.getOperand(1);
6967 if (Op0.getOpcode() == ISD::TRUNCATE)
6968 Op0 = Op0.getOperand(0);
6969 if (Op1.getOpcode() == ISD::TRUNCATE)
6970 Op1 = Op1.getOperand(0);
6971
Evan Chengd40d03e2010-01-06 19:38:29 +00006972 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00006973 if (Op1.getOpcode() == ISD::SHL)
6974 std::swap(Op0, Op1);
6975 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006976 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
6977 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00006978 // If we looked past a truncate, check that it's only truncating away
6979 // known zeros.
6980 unsigned BitWidth = Op0.getValueSizeInBits();
6981 unsigned AndBitWidth = And.getValueSizeInBits();
6982 if (BitWidth > AndBitWidth) {
6983 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
6984 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
6985 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
6986 return SDValue();
6987 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00006988 LHS = Op1;
6989 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00006990 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00006991 } else if (Op1.getOpcode() == ISD::Constant) {
6992 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
6993 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00006994 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
6995 LHS = AndLHS.getOperand(0);
6996 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00006997 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006998 }
Evan Cheng0488db92007-09-25 01:57:46 +00006999
Evan Chengd40d03e2010-01-06 19:38:29 +00007000 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00007001 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00007002 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00007003 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00007004 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00007005 // Also promote i16 to i32 for performance / code size reason.
7006 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00007007 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00007008 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00007009
Evan Chengd40d03e2010-01-06 19:38:29 +00007010 // If the operand types disagree, extend the shift amount to match. Since
7011 // BT ignores high bits (like shifts) we can use anyextend.
7012 if (LHS.getValueType() != RHS.getValueType())
7013 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007014
Evan Chengd40d03e2010-01-06 19:38:29 +00007015 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
7016 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
7017 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7018 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00007019 }
7020
Evan Cheng54de3ea2010-01-05 06:52:31 +00007021 return SDValue();
7022}
7023
Dan Gohmand858e902010-04-17 15:26:15 +00007024SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00007025 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
7026 SDValue Op0 = Op.getOperand(0);
7027 SDValue Op1 = Op.getOperand(1);
7028 DebugLoc dl = Op.getDebugLoc();
7029 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7030
7031 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00007032 // Lower (X & (1 << N)) == 0 to BT(X, N).
7033 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
7034 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
7035 if (Op0.getOpcode() == ISD::AND &&
7036 Op0.hasOneUse() &&
7037 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00007038 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007039 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7040 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
7041 if (NewSetCC.getNode())
7042 return NewSetCC;
7043 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00007044
Evan Cheng2c755ba2010-02-27 07:36:59 +00007045 // Look for "(setcc) == / != 1" to avoid unncessary setcc.
7046 if (Op0.getOpcode() == X86ISD::SETCC &&
7047 Op1.getOpcode() == ISD::Constant &&
7048 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
7049 cast<ConstantSDNode>(Op1)->isNullValue()) &&
7050 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7051 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
7052 bool Invert = (CC == ISD::SETNE) ^
7053 cast<ConstantSDNode>(Op1)->isNullValue();
7054 if (Invert)
7055 CCode = X86::GetOppositeBranchCondition(CCode);
7056 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7057 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
7058 }
7059
Evan Chenge5b51ac2010-04-17 06:13:15 +00007060 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00007061 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007062 if (X86CC == X86::COND_INVALID)
7063 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007064
Evan Cheng552f09a2010-04-26 19:06:11 +00007065 SDValue Cond = EmitCmp(Op0, Op1, X86CC, DAG);
Evan Chengad9c0a32009-12-15 00:53:42 +00007066
7067 // Use sbb x, x to materialize carry bit into a GPR.
Evan Cheng2e489c42009-12-16 00:53:11 +00007068 if (X86CC == X86::COND_B)
Evan Chengad9c0a32009-12-15 00:53:42 +00007069 return DAG.getNode(ISD::AND, dl, MVT::i8,
7070 DAG.getNode(X86ISD::SETCC_CARRY, dl, MVT::i8,
7071 DAG.getConstant(X86CC, MVT::i8), Cond),
7072 DAG.getConstant(1, MVT::i8));
Evan Chengad9c0a32009-12-15 00:53:42 +00007073
Owen Anderson825b72b2009-08-11 20:47:22 +00007074 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7075 DAG.getConstant(X86CC, MVT::i8), Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00007076}
7077
Dan Gohmand858e902010-04-17 15:26:15 +00007078SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007079 SDValue Cond;
7080 SDValue Op0 = Op.getOperand(0);
7081 SDValue Op1 = Op.getOperand(1);
7082 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00007083 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00007084 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
7085 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007086 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00007087
7088 if (isFP) {
7089 unsigned SSECC = 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007090 EVT VT0 = Op0.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00007091 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
7092 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00007093 bool Swap = false;
7094
7095 switch (SetCCOpcode) {
7096 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007097 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00007098 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007099 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00007100 case ISD::SETGT: Swap = true; // Fallthrough
7101 case ISD::SETLT:
7102 case ISD::SETOLT: SSECC = 1; break;
7103 case ISD::SETOGE:
7104 case ISD::SETGE: Swap = true; // Fallthrough
7105 case ISD::SETLE:
7106 case ISD::SETOLE: SSECC = 2; break;
7107 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007108 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00007109 case ISD::SETNE: SSECC = 4; break;
7110 case ISD::SETULE: Swap = true;
7111 case ISD::SETUGE: SSECC = 5; break;
7112 case ISD::SETULT: Swap = true;
7113 case ISD::SETUGT: SSECC = 6; break;
7114 case ISD::SETO: SSECC = 7; break;
7115 }
7116 if (Swap)
7117 std::swap(Op0, Op1);
7118
Nate Begemanfb8ead02008-07-25 19:05:58 +00007119 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00007120 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00007121 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00007122 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007123 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
7124 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007125 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007126 }
7127 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00007128 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007129 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
7130 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007131 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007132 }
Torok Edwinc23197a2009-07-14 16:55:14 +00007133 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00007134 }
7135 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00007136 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00007137 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007138
Nate Begeman30a0de92008-07-17 16:51:19 +00007139 // We are handling one of the integer comparisons here. Since SSE only has
7140 // GT and EQ comparisons for integer, swapping operands and multiple
7141 // operations may be required for some comparisons.
7142 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
7143 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007144
Owen Anderson825b72b2009-08-11 20:47:22 +00007145 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00007146 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007147 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007148 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007149 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
7150 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00007151 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007152
Nate Begeman30a0de92008-07-17 16:51:19 +00007153 switch (SetCCOpcode) {
7154 default: break;
7155 case ISD::SETNE: Invert = true;
7156 case ISD::SETEQ: Opc = EQOpc; break;
7157 case ISD::SETLT: Swap = true;
7158 case ISD::SETGT: Opc = GTOpc; break;
7159 case ISD::SETGE: Swap = true;
7160 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
7161 case ISD::SETULT: Swap = true;
7162 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
7163 case ISD::SETUGE: Swap = true;
7164 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
7165 }
7166 if (Swap)
7167 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007168
Nate Begeman30a0de92008-07-17 16:51:19 +00007169 // Since SSE has no unsigned integer comparisons, we need to flip the sign
7170 // bits of the inputs before performing those operations.
7171 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00007172 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00007173 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
7174 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00007175 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00007176 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
7177 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00007178 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
7179 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00007180 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007181
Dale Johannesenace16102009-02-03 19:33:06 +00007182 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00007183
7184 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00007185 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00007186 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00007187
Nate Begeman30a0de92008-07-17 16:51:19 +00007188 return Result;
7189}
Evan Cheng0488db92007-09-25 01:57:46 +00007190
Evan Cheng370e5342008-12-03 08:38:43 +00007191// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00007192static bool isX86LogicalCmp(SDValue Op) {
7193 unsigned Opc = Op.getNode()->getOpcode();
7194 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
7195 return true;
7196 if (Op.getResNo() == 1 &&
7197 (Opc == X86ISD::ADD ||
7198 Opc == X86ISD::SUB ||
7199 Opc == X86ISD::SMUL ||
7200 Opc == X86ISD::UMUL ||
7201 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00007202 Opc == X86ISD::DEC ||
7203 Opc == X86ISD::OR ||
7204 Opc == X86ISD::XOR ||
7205 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00007206 return true;
7207
7208 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00007209}
7210
Chris Lattnera2b56002010-12-05 01:23:24 +00007211static bool isZero(SDValue V) {
7212 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
7213 return C && C->isNullValue();
7214}
7215
Dan Gohmand858e902010-04-17 15:26:15 +00007216SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007217 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007218 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +00007219 SDValue Op1 = Op.getOperand(1);
7220 SDValue Op2 = Op.getOperand(2);
7221 DebugLoc DL = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007222 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00007223
Dan Gohman1a492952009-10-20 16:22:37 +00007224 if (Cond.getOpcode() == ISD::SETCC) {
7225 SDValue NewCond = LowerSETCC(Cond, DAG);
7226 if (NewCond.getNode())
7227 Cond = NewCond;
7228 }
Evan Cheng734503b2006-09-11 02:19:56 +00007229
Chris Lattnera2b56002010-12-05 01:23:24 +00007230 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
7231 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007232 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattnera2b56002010-12-05 01:23:24 +00007233 Cond.getOperand(1).getOpcode() == X86ISD::CMP) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007234 SDValue Cmp = Cond.getOperand(1);
Chris Lattnera2b56002010-12-05 01:23:24 +00007235
7236 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
7237
7238 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op1);
7239 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
7240 if ((N1C && N1C->isAllOnesValue() && CondCode == X86::COND_E) ||
7241 (N2C && N2C->isAllOnesValue() && CondCode == X86::COND_NE)) {
7242 SDValue Y = CondCode == X86::COND_NE ? Op1 : Op2;
7243
7244 SDValue CmpOp0 = Cmp.getOperand(0);
7245 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
7246 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
7247
7248 SDValue Res =
7249 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
7250 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007251 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +00007252 if (N2C == 0 || !N2C->isNullValue())
7253 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
7254 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007255 }
7256 }
7257
Chris Lattnera2b56002010-12-05 01:23:24 +00007258 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +00007259 if (Cond.getOpcode() == ISD::AND &&
7260 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7261 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007262 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007263 Cond = Cond.getOperand(0);
7264 }
7265
Evan Cheng3f41d662007-10-08 22:16:29 +00007266 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7267 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007268 if (Cond.getOpcode() == X86ISD::SETCC ||
7269 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007270 CC = Cond.getOperand(0);
7271
Dan Gohman475871a2008-07-27 21:46:04 +00007272 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007273 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00007274 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00007275
Evan Cheng3f41d662007-10-08 22:16:29 +00007276 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007277 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00007278 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00007279 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00007280
Chris Lattnerd1980a52009-03-12 06:52:53 +00007281 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
7282 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00007283 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007284 addTest = false;
7285 }
7286 }
7287
7288 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007289 // Look pass the truncate.
7290 if (Cond.getOpcode() == ISD::TRUNCATE)
7291 Cond = Cond.getOperand(0);
7292
7293 // We know the result of AND is compared against zero. Try to match
7294 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007295 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +00007296 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +00007297 if (NewSetCC.getNode()) {
7298 CC = NewSetCC.getOperand(0);
7299 Cond = NewSetCC.getOperand(1);
7300 addTest = false;
7301 }
7302 }
7303 }
7304
7305 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007306 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007307 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007308 }
7309
Evan Cheng0488db92007-09-25 01:57:46 +00007310 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
7311 // condition is true.
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007312 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Flag);
7313 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +00007314 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00007315}
7316
Evan Cheng370e5342008-12-03 08:38:43 +00007317// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
7318// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
7319// from the AND / OR.
7320static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
7321 Opc = Op.getOpcode();
7322 if (Opc != ISD::OR && Opc != ISD::AND)
7323 return false;
7324 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7325 Op.getOperand(0).hasOneUse() &&
7326 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
7327 Op.getOperand(1).hasOneUse());
7328}
7329
Evan Cheng961d6d42009-02-02 08:19:07 +00007330// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
7331// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00007332static bool isXor1OfSetCC(SDValue Op) {
7333 if (Op.getOpcode() != ISD::XOR)
7334 return false;
7335 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7336 if (N1C && N1C->getAPIntValue() == 1) {
7337 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7338 Op.getOperand(0).hasOneUse();
7339 }
7340 return false;
7341}
7342
Dan Gohmand858e902010-04-17 15:26:15 +00007343SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007344 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007345 SDValue Chain = Op.getOperand(0);
7346 SDValue Cond = Op.getOperand(1);
7347 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007348 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007349 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00007350
Dan Gohman1a492952009-10-20 16:22:37 +00007351 if (Cond.getOpcode() == ISD::SETCC) {
7352 SDValue NewCond = LowerSETCC(Cond, DAG);
7353 if (NewCond.getNode())
7354 Cond = NewCond;
7355 }
Chris Lattnere55484e2008-12-25 05:34:37 +00007356#if 0
7357 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00007358 else if (Cond.getOpcode() == X86ISD::ADD ||
7359 Cond.getOpcode() == X86ISD::SUB ||
7360 Cond.getOpcode() == X86ISD::SMUL ||
7361 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00007362 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00007363#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00007364
Evan Chengad9c0a32009-12-15 00:53:42 +00007365 // Look pass (and (setcc_carry (cmp ...)), 1).
7366 if (Cond.getOpcode() == ISD::AND &&
7367 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7368 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007369 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007370 Cond = Cond.getOperand(0);
7371 }
7372
Evan Cheng3f41d662007-10-08 22:16:29 +00007373 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7374 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007375 if (Cond.getOpcode() == X86ISD::SETCC ||
7376 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007377 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007378
Dan Gohman475871a2008-07-27 21:46:04 +00007379 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007380 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00007381 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00007382 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00007383 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007384 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00007385 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00007386 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007387 default: break;
7388 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00007389 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00007390 // These can only come from an arithmetic instruction with overflow,
7391 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007392 Cond = Cond.getNode()->getOperand(1);
7393 addTest = false;
7394 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00007395 }
Evan Cheng0488db92007-09-25 01:57:46 +00007396 }
Evan Cheng370e5342008-12-03 08:38:43 +00007397 } else {
7398 unsigned CondOpc;
7399 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
7400 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00007401 if (CondOpc == ISD::OR) {
7402 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
7403 // two branches instead of an explicit OR instruction with a
7404 // separate test.
7405 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007406 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00007407 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007408 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007409 Chain, Dest, CC, Cmp);
7410 CC = Cond.getOperand(1).getOperand(0);
7411 Cond = Cmp;
7412 addTest = false;
7413 }
7414 } else { // ISD::AND
7415 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
7416 // two branches instead of an explicit AND instruction with a
7417 // separate test. However, we only do this if this block doesn't
7418 // have a fall-through edge, because this requires an explicit
7419 // jmp when the condition is false.
7420 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007421 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00007422 Op.getNode()->hasOneUse()) {
7423 X86::CondCode CCode =
7424 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7425 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007426 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00007427 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00007428 // Look for an unconditional branch following this conditional branch.
7429 // We need this because we need to reverse the successors in order
7430 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00007431 if (User->getOpcode() == ISD::BR) {
7432 SDValue FalseBB = User->getOperand(1);
7433 SDNode *NewBR =
7434 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00007435 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00007436 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00007437 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00007438
Dale Johannesene4d209d2009-02-03 20:21:25 +00007439 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007440 Chain, Dest, CC, Cmp);
7441 X86::CondCode CCode =
7442 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
7443 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007444 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00007445 Cond = Cmp;
7446 addTest = false;
7447 }
7448 }
Dan Gohman279c22e2008-10-21 03:29:32 +00007449 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00007450 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
7451 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
7452 // It should be transformed during dag combiner except when the condition
7453 // is set by a arithmetics with overflow node.
7454 X86::CondCode CCode =
7455 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7456 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007457 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00007458 Cond = Cond.getOperand(0).getOperand(1);
7459 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00007460 }
Evan Cheng0488db92007-09-25 01:57:46 +00007461 }
7462
7463 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007464 // Look pass the truncate.
7465 if (Cond.getOpcode() == ISD::TRUNCATE)
7466 Cond = Cond.getOperand(0);
7467
7468 // We know the result of AND is compared against zero. Try to match
7469 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007470 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007471 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
7472 if (NewSetCC.getNode()) {
7473 CC = NewSetCC.getOperand(0);
7474 Cond = NewSetCC.getOperand(1);
7475 addTest = false;
7476 }
7477 }
7478 }
7479
7480 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007481 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007482 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007483 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00007484 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00007485 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00007486}
7487
Anton Korobeynikove060b532007-04-17 19:34:00 +00007488
7489// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
7490// Calls to _alloca is needed to probe the stack when allocating more than 4k
7491// bytes in one go. Touching the stack at 4K increments is necessary to ensure
7492// that the guard pages used by the OS virtual memory manager are allocated in
7493// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00007494SDValue
7495X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007496 SelectionDAG &DAG) const {
Duncan Sands1e1ca0b2010-10-21 16:02:12 +00007497 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) &&
Michael J. Spencere9c253e2010-10-21 01:41:01 +00007498 "This should be used only on Windows targets");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007499 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007500
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007501 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00007502 SDValue Chain = Op.getOperand(0);
7503 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007504 // FIXME: Ensure alignment here
7505
Dan Gohman475871a2008-07-27 21:46:04 +00007506 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007507
Owen Anderson825b72b2009-08-11 20:47:22 +00007508 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007509
Dale Johannesendd64c412009-02-04 00:33:20 +00007510 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007511 Flag = Chain.getValue(1);
7512
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00007513 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007514
Michael J. Spencere9c253e2010-10-21 01:41:01 +00007515 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00007516 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007517
Dale Johannesendd64c412009-02-04 00:33:20 +00007518 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007519
Dan Gohman475871a2008-07-27 21:46:04 +00007520 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00007521 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007522}
7523
Dan Gohmand858e902010-04-17 15:26:15 +00007524SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00007525 MachineFunction &MF = DAG.getMachineFunction();
7526 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
7527
Dan Gohman69de1932008-02-06 22:27:42 +00007528 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00007529 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00007530
Anton Korobeynikove7beda12010-10-03 22:52:07 +00007531 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00007532 // vastart just stores the address of the VarArgsFrameIndex slot into the
7533 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00007534 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
7535 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007536 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
7537 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007538 }
7539
7540 // __va_list_tag:
7541 // gp_offset (0 - 6 * 8)
7542 // fp_offset (48 - 48 + 8 * 16)
7543 // overflow_arg_area (point to parameters coming in memory).
7544 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00007545 SmallVector<SDValue, 8> MemOps;
7546 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00007547 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00007548 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00007549 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
7550 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007551 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007552 MemOps.push_back(Store);
7553
7554 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00007555 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007556 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00007557 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00007558 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
7559 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007560 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007561 MemOps.push_back(Store);
7562
7563 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00007564 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007565 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00007566 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
7567 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007568 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
7569 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00007570 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007571 MemOps.push_back(Store);
7572
7573 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00007574 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007575 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00007576 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
7577 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007578 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
7579 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007580 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00007581 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00007582 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00007583}
7584
Dan Gohmand858e902010-04-17 15:26:15 +00007585SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00007586 assert(Subtarget->is64Bit() &&
7587 "LowerVAARG only handles 64-bit va_arg!");
7588 assert((Subtarget->isTargetLinux() ||
7589 Subtarget->isTargetDarwin()) &&
7590 "Unhandled target in LowerVAARG");
7591 assert(Op.getNode()->getNumOperands() == 4);
7592 SDValue Chain = Op.getOperand(0);
7593 SDValue SrcPtr = Op.getOperand(1);
7594 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
7595 unsigned Align = Op.getConstantOperandVal(3);
7596 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00007597
Dan Gohman320afb82010-10-12 18:00:49 +00007598 EVT ArgVT = Op.getNode()->getValueType(0);
7599 const Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
7600 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
7601 uint8_t ArgMode;
7602
7603 // Decide which area this value should be read from.
7604 // TODO: Implement the AMD64 ABI in its entirety. This simple
7605 // selection mechanism works only for the basic types.
7606 if (ArgVT == MVT::f80) {
7607 llvm_unreachable("va_arg for f80 not yet implemented");
7608 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
7609 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
7610 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
7611 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
7612 } else {
7613 llvm_unreachable("Unhandled argument type in LowerVAARG");
7614 }
7615
7616 if (ArgMode == 2) {
7617 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00007618 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00007619 !(DAG.getMachineFunction()
7620 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
7621 Subtarget->hasSSE1());
Dan Gohman320afb82010-10-12 18:00:49 +00007622 }
7623
7624 // Insert VAARG_64 node into the DAG
7625 // VAARG_64 returns two values: Variable Argument Address, Chain
7626 SmallVector<SDValue, 11> InstOps;
7627 InstOps.push_back(Chain);
7628 InstOps.push_back(SrcPtr);
7629 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
7630 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
7631 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
7632 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
7633 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
7634 VTs, &InstOps[0], InstOps.size(),
7635 MVT::i64,
7636 MachinePointerInfo(SV),
7637 /*Align=*/0,
7638 /*Volatile=*/false,
7639 /*ReadMem=*/true,
7640 /*WriteMem=*/true);
7641 Chain = VAARG.getValue(1);
7642
7643 // Load the next argument and return it
7644 return DAG.getLoad(ArgVT, dl,
7645 Chain,
7646 VAARG,
7647 MachinePointerInfo(),
7648 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00007649}
7650
Dan Gohmand858e902010-04-17 15:26:15 +00007651SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00007652 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00007653 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00007654 SDValue Chain = Op.getOperand(0);
7655 SDValue DstPtr = Op.getOperand(1);
7656 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00007657 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
7658 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00007659 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00007660
Chris Lattnere72f2022010-09-21 05:40:29 +00007661 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00007662 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00007663 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00007664 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00007665}
7666
Dan Gohman475871a2008-07-27 21:46:04 +00007667SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007668X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007669 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007670 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007671 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00007672 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00007673 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00007674 case Intrinsic::x86_sse_comieq_ss:
7675 case Intrinsic::x86_sse_comilt_ss:
7676 case Intrinsic::x86_sse_comile_ss:
7677 case Intrinsic::x86_sse_comigt_ss:
7678 case Intrinsic::x86_sse_comige_ss:
7679 case Intrinsic::x86_sse_comineq_ss:
7680 case Intrinsic::x86_sse_ucomieq_ss:
7681 case Intrinsic::x86_sse_ucomilt_ss:
7682 case Intrinsic::x86_sse_ucomile_ss:
7683 case Intrinsic::x86_sse_ucomigt_ss:
7684 case Intrinsic::x86_sse_ucomige_ss:
7685 case Intrinsic::x86_sse_ucomineq_ss:
7686 case Intrinsic::x86_sse2_comieq_sd:
7687 case Intrinsic::x86_sse2_comilt_sd:
7688 case Intrinsic::x86_sse2_comile_sd:
7689 case Intrinsic::x86_sse2_comigt_sd:
7690 case Intrinsic::x86_sse2_comige_sd:
7691 case Intrinsic::x86_sse2_comineq_sd:
7692 case Intrinsic::x86_sse2_ucomieq_sd:
7693 case Intrinsic::x86_sse2_ucomilt_sd:
7694 case Intrinsic::x86_sse2_ucomile_sd:
7695 case Intrinsic::x86_sse2_ucomigt_sd:
7696 case Intrinsic::x86_sse2_ucomige_sd:
7697 case Intrinsic::x86_sse2_ucomineq_sd: {
7698 unsigned Opc = 0;
7699 ISD::CondCode CC = ISD::SETCC_INVALID;
7700 switch (IntNo) {
7701 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007702 case Intrinsic::x86_sse_comieq_ss:
7703 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007704 Opc = X86ISD::COMI;
7705 CC = ISD::SETEQ;
7706 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00007707 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007708 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007709 Opc = X86ISD::COMI;
7710 CC = ISD::SETLT;
7711 break;
7712 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007713 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007714 Opc = X86ISD::COMI;
7715 CC = ISD::SETLE;
7716 break;
7717 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007718 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007719 Opc = X86ISD::COMI;
7720 CC = ISD::SETGT;
7721 break;
7722 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007723 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007724 Opc = X86ISD::COMI;
7725 CC = ISD::SETGE;
7726 break;
7727 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007728 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007729 Opc = X86ISD::COMI;
7730 CC = ISD::SETNE;
7731 break;
7732 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007733 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007734 Opc = X86ISD::UCOMI;
7735 CC = ISD::SETEQ;
7736 break;
7737 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007738 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007739 Opc = X86ISD::UCOMI;
7740 CC = ISD::SETLT;
7741 break;
7742 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007743 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007744 Opc = X86ISD::UCOMI;
7745 CC = ISD::SETLE;
7746 break;
7747 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007748 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007749 Opc = X86ISD::UCOMI;
7750 CC = ISD::SETGT;
7751 break;
7752 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007753 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007754 Opc = X86ISD::UCOMI;
7755 CC = ISD::SETGE;
7756 break;
7757 case Intrinsic::x86_sse_ucomineq_ss:
7758 case Intrinsic::x86_sse2_ucomineq_sd:
7759 Opc = X86ISD::UCOMI;
7760 CC = ISD::SETNE;
7761 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00007762 }
Evan Cheng734503b2006-09-11 02:19:56 +00007763
Dan Gohman475871a2008-07-27 21:46:04 +00007764 SDValue LHS = Op.getOperand(1);
7765 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00007766 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007767 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007768 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
7769 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7770 DAG.getConstant(X86CC, MVT::i8), Cond);
7771 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00007772 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007773 // ptest and testp intrinsics. The intrinsic these come from are designed to
7774 // return an integer value, not just an instruction so lower it to the ptest
7775 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00007776 case Intrinsic::x86_sse41_ptestz:
7777 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007778 case Intrinsic::x86_sse41_ptestnzc:
7779 case Intrinsic::x86_avx_ptestz_256:
7780 case Intrinsic::x86_avx_ptestc_256:
7781 case Intrinsic::x86_avx_ptestnzc_256:
7782 case Intrinsic::x86_avx_vtestz_ps:
7783 case Intrinsic::x86_avx_vtestc_ps:
7784 case Intrinsic::x86_avx_vtestnzc_ps:
7785 case Intrinsic::x86_avx_vtestz_pd:
7786 case Intrinsic::x86_avx_vtestc_pd:
7787 case Intrinsic::x86_avx_vtestnzc_pd:
7788 case Intrinsic::x86_avx_vtestz_ps_256:
7789 case Intrinsic::x86_avx_vtestc_ps_256:
7790 case Intrinsic::x86_avx_vtestnzc_ps_256:
7791 case Intrinsic::x86_avx_vtestz_pd_256:
7792 case Intrinsic::x86_avx_vtestc_pd_256:
7793 case Intrinsic::x86_avx_vtestnzc_pd_256: {
7794 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00007795 unsigned X86CC = 0;
7796 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00007797 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007798 case Intrinsic::x86_avx_vtestz_ps:
7799 case Intrinsic::x86_avx_vtestz_pd:
7800 case Intrinsic::x86_avx_vtestz_ps_256:
7801 case Intrinsic::x86_avx_vtestz_pd_256:
7802 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00007803 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007804 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007805 // ZF = 1
7806 X86CC = X86::COND_E;
7807 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007808 case Intrinsic::x86_avx_vtestc_ps:
7809 case Intrinsic::x86_avx_vtestc_pd:
7810 case Intrinsic::x86_avx_vtestc_ps_256:
7811 case Intrinsic::x86_avx_vtestc_pd_256:
7812 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00007813 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007814 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007815 // CF = 1
7816 X86CC = X86::COND_B;
7817 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007818 case Intrinsic::x86_avx_vtestnzc_ps:
7819 case Intrinsic::x86_avx_vtestnzc_pd:
7820 case Intrinsic::x86_avx_vtestnzc_ps_256:
7821 case Intrinsic::x86_avx_vtestnzc_pd_256:
7822 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00007823 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007824 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007825 // ZF and CF = 0
7826 X86CC = X86::COND_A;
7827 break;
7828 }
Eric Christopherfd179292009-08-27 18:07:15 +00007829
Eric Christopher71c67532009-07-29 00:28:05 +00007830 SDValue LHS = Op.getOperand(1);
7831 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007832 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
7833 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00007834 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
7835 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
7836 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00007837 }
Evan Cheng5759f972008-05-04 09:15:50 +00007838
7839 // Fix vector shift instructions where the last operand is a non-immediate
7840 // i32 value.
7841 case Intrinsic::x86_sse2_pslli_w:
7842 case Intrinsic::x86_sse2_pslli_d:
7843 case Intrinsic::x86_sse2_pslli_q:
7844 case Intrinsic::x86_sse2_psrli_w:
7845 case Intrinsic::x86_sse2_psrli_d:
7846 case Intrinsic::x86_sse2_psrli_q:
7847 case Intrinsic::x86_sse2_psrai_w:
7848 case Intrinsic::x86_sse2_psrai_d:
7849 case Intrinsic::x86_mmx_pslli_w:
7850 case Intrinsic::x86_mmx_pslli_d:
7851 case Intrinsic::x86_mmx_pslli_q:
7852 case Intrinsic::x86_mmx_psrli_w:
7853 case Intrinsic::x86_mmx_psrli_d:
7854 case Intrinsic::x86_mmx_psrli_q:
7855 case Intrinsic::x86_mmx_psrai_w:
7856 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00007857 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00007858 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00007859 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00007860
7861 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00007862 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00007863 switch (IntNo) {
7864 case Intrinsic::x86_sse2_pslli_w:
7865 NewIntNo = Intrinsic::x86_sse2_psll_w;
7866 break;
7867 case Intrinsic::x86_sse2_pslli_d:
7868 NewIntNo = Intrinsic::x86_sse2_psll_d;
7869 break;
7870 case Intrinsic::x86_sse2_pslli_q:
7871 NewIntNo = Intrinsic::x86_sse2_psll_q;
7872 break;
7873 case Intrinsic::x86_sse2_psrli_w:
7874 NewIntNo = Intrinsic::x86_sse2_psrl_w;
7875 break;
7876 case Intrinsic::x86_sse2_psrli_d:
7877 NewIntNo = Intrinsic::x86_sse2_psrl_d;
7878 break;
7879 case Intrinsic::x86_sse2_psrli_q:
7880 NewIntNo = Intrinsic::x86_sse2_psrl_q;
7881 break;
7882 case Intrinsic::x86_sse2_psrai_w:
7883 NewIntNo = Intrinsic::x86_sse2_psra_w;
7884 break;
7885 case Intrinsic::x86_sse2_psrai_d:
7886 NewIntNo = Intrinsic::x86_sse2_psra_d;
7887 break;
7888 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00007889 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00007890 switch (IntNo) {
7891 case Intrinsic::x86_mmx_pslli_w:
7892 NewIntNo = Intrinsic::x86_mmx_psll_w;
7893 break;
7894 case Intrinsic::x86_mmx_pslli_d:
7895 NewIntNo = Intrinsic::x86_mmx_psll_d;
7896 break;
7897 case Intrinsic::x86_mmx_pslli_q:
7898 NewIntNo = Intrinsic::x86_mmx_psll_q;
7899 break;
7900 case Intrinsic::x86_mmx_psrli_w:
7901 NewIntNo = Intrinsic::x86_mmx_psrl_w;
7902 break;
7903 case Intrinsic::x86_mmx_psrli_d:
7904 NewIntNo = Intrinsic::x86_mmx_psrl_d;
7905 break;
7906 case Intrinsic::x86_mmx_psrli_q:
7907 NewIntNo = Intrinsic::x86_mmx_psrl_q;
7908 break;
7909 case Intrinsic::x86_mmx_psrai_w:
7910 NewIntNo = Intrinsic::x86_mmx_psra_w;
7911 break;
7912 case Intrinsic::x86_mmx_psrai_d:
7913 NewIntNo = Intrinsic::x86_mmx_psra_d;
7914 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00007915 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00007916 }
7917 break;
7918 }
7919 }
Mon P Wangefa42202009-09-03 19:56:25 +00007920
7921 // The vector shift intrinsics with scalars uses 32b shift amounts but
7922 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
7923 // to be zero.
7924 SDValue ShOps[4];
7925 ShOps[0] = ShAmt;
7926 ShOps[1] = DAG.getConstant(0, MVT::i32);
7927 if (ShAmtVT == MVT::v4i32) {
7928 ShOps[2] = DAG.getUNDEF(MVT::i32);
7929 ShOps[3] = DAG.getUNDEF(MVT::i32);
7930 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
7931 } else {
7932 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00007933// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00007934 }
7935
Owen Andersone50ed302009-08-10 22:56:29 +00007936 EVT VT = Op.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007937 ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007938 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007939 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00007940 Op.getOperand(1), ShAmt);
7941 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00007942 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007943}
Evan Cheng72261582005-12-20 06:22:03 +00007944
Dan Gohmand858e902010-04-17 15:26:15 +00007945SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
7946 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00007947 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7948 MFI->setReturnAddressIsTaken(true);
7949
Bill Wendling64e87322009-01-16 19:25:27 +00007950 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007951 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00007952
7953 if (Depth > 0) {
7954 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
7955 SDValue Offset =
7956 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007957 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007958 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007959 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007960 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00007961 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00007962 }
7963
7964 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00007965 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00007966 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007967 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00007968}
7969
Dan Gohmand858e902010-04-17 15:26:15 +00007970SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00007971 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7972 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00007973
Owen Andersone50ed302009-08-10 22:56:29 +00007974 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007975 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00007976 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
7977 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00007978 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00007979 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00007980 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
7981 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00007982 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00007983 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00007984}
7985
Dan Gohman475871a2008-07-27 21:46:04 +00007986SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007987 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00007988 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007989}
7990
Dan Gohmand858e902010-04-17 15:26:15 +00007991SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007992 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00007993 SDValue Chain = Op.getOperand(0);
7994 SDValue Offset = Op.getOperand(1);
7995 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007996 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007997
Dan Gohmand8816272010-08-11 18:14:00 +00007998 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
7999 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
8000 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008001 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008002
Dan Gohmand8816272010-08-11 18:14:00 +00008003 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
8004 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008005 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008006 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
8007 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00008008 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008009 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008010
Dale Johannesene4d209d2009-02-03 20:21:25 +00008011 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008012 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008013 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008014}
8015
Dan Gohman475871a2008-07-27 21:46:04 +00008016SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008017 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008018 SDValue Root = Op.getOperand(0);
8019 SDValue Trmp = Op.getOperand(1); // trampoline
8020 SDValue FPtr = Op.getOperand(2); // nested function
8021 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008022 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008023
Dan Gohman69de1932008-02-06 22:27:42 +00008024 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008025
8026 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008027 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00008028
8029 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00008030 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
8031 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00008032
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008033 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
8034 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00008035
8036 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
8037
8038 // Load the pointer to the nested function into R11.
8039 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00008040 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00008041 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008042 Addr, MachinePointerInfo(TrmpAddr),
8043 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008044
Owen Anderson825b72b2009-08-11 20:47:22 +00008045 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8046 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008047 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
8048 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00008049 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008050
8051 // Load the 'nest' parameter value into R10.
8052 // R10 is specified in X86CallingConv.td
8053 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00008054 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8055 DAG.getConstant(10, MVT::i64));
8056 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008057 Addr, MachinePointerInfo(TrmpAddr, 10),
8058 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008059
Owen Anderson825b72b2009-08-11 20:47:22 +00008060 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8061 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008062 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
8063 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00008064 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008065
8066 // Jump to the nested function.
8067 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00008068 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8069 DAG.getConstant(20, MVT::i64));
8070 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008071 Addr, MachinePointerInfo(TrmpAddr, 20),
8072 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008073
8074 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00008075 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8076 DAG.getConstant(22, MVT::i64));
8077 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008078 MachinePointerInfo(TrmpAddr, 22),
8079 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008080
Dan Gohman475871a2008-07-27 21:46:04 +00008081 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008082 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008083 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008084 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00008085 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00008086 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00008087 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00008088 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008089
8090 switch (CC) {
8091 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00008092 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008093 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008094 case CallingConv::X86_StdCall: {
8095 // Pass 'nest' parameter in ECX.
8096 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008097 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008098
8099 // Check that ECX wasn't needed by an 'inreg' parameter.
8100 const FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00008101 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008102
Chris Lattner58d74912008-03-12 17:45:29 +00008103 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00008104 unsigned InRegCount = 0;
8105 unsigned Idx = 1;
8106
8107 for (FunctionType::param_iterator I = FTy->param_begin(),
8108 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00008109 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00008110 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008111 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008112
8113 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00008114 report_fatal_error("Nest register in use - reduce number of inreg"
8115 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008116 }
8117 }
8118 break;
8119 }
8120 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00008121 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00008122 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008123 // Pass 'nest' parameter in EAX.
8124 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008125 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008126 break;
8127 }
8128
Dan Gohman475871a2008-07-27 21:46:04 +00008129 SDValue OutChains[4];
8130 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008131
Owen Anderson825b72b2009-08-11 20:47:22 +00008132 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8133 DAG.getConstant(10, MVT::i32));
8134 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008135
Chris Lattnera62fe662010-02-05 19:20:30 +00008136 // This is storing the opcode for MOV32ri.
8137 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008138 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00008139 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008140 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008141 Trmp, MachinePointerInfo(TrmpAddr),
8142 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008143
Owen Anderson825b72b2009-08-11 20:47:22 +00008144 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8145 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008146 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
8147 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00008148 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008149
Chris Lattnera62fe662010-02-05 19:20:30 +00008150 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00008151 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8152 DAG.getConstant(5, MVT::i32));
8153 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008154 MachinePointerInfo(TrmpAddr, 5),
8155 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008156
Owen Anderson825b72b2009-08-11 20:47:22 +00008157 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8158 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008159 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
8160 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00008161 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008162
Dan Gohman475871a2008-07-27 21:46:04 +00008163 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008164 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008165 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008166 }
8167}
8168
Dan Gohmand858e902010-04-17 15:26:15 +00008169SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
8170 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008171 /*
8172 The rounding mode is in bits 11:10 of FPSR, and has the following
8173 settings:
8174 00 Round to nearest
8175 01 Round to -inf
8176 10 Round to +inf
8177 11 Round to 0
8178
8179 FLT_ROUNDS, on the other hand, expects the following:
8180 -1 Undefined
8181 0 Round to 0
8182 1 Round to nearest
8183 2 Round to +inf
8184 3 Round to -inf
8185
8186 To perform the conversion, we do:
8187 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
8188 */
8189
8190 MachineFunction &MF = DAG.getMachineFunction();
8191 const TargetMachine &TM = MF.getTarget();
8192 const TargetFrameInfo &TFI = *TM.getFrameInfo();
8193 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00008194 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00008195 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008196
8197 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00008198 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008199 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008200
Michael J. Spencerec38de22010-10-10 22:04:20 +00008201
Chris Lattner2156b792010-09-22 01:11:26 +00008202 MachineMemOperand *MMO =
8203 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8204 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008205
Chris Lattner2156b792010-09-22 01:11:26 +00008206 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
8207 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
8208 DAG.getVTList(MVT::Other),
8209 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008210
8211 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00008212 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00008213 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008214
8215 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00008216 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00008217 DAG.getNode(ISD::SRL, DL, MVT::i16,
8218 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008219 CWD, DAG.getConstant(0x800, MVT::i16)),
8220 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00008221 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00008222 DAG.getNode(ISD::SRL, DL, MVT::i16,
8223 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008224 CWD, DAG.getConstant(0x400, MVT::i16)),
8225 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008226
Dan Gohman475871a2008-07-27 21:46:04 +00008227 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00008228 DAG.getNode(ISD::AND, DL, MVT::i16,
8229 DAG.getNode(ISD::ADD, DL, MVT::i16,
8230 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00008231 DAG.getConstant(1, MVT::i16)),
8232 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008233
8234
Duncan Sands83ec4b62008-06-06 12:08:01 +00008235 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00008236 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008237}
8238
Dan Gohmand858e902010-04-17 15:26:15 +00008239SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008240 EVT VT = Op.getValueType();
8241 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008242 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008243 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008244
8245 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008246 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00008247 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00008248 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008249 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008250 }
Evan Cheng18efe262007-12-14 02:13:44 +00008251
Evan Cheng152804e2007-12-14 08:30:15 +00008252 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008253 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008254 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008255
8256 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008257 SDValue Ops[] = {
8258 Op,
8259 DAG.getConstant(NumBits+NumBits-1, OpVT),
8260 DAG.getConstant(X86::COND_E, MVT::i8),
8261 Op.getValue(1)
8262 };
8263 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008264
8265 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00008266 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00008267
Owen Anderson825b72b2009-08-11 20:47:22 +00008268 if (VT == MVT::i8)
8269 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008270 return Op;
8271}
8272
Dan Gohmand858e902010-04-17 15:26:15 +00008273SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008274 EVT VT = Op.getValueType();
8275 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008276 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008277 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008278
8279 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008280 if (VT == MVT::i8) {
8281 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008282 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008283 }
Evan Cheng152804e2007-12-14 08:30:15 +00008284
8285 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008286 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008287 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008288
8289 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008290 SDValue Ops[] = {
8291 Op,
8292 DAG.getConstant(NumBits, OpVT),
8293 DAG.getConstant(X86::COND_E, MVT::i8),
8294 Op.getValue(1)
8295 };
8296 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008297
Owen Anderson825b72b2009-08-11 20:47:22 +00008298 if (VT == MVT::i8)
8299 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008300 return Op;
8301}
8302
Dan Gohmand858e902010-04-17 15:26:15 +00008303SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008304 EVT VT = Op.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00008305 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008306 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00008307
Mon P Wangaf9b9522008-12-18 21:42:19 +00008308 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
8309 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
8310 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
8311 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
8312 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
8313 //
8314 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
8315 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
8316 // return AloBlo + AloBhi + AhiBlo;
8317
8318 SDValue A = Op.getOperand(0);
8319 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008320
Dale Johannesene4d209d2009-02-03 20:21:25 +00008321 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008322 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8323 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008324 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008325 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8326 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008327 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008328 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008329 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008330 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008331 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008332 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008333 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008334 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008335 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008336 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008337 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8338 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008339 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008340 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8341 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008342 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
8343 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008344 return Res;
8345}
8346
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008347SDValue X86TargetLowering::LowerSHL(SDValue Op, SelectionDAG &DAG) const {
8348 EVT VT = Op.getValueType();
8349 DebugLoc dl = Op.getDebugLoc();
8350 SDValue R = Op.getOperand(0);
8351
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008352 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008353
Nate Begeman51409212010-07-28 00:21:48 +00008354 assert(Subtarget->hasSSE41() && "Cannot lower SHL without SSE4.1 or later");
8355
8356 if (VT == MVT::v4i32) {
8357 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8358 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8359 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
8360
8361 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008362
Nate Begeman51409212010-07-28 00:21:48 +00008363 std::vector<Constant*> CV(4, CI);
8364 Constant *C = ConstantVector::get(CV);
8365 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8366 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008367 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008368 false, false, 16);
8369
8370 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008371 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +00008372 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
8373 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
8374 }
8375 if (VT == MVT::v16i8) {
8376 // a = a << 5;
8377 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8378 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
8379 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
8380
8381 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
8382 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
8383
8384 std::vector<Constant*> CVM1(16, CM1);
8385 std::vector<Constant*> CVM2(16, CM2);
8386 Constant *C = ConstantVector::get(CVM1);
8387 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8388 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008389 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008390 false, false, 16);
8391
8392 // r = pblendv(r, psllw(r & (char16)15, 4), a);
8393 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8394 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8395 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8396 DAG.getConstant(4, MVT::i32));
8397 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8398 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8399 R, M, Op);
8400 // a += a
8401 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008402
Nate Begeman51409212010-07-28 00:21:48 +00008403 C = ConstantVector::get(CVM2);
8404 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8405 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008406 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00008407 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008408
Nate Begeman51409212010-07-28 00:21:48 +00008409 // r = pblendv(r, psllw(r & (char16)63, 2), a);
8410 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8411 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8412 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8413 DAG.getConstant(2, MVT::i32));
8414 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8415 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8416 R, M, Op);
8417 // a += a
8418 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008419
Nate Begeman51409212010-07-28 00:21:48 +00008420 // return pblendv(r, r+r, a);
8421 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8422 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8423 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
8424 return R;
8425 }
8426 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008427}
Mon P Wangaf9b9522008-12-18 21:42:19 +00008428
Dan Gohmand858e902010-04-17 15:26:15 +00008429SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00008430 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
8431 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00008432 // looks for this combo and may remove the "setcc" instruction if the "setcc"
8433 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00008434 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00008435 SDValue LHS = N->getOperand(0);
8436 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00008437 unsigned BaseOp = 0;
8438 unsigned Cond = 0;
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008439 DebugLoc dl = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00008440
8441 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008442 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00008443 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00008444 // A subtract of one will be selected as a INC. Note that INC doesn't
8445 // set CF, so we can't do this for UADDO.
8446 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
8447 if (C->getAPIntValue() == 1) {
8448 BaseOp = X86ISD::INC;
8449 Cond = X86::COND_O;
8450 break;
8451 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008452 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00008453 Cond = X86::COND_O;
8454 break;
8455 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008456 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00008457 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008458 break;
8459 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00008460 // A subtract of one will be selected as a DEC. Note that DEC doesn't
8461 // set CF, so we can't do this for USUBO.
8462 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
8463 if (C->getAPIntValue() == 1) {
8464 BaseOp = X86ISD::DEC;
8465 Cond = X86::COND_O;
8466 break;
8467 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008468 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00008469 Cond = X86::COND_O;
8470 break;
8471 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008472 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00008473 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008474 break;
8475 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00008476 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00008477 Cond = X86::COND_O;
8478 break;
8479 case ISD::UMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00008480 BaseOp = X86ISD::UMUL;
Dan Gohman653456c2009-01-07 00:15:08 +00008481 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008482 break;
8483 }
Bill Wendling3fafd932008-11-26 22:37:40 +00008484
Bill Wendling61edeb52008-12-02 01:06:39 +00008485 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008486 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008487 SDValue Sum = DAG.getNode(BaseOp, dl, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00008488
Bill Wendling61edeb52008-12-02 01:06:39 +00008489 SDValue SetCC =
Dale Johannesene4d209d2009-02-03 20:21:25 +00008490 DAG.getNode(X86ISD::SETCC, dl, N->getValueType(1),
Owen Anderson825b72b2009-08-11 20:47:22 +00008491 DAG.getConstant(Cond, MVT::i32), SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00008492
Bill Wendling61edeb52008-12-02 01:06:39 +00008493 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
8494 return Sum;
Bill Wendling41ea7e72008-11-24 19:21:46 +00008495}
8496
Eric Christopher9a9d2752010-07-22 02:48:34 +00008497SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
8498 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008499
Eric Christopherb6729dc2010-08-04 23:03:04 +00008500 if (!Subtarget->hasSSE2()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +00008501 SDValue Chain = Op.getOperand(0);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008502 SDValue Zero = DAG.getConstant(0,
Eric Christopherb6729dc2010-08-04 23:03:04 +00008503 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +00008504 SDValue Ops[] = {
8505 DAG.getRegister(X86::ESP, MVT::i32), // Base
8506 DAG.getTargetConstant(1, MVT::i8), // Scale
8507 DAG.getRegister(0, MVT::i32), // Index
8508 DAG.getTargetConstant(0, MVT::i32), // Disp
8509 DAG.getRegister(0, MVT::i32), // Segment.
8510 Zero,
8511 Chain
8512 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00008513 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +00008514 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
8515 array_lengthof(Ops));
8516 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +00008517 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008518
Eric Christopher9a9d2752010-07-22 02:48:34 +00008519 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +00008520 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +00008521 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008522
Chris Lattner132929a2010-08-14 17:26:09 +00008523 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
8524 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
8525 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
8526 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008527
Chris Lattner132929a2010-08-14 17:26:09 +00008528 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
8529 if (!Op1 && !Op2 && !Op3 && Op4)
8530 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008531
Chris Lattner132929a2010-08-14 17:26:09 +00008532 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
8533 if (Op1 && !Op2 && !Op3 && !Op4)
8534 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008535
8536 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +00008537 // (MFENCE)>;
8538 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +00008539}
8540
Dan Gohmand858e902010-04-17 15:26:15 +00008541SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008542 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008543 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00008544 unsigned Reg = 0;
8545 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00008546 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00008547 default:
8548 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008549 case MVT::i8: Reg = X86::AL; size = 1; break;
8550 case MVT::i16: Reg = X86::AX; size = 2; break;
8551 case MVT::i32: Reg = X86::EAX; size = 4; break;
8552 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00008553 assert(Subtarget->is64Bit() && "Node not type legal!");
8554 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00008555 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008556 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008557 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00008558 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00008559 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00008560 Op.getOperand(1),
8561 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +00008562 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +00008563 cpIn.getValue(1) };
Owen Anderson825b72b2009-08-11 20:47:22 +00008564 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008565 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
8566 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
8567 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +00008568 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008569 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00008570 return cpOut;
8571}
8572
Duncan Sands1607f052008-12-01 11:39:25 +00008573SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008574 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +00008575 assert(Subtarget->is64Bit() && "Result not type legalized?");
Owen Anderson825b72b2009-08-11 20:47:22 +00008576 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00008577 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008578 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008579 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008580 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
8581 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00008582 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +00008583 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
8584 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +00008585 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +00008586 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00008587 rdx.getValue(1)
8588 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008589 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00008590}
8591
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008592SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
Dale Johannesen7d07b482010-05-21 00:52:33 +00008593 SelectionDAG &DAG) const {
8594 EVT SrcVT = Op.getOperand(0).getValueType();
8595 EVT DstVT = Op.getValueType();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008596 assert((Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
Dale Johannesen7d07b482010-05-21 00:52:33 +00008597 Subtarget->hasMMX() && !DisableMMX) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008598 "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +00008599 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +00008600 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008601 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +00008602 // i64 <=> MMX conversions are Legal.
8603 if (SrcVT==MVT::i64 && DstVT.isVector())
8604 return Op;
8605 if (DstVT==MVT::i64 && SrcVT.isVector())
8606 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +00008607 // MMX <=> MMX conversions are Legal.
8608 if (SrcVT.isVector() && DstVT.isVector())
8609 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +00008610 // All other conversions need to be expanded.
8611 return SDValue();
8612}
Dan Gohmand858e902010-04-17 15:26:15 +00008613SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +00008614 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008615 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00008616 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008617 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00008618 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008619 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008620 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00008621 Node->getOperand(0),
8622 Node->getOperand(1), negOp,
8623 cast<AtomicSDNode>(Node)->getSrcValue(),
8624 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang63307c32008-05-05 19:05:59 +00008625}
8626
Evan Cheng0db9fe62006-04-25 20:13:52 +00008627/// LowerOperation - Provide custom lowering hooks for some operations.
8628///
Dan Gohmand858e902010-04-17 15:26:15 +00008629SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008630 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008631 default: llvm_unreachable("Should not custom lower this!");
Eric Christopher9a9d2752010-07-22 02:48:34 +00008632 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008633 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
8634 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008635 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00008636 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008637 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
8638 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
8639 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
8640 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
8641 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
8642 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008643 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00008644 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +00008645 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008646 case ISD::SHL_PARTS:
8647 case ISD::SRA_PARTS:
8648 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
8649 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008650 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008651 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00008652 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008653 case ISD::FABS: return LowerFABS(Op, DAG);
8654 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00008655 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00008656 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00008657 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00008658 case ISD::SELECT: return LowerSELECT(Op, DAG);
8659 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008660 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008661 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00008662 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00008663 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008664 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00008665 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
8666 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008667 case ISD::FRAME_TO_ARGS_OFFSET:
8668 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008669 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008670 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008671 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00008672 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00008673 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
8674 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008675 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008676 case ISD::SHL: return LowerSHL(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00008677 case ISD::SADDO:
8678 case ISD::UADDO:
8679 case ISD::SSUBO:
8680 case ISD::USUBO:
8681 case ISD::SMULO:
8682 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00008683 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008684 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008685 }
Chris Lattner27a6c732007-11-24 07:07:01 +00008686}
8687
Duncan Sands1607f052008-12-01 11:39:25 +00008688void X86TargetLowering::
8689ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00008690 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008691 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008692 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00008693 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +00008694
8695 SDValue Chain = Node->getOperand(0);
8696 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008697 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008698 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00008699 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008700 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +00008701 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +00008702 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +00008703 SDValue Result =
8704 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
8705 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +00008706 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +00008707 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008708 Results.push_back(Result.getValue(2));
8709}
8710
Duncan Sands126d9072008-07-04 11:47:58 +00008711/// ReplaceNodeResults - Replace a node with an illegal result type
8712/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00008713void X86TargetLowering::ReplaceNodeResults(SDNode *N,
8714 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00008715 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +00008716 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +00008717 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00008718 default:
Duncan Sands1607f052008-12-01 11:39:25 +00008719 assert(false && "Do not know how to custom type legalize this operation!");
8720 return;
8721 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +00008722 std::pair<SDValue,SDValue> Vals =
8723 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +00008724 SDValue FIST = Vals.first, StackSlot = Vals.second;
8725 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +00008726 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +00008727 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +00008728 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
8729 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +00008730 }
8731 return;
8732 }
8733 case ISD::READCYCLECOUNTER: {
Owen Anderson825b72b2009-08-11 20:47:22 +00008734 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00008735 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008736 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008737 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +00008738 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00008739 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008740 eax.getValue(2));
8741 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
8742 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +00008743 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008744 Results.push_back(edx.getValue(1));
8745 return;
8746 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008747 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +00008748 EVT T = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008749 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands1607f052008-12-01 11:39:25 +00008750 SDValue cpInL, cpInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00008751 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
8752 DAG.getConstant(0, MVT::i32));
8753 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
8754 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00008755 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
8756 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +00008757 cpInL.getValue(1));
8758 SDValue swapInL, swapInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00008759 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
8760 DAG.getConstant(0, MVT::i32));
8761 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
8762 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00008763 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +00008764 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00008765 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +00008766 swapInL.getValue(1));
8767 SDValue Ops[] = { swapInH.getValue(0),
8768 N->getOperand(1),
8769 swapInH.getValue(1) };
Owen Anderson825b72b2009-08-11 20:47:22 +00008770 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +00008771 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
8772 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys,
8773 Ops, 3, T, MMO);
Dale Johannesendd64c412009-02-04 00:33:20 +00008774 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson825b72b2009-08-11 20:47:22 +00008775 MVT::i32, Result.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00008776 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson825b72b2009-08-11 20:47:22 +00008777 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +00008778 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson825b72b2009-08-11 20:47:22 +00008779 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008780 Results.push_back(cpOutH.getValue(1));
8781 return;
8782 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008783 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00008784 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
8785 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008786 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00008787 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
8788 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008789 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00008790 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
8791 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008792 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00008793 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
8794 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008795 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00008796 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
8797 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008798 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00008799 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
8800 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008801 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00008802 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
8803 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00008804 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00008805}
8806
Evan Cheng72261582005-12-20 06:22:03 +00008807const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
8808 switch (Opcode) {
8809 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00008810 case X86ISD::BSF: return "X86ISD::BSF";
8811 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00008812 case X86ISD::SHLD: return "X86ISD::SHLD";
8813 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00008814 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00008815 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00008816 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00008817 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00008818 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00008819 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00008820 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
8821 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
8822 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00008823 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00008824 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00008825 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +00008826 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00008827 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00008828 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00008829 case X86ISD::COMI: return "X86ISD::COMI";
8830 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00008831 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +00008832 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Evan Cheng72261582005-12-20 06:22:03 +00008833 case X86ISD::CMOV: return "X86ISD::CMOV";
8834 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00008835 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00008836 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
8837 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00008838 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00008839 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +00008840 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +00008841 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00008842 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00008843 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
8844 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00008845 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +00008846 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Evan Cheng8ca29322006-11-10 21:43:37 +00008847 case X86ISD::FMAX: return "X86ISD::FMAX";
8848 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00008849 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
8850 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008851 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +00008852 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008853 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00008854 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008855 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00008856 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
8857 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00008858 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
8859 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
8860 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
8861 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
8862 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
8863 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00008864 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
8865 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00008866 case X86ISD::VSHL: return "X86ISD::VSHL";
8867 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00008868 case X86ISD::CMPPD: return "X86ISD::CMPPD";
8869 case X86ISD::CMPPS: return "X86ISD::CMPPS";
8870 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
8871 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
8872 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
8873 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
8874 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
8875 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
8876 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
8877 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008878 case X86ISD::ADD: return "X86ISD::ADD";
8879 case X86ISD::SUB: return "X86ISD::SUB";
Bill Wendlingd350e022008-12-12 21:15:41 +00008880 case X86ISD::SMUL: return "X86ISD::SMUL";
8881 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +00008882 case X86ISD::INC: return "X86ISD::INC";
8883 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +00008884 case X86ISD::OR: return "X86ISD::OR";
8885 case X86ISD::XOR: return "X86ISD::XOR";
8886 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +00008887 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +00008888 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008889 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008890 case X86ISD::PALIGN: return "X86ISD::PALIGN";
8891 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
8892 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
8893 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
8894 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
8895 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
8896 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
8897 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
8898 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008899 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00008900 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008901 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00008902 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
8903 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008904 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
8905 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
8906 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
8907 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
8908 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
8909 case X86ISD::MOVSD: return "X86ISD::MOVSD";
8910 case X86ISD::MOVSS: return "X86ISD::MOVSS";
8911 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
8912 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
8913 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
8914 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
8915 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
8916 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
8917 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
8918 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
8919 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
8920 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
8921 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
8922 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Dan Gohmand6708ea2009-08-15 01:38:56 +00008923 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +00008924 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008925 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Evan Cheng72261582005-12-20 06:22:03 +00008926 }
8927}
Evan Cheng3a03ebb2005-12-21 23:05:39 +00008928
Chris Lattnerc9addb72007-03-30 23:15:24 +00008929// isLegalAddressingMode - Return true if the addressing mode represented
8930// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00008931bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerc9addb72007-03-30 23:15:24 +00008932 const Type *Ty) const {
8933 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008934 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +00008935 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +00008936
Chris Lattnerc9addb72007-03-30 23:15:24 +00008937 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008938 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +00008939 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00008940
Chris Lattnerc9addb72007-03-30 23:15:24 +00008941 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +00008942 unsigned GVFlags =
8943 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008944
Chris Lattnerdfed4132009-07-10 07:38:24 +00008945 // If a reference to this global requires an extra load, we can't fold it.
8946 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +00008947 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008948
Chris Lattnerdfed4132009-07-10 07:38:24 +00008949 // If BaseGV requires a register for the PIC base, we cannot also have a
8950 // BaseReg specified.
8951 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +00008952 return false;
Evan Cheng52787842007-08-01 23:46:47 +00008953
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008954 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +00008955 if ((M != CodeModel::Small || R != Reloc::Static) &&
8956 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008957 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +00008958 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008959
Chris Lattnerc9addb72007-03-30 23:15:24 +00008960 switch (AM.Scale) {
8961 case 0:
8962 case 1:
8963 case 2:
8964 case 4:
8965 case 8:
8966 // These scales always work.
8967 break;
8968 case 3:
8969 case 5:
8970 case 9:
8971 // These scales are formed with basereg+scalereg. Only accept if there is
8972 // no basereg yet.
8973 if (AM.HasBaseReg)
8974 return false;
8975 break;
8976 default: // Other stuff never works.
8977 return false;
8978 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008979
Chris Lattnerc9addb72007-03-30 23:15:24 +00008980 return true;
8981}
8982
8983
Evan Cheng2bd122c2007-10-26 01:56:11 +00008984bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00008985 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +00008986 return false;
Evan Chenge127a732007-10-29 07:57:50 +00008987 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
8988 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00008989 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +00008990 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00008991 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +00008992}
8993
Owen Andersone50ed302009-08-10 22:56:29 +00008994bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00008995 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +00008996 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008997 unsigned NumBits1 = VT1.getSizeInBits();
8998 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00008999 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009000 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00009001 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009002}
Evan Cheng2bd122c2007-10-26 01:56:11 +00009003
Dan Gohman97121ba2009-04-08 00:15:30 +00009004bool X86TargetLowering::isZExtFree(const Type *Ty1, const Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00009005 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00009006 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00009007}
9008
Owen Andersone50ed302009-08-10 22:56:29 +00009009bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00009010 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +00009011 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00009012}
9013
Owen Andersone50ed302009-08-10 22:56:29 +00009014bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +00009015 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +00009016 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +00009017}
9018
Evan Cheng60c07e12006-07-05 22:17:51 +00009019/// isShuffleMaskLegal - Targets can use this to indicate that they only
9020/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
9021/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
9022/// are assumed to be legal.
9023bool
Eric Christopherfd179292009-08-27 18:07:15 +00009024X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +00009025 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +00009026 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +00009027 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +00009028 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +00009029
Nate Begemana09008b2009-10-19 02:17:23 +00009030 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +00009031 return (VT.getVectorNumElements() == 2 ||
9032 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
9033 isMOVLMask(M, VT) ||
9034 isSHUFPMask(M, VT) ||
9035 isPSHUFDMask(M, VT) ||
9036 isPSHUFHWMask(M, VT) ||
9037 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +00009038 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +00009039 isUNPCKLMask(M, VT) ||
9040 isUNPCKHMask(M, VT) ||
9041 isUNPCKL_v_undef_Mask(M, VT) ||
9042 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009043}
9044
Dan Gohman7d8143f2008-04-09 20:09:42 +00009045bool
Nate Begeman5a5ca152009-04-29 05:20:52 +00009046X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +00009047 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00009048 unsigned NumElts = VT.getVectorNumElements();
9049 // FIXME: This collection of masks seems suspect.
9050 if (NumElts == 2)
9051 return true;
9052 if (NumElts == 4 && VT.getSizeInBits() == 128) {
9053 return (isMOVLMask(Mask, VT) ||
9054 isCommutedMOVLMask(Mask, VT, true) ||
9055 isSHUFPMask(Mask, VT) ||
9056 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009057 }
9058 return false;
9059}
9060
9061//===----------------------------------------------------------------------===//
9062// X86 Scheduler Hooks
9063//===----------------------------------------------------------------------===//
9064
Mon P Wang63307c32008-05-05 19:05:59 +00009065// private utility function
9066MachineBasicBlock *
9067X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
9068 MachineBasicBlock *MBB,
9069 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009070 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009071 unsigned LoadOpc,
9072 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009073 unsigned notOpc,
9074 unsigned EAXreg,
9075 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009076 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009077 // For the atomic bitwise operator, we generate
9078 // thisMBB:
9079 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009080 // ld t1 = [bitinstr.addr]
9081 // op t2 = t1, [bitinstr.val]
9082 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009083 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9084 // bz newMBB
9085 // fallthrough -->nextMBB
9086 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9087 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009088 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009089 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009090
Mon P Wang63307c32008-05-05 19:05:59 +00009091 /// First build the CFG
9092 MachineFunction *F = MBB->getParent();
9093 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009094 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9095 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9096 F->insert(MBBIter, newMBB);
9097 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009098
Dan Gohman14152b42010-07-06 20:24:04 +00009099 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9100 nextMBB->splice(nextMBB->begin(), thisMBB,
9101 llvm::next(MachineBasicBlock::iterator(bInstr)),
9102 thisMBB->end());
9103 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009104
Mon P Wang63307c32008-05-05 19:05:59 +00009105 // Update thisMBB to fall through to newMBB
9106 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009107
Mon P Wang63307c32008-05-05 19:05:59 +00009108 // newMBB jumps to itself and fall through to nextMBB
9109 newMBB->addSuccessor(nextMBB);
9110 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009111
Mon P Wang63307c32008-05-05 19:05:59 +00009112 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009113 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009114 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +00009115 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009116 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009117 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009118 int numArgs = bInstr->getNumOperands() - 1;
9119 for (int i=0; i < numArgs; ++i)
9120 argOpers[i] = &bInstr->getOperand(i+1);
9121
9122 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009123 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009124 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009125
Dale Johannesen140be2d2008-08-19 18:47:28 +00009126 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009127 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009128 for (int i=0; i <= lastAddrIndx; ++i)
9129 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009130
Dale Johannesen140be2d2008-08-19 18:47:28 +00009131 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009132 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009133 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009134 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009135 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009136 tt = t1;
9137
Dale Johannesen140be2d2008-08-19 18:47:28 +00009138 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +00009139 assert((argOpers[valArgIndx]->isReg() ||
9140 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009141 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +00009142 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009143 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009144 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009145 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009146 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +00009147 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009148
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009149 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +00009150 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009151
Dale Johannesene4d209d2009-02-03 20:21:25 +00009152 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +00009153 for (int i=0; i <= lastAddrIndx; ++i)
9154 (*MIB).addOperand(*argOpers[i]);
9155 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +00009156 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009157 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9158 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +00009159
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009160 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +00009161 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009162
Mon P Wang63307c32008-05-05 19:05:59 +00009163 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009164 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009165
Dan Gohman14152b42010-07-06 20:24:04 +00009166 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009167 return nextMBB;
9168}
9169
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00009170// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +00009171MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009172X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
9173 MachineBasicBlock *MBB,
9174 unsigned regOpcL,
9175 unsigned regOpcH,
9176 unsigned immOpcL,
9177 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009178 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009179 // For the atomic bitwise operator, we generate
9180 // thisMBB (instructions are in pairs, except cmpxchg8b)
9181 // ld t1,t2 = [bitinstr.addr]
9182 // newMBB:
9183 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
9184 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +00009185 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009186 // mov ECX, EBX <- t5, t6
9187 // mov EAX, EDX <- t1, t2
9188 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
9189 // mov t3, t4 <- EAX, EDX
9190 // bz newMBB
9191 // result in out1, out2
9192 // fallthrough -->nextMBB
9193
9194 const TargetRegisterClass *RC = X86::GR32RegisterClass;
9195 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009196 const unsigned NotOpc = X86::NOT32r;
9197 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9198 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9199 MachineFunction::iterator MBBIter = MBB;
9200 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009201
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009202 /// First build the CFG
9203 MachineFunction *F = MBB->getParent();
9204 MachineBasicBlock *thisMBB = MBB;
9205 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9206 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9207 F->insert(MBBIter, newMBB);
9208 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009209
Dan Gohman14152b42010-07-06 20:24:04 +00009210 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9211 nextMBB->splice(nextMBB->begin(), thisMBB,
9212 llvm::next(MachineBasicBlock::iterator(bInstr)),
9213 thisMBB->end());
9214 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009215
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009216 // Update thisMBB to fall through to newMBB
9217 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009218
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009219 // newMBB jumps to itself and fall through to nextMBB
9220 newMBB->addSuccessor(nextMBB);
9221 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009222
Dale Johannesene4d209d2009-02-03 20:21:25 +00009223 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009224 // Insert instructions into newMBB based on incoming instruction
9225 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009226 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009227 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009228 MachineOperand& dest1Oper = bInstr->getOperand(0);
9229 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009230 MachineOperand* argOpers[2 + X86::AddrNumOperands];
9231 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009232 argOpers[i] = &bInstr->getOperand(i+2);
9233
Dan Gohman71ea4e52010-05-14 21:01:44 +00009234 // We use some of the operands multiple times, so conservatively just
9235 // clear any kill flags that might be present.
9236 if (argOpers[i]->isReg() && argOpers[i]->isUse())
9237 argOpers[i]->setIsKill(false);
9238 }
9239
Evan Chengad5b52f2010-01-08 19:14:57 +00009240 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009241 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +00009242
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009243 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009244 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009245 for (int i=0; i <= lastAddrIndx; ++i)
9246 (*MIB).addOperand(*argOpers[i]);
9247 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009248 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +00009249 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +00009250 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009251 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +00009252 MachineOperand newOp3 = *(argOpers[3]);
9253 if (newOp3.isImm())
9254 newOp3.setImm(newOp3.getImm()+4);
9255 else
9256 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009257 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +00009258 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009259
9260 // t3/4 are defined later, at the bottom of the loop
9261 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
9262 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009263 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009264 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009265 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009266 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
9267
Evan Cheng306b4ca2010-01-08 23:41:50 +00009268 // The subsequent operations should be using the destination registers of
9269 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +00009270 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009271 t1 = F->getRegInfo().createVirtualRegister(RC);
9272 t2 = F->getRegInfo().createVirtualRegister(RC);
9273 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
9274 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009275 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009276 t1 = dest1Oper.getReg();
9277 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009278 }
9279
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009280 int valArgIndx = lastAddrIndx + 1;
9281 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +00009282 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009283 "invalid operand");
9284 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
9285 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009286 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009287 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009288 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009289 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +00009290 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009291 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009292 (*MIB).addOperand(*argOpers[valArgIndx]);
9293 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009294 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009295 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009296 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009297 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009298 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009299 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009300 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +00009301 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009302 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009303 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009304
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009305 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009306 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009307 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009308 MIB.addReg(t2);
9309
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009310 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009311 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009312 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009313 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +00009314
Dale Johannesene4d209d2009-02-03 20:21:25 +00009315 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009316 for (int i=0; i <= lastAddrIndx; ++i)
9317 (*MIB).addOperand(*argOpers[i]);
9318
9319 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009320 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9321 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009322
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009323 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009324 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009325 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009326 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009327
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009328 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009329 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009330
Dan Gohman14152b42010-07-06 20:24:04 +00009331 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009332 return nextMBB;
9333}
9334
9335// private utility function
9336MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +00009337X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
9338 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009339 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009340 // For the atomic min/max operator, we generate
9341 // thisMBB:
9342 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009343 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +00009344 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +00009345 // cmp t1, t2
9346 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +00009347 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009348 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9349 // bz newMBB
9350 // fallthrough -->nextMBB
9351 //
9352 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9353 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009354 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009355 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009356
Mon P Wang63307c32008-05-05 19:05:59 +00009357 /// First build the CFG
9358 MachineFunction *F = MBB->getParent();
9359 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009360 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9361 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9362 F->insert(MBBIter, newMBB);
9363 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009364
Dan Gohman14152b42010-07-06 20:24:04 +00009365 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9366 nextMBB->splice(nextMBB->begin(), thisMBB,
9367 llvm::next(MachineBasicBlock::iterator(mInstr)),
9368 thisMBB->end());
9369 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009370
Mon P Wang63307c32008-05-05 19:05:59 +00009371 // Update thisMBB to fall through to newMBB
9372 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009373
Mon P Wang63307c32008-05-05 19:05:59 +00009374 // newMBB jumps to newMBB and fall through to nextMBB
9375 newMBB->addSuccessor(nextMBB);
9376 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009377
Dale Johannesene4d209d2009-02-03 20:21:25 +00009378 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009379 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009380 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009381 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +00009382 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009383 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009384 int numArgs = mInstr->getNumOperands() - 1;
9385 for (int i=0; i < numArgs; ++i)
9386 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009387
Mon P Wang63307c32008-05-05 19:05:59 +00009388 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009389 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009390 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009391
Mon P Wangab3e7472008-05-05 22:56:23 +00009392 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009393 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009394 for (int i=0; i <= lastAddrIndx; ++i)
9395 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +00009396
Mon P Wang63307c32008-05-05 19:05:59 +00009397 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +00009398 assert((argOpers[valArgIndx]->isReg() ||
9399 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009400 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +00009401
9402 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +00009403 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009404 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +00009405 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009406 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009407 (*MIB).addOperand(*argOpers[valArgIndx]);
9408
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009409 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +00009410 MIB.addReg(t1);
9411
Dale Johannesene4d209d2009-02-03 20:21:25 +00009412 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +00009413 MIB.addReg(t1);
9414 MIB.addReg(t2);
9415
9416 // Generate movc
9417 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009418 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +00009419 MIB.addReg(t2);
9420 MIB.addReg(t1);
9421
9422 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +00009423 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +00009424 for (int i=0; i <= lastAddrIndx; ++i)
9425 (*MIB).addOperand(*argOpers[i]);
9426 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +00009427 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009428 (*MIB).setMemRefs(mInstr->memoperands_begin(),
9429 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +00009430
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009431 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +00009432 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009433
Mon P Wang63307c32008-05-05 19:05:59 +00009434 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009435 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009436
Dan Gohman14152b42010-07-06 20:24:04 +00009437 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009438 return nextMBB;
9439}
9440
Eric Christopherf83a5de2009-08-27 18:08:16 +00009441// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009442// or XMM0_V32I8 in AVX all of this code can be replaced with that
9443// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +00009444MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +00009445X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +00009446 unsigned numArgs, bool memArg) const {
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009447 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
9448 "Target must have SSE4.2 or AVX features enabled");
9449
Eric Christopherb120ab42009-08-18 22:50:32 +00009450 DebugLoc dl = MI->getDebugLoc();
9451 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Eric Christopherb120ab42009-08-18 22:50:32 +00009452 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009453 if (!Subtarget->hasAVX()) {
9454 if (memArg)
9455 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
9456 else
9457 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
9458 } else {
9459 if (memArg)
9460 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
9461 else
9462 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
9463 }
Eric Christopherb120ab42009-08-18 22:50:32 +00009464
Eric Christopher41c902f2010-11-30 08:20:21 +00009465 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Eric Christopherb120ab42009-08-18 22:50:32 +00009466 for (unsigned i = 0; i < numArgs; ++i) {
9467 MachineOperand &Op = MI->getOperand(i+1);
Eric Christopherb120ab42009-08-18 22:50:32 +00009468 if (!(Op.isReg() && Op.isImplicit()))
9469 MIB.addOperand(Op);
9470 }
Eric Christopher41c902f2010-11-30 08:20:21 +00009471 BuildMI(*BB, MI, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +00009472 .addReg(X86::XMM0);
9473
Dan Gohman14152b42010-07-06 20:24:04 +00009474 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +00009475 return BB;
9476}
9477
9478MachineBasicBlock *
Eric Christopher228232b2010-11-30 07:20:12 +00009479X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +00009480 DebugLoc dl = MI->getDebugLoc();
9481 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9482
9483 // Address into RAX/EAX, other two args into ECX, EDX.
9484 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
9485 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
9486 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
9487 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +00009488 MIB.addOperand(MI->getOperand(i));
Eric Christopher228232b2010-11-30 07:20:12 +00009489
9490 unsigned ValOps = X86::AddrNumOperands;
9491 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
9492 .addReg(MI->getOperand(ValOps).getReg());
9493 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
9494 .addReg(MI->getOperand(ValOps+1).getReg());
9495
9496 // The instruction doesn't actually take any operands though.
9497 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
9498
9499 MI->eraseFromParent(); // The pseudo is gone now.
9500 return BB;
9501}
9502
9503MachineBasicBlock *
9504X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +00009505 DebugLoc dl = MI->getDebugLoc();
9506 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9507
9508 // First arg in ECX, the second in EAX.
9509 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
9510 .addReg(MI->getOperand(0).getReg());
9511 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
9512 .addReg(MI->getOperand(1).getReg());
9513
9514 // The instruction doesn't actually take any operands though.
9515 BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
9516
9517 MI->eraseFromParent(); // The pseudo is gone now.
9518 return BB;
9519}
9520
9521MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +00009522X86TargetLowering::EmitVAARG64WithCustomInserter(
9523 MachineInstr *MI,
9524 MachineBasicBlock *MBB) const {
9525 // Emit va_arg instruction on X86-64.
9526
9527 // Operands to this pseudo-instruction:
9528 // 0 ) Output : destination address (reg)
9529 // 1-5) Input : va_list address (addr, i64mem)
9530 // 6 ) ArgSize : Size (in bytes) of vararg type
9531 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
9532 // 8 ) Align : Alignment of type
9533 // 9 ) EFLAGS (implicit-def)
9534
9535 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
9536 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
9537
9538 unsigned DestReg = MI->getOperand(0).getReg();
9539 MachineOperand &Base = MI->getOperand(1);
9540 MachineOperand &Scale = MI->getOperand(2);
9541 MachineOperand &Index = MI->getOperand(3);
9542 MachineOperand &Disp = MI->getOperand(4);
9543 MachineOperand &Segment = MI->getOperand(5);
9544 unsigned ArgSize = MI->getOperand(6).getImm();
9545 unsigned ArgMode = MI->getOperand(7).getImm();
9546 unsigned Align = MI->getOperand(8).getImm();
9547
9548 // Memory Reference
9549 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
9550 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
9551 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
9552
9553 // Machine Information
9554 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9555 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
9556 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
9557 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
9558 DebugLoc DL = MI->getDebugLoc();
9559
9560 // struct va_list {
9561 // i32 gp_offset
9562 // i32 fp_offset
9563 // i64 overflow_area (address)
9564 // i64 reg_save_area (address)
9565 // }
9566 // sizeof(va_list) = 24
9567 // alignment(va_list) = 8
9568
9569 unsigned TotalNumIntRegs = 6;
9570 unsigned TotalNumXMMRegs = 8;
9571 bool UseGPOffset = (ArgMode == 1);
9572 bool UseFPOffset = (ArgMode == 2);
9573 unsigned MaxOffset = TotalNumIntRegs * 8 +
9574 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
9575
9576 /* Align ArgSize to a multiple of 8 */
9577 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
9578 bool NeedsAlign = (Align > 8);
9579
9580 MachineBasicBlock *thisMBB = MBB;
9581 MachineBasicBlock *overflowMBB;
9582 MachineBasicBlock *offsetMBB;
9583 MachineBasicBlock *endMBB;
9584
9585 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
9586 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
9587 unsigned OffsetReg = 0;
9588
9589 if (!UseGPOffset && !UseFPOffset) {
9590 // If we only pull from the overflow region, we don't create a branch.
9591 // We don't need to alter control flow.
9592 OffsetDestReg = 0; // unused
9593 OverflowDestReg = DestReg;
9594
9595 offsetMBB = NULL;
9596 overflowMBB = thisMBB;
9597 endMBB = thisMBB;
9598 } else {
9599 // First emit code to check if gp_offset (or fp_offset) is below the bound.
9600 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
9601 // If not, pull from overflow_area. (branch to overflowMBB)
9602 //
9603 // thisMBB
9604 // | .
9605 // | .
9606 // offsetMBB overflowMBB
9607 // | .
9608 // | .
9609 // endMBB
9610
9611 // Registers for the PHI in endMBB
9612 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
9613 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
9614
9615 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9616 MachineFunction *MF = MBB->getParent();
9617 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9618 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9619 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9620
9621 MachineFunction::iterator MBBIter = MBB;
9622 ++MBBIter;
9623
9624 // Insert the new basic blocks
9625 MF->insert(MBBIter, offsetMBB);
9626 MF->insert(MBBIter, overflowMBB);
9627 MF->insert(MBBIter, endMBB);
9628
9629 // Transfer the remainder of MBB and its successor edges to endMBB.
9630 endMBB->splice(endMBB->begin(), thisMBB,
9631 llvm::next(MachineBasicBlock::iterator(MI)),
9632 thisMBB->end());
9633 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
9634
9635 // Make offsetMBB and overflowMBB successors of thisMBB
9636 thisMBB->addSuccessor(offsetMBB);
9637 thisMBB->addSuccessor(overflowMBB);
9638
9639 // endMBB is a successor of both offsetMBB and overflowMBB
9640 offsetMBB->addSuccessor(endMBB);
9641 overflowMBB->addSuccessor(endMBB);
9642
9643 // Load the offset value into a register
9644 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
9645 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
9646 .addOperand(Base)
9647 .addOperand(Scale)
9648 .addOperand(Index)
9649 .addDisp(Disp, UseFPOffset ? 4 : 0)
9650 .addOperand(Segment)
9651 .setMemRefs(MMOBegin, MMOEnd);
9652
9653 // Check if there is enough room left to pull this argument.
9654 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
9655 .addReg(OffsetReg)
9656 .addImm(MaxOffset + 8 - ArgSizeA8);
9657
9658 // Branch to "overflowMBB" if offset >= max
9659 // Fall through to "offsetMBB" otherwise
9660 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
9661 .addMBB(overflowMBB);
9662 }
9663
9664 // In offsetMBB, emit code to use the reg_save_area.
9665 if (offsetMBB) {
9666 assert(OffsetReg != 0);
9667
9668 // Read the reg_save_area address.
9669 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
9670 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
9671 .addOperand(Base)
9672 .addOperand(Scale)
9673 .addOperand(Index)
9674 .addDisp(Disp, 16)
9675 .addOperand(Segment)
9676 .setMemRefs(MMOBegin, MMOEnd);
9677
9678 // Zero-extend the offset
9679 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
9680 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
9681 .addImm(0)
9682 .addReg(OffsetReg)
9683 .addImm(X86::sub_32bit);
9684
9685 // Add the offset to the reg_save_area to get the final address.
9686 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
9687 .addReg(OffsetReg64)
9688 .addReg(RegSaveReg);
9689
9690 // Compute the offset for the next argument
9691 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
9692 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
9693 .addReg(OffsetReg)
9694 .addImm(UseFPOffset ? 16 : 8);
9695
9696 // Store it back into the va_list.
9697 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
9698 .addOperand(Base)
9699 .addOperand(Scale)
9700 .addOperand(Index)
9701 .addDisp(Disp, UseFPOffset ? 4 : 0)
9702 .addOperand(Segment)
9703 .addReg(NextOffsetReg)
9704 .setMemRefs(MMOBegin, MMOEnd);
9705
9706 // Jump to endMBB
9707 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
9708 .addMBB(endMBB);
9709 }
9710
9711 //
9712 // Emit code to use overflow area
9713 //
9714
9715 // Load the overflow_area address into a register.
9716 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
9717 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
9718 .addOperand(Base)
9719 .addOperand(Scale)
9720 .addOperand(Index)
9721 .addDisp(Disp, 8)
9722 .addOperand(Segment)
9723 .setMemRefs(MMOBegin, MMOEnd);
9724
9725 // If we need to align it, do so. Otherwise, just copy the address
9726 // to OverflowDestReg.
9727 if (NeedsAlign) {
9728 // Align the overflow address
9729 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
9730 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
9731
9732 // aligned_addr = (addr + (align-1)) & ~(align-1)
9733 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
9734 .addReg(OverflowAddrReg)
9735 .addImm(Align-1);
9736
9737 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
9738 .addReg(TmpReg)
9739 .addImm(~(uint64_t)(Align-1));
9740 } else {
9741 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
9742 .addReg(OverflowAddrReg);
9743 }
9744
9745 // Compute the next overflow address after this argument.
9746 // (the overflow address should be kept 8-byte aligned)
9747 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
9748 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
9749 .addReg(OverflowDestReg)
9750 .addImm(ArgSizeA8);
9751
9752 // Store the new overflow address.
9753 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
9754 .addOperand(Base)
9755 .addOperand(Scale)
9756 .addOperand(Index)
9757 .addDisp(Disp, 8)
9758 .addOperand(Segment)
9759 .addReg(NextAddrReg)
9760 .setMemRefs(MMOBegin, MMOEnd);
9761
9762 // If we branched, emit the PHI to the front of endMBB.
9763 if (offsetMBB) {
9764 BuildMI(*endMBB, endMBB->begin(), DL,
9765 TII->get(X86::PHI), DestReg)
9766 .addReg(OffsetDestReg).addMBB(offsetMBB)
9767 .addReg(OverflowDestReg).addMBB(overflowMBB);
9768 }
9769
9770 // Erase the pseudo instruction
9771 MI->eraseFromParent();
9772
9773 return endMBB;
9774}
9775
9776MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +00009777X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
9778 MachineInstr *MI,
9779 MachineBasicBlock *MBB) const {
9780 // Emit code to save XMM registers to the stack. The ABI says that the
9781 // number of registers to save is given in %al, so it's theoretically
9782 // possible to do an indirect jump trick to avoid saving all of them,
9783 // however this code takes a simpler approach and just executes all
9784 // of the stores if %al is non-zero. It's less code, and it's probably
9785 // easier on the hardware branch predictor, and stores aren't all that
9786 // expensive anyway.
9787
9788 // Create the new basic blocks. One block contains all the XMM stores,
9789 // and one block is the final destination regardless of whether any
9790 // stores were performed.
9791 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9792 MachineFunction *F = MBB->getParent();
9793 MachineFunction::iterator MBBIter = MBB;
9794 ++MBBIter;
9795 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
9796 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
9797 F->insert(MBBIter, XMMSaveMBB);
9798 F->insert(MBBIter, EndMBB);
9799
Dan Gohman14152b42010-07-06 20:24:04 +00009800 // Transfer the remainder of MBB and its successor edges to EndMBB.
9801 EndMBB->splice(EndMBB->begin(), MBB,
9802 llvm::next(MachineBasicBlock::iterator(MI)),
9803 MBB->end());
9804 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
9805
Dan Gohmand6708ea2009-08-15 01:38:56 +00009806 // The original block will now fall through to the XMM save block.
9807 MBB->addSuccessor(XMMSaveMBB);
9808 // The XMMSaveMBB will fall through to the end block.
9809 XMMSaveMBB->addSuccessor(EndMBB);
9810
9811 // Now add the instructions.
9812 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9813 DebugLoc DL = MI->getDebugLoc();
9814
9815 unsigned CountReg = MI->getOperand(0).getReg();
9816 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
9817 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
9818
9819 if (!Subtarget->isTargetWin64()) {
9820 // If %al is 0, branch around the XMM save block.
9821 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009822 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009823 MBB->addSuccessor(EndMBB);
9824 }
9825
9826 // In the XMM save block, save all the XMM argument registers.
9827 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
9828 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +00009829 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +00009830 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +00009831 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +00009832 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +00009833 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009834 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
9835 .addFrameIndex(RegSaveFrameIndex)
9836 .addImm(/*Scale=*/1)
9837 .addReg(/*IndexReg=*/0)
9838 .addImm(/*Disp=*/Offset)
9839 .addReg(/*Segment=*/0)
9840 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +00009841 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009842 }
9843
Dan Gohman14152b42010-07-06 20:24:04 +00009844 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +00009845
9846 return EndMBB;
9847}
Mon P Wang63307c32008-05-05 19:05:59 +00009848
Evan Cheng60c07e12006-07-05 22:17:51 +00009849MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +00009850X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009851 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +00009852 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9853 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00009854
Chris Lattner52600972009-09-02 05:57:00 +00009855 // To "insert" a SELECT_CC instruction, we actually have to insert the
9856 // diamond control-flow pattern. The incoming instruction knows the
9857 // destination vreg to set, the condition code register to branch on, the
9858 // true/false values to select between, and a branch opcode to use.
9859 const BasicBlock *LLVM_BB = BB->getBasicBlock();
9860 MachineFunction::iterator It = BB;
9861 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +00009862
Chris Lattner52600972009-09-02 05:57:00 +00009863 // thisMBB:
9864 // ...
9865 // TrueVal = ...
9866 // cmpTY ccX, r1, r2
9867 // bCC copy1MBB
9868 // fallthrough --> copy0MBB
9869 MachineBasicBlock *thisMBB = BB;
9870 MachineFunction *F = BB->getParent();
9871 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
9872 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +00009873 F->insert(It, copy0MBB);
9874 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +00009875
Bill Wendling730c07e2010-06-25 20:48:10 +00009876 // If the EFLAGS register isn't dead in the terminator, then claim that it's
9877 // live into the sink and copy blocks.
9878 const MachineFunction *MF = BB->getParent();
9879 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
9880 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +00009881
Dan Gohman14152b42010-07-06 20:24:04 +00009882 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
9883 const MachineOperand &MO = MI->getOperand(I);
9884 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +00009885 unsigned Reg = MO.getReg();
9886 if (Reg != X86::EFLAGS) continue;
9887 copy0MBB->addLiveIn(Reg);
9888 sinkMBB->addLiveIn(Reg);
9889 }
9890
Dan Gohman14152b42010-07-06 20:24:04 +00009891 // Transfer the remainder of BB and its successor edges to sinkMBB.
9892 sinkMBB->splice(sinkMBB->begin(), BB,
9893 llvm::next(MachineBasicBlock::iterator(MI)),
9894 BB->end());
9895 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
9896
9897 // Add the true and fallthrough blocks as its successors.
9898 BB->addSuccessor(copy0MBB);
9899 BB->addSuccessor(sinkMBB);
9900
9901 // Create the conditional branch instruction.
9902 unsigned Opc =
9903 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
9904 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
9905
Chris Lattner52600972009-09-02 05:57:00 +00009906 // copy0MBB:
9907 // %FalseValue = ...
9908 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +00009909 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00009910
Chris Lattner52600972009-09-02 05:57:00 +00009911 // sinkMBB:
9912 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
9913 // ...
Dan Gohman14152b42010-07-06 20:24:04 +00009914 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
9915 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +00009916 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
9917 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
9918
Dan Gohman14152b42010-07-06 20:24:04 +00009919 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +00009920 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +00009921}
9922
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009923MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009924X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009925 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009926 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9927 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009928
9929 // The lowering is pretty easy: we're just emitting the call to _alloca. The
9930 // non-trivial part is impdef of ESP.
9931 // FIXME: The code should be tweaked as soon as we'll try to do codegen for
9932 // mingw-w64.
9933
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009934 const char *StackProbeSymbol =
9935 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
9936
Dan Gohman14152b42010-07-06 20:24:04 +00009937 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009938 .addExternalSymbol(StackProbeSymbol)
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009939 .addReg(X86::EAX, RegState::Implicit)
9940 .addReg(X86::ESP, RegState::Implicit)
9941 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
Anton Korobeynikov9f7f83b2010-08-25 07:50:11 +00009942 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
9943 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009944
Dan Gohman14152b42010-07-06 20:24:04 +00009945 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009946 return BB;
9947}
Chris Lattner52600972009-09-02 05:57:00 +00009948
9949MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +00009950X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
9951 MachineBasicBlock *BB) const {
9952 // This is pretty easy. We're taking the value that we received from
9953 // our load from the relocation, sticking it in either RDI (x86-64)
9954 // or EAX and doing an indirect call. The return value will then
9955 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +00009956 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +00009957 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +00009958 DebugLoc DL = MI->getDebugLoc();
9959 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +00009960
9961 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +00009962 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +00009963
Eric Christopher30ef0e52010-06-03 04:07:48 +00009964 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +00009965 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9966 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +00009967 .addReg(X86::RIP)
9968 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009969 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +00009970 MI->getOperand(3).getTargetFlags())
9971 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +00009972 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +00009973 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +00009974 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +00009975 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9976 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +00009977 .addReg(0)
9978 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009979 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +00009980 MI->getOperand(3).getTargetFlags())
9981 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +00009982 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +00009983 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +00009984 } else {
Dan Gohman14152b42010-07-06 20:24:04 +00009985 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9986 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +00009987 .addReg(TII->getGlobalBaseReg(F))
9988 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009989 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +00009990 MI->getOperand(3).getTargetFlags())
9991 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +00009992 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +00009993 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +00009994 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00009995
Dan Gohman14152b42010-07-06 20:24:04 +00009996 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +00009997 return BB;
9998}
9999
10000MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000010001X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010002 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000010003 switch (MI->getOpcode()) {
10004 default: assert(false && "Unexpected instr type to insert");
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010005 case X86::WIN_ALLOCA:
10006 return EmitLoweredWinAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010007 case X86::TLSCall_32:
10008 case X86::TLSCall_64:
10009 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000010010 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000010011 case X86::CMOV_FR32:
10012 case X86::CMOV_FR64:
10013 case X86::CMOV_V4F32:
10014 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000010015 case X86::CMOV_V2I64:
Chris Lattner314a1132010-03-14 18:31:44 +000010016 case X86::CMOV_GR16:
10017 case X86::CMOV_GR32:
10018 case X86::CMOV_RFP32:
10019 case X86::CMOV_RFP64:
10020 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010021 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000010022
Dale Johannesen849f2142007-07-03 00:53:03 +000010023 case X86::FP32_TO_INT16_IN_MEM:
10024 case X86::FP32_TO_INT32_IN_MEM:
10025 case X86::FP32_TO_INT64_IN_MEM:
10026 case X86::FP64_TO_INT16_IN_MEM:
10027 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000010028 case X86::FP64_TO_INT64_IN_MEM:
10029 case X86::FP80_TO_INT16_IN_MEM:
10030 case X86::FP80_TO_INT32_IN_MEM:
10031 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000010032 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10033 DebugLoc DL = MI->getDebugLoc();
10034
Evan Cheng60c07e12006-07-05 22:17:51 +000010035 // Change the floating point control register to use "round towards zero"
10036 // mode when truncating to an integer value.
10037 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000010038 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000010039 addFrameReference(BuildMI(*BB, MI, DL,
10040 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010041
10042 // Load the old value of the high byte of the control word...
10043 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +000010044 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +000010045 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010046 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010047
10048 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000010049 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010050 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000010051
10052 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000010053 addFrameReference(BuildMI(*BB, MI, DL,
10054 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010055
10056 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000010057 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010058 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000010059
10060 // Get the X86 opcode to use.
10061 unsigned Opc;
10062 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000010063 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000010064 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
10065 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
10066 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
10067 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
10068 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
10069 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000010070 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
10071 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
10072 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000010073 }
10074
10075 X86AddressMode AM;
10076 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000010077 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010078 AM.BaseType = X86AddressMode::RegBase;
10079 AM.Base.Reg = Op.getReg();
10080 } else {
10081 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000010082 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000010083 }
10084 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000010085 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010086 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010087 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000010088 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010089 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010090 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000010091 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010092 AM.GV = Op.getGlobal();
10093 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000010094 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010095 }
Dan Gohman14152b42010-07-06 20:24:04 +000010096 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010097 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000010098
10099 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000010100 addFrameReference(BuildMI(*BB, MI, DL,
10101 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010102
Dan Gohman14152b42010-07-06 20:24:04 +000010103 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000010104 return BB;
10105 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010106 // String/text processing lowering.
10107 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010108 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010109 return EmitPCMP(MI, BB, 3, false /* in-mem */);
10110 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010111 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010112 return EmitPCMP(MI, BB, 3, true /* in-mem */);
10113 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010114 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010115 return EmitPCMP(MI, BB, 5, false /* in mem */);
10116 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010117 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010118 return EmitPCMP(MI, BB, 5, true /* in mem */);
10119
Eric Christopher228232b2010-11-30 07:20:12 +000010120 // Thread synchronization.
10121 case X86::MONITOR:
10122 return EmitMonitor(MI, BB);
10123 case X86::MWAIT:
10124 return EmitMwait(MI, BB);
10125
Eric Christopherb120ab42009-08-18 22:50:32 +000010126 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000010127 case X86::ATOMAND32:
10128 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010129 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010130 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010131 X86::NOT32r, X86::EAX,
10132 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010133 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000010134 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
10135 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010136 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010137 X86::NOT32r, X86::EAX,
10138 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010139 case X86::ATOMXOR32:
10140 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010141 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010142 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010143 X86::NOT32r, X86::EAX,
10144 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010145 case X86::ATOMNAND32:
10146 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010147 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010148 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010149 X86::NOT32r, X86::EAX,
10150 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000010151 case X86::ATOMMIN32:
10152 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
10153 case X86::ATOMMAX32:
10154 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
10155 case X86::ATOMUMIN32:
10156 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
10157 case X86::ATOMUMAX32:
10158 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000010159
10160 case X86::ATOMAND16:
10161 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10162 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010163 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010164 X86::NOT16r, X86::AX,
10165 X86::GR16RegisterClass);
10166 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000010167 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010168 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010169 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010170 X86::NOT16r, X86::AX,
10171 X86::GR16RegisterClass);
10172 case X86::ATOMXOR16:
10173 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
10174 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010175 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010176 X86::NOT16r, X86::AX,
10177 X86::GR16RegisterClass);
10178 case X86::ATOMNAND16:
10179 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10180 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010181 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010182 X86::NOT16r, X86::AX,
10183 X86::GR16RegisterClass, true);
10184 case X86::ATOMMIN16:
10185 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
10186 case X86::ATOMMAX16:
10187 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
10188 case X86::ATOMUMIN16:
10189 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
10190 case X86::ATOMUMAX16:
10191 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
10192
10193 case X86::ATOMAND8:
10194 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10195 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010196 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010197 X86::NOT8r, X86::AL,
10198 X86::GR8RegisterClass);
10199 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000010200 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010201 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010202 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010203 X86::NOT8r, X86::AL,
10204 X86::GR8RegisterClass);
10205 case X86::ATOMXOR8:
10206 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
10207 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010208 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010209 X86::NOT8r, X86::AL,
10210 X86::GR8RegisterClass);
10211 case X86::ATOMNAND8:
10212 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10213 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010214 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010215 X86::NOT8r, X86::AL,
10216 X86::GR8RegisterClass, true);
10217 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010218 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000010219 case X86::ATOMAND64:
10220 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010221 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010222 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010223 X86::NOT64r, X86::RAX,
10224 X86::GR64RegisterClass);
10225 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000010226 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
10227 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010228 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010229 X86::NOT64r, X86::RAX,
10230 X86::GR64RegisterClass);
10231 case X86::ATOMXOR64:
10232 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010233 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010234 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010235 X86::NOT64r, X86::RAX,
10236 X86::GR64RegisterClass);
10237 case X86::ATOMNAND64:
10238 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
10239 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010240 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010241 X86::NOT64r, X86::RAX,
10242 X86::GR64RegisterClass, true);
10243 case X86::ATOMMIN64:
10244 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
10245 case X86::ATOMMAX64:
10246 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
10247 case X86::ATOMUMIN64:
10248 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
10249 case X86::ATOMUMAX64:
10250 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010251
10252 // This group does 64-bit operations on a 32-bit host.
10253 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010254 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010255 X86::AND32rr, X86::AND32rr,
10256 X86::AND32ri, X86::AND32ri,
10257 false);
10258 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010259 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010260 X86::OR32rr, X86::OR32rr,
10261 X86::OR32ri, X86::OR32ri,
10262 false);
10263 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010264 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010265 X86::XOR32rr, X86::XOR32rr,
10266 X86::XOR32ri, X86::XOR32ri,
10267 false);
10268 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010269 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010270 X86::AND32rr, X86::AND32rr,
10271 X86::AND32ri, X86::AND32ri,
10272 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010273 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010274 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010275 X86::ADD32rr, X86::ADC32rr,
10276 X86::ADD32ri, X86::ADC32ri,
10277 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010278 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010279 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010280 X86::SUB32rr, X86::SBB32rr,
10281 X86::SUB32ri, X86::SBB32ri,
10282 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000010283 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010284 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000010285 X86::MOV32rr, X86::MOV32rr,
10286 X86::MOV32ri, X86::MOV32ri,
10287 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010288 case X86::VASTART_SAVE_XMM_REGS:
10289 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000010290
10291 case X86::VAARG_64:
10292 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000010293 }
10294}
10295
10296//===----------------------------------------------------------------------===//
10297// X86 Optimization Hooks
10298//===----------------------------------------------------------------------===//
10299
Dan Gohman475871a2008-07-27 21:46:04 +000010300void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000010301 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010302 APInt &KnownZero,
10303 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000010304 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000010305 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010306 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000010307 assert((Opc >= ISD::BUILTIN_OP_END ||
10308 Opc == ISD::INTRINSIC_WO_CHAIN ||
10309 Opc == ISD::INTRINSIC_W_CHAIN ||
10310 Opc == ISD::INTRINSIC_VOID) &&
10311 "Should use MaskedValueIsZero if you don't know whether Op"
10312 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010313
Dan Gohmanf4f92f52008-02-13 23:07:24 +000010314 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010315 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000010316 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010317 case X86ISD::ADD:
10318 case X86ISD::SUB:
10319 case X86ISD::SMUL:
10320 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000010321 case X86ISD::INC:
10322 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000010323 case X86ISD::OR:
10324 case X86ISD::XOR:
10325 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010326 // These nodes' second result is a boolean.
10327 if (Op.getResNo() == 0)
10328 break;
10329 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010330 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010331 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
10332 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000010333 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010334 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010335}
Chris Lattner259e97c2006-01-31 19:43:35 +000010336
Owen Andersonbc146b02010-09-21 20:42:50 +000010337unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
10338 unsigned Depth) const {
10339 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
10340 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
10341 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000010342
Owen Andersonbc146b02010-09-21 20:42:50 +000010343 // Fallback case.
10344 return 1;
10345}
10346
Evan Cheng206ee9d2006-07-07 08:33:52 +000010347/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000010348/// node is a GlobalAddress + offset.
10349bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000010350 const GlobalValue* &GA,
10351 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000010352 if (N->getOpcode() == X86ISD::Wrapper) {
10353 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000010354 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000010355 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000010356 return true;
10357 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000010358 }
Evan Chengad4196b2008-05-12 19:56:52 +000010359 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000010360}
10361
Evan Cheng206ee9d2006-07-07 08:33:52 +000010362/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
10363/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
10364/// if the load addresses are consecutive, non-overlapping, and in the right
Nate Begemanfdea31a2010-03-24 20:49:50 +000010365/// order.
Dan Gohman475871a2008-07-27 21:46:04 +000010366static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Nate Begeman9008ca62009-04-27 18:41:29 +000010367 const TargetLowering &TLI) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010368 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000010369 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000010370
Eli Friedman7a5e5552009-06-07 06:52:44 +000010371 if (VT.getSizeInBits() != 128)
10372 return SDValue();
10373
Nate Begemanfdea31a2010-03-24 20:49:50 +000010374 SmallVector<SDValue, 16> Elts;
10375 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000010376 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000010377
Nate Begemanfdea31a2010-03-24 20:49:50 +000010378 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000010379}
Evan Chengd880b972008-05-09 21:53:03 +000010380
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000010381/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
10382/// generation and convert it from being a bunch of shuffles and extracts
10383/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010384static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
10385 const TargetLowering &TLI) {
10386 SDValue InputVector = N->getOperand(0);
10387
10388 // Only operate on vectors of 4 elements, where the alternative shuffling
10389 // gets to be more expensive.
10390 if (InputVector.getValueType() != MVT::v4i32)
10391 return SDValue();
10392
10393 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
10394 // single use which is a sign-extend or zero-extend, and all elements are
10395 // used.
10396 SmallVector<SDNode *, 4> Uses;
10397 unsigned ExtractedElements = 0;
10398 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
10399 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
10400 if (UI.getUse().getResNo() != InputVector.getResNo())
10401 return SDValue();
10402
10403 SDNode *Extract = *UI;
10404 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
10405 return SDValue();
10406
10407 if (Extract->getValueType(0) != MVT::i32)
10408 return SDValue();
10409 if (!Extract->hasOneUse())
10410 return SDValue();
10411 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
10412 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
10413 return SDValue();
10414 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
10415 return SDValue();
10416
10417 // Record which element was extracted.
10418 ExtractedElements |=
10419 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
10420
10421 Uses.push_back(Extract);
10422 }
10423
10424 // If not all the elements were used, this may not be worthwhile.
10425 if (ExtractedElements != 15)
10426 return SDValue();
10427
10428 // Ok, we've now decided to do the transformation.
10429 DebugLoc dl = InputVector.getDebugLoc();
10430
10431 // Store the value to a temporary stack slot.
10432 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010433 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
10434 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010435
10436 // Replace each use (extract) with a load of the appropriate element.
10437 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
10438 UE = Uses.end(); UI != UE; ++UI) {
10439 SDNode *Extract = *UI;
10440
10441 // Compute the element's address.
10442 SDValue Idx = Extract->getOperand(1);
10443 unsigned EltSize =
10444 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
10445 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
10446 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
10447
Eric Christopher90eb4022010-07-22 00:26:08 +000010448 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(),
Chris Lattner51abfe42010-09-21 06:02:19 +000010449 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010450
10451 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000010452 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000010453 ScalarAddr, MachinePointerInfo(),
10454 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010455
10456 // Replace the exact with the load.
10457 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
10458 }
10459
10460 // The replacement was made in place; don't return anything.
10461 return SDValue();
10462}
10463
Chris Lattner83e6c992006-10-04 06:57:07 +000010464/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000010465static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000010466 const X86Subtarget *Subtarget) {
10467 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000010468 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000010469 // Get the LHS/RHS of the select.
10470 SDValue LHS = N->getOperand(1);
10471 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000010472
Dan Gohman670e5392009-09-21 18:03:22 +000010473 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000010474 // instructions match the semantics of the common C idiom x<y?x:y but not
10475 // x<=y?x:y, because of how they handle negative zero (which can be
10476 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000010477 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000010478 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000010479 Cond.getOpcode() == ISD::SETCC) {
10480 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010481
Chris Lattner47b4ce82009-03-11 05:48:52 +000010482 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000010483 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000010484 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
10485 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000010486 switch (CC) {
10487 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000010488 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000010489 // Converting this to a min would handle NaNs incorrectly, and swapping
10490 // the operands would cause it to handle comparisons between positive
10491 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010492 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000010493 if (!UnsafeFPMath &&
10494 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10495 break;
10496 std::swap(LHS, RHS);
10497 }
Dan Gohman670e5392009-09-21 18:03:22 +000010498 Opcode = X86ISD::FMIN;
10499 break;
10500 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000010501 // Converting this to a min would handle comparisons between positive
10502 // and negative zero incorrectly.
10503 if (!UnsafeFPMath &&
10504 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
10505 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010506 Opcode = X86ISD::FMIN;
10507 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000010508 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000010509 // Converting this to a min would handle both negative zeros and NaNs
10510 // incorrectly, but we can swap the operands to fix both.
10511 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010512 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010513 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000010514 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010515 Opcode = X86ISD::FMIN;
10516 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010517
Dan Gohman670e5392009-09-21 18:03:22 +000010518 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010519 // Converting this to a max would handle comparisons between positive
10520 // and negative zero incorrectly.
10521 if (!UnsafeFPMath &&
10522 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(LHS))
10523 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010524 Opcode = X86ISD::FMAX;
10525 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000010526 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000010527 // Converting this to a max would handle NaNs incorrectly, and swapping
10528 // the operands would cause it to handle comparisons between positive
10529 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010530 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000010531 if (!UnsafeFPMath &&
10532 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10533 break;
10534 std::swap(LHS, RHS);
10535 }
Dan Gohman670e5392009-09-21 18:03:22 +000010536 Opcode = X86ISD::FMAX;
10537 break;
10538 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010539 // Converting this to a max would handle both negative zeros and NaNs
10540 // incorrectly, but we can swap the operands to fix both.
10541 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010542 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010543 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010544 case ISD::SETGE:
10545 Opcode = X86ISD::FMAX;
10546 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000010547 }
Dan Gohman670e5392009-09-21 18:03:22 +000010548 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000010549 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
10550 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000010551 switch (CC) {
10552 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000010553 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010554 // Converting this to a min would handle comparisons between positive
10555 // and negative zero incorrectly, and swapping the operands would
10556 // cause it to handle NaNs incorrectly.
10557 if (!UnsafeFPMath &&
10558 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000010559 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010560 break;
10561 std::swap(LHS, RHS);
10562 }
Dan Gohman670e5392009-09-21 18:03:22 +000010563 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000010564 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010565 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000010566 // Converting this to a min would handle NaNs incorrectly.
10567 if (!UnsafeFPMath &&
10568 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
10569 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010570 Opcode = X86ISD::FMIN;
10571 break;
10572 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010573 // Converting this to a min would handle both negative zeros and NaNs
10574 // incorrectly, but we can swap the operands to fix both.
10575 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010576 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010577 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010578 case ISD::SETGE:
10579 Opcode = X86ISD::FMIN;
10580 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010581
Dan Gohman670e5392009-09-21 18:03:22 +000010582 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000010583 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010584 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010585 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010586 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000010587 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010588 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000010589 // Converting this to a max would handle comparisons between positive
10590 // and negative zero incorrectly, and swapping the operands would
10591 // cause it to handle NaNs incorrectly.
10592 if (!UnsafeFPMath &&
10593 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000010594 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010595 break;
10596 std::swap(LHS, RHS);
10597 }
Dan Gohman670e5392009-09-21 18:03:22 +000010598 Opcode = X86ISD::FMAX;
10599 break;
10600 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000010601 // Converting this to a max would handle both negative zeros and NaNs
10602 // incorrectly, but we can swap the operands to fix both.
10603 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010604 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010605 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000010606 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010607 Opcode = X86ISD::FMAX;
10608 break;
10609 }
Chris Lattner83e6c992006-10-04 06:57:07 +000010610 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010611
Chris Lattner47b4ce82009-03-11 05:48:52 +000010612 if (Opcode)
10613 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000010614 }
Eric Christopherfd179292009-08-27 18:07:15 +000010615
Chris Lattnerd1980a52009-03-12 06:52:53 +000010616 // If this is a select between two integer constants, try to do some
10617 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000010618 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
10619 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000010620 // Don't do this for crazy integer types.
10621 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
10622 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000010623 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000010624 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000010625
Chris Lattnercee56e72009-03-13 05:53:31 +000010626 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000010627 // Efficiently invertible.
10628 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
10629 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
10630 isa<ConstantSDNode>(Cond.getOperand(1))))) {
10631 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000010632 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000010633 }
Eric Christopherfd179292009-08-27 18:07:15 +000010634
Chris Lattnerd1980a52009-03-12 06:52:53 +000010635 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000010636 if (FalseC->getAPIntValue() == 0 &&
10637 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000010638 if (NeedsCondInvert) // Invert the condition if needed.
10639 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10640 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010641
Chris Lattnerd1980a52009-03-12 06:52:53 +000010642 // Zero extend the condition if needed.
10643 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010644
Chris Lattnercee56e72009-03-13 05:53:31 +000010645 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000010646 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000010647 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000010648 }
Eric Christopherfd179292009-08-27 18:07:15 +000010649
Chris Lattner97a29a52009-03-13 05:22:11 +000010650 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000010651 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000010652 if (NeedsCondInvert) // Invert the condition if needed.
10653 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10654 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010655
Chris Lattner97a29a52009-03-13 05:22:11 +000010656 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000010657 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
10658 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000010659 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000010660 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000010661 }
Eric Christopherfd179292009-08-27 18:07:15 +000010662
Chris Lattnercee56e72009-03-13 05:53:31 +000010663 // Optimize cases that will turn into an LEA instruction. This requires
10664 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000010665 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000010666 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000010667 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000010668
Chris Lattnercee56e72009-03-13 05:53:31 +000010669 bool isFastMultiplier = false;
10670 if (Diff < 10) {
10671 switch ((unsigned char)Diff) {
10672 default: break;
10673 case 1: // result = add base, cond
10674 case 2: // result = lea base( , cond*2)
10675 case 3: // result = lea base(cond, cond*2)
10676 case 4: // result = lea base( , cond*4)
10677 case 5: // result = lea base(cond, cond*4)
10678 case 8: // result = lea base( , cond*8)
10679 case 9: // result = lea base(cond, cond*8)
10680 isFastMultiplier = true;
10681 break;
10682 }
10683 }
Eric Christopherfd179292009-08-27 18:07:15 +000010684
Chris Lattnercee56e72009-03-13 05:53:31 +000010685 if (isFastMultiplier) {
10686 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
10687 if (NeedsCondInvert) // Invert the condition if needed.
10688 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10689 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010690
Chris Lattnercee56e72009-03-13 05:53:31 +000010691 // Zero extend the condition if needed.
10692 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
10693 Cond);
10694 // Scale the condition by the difference.
10695 if (Diff != 1)
10696 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
10697 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010698
Chris Lattnercee56e72009-03-13 05:53:31 +000010699 // Add the base if non-zero.
10700 if (FalseC->getAPIntValue() != 0)
10701 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10702 SDValue(FalseC, 0));
10703 return Cond;
10704 }
Eric Christopherfd179292009-08-27 18:07:15 +000010705 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000010706 }
10707 }
Eric Christopherfd179292009-08-27 18:07:15 +000010708
Dan Gohman475871a2008-07-27 21:46:04 +000010709 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000010710}
10711
Chris Lattnerd1980a52009-03-12 06:52:53 +000010712/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
10713static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
10714 TargetLowering::DAGCombinerInfo &DCI) {
10715 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000010716
Chris Lattnerd1980a52009-03-12 06:52:53 +000010717 // If the flag operand isn't dead, don't touch this CMOV.
10718 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
10719 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000010720
Chris Lattnerd1980a52009-03-12 06:52:53 +000010721 // If this is a select between two integer constants, try to do some
10722 // optimizations. Note that the operands are ordered the opposite of SELECT
10723 // operands.
10724 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
10725 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
10726 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
10727 // larger than FalseC (the false value).
10728 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
Eric Christopherfd179292009-08-27 18:07:15 +000010729
Chris Lattnerd1980a52009-03-12 06:52:53 +000010730 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
10731 CC = X86::GetOppositeBranchCondition(CC);
10732 std::swap(TrueC, FalseC);
10733 }
Eric Christopherfd179292009-08-27 18:07:15 +000010734
Chris Lattnerd1980a52009-03-12 06:52:53 +000010735 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000010736 // This is efficient for any integer data type (including i8/i16) and
10737 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000010738 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
10739 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010740 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10741 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010742
Chris Lattnerd1980a52009-03-12 06:52:53 +000010743 // Zero extend the condition if needed.
10744 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010745
Chris Lattnerd1980a52009-03-12 06:52:53 +000010746 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
10747 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000010748 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000010749 if (N->getNumValues() == 2) // Dead flag value?
10750 return DCI.CombineTo(N, Cond, SDValue());
10751 return Cond;
10752 }
Eric Christopherfd179292009-08-27 18:07:15 +000010753
Chris Lattnercee56e72009-03-13 05:53:31 +000010754 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
10755 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000010756 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
10757 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010758 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10759 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010760
Chris Lattner97a29a52009-03-13 05:22:11 +000010761 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000010762 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
10763 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000010764 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10765 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000010766
Chris Lattner97a29a52009-03-13 05:22:11 +000010767 if (N->getNumValues() == 2) // Dead flag value?
10768 return DCI.CombineTo(N, Cond, SDValue());
10769 return Cond;
10770 }
Eric Christopherfd179292009-08-27 18:07:15 +000010771
Chris Lattnercee56e72009-03-13 05:53:31 +000010772 // Optimize cases that will turn into an LEA instruction. This requires
10773 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000010774 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000010775 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000010776 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000010777
Chris Lattnercee56e72009-03-13 05:53:31 +000010778 bool isFastMultiplier = false;
10779 if (Diff < 10) {
10780 switch ((unsigned char)Diff) {
10781 default: break;
10782 case 1: // result = add base, cond
10783 case 2: // result = lea base( , cond*2)
10784 case 3: // result = lea base(cond, cond*2)
10785 case 4: // result = lea base( , cond*4)
10786 case 5: // result = lea base(cond, cond*4)
10787 case 8: // result = lea base( , cond*8)
10788 case 9: // result = lea base(cond, cond*8)
10789 isFastMultiplier = true;
10790 break;
10791 }
10792 }
Eric Christopherfd179292009-08-27 18:07:15 +000010793
Chris Lattnercee56e72009-03-13 05:53:31 +000010794 if (isFastMultiplier) {
10795 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
10796 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010797 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10798 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000010799 // Zero extend the condition if needed.
10800 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
10801 Cond);
10802 // Scale the condition by the difference.
10803 if (Diff != 1)
10804 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
10805 DAG.getConstant(Diff, Cond.getValueType()));
10806
10807 // Add the base if non-zero.
10808 if (FalseC->getAPIntValue() != 0)
10809 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10810 SDValue(FalseC, 0));
10811 if (N->getNumValues() == 2) // Dead flag value?
10812 return DCI.CombineTo(N, Cond, SDValue());
10813 return Cond;
10814 }
Eric Christopherfd179292009-08-27 18:07:15 +000010815 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000010816 }
10817 }
10818 return SDValue();
10819}
10820
10821
Evan Cheng0b0cd912009-03-28 05:57:29 +000010822/// PerformMulCombine - Optimize a single multiply with constant into two
10823/// in order to implement it with two cheaper instructions, e.g.
10824/// LEA + SHL, LEA + LEA.
10825static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
10826 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000010827 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
10828 return SDValue();
10829
Owen Andersone50ed302009-08-10 22:56:29 +000010830 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000010831 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000010832 return SDValue();
10833
10834 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
10835 if (!C)
10836 return SDValue();
10837 uint64_t MulAmt = C->getZExtValue();
10838 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
10839 return SDValue();
10840
10841 uint64_t MulAmt1 = 0;
10842 uint64_t MulAmt2 = 0;
10843 if ((MulAmt % 9) == 0) {
10844 MulAmt1 = 9;
10845 MulAmt2 = MulAmt / 9;
10846 } else if ((MulAmt % 5) == 0) {
10847 MulAmt1 = 5;
10848 MulAmt2 = MulAmt / 5;
10849 } else if ((MulAmt % 3) == 0) {
10850 MulAmt1 = 3;
10851 MulAmt2 = MulAmt / 3;
10852 }
10853 if (MulAmt2 &&
10854 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
10855 DebugLoc DL = N->getDebugLoc();
10856
10857 if (isPowerOf2_64(MulAmt2) &&
10858 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
10859 // If second multiplifer is pow2, issue it first. We want the multiply by
10860 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
10861 // is an add.
10862 std::swap(MulAmt1, MulAmt2);
10863
10864 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000010865 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000010866 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000010867 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000010868 else
Evan Cheng73f24c92009-03-30 21:36:47 +000010869 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000010870 DAG.getConstant(MulAmt1, VT));
10871
Eric Christopherfd179292009-08-27 18:07:15 +000010872 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000010873 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000010874 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000010875 else
Evan Cheng73f24c92009-03-30 21:36:47 +000010876 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000010877 DAG.getConstant(MulAmt2, VT));
10878
10879 // Do not add new nodes to DAG combiner worklist.
10880 DCI.CombineTo(N, NewMul, false);
10881 }
10882 return SDValue();
10883}
10884
Evan Chengad9c0a32009-12-15 00:53:42 +000010885static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
10886 SDValue N0 = N->getOperand(0);
10887 SDValue N1 = N->getOperand(1);
10888 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
10889 EVT VT = N0.getValueType();
10890
10891 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
10892 // since the result of setcc_c is all zero's or all ones.
10893 if (N1C && N0.getOpcode() == ISD::AND &&
10894 N0.getOperand(1).getOpcode() == ISD::Constant) {
10895 SDValue N00 = N0.getOperand(0);
10896 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
10897 ((N00.getOpcode() == ISD::ANY_EXTEND ||
10898 N00.getOpcode() == ISD::ZERO_EXTEND) &&
10899 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
10900 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
10901 APInt ShAmt = N1C->getAPIntValue();
10902 Mask = Mask.shl(ShAmt);
10903 if (Mask != 0)
10904 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
10905 N00, DAG.getConstant(Mask, VT));
10906 }
10907 }
10908
10909 return SDValue();
10910}
Evan Cheng0b0cd912009-03-28 05:57:29 +000010911
Nate Begeman740ab032009-01-26 00:52:55 +000010912/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
10913/// when possible.
10914static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
10915 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000010916 EVT VT = N->getValueType(0);
10917 if (!VT.isVector() && VT.isInteger() &&
10918 N->getOpcode() == ISD::SHL)
10919 return PerformSHLCombine(N, DAG);
10920
Nate Begeman740ab032009-01-26 00:52:55 +000010921 // On X86 with SSE2 support, we can transform this to a vector shift if
10922 // all elements are shifted by the same amount. We can't do this in legalize
10923 // because the a constant vector is typically transformed to a constant pool
10924 // so we have no knowledge of the shift amount.
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010925 if (!Subtarget->hasSSE2())
10926 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000010927
Owen Anderson825b72b2009-08-11 20:47:22 +000010928 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010929 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000010930
Mon P Wang3becd092009-01-28 08:12:05 +000010931 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000010932 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000010933 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000010934 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000010935 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
10936 unsigned NumElts = VT.getVectorNumElements();
10937 unsigned i = 0;
10938 for (; i != NumElts; ++i) {
10939 SDValue Arg = ShAmtOp.getOperand(i);
10940 if (Arg.getOpcode() == ISD::UNDEF) continue;
10941 BaseShAmt = Arg;
10942 break;
10943 }
10944 for (; i != NumElts; ++i) {
10945 SDValue Arg = ShAmtOp.getOperand(i);
10946 if (Arg.getOpcode() == ISD::UNDEF) continue;
10947 if (Arg != BaseShAmt) {
10948 return SDValue();
10949 }
10950 }
10951 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000010952 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000010953 SDValue InVec = ShAmtOp.getOperand(0);
10954 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
10955 unsigned NumElts = InVec.getValueType().getVectorNumElements();
10956 unsigned i = 0;
10957 for (; i != NumElts; ++i) {
10958 SDValue Arg = InVec.getOperand(i);
10959 if (Arg.getOpcode() == ISD::UNDEF) continue;
10960 BaseShAmt = Arg;
10961 break;
10962 }
10963 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
10964 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000010965 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000010966 if (C->getZExtValue() == SplatIdx)
10967 BaseShAmt = InVec.getOperand(1);
10968 }
10969 }
10970 if (BaseShAmt.getNode() == 0)
10971 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
10972 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000010973 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010974 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000010975
Mon P Wangefa42202009-09-03 19:56:25 +000010976 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000010977 if (EltVT.bitsGT(MVT::i32))
10978 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
10979 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000010980 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000010981
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010982 // The shift amount is identical so we can do a vector shift.
10983 SDValue ValOp = N->getOperand(0);
10984 switch (N->getOpcode()) {
10985 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000010986 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010987 break;
10988 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000010989 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010990 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010991 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010992 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010993 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010994 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010995 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010996 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010997 if (VT == MVT::v8i16)
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_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011000 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011001 break;
11002 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000011003 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011004 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011005 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011006 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011007 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011008 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011009 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011010 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011011 break;
11012 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000011013 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011014 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011015 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011016 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011017 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011018 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011019 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011020 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011021 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011022 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011023 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011024 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011025 break;
Nate Begeman740ab032009-01-26 00:52:55 +000011026 }
11027 return SDValue();
11028}
11029
Evan Cheng760d1942010-01-04 21:22:48 +000011030static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000011031 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000011032 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000011033 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000011034 return SDValue();
11035
Evan Cheng760d1942010-01-04 21:22:48 +000011036 EVT VT = N->getValueType(0);
Evan Cheng8b1190a2010-04-28 01:18:01 +000011037 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
Evan Cheng760d1942010-01-04 21:22:48 +000011038 return SDValue();
11039
11040 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
11041 SDValue N0 = N->getOperand(0);
11042 SDValue N1 = N->getOperand(1);
11043 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
11044 std::swap(N0, N1);
11045 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
11046 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000011047 if (!N0.hasOneUse() || !N1.hasOneUse())
11048 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000011049
11050 SDValue ShAmt0 = N0.getOperand(1);
11051 if (ShAmt0.getValueType() != MVT::i8)
11052 return SDValue();
11053 SDValue ShAmt1 = N1.getOperand(1);
11054 if (ShAmt1.getValueType() != MVT::i8)
11055 return SDValue();
11056 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
11057 ShAmt0 = ShAmt0.getOperand(0);
11058 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
11059 ShAmt1 = ShAmt1.getOperand(0);
11060
11061 DebugLoc DL = N->getDebugLoc();
11062 unsigned Opc = X86ISD::SHLD;
11063 SDValue Op0 = N0.getOperand(0);
11064 SDValue Op1 = N1.getOperand(0);
11065 if (ShAmt0.getOpcode() == ISD::SUB) {
11066 Opc = X86ISD::SHRD;
11067 std::swap(Op0, Op1);
11068 std::swap(ShAmt0, ShAmt1);
11069 }
11070
Evan Cheng8b1190a2010-04-28 01:18:01 +000011071 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000011072 if (ShAmt1.getOpcode() == ISD::SUB) {
11073 SDValue Sum = ShAmt1.getOperand(0);
11074 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000011075 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
11076 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
11077 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
11078 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000011079 return DAG.getNode(Opc, DL, VT,
11080 Op0, Op1,
11081 DAG.getNode(ISD::TRUNCATE, DL,
11082 MVT::i8, ShAmt0));
11083 }
11084 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
11085 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
11086 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000011087 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000011088 return DAG.getNode(Opc, DL, VT,
11089 N0.getOperand(0), N1.getOperand(0),
11090 DAG.getNode(ISD::TRUNCATE, DL,
11091 MVT::i8, ShAmt0));
11092 }
11093
11094 return SDValue();
11095}
11096
Chris Lattner149a4e52008-02-22 02:09:43 +000011097/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011098static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000011099 const X86Subtarget *Subtarget) {
Chris Lattner149a4e52008-02-22 02:09:43 +000011100 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
11101 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000011102 // A preferable solution to the general problem is to figure out the right
11103 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000011104
11105 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng7e2ff772008-05-08 00:57:18 +000011106 StoreSDNode *St = cast<StoreSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +000011107 EVT VT = St->getValue().getValueType();
Evan Cheng536e6672009-03-12 05:59:15 +000011108 if (VT.getSizeInBits() != 64)
11109 return SDValue();
11110
Devang Patel578efa92009-06-05 21:57:13 +000011111 const Function *F = DAG.getMachineFunction().getFunction();
11112 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000011113 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000011114 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000011115 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000011116 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000011117 isa<LoadSDNode>(St->getValue()) &&
11118 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
11119 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011120 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011121 LoadSDNode *Ld = 0;
11122 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000011123 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000011124 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011125 // Must be a store of a load. We currently handle two cases: the load
11126 // is a direct child, and it's under an intervening TokenFactor. It is
11127 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000011128 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000011129 Ld = cast<LoadSDNode>(St->getChain());
11130 else if (St->getValue().hasOneUse() &&
11131 ChainVal->getOpcode() == ISD::TokenFactor) {
11132 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011133 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000011134 TokenFactorIndex = i;
11135 Ld = cast<LoadSDNode>(St->getValue());
11136 } else
11137 Ops.push_back(ChainVal->getOperand(i));
11138 }
11139 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000011140
Evan Cheng536e6672009-03-12 05:59:15 +000011141 if (!Ld || !ISD::isNormalLoad(Ld))
11142 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011143
Evan Cheng536e6672009-03-12 05:59:15 +000011144 // If this is not the MMX case, i.e. we are just turning i64 load/store
11145 // into f64 load/store, avoid the transformation if there are multiple
11146 // uses of the loaded value.
11147 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
11148 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011149
Evan Cheng536e6672009-03-12 05:59:15 +000011150 DebugLoc LdDL = Ld->getDebugLoc();
11151 DebugLoc StDL = N->getDebugLoc();
11152 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
11153 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
11154 // pair instead.
11155 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011156 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000011157 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
11158 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000011159 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000011160 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000011161 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000011162 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000011163 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000011164 Ops.size());
11165 }
Evan Cheng536e6672009-03-12 05:59:15 +000011166 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000011167 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011168 St->isVolatile(), St->isNonTemporal(),
11169 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000011170 }
Evan Cheng536e6672009-03-12 05:59:15 +000011171
11172 // Otherwise, lower to two pairs of 32-bit loads / stores.
11173 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011174 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
11175 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011176
Owen Anderson825b72b2009-08-11 20:47:22 +000011177 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011178 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011179 Ld->isVolatile(), Ld->isNonTemporal(),
11180 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000011181 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011182 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000011183 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000011184 MinAlign(Ld->getAlignment(), 4));
11185
11186 SDValue NewChain = LoLd.getValue(1);
11187 if (TokenFactorIndex != -1) {
11188 Ops.push_back(LoLd);
11189 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000011190 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000011191 Ops.size());
11192 }
11193
11194 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011195 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
11196 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011197
11198 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011199 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011200 St->isVolatile(), St->isNonTemporal(),
11201 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000011202 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011203 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000011204 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000011205 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000011206 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000011207 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000011208 }
Dan Gohman475871a2008-07-27 21:46:04 +000011209 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000011210}
11211
Chris Lattner6cf73262008-01-25 06:14:17 +000011212/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
11213/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011214static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000011215 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
11216 // F[X]OR(0.0, x) -> x
11217 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000011218 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
11219 if (C->getValueAPF().isPosZero())
11220 return N->getOperand(1);
11221 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
11222 if (C->getValueAPF().isPosZero())
11223 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000011224 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000011225}
11226
11227/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011228static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000011229 // FAND(0.0, x) -> 0.0
11230 // FAND(x, 0.0) -> 0.0
11231 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
11232 if (C->getValueAPF().isPosZero())
11233 return N->getOperand(0);
11234 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
11235 if (C->getValueAPF().isPosZero())
11236 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000011237 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000011238}
11239
Dan Gohmane5af2d32009-01-29 01:59:02 +000011240static SDValue PerformBTCombine(SDNode *N,
11241 SelectionDAG &DAG,
11242 TargetLowering::DAGCombinerInfo &DCI) {
11243 // BT ignores high bits in the bit index operand.
11244 SDValue Op1 = N->getOperand(1);
11245 if (Op1.hasOneUse()) {
11246 unsigned BitWidth = Op1.getValueSizeInBits();
11247 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
11248 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011249 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
11250 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000011251 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000011252 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
11253 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
11254 DCI.CommitTargetLoweringOpt(TLO);
11255 }
11256 return SDValue();
11257}
Chris Lattner83e6c992006-10-04 06:57:07 +000011258
Eli Friedman7a5e5552009-06-07 06:52:44 +000011259static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
11260 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000011261 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000011262 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000011263 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000011264 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000011265 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000011266 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000011267 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000011268 }
11269 return SDValue();
11270}
11271
Evan Cheng2e489c42009-12-16 00:53:11 +000011272static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
11273 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
11274 // (and (i32 x86isd::setcc_carry), 1)
11275 // This eliminates the zext. This transformation is necessary because
11276 // ISD::SETCC is always legalized to i8.
11277 DebugLoc dl = N->getDebugLoc();
11278 SDValue N0 = N->getOperand(0);
11279 EVT VT = N->getValueType(0);
11280 if (N0.getOpcode() == ISD::AND &&
11281 N0.hasOneUse() &&
11282 N0.getOperand(0).hasOneUse()) {
11283 SDValue N00 = N0.getOperand(0);
11284 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
11285 return SDValue();
11286 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
11287 if (!C || C->getZExtValue() != 1)
11288 return SDValue();
11289 return DAG.getNode(ISD::AND, dl, VT,
11290 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
11291 N00.getOperand(0), N00.getOperand(1)),
11292 DAG.getConstant(1, VT));
11293 }
11294
11295 return SDValue();
11296}
11297
Dan Gohman475871a2008-07-27 21:46:04 +000011298SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000011299 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000011300 SelectionDAG &DAG = DCI.DAG;
11301 switch (N->getOpcode()) {
11302 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011303 case ISD::EXTRACT_VECTOR_ELT:
11304 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000011305 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000011306 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000011307 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000011308 case ISD::SHL:
11309 case ISD::SRA:
11310 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000011311 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000011312 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000011313 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000011314 case X86ISD::FOR: return PerformFORCombine(N, DAG);
11315 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000011316 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000011317 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000011318 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011319 case X86ISD::SHUFPS: // Handle all target specific shuffles
11320 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000011321 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011322 case X86ISD::PUNPCKHBW:
11323 case X86ISD::PUNPCKHWD:
11324 case X86ISD::PUNPCKHDQ:
11325 case X86ISD::PUNPCKHQDQ:
11326 case X86ISD::UNPCKHPS:
11327 case X86ISD::UNPCKHPD:
11328 case X86ISD::PUNPCKLBW:
11329 case X86ISD::PUNPCKLWD:
11330 case X86ISD::PUNPCKLDQ:
11331 case X86ISD::PUNPCKLQDQ:
11332 case X86ISD::UNPCKLPS:
11333 case X86ISD::UNPCKLPD:
11334 case X86ISD::MOVHLPS:
11335 case X86ISD::MOVLHPS:
11336 case X86ISD::PSHUFD:
11337 case X86ISD::PSHUFHW:
11338 case X86ISD::PSHUFLW:
11339 case X86ISD::MOVSS:
11340 case X86ISD::MOVSD:
11341 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this);
Evan Cheng206ee9d2006-07-07 08:33:52 +000011342 }
11343
Dan Gohman475871a2008-07-27 21:46:04 +000011344 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000011345}
11346
Evan Chenge5b51ac2010-04-17 06:13:15 +000011347/// isTypeDesirableForOp - Return true if the target has native support for
11348/// the specified value type and it is 'desirable' to use the type for the
11349/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
11350/// instruction encodings are longer and some i16 instructions are slow.
11351bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
11352 if (!isTypeLegal(VT))
11353 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011354 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000011355 return true;
11356
11357 switch (Opc) {
11358 default:
11359 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000011360 case ISD::LOAD:
11361 case ISD::SIGN_EXTEND:
11362 case ISD::ZERO_EXTEND:
11363 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000011364 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000011365 case ISD::SRL:
11366 case ISD::SUB:
11367 case ISD::ADD:
11368 case ISD::MUL:
11369 case ISD::AND:
11370 case ISD::OR:
11371 case ISD::XOR:
11372 return false;
11373 }
11374}
11375
11376/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000011377/// beneficial for dag combiner to promote the specified node. If true, it
11378/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000011379bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000011380 EVT VT = Op.getValueType();
11381 if (VT != MVT::i16)
11382 return false;
11383
Evan Cheng4c26e932010-04-19 19:29:22 +000011384 bool Promote = false;
11385 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011386 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000011387 default: break;
11388 case ISD::LOAD: {
11389 LoadSDNode *LD = cast<LoadSDNode>(Op);
11390 // If the non-extending load has a single use and it's not live out, then it
11391 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011392 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
11393 Op.hasOneUse()*/) {
11394 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
11395 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
11396 // The only case where we'd want to promote LOAD (rather then it being
11397 // promoted as an operand is when it's only use is liveout.
11398 if (UI->getOpcode() != ISD::CopyToReg)
11399 return false;
11400 }
11401 }
Evan Cheng4c26e932010-04-19 19:29:22 +000011402 Promote = true;
11403 break;
11404 }
11405 case ISD::SIGN_EXTEND:
11406 case ISD::ZERO_EXTEND:
11407 case ISD::ANY_EXTEND:
11408 Promote = true;
11409 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011410 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011411 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000011412 SDValue N0 = Op.getOperand(0);
11413 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000011414 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000011415 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000011416 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011417 break;
11418 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000011419 case ISD::ADD:
11420 case ISD::MUL:
11421 case ISD::AND:
11422 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000011423 case ISD::XOR:
11424 Commute = true;
11425 // fallthrough
11426 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000011427 SDValue N0 = Op.getOperand(0);
11428 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000011429 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011430 return false;
11431 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000011432 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011433 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000011434 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011435 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000011436 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011437 }
11438 }
11439
11440 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000011441 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011442}
11443
Evan Cheng60c07e12006-07-05 22:17:51 +000011444//===----------------------------------------------------------------------===//
11445// X86 Inline Assembly Support
11446//===----------------------------------------------------------------------===//
11447
Chris Lattnerb8105652009-07-20 17:51:36 +000011448static bool LowerToBSwap(CallInst *CI) {
11449 // FIXME: this should verify that we are targetting a 486 or better. If not,
11450 // we will turn this bswap into something that will be lowered to logical ops
11451 // instead of emitting the bswap asm. For now, we don't support 486 or lower
11452 // so don't worry about this.
Eric Christopherfd179292009-08-27 18:07:15 +000011453
Chris Lattnerb8105652009-07-20 17:51:36 +000011454 // Verify this is a simple bswap.
Gabor Greife1c2b9c2010-06-30 13:03:37 +000011455 if (CI->getNumArgOperands() != 1 ||
Gabor Greif1cfe44a2010-06-26 11:51:52 +000011456 CI->getType() != CI->getArgOperand(0)->getType() ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011457 !CI->getType()->isIntegerTy())
Chris Lattnerb8105652009-07-20 17:51:36 +000011458 return false;
Eric Christopherfd179292009-08-27 18:07:15 +000011459
Chris Lattnerb8105652009-07-20 17:51:36 +000011460 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
11461 if (!Ty || Ty->getBitWidth() % 16 != 0)
11462 return false;
Eric Christopherfd179292009-08-27 18:07:15 +000011463
Chris Lattnerb8105652009-07-20 17:51:36 +000011464 // Okay, we can do this xform, do so now.
11465 const Type *Tys[] = { Ty };
11466 Module *M = CI->getParent()->getParent()->getParent();
11467 Constant *Int = Intrinsic::getDeclaration(M, Intrinsic::bswap, Tys, 1);
Eric Christopherfd179292009-08-27 18:07:15 +000011468
Gabor Greif1cfe44a2010-06-26 11:51:52 +000011469 Value *Op = CI->getArgOperand(0);
Chris Lattnerb8105652009-07-20 17:51:36 +000011470 Op = CallInst::Create(Int, Op, CI->getName(), CI);
Eric Christopherfd179292009-08-27 18:07:15 +000011471
Chris Lattnerb8105652009-07-20 17:51:36 +000011472 CI->replaceAllUsesWith(Op);
11473 CI->eraseFromParent();
11474 return true;
11475}
11476
11477bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
11478 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
John Thompson44ab89e2010-10-29 17:29:13 +000011479 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
Chris Lattnerb8105652009-07-20 17:51:36 +000011480
11481 std::string AsmStr = IA->getAsmString();
11482
11483 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000011484 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000011485 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000011486
11487 switch (AsmPieces.size()) {
11488 default: return false;
11489 case 1:
11490 AsmStr = AsmPieces[0];
11491 AsmPieces.clear();
11492 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
11493
11494 // bswap $0
11495 if (AsmPieces.size() == 2 &&
11496 (AsmPieces[0] == "bswap" ||
11497 AsmPieces[0] == "bswapq" ||
11498 AsmPieces[0] == "bswapl") &&
11499 (AsmPieces[1] == "$0" ||
11500 AsmPieces[1] == "${0:q}")) {
11501 // No need to check constraints, nothing other than the equivalent of
11502 // "=r,0" would be valid here.
11503 return LowerToBSwap(CI);
11504 }
11505 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011506 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011507 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000011508 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011509 AsmPieces[1] == "$$8," &&
11510 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000011511 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
11512 AsmPieces.clear();
Benjamin Kramer018cbd52010-03-12 13:54:59 +000011513 const std::string &Constraints = IA->getConstraintString();
11514 SplitString(StringRef(Constraints).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000011515 std::sort(AsmPieces.begin(), AsmPieces.end());
11516 if (AsmPieces.size() == 4 &&
11517 AsmPieces[0] == "~{cc}" &&
11518 AsmPieces[1] == "~{dirflag}" &&
11519 AsmPieces[2] == "~{flags}" &&
11520 AsmPieces[3] == "~{fpsr}") {
11521 return LowerToBSwap(CI);
11522 }
Chris Lattnerb8105652009-07-20 17:51:36 +000011523 }
11524 break;
11525 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000011526 if (CI->getType()->isIntegerTy(32) &&
11527 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
11528 SmallVector<StringRef, 4> Words;
11529 SplitString(AsmPieces[0], Words, " \t,");
11530 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
11531 Words[2] == "${0:w}") {
11532 Words.clear();
11533 SplitString(AsmPieces[1], Words, " \t,");
11534 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
11535 Words[2] == "$0") {
11536 Words.clear();
11537 SplitString(AsmPieces[2], Words, " \t,");
11538 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
11539 Words[2] == "${0:w}") {
11540 AsmPieces.clear();
11541 const std::string &Constraints = IA->getConstraintString();
11542 SplitString(StringRef(Constraints).substr(5), AsmPieces, ",");
11543 std::sort(AsmPieces.begin(), AsmPieces.end());
11544 if (AsmPieces.size() == 4 &&
11545 AsmPieces[0] == "~{cc}" &&
11546 AsmPieces[1] == "~{dirflag}" &&
11547 AsmPieces[2] == "~{flags}" &&
11548 AsmPieces[3] == "~{fpsr}") {
11549 return LowerToBSwap(CI);
11550 }
11551 }
11552 }
11553 }
11554 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011555 if (CI->getType()->isIntegerTy(64) &&
Owen Anderson1d0be152009-08-13 21:58:54 +000011556 Constraints.size() >= 2 &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011557 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
11558 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
11559 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
Benjamin Kramerd4f19592010-01-11 18:03:24 +000011560 SmallVector<StringRef, 4> Words;
Chris Lattnerb8105652009-07-20 17:51:36 +000011561 SplitString(AsmPieces[0], Words, " \t");
11562 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
11563 Words.clear();
11564 SplitString(AsmPieces[1], Words, " \t");
11565 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
11566 Words.clear();
11567 SplitString(AsmPieces[2], Words, " \t,");
11568 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
11569 Words[2] == "%edx") {
11570 return LowerToBSwap(CI);
11571 }
11572 }
11573 }
11574 }
11575 break;
11576 }
11577 return false;
11578}
11579
11580
11581
Chris Lattnerf4dff842006-07-11 02:54:03 +000011582/// getConstraintType - Given a constraint letter, return the type of
11583/// constraint it is for this target.
11584X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000011585X86TargetLowering::getConstraintType(const std::string &Constraint) const {
11586 if (Constraint.size() == 1) {
11587 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000011588 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000011589 case 'q':
11590 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000011591 case 'f':
11592 case 't':
11593 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000011594 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000011595 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000011596 case 'Y':
11597 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000011598 case 'a':
11599 case 'b':
11600 case 'c':
11601 case 'd':
11602 case 'S':
11603 case 'D':
11604 case 'A':
11605 return C_Register;
11606 case 'I':
11607 case 'J':
11608 case 'K':
11609 case 'L':
11610 case 'M':
11611 case 'N':
11612 case 'G':
11613 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000011614 case 'e':
11615 case 'Z':
11616 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000011617 default:
11618 break;
11619 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000011620 }
Chris Lattner4234f572007-03-25 02:14:49 +000011621 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000011622}
11623
John Thompson44ab89e2010-10-29 17:29:13 +000011624/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000011625/// This object must already have been set up with the operand type
11626/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000011627TargetLowering::ConstraintWeight
11628 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000011629 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000011630 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011631 Value *CallOperandVal = info.CallOperandVal;
11632 // If we don't have a value, we can't do a match,
11633 // but allow it at the lowest weight.
11634 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000011635 return CW_Default;
11636 const Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000011637 // Look at the constraint type.
11638 switch (*constraint) {
11639 default:
John Thompson44ab89e2010-10-29 17:29:13 +000011640 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
11641 case 'R':
11642 case 'q':
11643 case 'Q':
11644 case 'a':
11645 case 'b':
11646 case 'c':
11647 case 'd':
11648 case 'S':
11649 case 'D':
11650 case 'A':
11651 if (CallOperandVal->getType()->isIntegerTy())
11652 weight = CW_SpecificReg;
11653 break;
11654 case 'f':
11655 case 't':
11656 case 'u':
11657 if (type->isFloatingPointTy())
11658 weight = CW_SpecificReg;
11659 break;
11660 case 'y':
11661 if (type->isX86_MMXTy() && !DisableMMX && Subtarget->hasMMX())
11662 weight = CW_SpecificReg;
11663 break;
11664 case 'x':
11665 case 'Y':
11666 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1())
11667 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011668 break;
11669 case 'I':
11670 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
11671 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000011672 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011673 }
11674 break;
John Thompson44ab89e2010-10-29 17:29:13 +000011675 case 'J':
11676 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11677 if (C->getZExtValue() <= 63)
11678 weight = CW_Constant;
11679 }
11680 break;
11681 case 'K':
11682 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11683 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
11684 weight = CW_Constant;
11685 }
11686 break;
11687 case 'L':
11688 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11689 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
11690 weight = CW_Constant;
11691 }
11692 break;
11693 case 'M':
11694 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11695 if (C->getZExtValue() <= 3)
11696 weight = CW_Constant;
11697 }
11698 break;
11699 case 'N':
11700 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11701 if (C->getZExtValue() <= 0xff)
11702 weight = CW_Constant;
11703 }
11704 break;
11705 case 'G':
11706 case 'C':
11707 if (dyn_cast<ConstantFP>(CallOperandVal)) {
11708 weight = CW_Constant;
11709 }
11710 break;
11711 case 'e':
11712 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11713 if ((C->getSExtValue() >= -0x80000000LL) &&
11714 (C->getSExtValue() <= 0x7fffffffLL))
11715 weight = CW_Constant;
11716 }
11717 break;
11718 case 'Z':
11719 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11720 if (C->getZExtValue() <= 0xffffffff)
11721 weight = CW_Constant;
11722 }
11723 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011724 }
11725 return weight;
11726}
11727
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011728/// LowerXConstraint - try to replace an X constraint, which matches anything,
11729/// with another that has more specific requirements based on the type of the
11730/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000011731const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000011732LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000011733 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
11734 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000011735 if (ConstraintVT.isFloatingPoint()) {
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011736 if (Subtarget->hasSSE2())
Chris Lattner5e764232008-04-26 23:02:14 +000011737 return "Y";
11738 if (Subtarget->hasSSE1())
11739 return "x";
11740 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011741
Chris Lattner5e764232008-04-26 23:02:14 +000011742 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011743}
11744
Chris Lattner48884cd2007-08-25 00:47:38 +000011745/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
11746/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000011747void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattner48884cd2007-08-25 00:47:38 +000011748 char Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000011749 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000011750 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000011751 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000011752
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011753 switch (Constraint) {
11754 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000011755 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000011756 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011757 if (C->getZExtValue() <= 31) {
11758 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000011759 break;
11760 }
Devang Patel84f7fd22007-03-17 00:13:28 +000011761 }
Chris Lattner48884cd2007-08-25 00:47:38 +000011762 return;
Evan Cheng364091e2008-09-22 23:57:37 +000011763 case 'J':
11764 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000011765 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000011766 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11767 break;
11768 }
11769 }
11770 return;
11771 case 'K':
11772 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000011773 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000011774 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11775 break;
11776 }
11777 }
11778 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000011779 case 'N':
11780 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011781 if (C->getZExtValue() <= 255) {
11782 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000011783 break;
11784 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000011785 }
Chris Lattner48884cd2007-08-25 00:47:38 +000011786 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000011787 case 'e': {
11788 // 32-bit signed value
11789 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000011790 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
11791 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011792 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000011793 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000011794 break;
11795 }
11796 // FIXME gcc accepts some relocatable values here too, but only in certain
11797 // memory models; it's complicated.
11798 }
11799 return;
11800 }
11801 case 'Z': {
11802 // 32-bit unsigned value
11803 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000011804 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
11805 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011806 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11807 break;
11808 }
11809 }
11810 // FIXME gcc accepts some relocatable values here too, but only in certain
11811 // memory models; it's complicated.
11812 return;
11813 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011814 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011815 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000011816 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011817 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000011818 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000011819 break;
11820 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011821
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000011822 // In any sort of PIC mode addresses need to be computed at runtime by
11823 // adding in a register or some sort of table lookup. These can't
11824 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000011825 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000011826 return;
11827
Chris Lattnerdc43a882007-05-03 16:52:29 +000011828 // If we are in non-pic codegen mode, we allow the address of a global (with
11829 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000011830 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000011831 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000011832
Chris Lattner49921962009-05-08 18:23:14 +000011833 // Match either (GA), (GA+C), (GA+C1+C2), etc.
11834 while (1) {
11835 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
11836 Offset += GA->getOffset();
11837 break;
11838 } else if (Op.getOpcode() == ISD::ADD) {
11839 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
11840 Offset += C->getZExtValue();
11841 Op = Op.getOperand(0);
11842 continue;
11843 }
11844 } else if (Op.getOpcode() == ISD::SUB) {
11845 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
11846 Offset += -C->getZExtValue();
11847 Op = Op.getOperand(0);
11848 continue;
11849 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011850 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011851
Chris Lattner49921962009-05-08 18:23:14 +000011852 // Otherwise, this isn't something we can handle, reject it.
11853 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000011854 }
Eric Christopherfd179292009-08-27 18:07:15 +000011855
Dan Gohman46510a72010-04-15 01:51:59 +000011856 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011857 // If we require an extra load to get this address, as in PIC mode, we
11858 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000011859 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
11860 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011861 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000011862
Devang Patel0d881da2010-07-06 22:08:15 +000011863 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
11864 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000011865 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011866 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011867 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011868
Gabor Greifba36cb52008-08-28 21:40:38 +000011869 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000011870 Ops.push_back(Result);
11871 return;
11872 }
Dale Johannesen1784d162010-06-25 21:55:36 +000011873 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011874}
11875
Chris Lattner259e97c2006-01-31 19:43:35 +000011876std::vector<unsigned> X86TargetLowering::
Chris Lattner1efa40f2006-02-22 00:56:39 +000011877getRegClassForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000011878 EVT VT) const {
Chris Lattner259e97c2006-01-31 19:43:35 +000011879 if (Constraint.size() == 1) {
11880 // FIXME: not handling fp-stack yet!
Chris Lattner259e97c2006-01-31 19:43:35 +000011881 switch (Constraint[0]) { // GCC X86 Constraint Letters
Chris Lattnerf4dff842006-07-11 02:54:03 +000011882 default: break; // Unknown constraint letter
Evan Cheng47e9fab2009-07-17 22:13:25 +000011883 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
11884 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011885 if (VT == MVT::i32)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011886 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX,
11887 X86::ESI, X86::EDI, X86::R8D, X86::R9D,
11888 X86::R10D,X86::R11D,X86::R12D,
11889 X86::R13D,X86::R14D,X86::R15D,
11890 X86::EBP, X86::ESP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011891 else if (VT == MVT::i16)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011892 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX,
11893 X86::SI, X86::DI, X86::R8W,X86::R9W,
11894 X86::R10W,X86::R11W,X86::R12W,
11895 X86::R13W,X86::R14W,X86::R15W,
11896 X86::BP, X86::SP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011897 else if (VT == MVT::i8)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011898 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL,
11899 X86::SIL, X86::DIL, X86::R8B,X86::R9B,
11900 X86::R10B,X86::R11B,X86::R12B,
11901 X86::R13B,X86::R14B,X86::R15B,
11902 X86::BPL, X86::SPL, 0);
11903
Owen Anderson825b72b2009-08-11 20:47:22 +000011904 else if (VT == MVT::i64)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011905 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX,
11906 X86::RSI, X86::RDI, X86::R8, X86::R9,
11907 X86::R10, X86::R11, X86::R12,
11908 X86::R13, X86::R14, X86::R15,
11909 X86::RBP, X86::RSP, 0);
11910
11911 break;
11912 }
Eric Christopherfd179292009-08-27 18:07:15 +000011913 // 32-bit fallthrough
Chris Lattner259e97c2006-01-31 19:43:35 +000011914 case 'Q': // Q_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000011915 if (VT == MVT::i32)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000011916 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011917 else if (VT == MVT::i16)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000011918 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011919 else if (VT == MVT::i8)
Evan Cheng12914382007-08-13 23:27:11 +000011920 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011921 else if (VT == MVT::i64)
Chris Lattner03e6c702007-11-04 06:51:12 +000011922 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
11923 break;
Chris Lattner259e97c2006-01-31 19:43:35 +000011924 }
11925 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011926
Chris Lattner1efa40f2006-02-22 00:56:39 +000011927 return std::vector<unsigned>();
Chris Lattner259e97c2006-01-31 19:43:35 +000011928}
Chris Lattnerf76d1802006-07-31 23:26:50 +000011929
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011930std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000011931X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000011932 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000011933 // First, see if this is a constraint that directly corresponds to an LLVM
11934 // register class.
11935 if (Constraint.size() == 1) {
11936 // GCC Constraint Letters
11937 switch (Constraint[0]) {
11938 default: break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000011939 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000011940 case 'l': // INDEX_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000011941 if (VT == MVT::i8)
Chris Lattner0f65cad2007-04-09 05:49:22 +000011942 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011943 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000011944 return std::make_pair(0U, X86::GR16RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011945 if (VT == MVT::i32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000011946 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000011947 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000011948 case 'R': // LEGACY_REGS
11949 if (VT == MVT::i8)
11950 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
11951 if (VT == MVT::i16)
11952 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
11953 if (VT == MVT::i32 || !Subtarget->is64Bit())
11954 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
11955 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011956 case 'f': // FP Stack registers.
11957 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
11958 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000011959 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011960 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011961 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011962 return std::make_pair(0U, X86::RFP64RegisterClass);
11963 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000011964 case 'y': // MMX_REGS if MMX allowed.
11965 if (!Subtarget->hasMMX()) break;
11966 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000011967 case 'Y': // SSE_REGS if SSE2 allowed
11968 if (!Subtarget->hasSSE2()) break;
11969 // FALL THROUGH.
11970 case 'x': // SSE_REGS if SSE1 allowed
11971 if (!Subtarget->hasSSE1()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000011972
Owen Anderson825b72b2009-08-11 20:47:22 +000011973 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000011974 default: break;
11975 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000011976 case MVT::f32:
11977 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000011978 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011979 case MVT::f64:
11980 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000011981 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000011982 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000011983 case MVT::v16i8:
11984 case MVT::v8i16:
11985 case MVT::v4i32:
11986 case MVT::v2i64:
11987 case MVT::v4f32:
11988 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000011989 return std::make_pair(0U, X86::VR128RegisterClass);
11990 }
Chris Lattnerad043e82007-04-09 05:11:28 +000011991 break;
11992 }
11993 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011994
Chris Lattnerf76d1802006-07-31 23:26:50 +000011995 // Use the default implementation in TargetLowering to convert the register
11996 // constraint into a member of a register class.
11997 std::pair<unsigned, const TargetRegisterClass*> Res;
11998 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000011999
12000 // Not found as a standard register?
12001 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000012002 // Map st(0) -> st(7) -> ST0
12003 if (Constraint.size() == 7 && Constraint[0] == '{' &&
12004 tolower(Constraint[1]) == 's' &&
12005 tolower(Constraint[2]) == 't' &&
12006 Constraint[3] == '(' &&
12007 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
12008 Constraint[5] == ')' &&
12009 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000012010
Chris Lattner56d77c72009-09-13 22:41:48 +000012011 Res.first = X86::ST0+Constraint[4]-'0';
12012 Res.second = X86::RFP80RegisterClass;
12013 return Res;
12014 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000012015
Chris Lattner56d77c72009-09-13 22:41:48 +000012016 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000012017 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000012018 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000012019 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000012020 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000012021 }
Chris Lattner56d77c72009-09-13 22:41:48 +000012022
12023 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000012024 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000012025 Res.first = X86::EFLAGS;
12026 Res.second = X86::CCRRegisterClass;
12027 return Res;
12028 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000012029
Dale Johannesen330169f2008-11-13 21:52:36 +000012030 // 'A' means EAX + EDX.
12031 if (Constraint == "A") {
12032 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000012033 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000012034 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000012035 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000012036 return Res;
12037 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012038
Chris Lattnerf76d1802006-07-31 23:26:50 +000012039 // Otherwise, check to see if this is a register class of the wrong value
12040 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
12041 // turn into {ax},{dx}.
12042 if (Res.second->hasType(VT))
12043 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012044
Chris Lattnerf76d1802006-07-31 23:26:50 +000012045 // All of the single-register GCC register classes map their values onto
12046 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
12047 // really want an 8-bit or 32-bit register, map to the appropriate register
12048 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000012049 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012050 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012051 unsigned DestReg = 0;
12052 switch (Res.first) {
12053 default: break;
12054 case X86::AX: DestReg = X86::AL; break;
12055 case X86::DX: DestReg = X86::DL; break;
12056 case X86::CX: DestReg = X86::CL; break;
12057 case X86::BX: DestReg = X86::BL; break;
12058 }
12059 if (DestReg) {
12060 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012061 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012062 }
Owen Anderson825b72b2009-08-11 20:47:22 +000012063 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012064 unsigned DestReg = 0;
12065 switch (Res.first) {
12066 default: break;
12067 case X86::AX: DestReg = X86::EAX; break;
12068 case X86::DX: DestReg = X86::EDX; break;
12069 case X86::CX: DestReg = X86::ECX; break;
12070 case X86::BX: DestReg = X86::EBX; break;
12071 case X86::SI: DestReg = X86::ESI; break;
12072 case X86::DI: DestReg = X86::EDI; break;
12073 case X86::BP: DestReg = X86::EBP; break;
12074 case X86::SP: DestReg = X86::ESP; break;
12075 }
12076 if (DestReg) {
12077 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012078 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012079 }
Owen Anderson825b72b2009-08-11 20:47:22 +000012080 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012081 unsigned DestReg = 0;
12082 switch (Res.first) {
12083 default: break;
12084 case X86::AX: DestReg = X86::RAX; break;
12085 case X86::DX: DestReg = X86::RDX; break;
12086 case X86::CX: DestReg = X86::RCX; break;
12087 case X86::BX: DestReg = X86::RBX; break;
12088 case X86::SI: DestReg = X86::RSI; break;
12089 case X86::DI: DestReg = X86::RDI; break;
12090 case X86::BP: DestReg = X86::RBP; break;
12091 case X86::SP: DestReg = X86::RSP; break;
12092 }
12093 if (DestReg) {
12094 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012095 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012096 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000012097 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000012098 } else if (Res.second == X86::FR32RegisterClass ||
12099 Res.second == X86::FR64RegisterClass ||
12100 Res.second == X86::VR128RegisterClass) {
12101 // Handle references to XMM physical registers that got mapped into the
12102 // wrong class. This can happen with constraints like {xmm0} where the
12103 // target independent register mapper will just pick the first match it can
12104 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000012105 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000012106 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000012107 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000012108 Res.second = X86::FR64RegisterClass;
12109 else if (X86::VR128RegisterClass->hasType(VT))
12110 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000012111 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012112
Chris Lattnerf76d1802006-07-31 23:26:50 +000012113 return Res;
12114}