blob: f2054c9b244a02a37355b6ec70574ae5453921bc [file] [log] [blame]
Arnold Schwaighofera70fe792007-10-12 21:53:12 +00001//===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===//
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Chengd82fae32010-01-27 06:25:16 +000015#define DEBUG_TYPE "x86-isel"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000016#include "X86.h"
17#include "X86InstrBuilder.h"
18#include "X86ISelLowering.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000019#include "X86TargetMachine.h"
Chris Lattner8886dc22009-09-16 01:46:41 +000020#include "X86TargetObjectFile.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000021#include "llvm/CallingConv.h"
22#include "llvm/Constants.h"
23#include "llvm/DerivedTypes.h"
Chris Lattnerec7cfd42009-06-26 21:20:29 +000024#include "llvm/GlobalAlias.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000025#include "llvm/GlobalVariable.h"
26#include "llvm/Function.h"
Chris Lattner7fce21c2009-07-20 17:51:36 +000027#include "llvm/Instructions.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028#include "llvm/Intrinsics.h"
Owen Anderson6361f972009-07-15 21:51:10 +000029#include "llvm/LLVMContext.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000030#include "llvm/CodeGen/MachineFrameInfo.h"
31#include "llvm/CodeGen/MachineFunction.h"
32#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner25525cd2010-01-25 23:38:14 +000033#include "llvm/CodeGen/MachineJumpTableInfo.h"
Evan Cheng2e28d622008-02-02 04:07:54 +000034#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner1b989192007-12-31 04:13:23 +000035#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman12a9c082008-02-06 22:27:42 +000036#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattner541d8902010-01-26 06:28:43 +000037#include "llvm/MC/MCAsmInfo.h"
Chris Lattner82411c42010-01-26 05:02:42 +000038#include "llvm/MC/MCContext.h"
Daniel Dunbarbb6c3dc2010-03-15 23:51:06 +000039#include "llvm/MC/MCExpr.h"
Chris Lattner82411c42010-01-26 05:02:42 +000040#include "llvm/MC/MCSymbol.h"
Chris Lattner82411c42010-01-26 05:02:42 +000041#include "llvm/ADT/BitVector.h"
Evan Cheng75184a92007-12-11 01:46:18 +000042#include "llvm/ADT/SmallSet.h"
Evan Chengd82fae32010-01-27 06:25:16 +000043#include "llvm/ADT/Statistic.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000044#include "llvm/ADT/StringExtras.h"
Chris Lattner82411c42010-01-26 05:02:42 +000045#include "llvm/ADT/VectorExtras.h"
Mon P Wang1f292322008-11-23 04:37:22 +000046#include "llvm/Support/CommandLine.h"
Chris Lattner82411c42010-01-26 05:02:42 +000047#include "llvm/Support/Debug.h"
Bill Wendling024a32b2010-03-12 19:20:40 +000048#include "llvm/Support/Dwarf.h"
Chris Lattner82411c42010-01-26 05:02:42 +000049#include "llvm/Support/ErrorHandling.h"
50#include "llvm/Support/MathExtras.h"
Edwin Török4d9756a2009-07-08 20:53:28 +000051#include "llvm/Support/raw_ostream.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000052using namespace llvm;
Bill Wendling024a32b2010-03-12 19:20:40 +000053using namespace dwarf;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054
Evan Chengd82fae32010-01-27 06:25:16 +000055STATISTIC(NumTailCalls, "Number of tail calls");
56
Mon P Wang1f292322008-11-23 04:37:22 +000057static cl::opt<bool>
Mon P Wangba7e48e2008-11-24 02:10:43 +000058DisableMMX("disable-mmx", cl::Hidden, cl::desc("Disable use of MMX"));
Mon P Wang1f292322008-11-23 04:37:22 +000059
Evan Cheng2aea0b42008-04-25 19:11:04 +000060// Forward declarations.
Owen Andersonac9de032009-08-10 22:56:29 +000061static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman543d2142009-04-27 18:41:29 +000062 SDValue V2);
Evan Cheng2aea0b42008-04-25 19:11:04 +000063
Chris Lattnerc4c40a92009-07-28 03:13:23 +000064static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
65 switch (TM.getSubtarget<X86Subtarget>().TargetType) {
66 default: llvm_unreachable("unknown subtarget type");
67 case X86Subtarget::isDarwin:
Bill Wendling9a80c2e2010-03-15 19:04:37 +000068 if (TM.getSubtarget<X86Subtarget>().is64Bit())
69 return new X8664_MachoTargetObjectFile();
Anton Korobeynikovdf708fc2010-02-21 20:28:15 +000070 return new TargetLoweringObjectFileMachO();
Chris Lattnerc4c40a92009-07-28 03:13:23 +000071 case X86Subtarget::isELF:
Anton Korobeynikovd779bcb2010-02-15 22:35:59 +000072 if (TM.getSubtarget<X86Subtarget>().is64Bit())
73 return new X8664_ELFTargetObjectFile(TM);
74 return new X8632_ELFTargetObjectFile(TM);
Chris Lattnerc4c40a92009-07-28 03:13:23 +000075 case X86Subtarget::isMingw:
76 case X86Subtarget::isCygwin:
77 case X86Subtarget::isWindows:
78 return new TargetLoweringObjectFileCOFF();
79 }
Chris Lattnerc4c40a92009-07-28 03:13:23 +000080}
81
Dan Gohmanb41dfba2008-05-14 01:58:56 +000082X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Chris Lattnerc4c40a92009-07-28 03:13:23 +000083 : TargetLowering(TM, createTLOF(TM)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000084 Subtarget = &TM.getSubtarget<X86Subtarget>();
Dale Johannesene0e0fd02007-09-23 14:52:20 +000085 X86ScalarSSEf64 = Subtarget->hasSSE2();
86 X86ScalarSSEf32 = Subtarget->hasSSE1();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000087 X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
Anton Korobeynikovd0fef972008-09-09 18:22:57 +000088
Dan Gohmanf17a25c2007-07-18 16:29:46 +000089 RegInfo = TM.getRegisterInfo();
Anton Korobeynikovd0fef972008-09-09 18:22:57 +000090 TD = getTargetData();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000091
92 // Set up the TargetLowering object.
93
94 // X86 is weird, it always uses i8 for shift amounts and setcc results.
Owen Anderson36e3a6e2009-08-11 20:47:22 +000095 setShiftAmountType(MVT::i8);
Duncan Sands8cf4a822008-11-23 15:47:28 +000096 setBooleanContents(ZeroOrOneBooleanContent);
Evan Chenga9d350e2010-05-19 20:19:50 +000097 setSchedulingPreference(Sched::RegPressure);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000098 setStackPointerRegisterToSaveRestore(X86StackPtr);
99
100 if (Subtarget->isTargetDarwin()) {
101 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
102 setUseUnderscoreSetJmp(false);
103 setUseUnderscoreLongJmp(false);
104 } else if (Subtarget->isTargetMingw()) {
105 // MS runtime is weird: it exports _setjmp, but longjmp!
106 setUseUnderscoreSetJmp(true);
107 setUseUnderscoreLongJmp(false);
108 } else {
109 setUseUnderscoreSetJmp(true);
110 setUseUnderscoreLongJmp(true);
111 }
Scott Michel91099d62009-02-17 22:15:04 +0000112
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000113 // Set up the register classes.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000114 addRegisterClass(MVT::i8, X86::GR8RegisterClass);
Dan Gohmanfe403582010-04-30 18:30:26 +0000115 addRegisterClass(MVT::i16, X86::GR16RegisterClass);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000116 addRegisterClass(MVT::i32, X86::GR32RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000117 if (Subtarget->is64Bit())
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000118 addRegisterClass(MVT::i64, X86::GR64RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000119
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000120 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000121
Scott Michel91099d62009-02-17 22:15:04 +0000122 // We don't accept any truncstore of integer registers.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000123 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
Dan Gohmanfe403582010-04-30 18:30:26 +0000124 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000125 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
Dan Gohmanfe403582010-04-30 18:30:26 +0000126 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000127 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
128 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
Evan Cheng71343822008-10-15 02:05:31 +0000129
130 // SETOEQ and SETUNE require checking two conditions.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000131 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
132 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
133 setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
134 setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
135 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
136 setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
Chris Lattner3bc08502008-01-17 19:59:44 +0000137
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
139 // operation.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000140 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
141 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
142 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000143
144 if (Subtarget->is64Bit()) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000145 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
146 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand);
Eli Friedman8c3cb582009-05-23 09:59:16 +0000147 } else if (!UseSoftFloat) {
Dale Johannesen58d8a702010-05-15 18:51:12 +0000148 // We have an algorithm for SSE2->double, and we turn this into a
149 // 64-bit FILD followed by conditional FADD for other targets.
150 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Eli Friedman8c3cb582009-05-23 09:59:16 +0000151 // We have an algorithm for SSE2, and we turn this into a 64-bit
152 // FILD for other targets.
Dale Johannesen58d8a702010-05-15 18:51:12 +0000153 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000154 }
155
156 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
157 // this operation.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000158 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
159 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Bill Wendling6b42d012009-03-13 08:41:47 +0000160
Devang Patel3c233642009-06-05 18:48:29 +0000161 if (!UseSoftFloat) {
Bill Wendling6b42d012009-03-13 08:41:47 +0000162 // SSE has no i16 to fp conversion, only i32
163 if (X86ScalarSSEf32) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000164 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Bill Wendling6b42d012009-03-13 08:41:47 +0000165 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000166 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling6b42d012009-03-13 08:41:47 +0000167 } else {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000168 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
169 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling6b42d012009-03-13 08:41:47 +0000170 }
Dale Johannesen2fc20782007-09-14 22:26:36 +0000171 } else {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000172 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
173 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Promote);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000174 }
175
Dale Johannesen958b08b2007-09-19 23:55:34 +0000176 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
177 // are Legal, f80 is custom lowered.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000178 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
179 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000180
181 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
182 // this operation.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000183 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
184 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000185
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000186 if (X86ScalarSSEf32) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000187 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen2fc20782007-09-14 22:26:36 +0000188 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000189 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190 } else {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000191 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
192 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000193 }
194
195 // Handle FP_TO_UINT by promoting the destination to a larger signed
196 // conversion.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000197 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
198 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
199 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000200
201 if (Subtarget->is64Bit()) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000202 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
203 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
Eli Friedman8c3cb582009-05-23 09:59:16 +0000204 } else if (!UseSoftFloat) {
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000205 if (X86ScalarSSEf32 && !Subtarget->hasSSE3())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000206 // Expand FP_TO_UINT into a select.
207 // FIXME: We would like to use a Custom expander here eventually to do
208 // the optimal thing for SSE vs. the default expansion in the legalizer.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000209 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000210 else
Eli Friedman8c3cb582009-05-23 09:59:16 +0000211 // With SSE3 we can use fisttpll to convert to a signed i64; without
212 // SSE, we're stuck with a fistpll.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000213 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000214 }
215
216 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Dale Johannesen6d730c02010-05-21 18:44:47 +0000217 if (!X86ScalarSSEf64) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000218 setOperationAction(ISD::BIT_CONVERT , MVT::f32 , Expand);
219 setOperationAction(ISD::BIT_CONVERT , MVT::i32 , Expand);
Dale Johannesenb1b0c842010-05-21 18:40:15 +0000220 if (Subtarget->is64Bit()) {
Dale Johannesenda2f3542010-05-21 00:52:33 +0000221 setOperationAction(ISD::BIT_CONVERT , MVT::f64 , Expand);
Dale Johannesenb1b0c842010-05-21 18:40:15 +0000222 // Without SSE, i64->f64 goes through memory; i64->MMX is Legal.
223 if (Subtarget->hasMMX() && !DisableMMX)
224 setOperationAction(ISD::BIT_CONVERT , MVT::i64 , Custom);
225 else
226 setOperationAction(ISD::BIT_CONVERT , MVT::i64 , Expand);
Dale Johannesenda2f3542010-05-21 00:52:33 +0000227 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000228 }
229
Dan Gohman8450d862008-02-18 19:34:53 +0000230 // Scalar integer divide and remainder are lowered to use operations that
231 // produce two results, to match the available instructions. This exposes
232 // the two-result form to trivial CSE, which is able to combine x/y and x%y
233 // into a single instruction.
234 //
235 // Scalar integer multiply-high is also lowered to use two-result
236 // operations, to match the available instructions. However, plain multiply
237 // (low) operations are left as Legal, as there are single-result
238 // instructions for this in x86. Using the two-result multiply instructions
239 // when both high and low results are needed must be arranged by dagcombine.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000240 setOperationAction(ISD::MULHS , MVT::i8 , Expand);
241 setOperationAction(ISD::MULHU , MVT::i8 , Expand);
242 setOperationAction(ISD::SDIV , MVT::i8 , Expand);
243 setOperationAction(ISD::UDIV , MVT::i8 , Expand);
244 setOperationAction(ISD::SREM , MVT::i8 , Expand);
245 setOperationAction(ISD::UREM , MVT::i8 , Expand);
246 setOperationAction(ISD::MULHS , MVT::i16 , Expand);
247 setOperationAction(ISD::MULHU , MVT::i16 , Expand);
248 setOperationAction(ISD::SDIV , MVT::i16 , Expand);
249 setOperationAction(ISD::UDIV , MVT::i16 , Expand);
250 setOperationAction(ISD::SREM , MVT::i16 , Expand);
251 setOperationAction(ISD::UREM , MVT::i16 , Expand);
252 setOperationAction(ISD::MULHS , MVT::i32 , Expand);
253 setOperationAction(ISD::MULHU , MVT::i32 , Expand);
254 setOperationAction(ISD::SDIV , MVT::i32 , Expand);
255 setOperationAction(ISD::UDIV , MVT::i32 , Expand);
256 setOperationAction(ISD::SREM , MVT::i32 , Expand);
257 setOperationAction(ISD::UREM , MVT::i32 , Expand);
258 setOperationAction(ISD::MULHS , MVT::i64 , Expand);
259 setOperationAction(ISD::MULHU , MVT::i64 , Expand);
260 setOperationAction(ISD::SDIV , MVT::i64 , Expand);
261 setOperationAction(ISD::UDIV , MVT::i64 , Expand);
262 setOperationAction(ISD::SREM , MVT::i64 , Expand);
263 setOperationAction(ISD::UREM , MVT::i64 , Expand);
Dan Gohman242a5ba2007-09-25 18:23:27 +0000264
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000265 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
266 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
267 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
268 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000269 if (Subtarget->is64Bit())
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000270 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
271 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
272 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
273 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
274 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
275 setOperationAction(ISD::FREM , MVT::f32 , Expand);
276 setOperationAction(ISD::FREM , MVT::f64 , Expand);
277 setOperationAction(ISD::FREM , MVT::f80 , Expand);
278 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michel91099d62009-02-17 22:15:04 +0000279
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000280 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
281 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
282 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
283 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
Dan Gohmanfe403582010-04-30 18:30:26 +0000284 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
285 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000286 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
287 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
288 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000289 if (Subtarget->is64Bit()) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000290 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
291 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
292 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000293 }
294
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000295 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
296 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000297
298 // These should be promoted to a larger select which is supported.
Dan Gohman29b998f2009-08-27 00:14:12 +0000299 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000300 // X86 wants to expand cmov itself.
Dan Gohman29b998f2009-08-27 00:14:12 +0000301 setOperationAction(ISD::SELECT , MVT::i8 , Custom);
Dan Gohmanfe403582010-04-30 18:30:26 +0000302 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000303 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
304 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
305 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
306 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
307 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
Dan Gohmanfe403582010-04-30 18:30:26 +0000308 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000309 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
310 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
311 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
312 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000313 if (Subtarget->is64Bit()) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000314 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
315 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000316 }
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000317 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000318
319 // Darwin ABI issue.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000320 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
321 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
322 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
323 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +0000324 if (Subtarget->is64Bit())
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000325 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
326 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohman064403e2009-10-30 01:28:02 +0000327 setOperationAction(ISD::BlockAddress , MVT::i32 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000328 if (Subtarget->is64Bit()) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000329 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
330 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
331 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
332 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohman064403e2009-10-30 01:28:02 +0000333 setOperationAction(ISD::BlockAddress , MVT::i64 , Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000334 }
335 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000336 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
337 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
338 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman092014e2008-03-03 22:22:09 +0000339 if (Subtarget->is64Bit()) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000340 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
341 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
342 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
Dan Gohman092014e2008-03-03 22:22:09 +0000343 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000344
Evan Cheng8d51ab32008-03-10 19:38:10 +0000345 if (Subtarget->hasSSE1())
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000346 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Chengd1d68072008-03-08 00:58:38 +0000347
Andrew Lenharth0531ec52008-02-16 14:46:26 +0000348 if (!Subtarget->hasSSE2())
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000349 setOperationAction(ISD::MEMBARRIER , MVT::Other, Expand);
Jim Grosbachcdee6d12010-06-23 16:25:07 +0000350 // On X86 and X86-64, atomic operations are lowered to locked instructions.
351 // Locked instructions, in turn, have implicit fence semantics (all memory
352 // operations are flushed before issuing the locked instruction, and they
353 // are not buffered), so we can fold away the common pattern of
354 // fence-atomic-fence.
355 setShouldFoldAtomicFences(true);
Andrew Lenharth0531ec52008-02-16 14:46:26 +0000356
Mon P Wang078a62d2008-05-05 19:05:59 +0000357 // Expand certain atomics
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000358 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i8, Custom);
359 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i16, Custom);
360 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Custom);
361 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i64, Custom);
Bill Wendlingdb2280a2008-08-20 00:28:16 +0000362
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000363 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i8, Custom);
364 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i16, Custom);
365 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Custom);
366 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
Andrew Lenharth0531ec52008-02-16 14:46:26 +0000367
Dale Johannesenf160d802008-10-02 18:53:47 +0000368 if (!Subtarget->is64Bit()) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000369 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
370 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
371 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
372 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
373 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
374 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
375 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesenf160d802008-10-02 18:53:47 +0000376 }
377
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000378 // FIXME - use subtarget debug flags
379 if (!Subtarget->isTargetDarwin() &&
380 !Subtarget->isTargetELF() &&
Dan Gohmanfa607c92008-07-01 00:05:16 +0000381 !Subtarget->isTargetCygMing()) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000382 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohmanfa607c92008-07-01 00:05:16 +0000383 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000384
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000385 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
386 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
387 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
388 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000389 if (Subtarget->is64Bit()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000390 setExceptionPointerRegister(X86::RAX);
391 setExceptionSelectorRegister(X86::RDX);
392 } else {
393 setExceptionPointerRegister(X86::EAX);
394 setExceptionSelectorRegister(X86::EDX);
395 }
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000396 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
397 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov566f9d92008-09-08 21:12:11 +0000398
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000399 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsd8455ca2007-07-27 20:02:49 +0000400
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000401 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +0000402
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000403 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000404 setOperationAction(ISD::VASTART , MVT::Other, Custom);
405 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman827cb1f2008-05-10 01:26:14 +0000406 if (Subtarget->is64Bit()) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000407 setOperationAction(ISD::VAARG , MVT::Other, Custom);
408 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman827cb1f2008-05-10 01:26:14 +0000409 } else {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000410 setOperationAction(ISD::VAARG , MVT::Other, Expand);
411 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman827cb1f2008-05-10 01:26:14 +0000412 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000413
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000414 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
415 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000416 if (Subtarget->is64Bit())
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000417 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000418 if (Subtarget->isTargetCygMing())
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000419 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000420 else
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000421 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000422
Evan Cheng0b84fe12009-02-13 22:36:38 +0000423 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000424 // f32 and f64 use SSE.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000425 // Set up the FP register classes.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000426 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
427 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000428
429 // Use ANDPD to simulate FABS.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000430 setOperationAction(ISD::FABS , MVT::f64, Custom);
431 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000432
433 // Use XORP to simulate FNEG.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000434 setOperationAction(ISD::FNEG , MVT::f64, Custom);
435 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000436
437 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000438 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
439 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000440
441 // We don't support sin/cos/fmod
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000442 setOperationAction(ISD::FSIN , MVT::f64, Expand);
443 setOperationAction(ISD::FCOS , MVT::f64, Expand);
444 setOperationAction(ISD::FSIN , MVT::f32, Expand);
445 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000446
447 // Expand FP immediates into loads from the stack, except for the special
448 // cases we handle.
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000449 addLegalFPImmediate(APFloat(+0.0)); // xorpd
450 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Evan Cheng0b84fe12009-02-13 22:36:38 +0000451 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000452 // Use SSE for f32, x87 for f64.
453 // Set up the FP register classes.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000454 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
455 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000456
457 // Use ANDPS to simulate FABS.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000458 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000459
460 // Use XORP to simulate FNEG.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000461 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000462
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000463 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000464
465 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000466 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
467 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000468
469 // We don't support sin/cos/fmod
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000470 setOperationAction(ISD::FSIN , MVT::f32, Expand);
471 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000472
Nate Begemane2ba64f2008-02-14 08:57:00 +0000473 // Special cases we handle for FP constants.
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000474 addLegalFPImmediate(APFloat(+0.0f)); // xorps
475 addLegalFPImmediate(APFloat(+0.0)); // FLD0
476 addLegalFPImmediate(APFloat(+1.0)); // FLD1
477 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
478 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
479
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000480 if (!UnsafeFPMath) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000481 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
482 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000483 }
Evan Cheng0b84fe12009-02-13 22:36:38 +0000484 } else if (!UseSoftFloat) {
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000485 // f32 and f64 in x87.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000486 // Set up the FP register classes.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000487 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
488 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000489
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000490 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
491 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
492 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
493 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen8f83a6b2007-08-09 01:04:01 +0000494
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000495 if (!UnsafeFPMath) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000496 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
497 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000498 }
Dale Johannesenbbe2b702007-08-30 00:23:21 +0000499 addLegalFPImmediate(APFloat(+0.0)); // FLD0
500 addLegalFPImmediate(APFloat(+1.0)); // FLD1
501 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
502 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesene0e0fd02007-09-23 14:52:20 +0000503 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
504 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
505 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
506 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000507 }
508
Dale Johannesen4ab00bd2007-08-05 18:49:15 +0000509 // Long double always uses X87.
Evan Chenge738dc32009-03-26 23:06:32 +0000510 if (!UseSoftFloat) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000511 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
512 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
513 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Cheng0b84fe12009-02-13 22:36:38 +0000514 {
515 bool ignored;
516 APFloat TmpFlt(+0.0);
517 TmpFlt.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
518 &ignored);
519 addLegalFPImmediate(TmpFlt); // FLD0
520 TmpFlt.changeSign();
521 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
522 APFloat TmpFlt2(+1.0);
523 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
524 &ignored);
525 addLegalFPImmediate(TmpFlt2); // FLD1
526 TmpFlt2.changeSign();
527 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
528 }
Scott Michel91099d62009-02-17 22:15:04 +0000529
Evan Cheng0b84fe12009-02-13 22:36:38 +0000530 if (!UnsafeFPMath) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000531 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
532 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
Evan Cheng0b84fe12009-02-13 22:36:38 +0000533 }
Dale Johannesen7f1076b2007-09-26 21:10:55 +0000534 }
Dale Johannesen4ab00bd2007-08-05 18:49:15 +0000535
Dan Gohman2f7b1982007-10-11 23:21:31 +0000536 // Always use a library call for pow.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000537 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
538 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
539 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohman2f7b1982007-10-11 23:21:31 +0000540
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000541 setOperationAction(ISD::FLOG, MVT::f80, Expand);
542 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
543 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
544 setOperationAction(ISD::FEXP, MVT::f80, Expand);
545 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen92b33082008-09-04 00:47:13 +0000546
Mon P Wanga5a239f2008-11-06 05:31:54 +0000547 // First set operation action for all vector types to either promote
Mon P Wang1448aad2008-10-30 08:01:45 +0000548 // (for widening) or expand (for scalarization). Then we will selectively
549 // turn on ones that can be effectively codegen'd.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000550 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
551 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
552 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
553 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
554 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
555 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
556 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
557 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
558 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
559 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
560 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
561 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
562 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
563 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
564 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
565 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
566 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
567 setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
568 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
569 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
570 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
571 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
572 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
573 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
574 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
575 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
576 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
577 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
578 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
579 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
580 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
581 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
582 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
583 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
584 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
585 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
586 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
587 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
588 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
589 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
590 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
591 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
592 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
593 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
594 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
595 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
596 setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
597 setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
598 setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
599 setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
Dan Gohman9d501bd2009-12-11 21:31:27 +0000600 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
Dan Gohmanc6cfdd32009-12-14 23:40:38 +0000601 setOperationAction(ISD::TRUNCATE, (MVT::SimpleValueType)VT, Expand);
602 setOperationAction(ISD::SIGN_EXTEND, (MVT::SimpleValueType)VT, Expand);
603 setOperationAction(ISD::ZERO_EXTEND, (MVT::SimpleValueType)VT, Expand);
604 setOperationAction(ISD::ANY_EXTEND, (MVT::SimpleValueType)VT, Expand);
605 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
606 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
607 setTruncStoreAction((MVT::SimpleValueType)VT,
608 (MVT::SimpleValueType)InnerVT, Expand);
609 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
610 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
611 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000612 }
613
Evan Cheng0b84fe12009-02-13 22:36:38 +0000614 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
615 // with -msoft-float, disable use of MMX as well.
Evan Chenge738dc32009-03-26 23:06:32 +0000616 if (!UseSoftFloat && !DisableMMX && Subtarget->hasMMX()) {
Dale Johannesen9413edc2010-04-20 22:34:09 +0000617 addRegisterClass(MVT::v8i8, X86::VR64RegisterClass, false);
618 addRegisterClass(MVT::v4i16, X86::VR64RegisterClass, false);
619 addRegisterClass(MVT::v2i32, X86::VR64RegisterClass, false);
Chris Lattnerd33a8af2010-07-04 22:57:10 +0000620
621 // FIXME: v2f32 isn't an MMX type. We currently claim that it is legal
622 // because of some ABI issue, but this isn't the right fix.
623 bool IsV2F32Legal = !Subtarget->is64Bit();
624 if (IsV2F32Legal)
625 addRegisterClass(MVT::v2f32, X86::VR64RegisterClass, false);
Dale Johannesen9413edc2010-04-20 22:34:09 +0000626 addRegisterClass(MVT::v1i64, X86::VR64RegisterClass, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000627
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000628 setOperationAction(ISD::ADD, MVT::v8i8, Legal);
629 setOperationAction(ISD::ADD, MVT::v4i16, Legal);
630 setOperationAction(ISD::ADD, MVT::v2i32, Legal);
631 setOperationAction(ISD::ADD, MVT::v1i64, Legal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000632
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000633 setOperationAction(ISD::SUB, MVT::v8i8, Legal);
634 setOperationAction(ISD::SUB, MVT::v4i16, Legal);
635 setOperationAction(ISD::SUB, MVT::v2i32, Legal);
636 setOperationAction(ISD::SUB, MVT::v1i64, Legal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000637
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000638 setOperationAction(ISD::MULHS, MVT::v4i16, Legal);
639 setOperationAction(ISD::MUL, MVT::v4i16, Legal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000640
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000641 setOperationAction(ISD::AND, MVT::v8i8, Promote);
642 AddPromotedToType (ISD::AND, MVT::v8i8, MVT::v1i64);
643 setOperationAction(ISD::AND, MVT::v4i16, Promote);
644 AddPromotedToType (ISD::AND, MVT::v4i16, MVT::v1i64);
645 setOperationAction(ISD::AND, MVT::v2i32, Promote);
646 AddPromotedToType (ISD::AND, MVT::v2i32, MVT::v1i64);
647 setOperationAction(ISD::AND, MVT::v1i64, Legal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000648
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000649 setOperationAction(ISD::OR, MVT::v8i8, Promote);
650 AddPromotedToType (ISD::OR, MVT::v8i8, MVT::v1i64);
651 setOperationAction(ISD::OR, MVT::v4i16, Promote);
652 AddPromotedToType (ISD::OR, MVT::v4i16, MVT::v1i64);
653 setOperationAction(ISD::OR, MVT::v2i32, Promote);
654 AddPromotedToType (ISD::OR, MVT::v2i32, MVT::v1i64);
655 setOperationAction(ISD::OR, MVT::v1i64, Legal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000656
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000657 setOperationAction(ISD::XOR, MVT::v8i8, Promote);
658 AddPromotedToType (ISD::XOR, MVT::v8i8, MVT::v1i64);
659 setOperationAction(ISD::XOR, MVT::v4i16, Promote);
660 AddPromotedToType (ISD::XOR, MVT::v4i16, MVT::v1i64);
661 setOperationAction(ISD::XOR, MVT::v2i32, Promote);
662 AddPromotedToType (ISD::XOR, MVT::v2i32, MVT::v1i64);
663 setOperationAction(ISD::XOR, MVT::v1i64, Legal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000664
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000665 setOperationAction(ISD::LOAD, MVT::v8i8, Promote);
666 AddPromotedToType (ISD::LOAD, MVT::v8i8, MVT::v1i64);
667 setOperationAction(ISD::LOAD, MVT::v4i16, Promote);
668 AddPromotedToType (ISD::LOAD, MVT::v4i16, MVT::v1i64);
669 setOperationAction(ISD::LOAD, MVT::v2i32, Promote);
670 AddPromotedToType (ISD::LOAD, MVT::v2i32, MVT::v1i64);
Chris Lattnerd33a8af2010-07-04 22:57:10 +0000671 if (IsV2F32Legal) {
672 setOperationAction(ISD::LOAD, MVT::v2f32, Promote);
673 AddPromotedToType (ISD::LOAD, MVT::v2f32, MVT::v1i64);
674 }
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000675 setOperationAction(ISD::LOAD, MVT::v1i64, Legal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000676
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000677 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i8, Custom);
678 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i16, Custom);
679 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i32, Custom);
Chris Lattnerd33a8af2010-07-04 22:57:10 +0000680 if (IsV2F32Legal)
681 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f32, Custom);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000682 setOperationAction(ISD::BUILD_VECTOR, MVT::v1i64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000683
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000684 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8i8, Custom);
685 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i16, Custom);
686 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i32, Custom);
687 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v1i64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000688
Chris Lattnerd33a8af2010-07-04 22:57:10 +0000689 if (IsV2F32Legal)
690 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2f32, Custom);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000691 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Custom);
692 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Custom);
693 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Custom);
Bill Wendlingb9e5f802008-07-20 02:32:23 +0000694
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000695 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i16, Custom);
Mon P Wang83edba52008-12-12 01:25:51 +0000696
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000697 setOperationAction(ISD::SELECT, MVT::v8i8, Promote);
698 setOperationAction(ISD::SELECT, MVT::v4i16, Promote);
699 setOperationAction(ISD::SELECT, MVT::v2i32, Promote);
700 setOperationAction(ISD::SELECT, MVT::v1i64, Custom);
701 setOperationAction(ISD::VSETCC, MVT::v8i8, Custom);
702 setOperationAction(ISD::VSETCC, MVT::v4i16, Custom);
703 setOperationAction(ISD::VSETCC, MVT::v2i32, Custom);
Dale Johannesenda2f3542010-05-21 00:52:33 +0000704
705 if (!X86ScalarSSEf64 && Subtarget->is64Bit()) {
706 setOperationAction(ISD::BIT_CONVERT, MVT::v8i8, Custom);
707 setOperationAction(ISD::BIT_CONVERT, MVT::v4i16, Custom);
708 setOperationAction(ISD::BIT_CONVERT, MVT::v2i32, Custom);
Chris Lattnerd33a8af2010-07-04 22:57:10 +0000709 if (IsV2F32Legal)
710 setOperationAction(ISD::BIT_CONVERT, MVT::v2f32, Custom);
Dale Johannesenda2f3542010-05-21 00:52:33 +0000711 setOperationAction(ISD::BIT_CONVERT, MVT::v1i64, Custom);
712 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000713 }
714
Evan Chenge738dc32009-03-26 23:06:32 +0000715 if (!UseSoftFloat && Subtarget->hasSSE1()) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000716 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000717
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000718 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
719 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
720 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
721 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
722 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
723 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
724 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
725 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
726 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
727 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
728 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
729 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000730 }
731
Evan Chenge738dc32009-03-26 23:06:32 +0000732 if (!UseSoftFloat && Subtarget->hasSSE2()) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000733 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Cheng0b84fe12009-02-13 22:36:38 +0000734
Bill Wendling042eda32009-03-11 22:30:01 +0000735 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
736 // registers cannot be used even for integer operations.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000737 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
738 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
739 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
740 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000741
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000742 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
743 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
744 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
745 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
746 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
747 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
748 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
749 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
750 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
751 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
752 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
753 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
754 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
755 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
756 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
757 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000758
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000759 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
760 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
761 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
762 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begeman061db5f2008-05-12 20:34:32 +0000763
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000764 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
765 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
766 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
767 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
768 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000769
Mon P Wanga8ff0dd2010-01-24 00:05:03 +0000770 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2f64, Custom);
771 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2i64, Custom);
772 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i8, Custom);
773 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i16, Custom);
774 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
775
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000776 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000777 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
778 EVT VT = (MVT::SimpleValueType)i;
Nate Begemanc16406d2007-12-11 01:41:33 +0000779 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands92c43912008-06-06 12:08:01 +0000780 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begemanc16406d2007-12-11 01:41:33 +0000781 continue;
David Greenea5acb6e2009-06-29 16:47:10 +0000782 // Do not attempt to custom lower non-128-bit vectors
783 if (!VT.is128BitVector())
784 continue;
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000785 setOperationAction(ISD::BUILD_VECTOR,
786 VT.getSimpleVT().SimpleTy, Custom);
787 setOperationAction(ISD::VECTOR_SHUFFLE,
788 VT.getSimpleVT().SimpleTy, Custom);
789 setOperationAction(ISD::EXTRACT_VECTOR_ELT,
790 VT.getSimpleVT().SimpleTy, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000791 }
Bill Wendling042eda32009-03-11 22:30:01 +0000792
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000793 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
794 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
795 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
796 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
797 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
798 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendling042eda32009-03-11 22:30:01 +0000799
Nate Begeman4294c1f2008-02-12 22:51:28 +0000800 if (Subtarget->is64Bit()) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000801 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
802 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begeman4294c1f2008-02-12 22:51:28 +0000803 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000804
805 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000806 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) {
807 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
Owen Andersonac9de032009-08-10 22:56:29 +0000808 EVT VT = SVT;
David Greenea5acb6e2009-06-29 16:47:10 +0000809
810 // Do not attempt to promote non-128-bit vectors
811 if (!VT.is128BitVector()) {
812 continue;
813 }
Eric Christopher00b717d2010-03-30 01:04:59 +0000814
Owen Andersona0c69eb2009-08-10 20:46:15 +0000815 setOperationAction(ISD::AND, SVT, Promote);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000816 AddPromotedToType (ISD::AND, SVT, MVT::v2i64);
Owen Andersona0c69eb2009-08-10 20:46:15 +0000817 setOperationAction(ISD::OR, SVT, Promote);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000818 AddPromotedToType (ISD::OR, SVT, MVT::v2i64);
Owen Andersona0c69eb2009-08-10 20:46:15 +0000819 setOperationAction(ISD::XOR, SVT, Promote);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000820 AddPromotedToType (ISD::XOR, SVT, MVT::v2i64);
Owen Andersona0c69eb2009-08-10 20:46:15 +0000821 setOperationAction(ISD::LOAD, SVT, Promote);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000822 AddPromotedToType (ISD::LOAD, SVT, MVT::v2i64);
Owen Andersona0c69eb2009-08-10 20:46:15 +0000823 setOperationAction(ISD::SELECT, SVT, Promote);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000824 AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000825 }
826
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000827 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000828
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000829 // Custom lower v2i64 and v2f64 selects.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000830 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
831 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
832 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
833 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michel91099d62009-02-17 22:15:04 +0000834
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000835 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
836 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Eli Friedmanc0521fb2009-06-06 03:57:58 +0000837 if (!DisableMMX && Subtarget->hasMMX()) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000838 setOperationAction(ISD::FP_TO_SINT, MVT::v2i32, Custom);
839 setOperationAction(ISD::SINT_TO_FP, MVT::v2i32, Custom);
Eli Friedmanc0521fb2009-06-06 03:57:58 +0000840 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000841 }
Evan Cheng0b84fe12009-02-13 22:36:38 +0000842
Nate Begemand77e59e2008-02-11 04:19:36 +0000843 if (Subtarget->hasSSE41()) {
Dale Johannesen9bb23492010-05-27 20:12:41 +0000844 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
845 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
846 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
847 setOperationAction(ISD::FRINT, MVT::f32, Legal);
848 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
849 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
850 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
851 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
852 setOperationAction(ISD::FRINT, MVT::f64, Legal);
853 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
854
Nate Begemand77e59e2008-02-11 04:19:36 +0000855 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000856 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begemand77e59e2008-02-11 04:19:36 +0000857
858 // i8 and i16 vectors are custom , because the source register and source
859 // source memory operand types are not the same width. f32 vectors are
860 // custom since the immediate controlling the insert encodes additional
861 // information.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000862 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
863 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
864 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
865 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begemand77e59e2008-02-11 04:19:36 +0000866
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000867 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
868 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
869 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
870 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begemand77e59e2008-02-11 04:19:36 +0000871
872 if (Subtarget->is64Bit()) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000873 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
874 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begemand77e59e2008-02-11 04:19:36 +0000875 }
876 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000877
Nate Begeman03605a02008-07-17 16:51:19 +0000878 if (Subtarget->hasSSE42()) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000879 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
Nate Begeman03605a02008-07-17 16:51:19 +0000880 }
Scott Michel91099d62009-02-17 22:15:04 +0000881
David Greenea5acb6e2009-06-29 16:47:10 +0000882 if (!UseSoftFloat && Subtarget->hasAVX()) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000883 addRegisterClass(MVT::v8f32, X86::VR256RegisterClass);
884 addRegisterClass(MVT::v4f64, X86::VR256RegisterClass);
885 addRegisterClass(MVT::v8i32, X86::VR256RegisterClass);
886 addRegisterClass(MVT::v4i64, X86::VR256RegisterClass);
David Greeneed1b3db2009-06-29 22:50:51 +0000887
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000888 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
889 setOperationAction(ISD::LOAD, MVT::v8i32, Legal);
890 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
891 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
892 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
893 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
894 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
895 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
896 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
897 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
898 //setOperationAction(ISD::BUILD_VECTOR, MVT::v8f32, Custom);
899 //setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8f32, Custom);
900 //setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8f32, Custom);
901 //setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
902 //setOperationAction(ISD::VSETCC, MVT::v8f32, Custom);
David Greenea5acb6e2009-06-29 16:47:10 +0000903
904 // Operations to consider commented out -v16i16 v32i8
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000905 //setOperationAction(ISD::ADD, MVT::v16i16, Legal);
906 setOperationAction(ISD::ADD, MVT::v8i32, Custom);
907 setOperationAction(ISD::ADD, MVT::v4i64, Custom);
908 //setOperationAction(ISD::SUB, MVT::v32i8, Legal);
909 //setOperationAction(ISD::SUB, MVT::v16i16, Legal);
910 setOperationAction(ISD::SUB, MVT::v8i32, Custom);
911 setOperationAction(ISD::SUB, MVT::v4i64, Custom);
912 //setOperationAction(ISD::MUL, MVT::v16i16, Legal);
913 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
914 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
915 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
916 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
917 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
918 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
David Greenea5acb6e2009-06-29 16:47:10 +0000919
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000920 setOperationAction(ISD::VSETCC, MVT::v4f64, Custom);
921 // setOperationAction(ISD::VSETCC, MVT::v32i8, Custom);
922 // setOperationAction(ISD::VSETCC, MVT::v16i16, Custom);
923 setOperationAction(ISD::VSETCC, MVT::v8i32, Custom);
David Greenea5acb6e2009-06-29 16:47:10 +0000924
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000925 // setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v32i8, Custom);
926 // setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i16, Custom);
927 // setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i16, Custom);
928 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i32, Custom);
929 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8f32, Custom);
David Greenea5acb6e2009-06-29 16:47:10 +0000930
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000931 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f64, Custom);
932 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i64, Custom);
933 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f64, Custom);
934 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i64, Custom);
935 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f64, Custom);
936 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f64, Custom);
David Greenea5acb6e2009-06-29 16:47:10 +0000937
938#if 0
939 // Not sure we want to do this since there are no 256-bit integer
940 // operations in AVX
941
942 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
943 // This includes 256-bit vectors
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000944 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v4i64; ++i) {
945 EVT VT = (MVT::SimpleValueType)i;
David Greenea5acb6e2009-06-29 16:47:10 +0000946
947 // Do not attempt to custom lower non-power-of-2 vectors
948 if (!isPowerOf2_32(VT.getVectorNumElements()))
949 continue;
950
951 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
952 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
953 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
954 }
955
956 if (Subtarget->is64Bit()) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000957 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i64, Custom);
958 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i64, Custom);
Eric Christopher3d82bbd2009-08-27 18:07:15 +0000959 }
David Greenea5acb6e2009-06-29 16:47:10 +0000960#endif
961
962#if 0
963 // Not sure we want to do this since there are no 256-bit integer
964 // operations in AVX
965
966 // Promote v32i8, v16i16, v8i32 load, select, and, or, xor to v4i64.
967 // Including 256-bit vectors
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000968 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v4i64; i++) {
969 EVT VT = (MVT::SimpleValueType)i;
David Greenea5acb6e2009-06-29 16:47:10 +0000970
971 if (!VT.is256BitVector()) {
972 continue;
973 }
974 setOperationAction(ISD::AND, VT, Promote);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000975 AddPromotedToType (ISD::AND, VT, MVT::v4i64);
David Greenea5acb6e2009-06-29 16:47:10 +0000976 setOperationAction(ISD::OR, VT, Promote);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000977 AddPromotedToType (ISD::OR, VT, MVT::v4i64);
David Greenea5acb6e2009-06-29 16:47:10 +0000978 setOperationAction(ISD::XOR, VT, Promote);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000979 AddPromotedToType (ISD::XOR, VT, MVT::v4i64);
David Greenea5acb6e2009-06-29 16:47:10 +0000980 setOperationAction(ISD::LOAD, VT, Promote);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000981 AddPromotedToType (ISD::LOAD, VT, MVT::v4i64);
David Greenea5acb6e2009-06-29 16:47:10 +0000982 setOperationAction(ISD::SELECT, VT, Promote);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000983 AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
David Greenea5acb6e2009-06-29 16:47:10 +0000984 }
985
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000986 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
David Greenea5acb6e2009-06-29 16:47:10 +0000987#endif
988 }
989
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000990 // We want to custom lower some of our intrinsics.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000991 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000992
Bill Wendling7e04be62008-12-09 22:08:41 +0000993 // Add/Sub/Mul with overflow operations are custom lowered.
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000994 setOperationAction(ISD::SADDO, MVT::i32, Custom);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000995 setOperationAction(ISD::UADDO, MVT::i32, Custom);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000996 setOperationAction(ISD::SSUBO, MVT::i32, Custom);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000997 setOperationAction(ISD::USUBO, MVT::i32, Custom);
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000998 setOperationAction(ISD::SMULO, MVT::i32, Custom);
Dan Gohman428d15f2010-06-02 19:13:40 +0000999
Eli Friedman5d05f9b2010-06-02 19:35:46 +00001000 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1001 // handle type legalization for these operations here.
Dan Gohman428d15f2010-06-02 19:13:40 +00001002 //
Eli Friedman5d05f9b2010-06-02 19:35:46 +00001003 // FIXME: We really should do custom legalization for addition and
1004 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1005 // than generic legalization for 64-bit multiplication-with-overflow, though.
Eli Friedmand2916962010-06-02 00:27:18 +00001006 if (Subtarget->is64Bit()) {
1007 setOperationAction(ISD::SADDO, MVT::i64, Custom);
1008 setOperationAction(ISD::UADDO, MVT::i64, Custom);
1009 setOperationAction(ISD::SSUBO, MVT::i64, Custom);
1010 setOperationAction(ISD::USUBO, MVT::i64, Custom);
1011 setOperationAction(ISD::SMULO, MVT::i64, Custom);
1012 }
Bill Wendling4c134df2008-11-24 19:21:46 +00001013
Evan Cheng9c215602009-03-31 19:38:51 +00001014 if (!Subtarget->is64Bit()) {
1015 // These libcalls are not available in 32-bit.
1016 setLibcallName(RTLIB::SHL_I128, 0);
1017 setLibcallName(RTLIB::SRL_I128, 0);
1018 setLibcallName(RTLIB::SRA_I128, 0);
1019 }
1020
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001021 // We have target-specific dag combine patterns for the following nodes:
1022 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohmanb115d052010-03-15 23:23:03 +00001023 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chenge9b9c672008-05-09 21:53:03 +00001024 setTargetDAGCombine(ISD::BUILD_VECTOR);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001025 setTargetDAGCombine(ISD::SELECT);
sampo025b75c2009-01-26 00:52:55 +00001026 setTargetDAGCombine(ISD::SHL);
1027 setTargetDAGCombine(ISD::SRA);
1028 setTargetDAGCombine(ISD::SRL);
Evan Cheng10957b82010-01-04 21:22:48 +00001029 setTargetDAGCombine(ISD::OR);
Chris Lattnerce84ae42008-02-22 02:09:43 +00001030 setTargetDAGCombine(ISD::STORE);
Evan Chengedeb1692009-12-16 00:53:11 +00001031 setTargetDAGCombine(ISD::ZERO_EXTEND);
Evan Cheng04ecee12009-03-28 05:57:29 +00001032 if (Subtarget->is64Bit())
1033 setTargetDAGCombine(ISD::MUL);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001034
1035 computeRegisterProperties();
1036
1037 // FIXME: These should be based on subtarget info. Plus, the values should
1038 // be smaller when we are in optimizing for size mode.
Dan Gohman97fab242008-06-30 21:00:56 +00001039 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng0b592c02010-04-01 06:04:33 +00001040 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Dan Gohman97fab242008-06-30 21:00:56 +00001041 maxStoresPerMemmove = 3; // For @llvm.memmove -> sequence of stores
Evan Cheng45c1edb2008-02-28 00:43:03 +00001042 setPrefLoopAlignment(16);
Evan Cheng79566822009-05-13 21:42:09 +00001043 benefitFromCodePlacementOpt = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001044}
1045
Scott Michel502151f2008-03-10 15:42:14 +00001046
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001047MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
1048 return MVT::i8;
Scott Michel502151f2008-03-10 15:42:14 +00001049}
1050
1051
Evan Cheng5a67b812008-01-23 23:17:41 +00001052/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1053/// the desired ByVal argument alignment.
1054static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) {
1055 if (MaxAlign == 16)
1056 return;
1057 if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1058 if (VTy->getBitWidth() == 128)
1059 MaxAlign = 16;
Evan Cheng5a67b812008-01-23 23:17:41 +00001060 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1061 unsigned EltAlign = 0;
1062 getMaxByValAlign(ATy->getElementType(), EltAlign);
1063 if (EltAlign > MaxAlign)
1064 MaxAlign = EltAlign;
1065 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
1066 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1067 unsigned EltAlign = 0;
1068 getMaxByValAlign(STy->getElementType(i), EltAlign);
1069 if (EltAlign > MaxAlign)
1070 MaxAlign = EltAlign;
1071 if (MaxAlign == 16)
1072 break;
1073 }
1074 }
1075 return;
1076}
1077
1078/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1079/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesena58b8622008-02-08 19:48:20 +00001080/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1081/// are at 4-byte boundaries.
Evan Cheng5a67b812008-01-23 23:17:41 +00001082unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const {
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00001083 if (Subtarget->is64Bit()) {
1084 // Max of 8 and alignment of type.
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00001085 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng9a6e0fa2008-08-21 21:00:15 +00001086 if (TyAlign > 8)
1087 return TyAlign;
1088 return 8;
1089 }
1090
Evan Cheng5a67b812008-01-23 23:17:41 +00001091 unsigned Align = 4;
Dale Johannesena58b8622008-02-08 19:48:20 +00001092 if (Subtarget->hasSSE1())
1093 getMaxByValAlign(Ty, Align);
Evan Cheng5a67b812008-01-23 23:17:41 +00001094 return Align;
1095}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001096
Evan Cheng8c590372008-05-15 08:39:06 +00001097/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Cheng63716482010-04-08 07:37:57 +00001098/// and store operations as a result of memset, memcpy, and memmove
1099/// lowering. If DstAlign is zero that means it's safe to destination
1100/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1101/// means there isn't a need to check it against alignment requirement,
1102/// probably because the source does not need to be loaded. If
1103/// 'NonScalarIntSafe' is true, that means it's safe to return a
1104/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1105/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1106/// constant so it does not need to be loaded.
Dan Gohman73ef7112010-04-16 20:11:05 +00001107/// It returns EVT::Other if the type should be determined using generic
1108/// target-independent logic.
Owen Andersonac9de032009-08-10 22:56:29 +00001109EVT
Evan Cheng0b592c02010-04-01 06:04:33 +00001110X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1111 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng52ff54e2010-04-02 19:36:14 +00001112 bool NonScalarIntSafe,
Evan Cheng63716482010-04-08 07:37:57 +00001113 bool MemcpyStrSrc,
Dan Gohman73ef7112010-04-16 20:11:05 +00001114 MachineFunction &MF) const {
Chris Lattnerf0bf1062008-10-28 05:49:35 +00001115 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1116 // linux. This is because the stack realignment code can't handle certain
1117 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman73ef7112010-04-16 20:11:05 +00001118 const Function *F = MF.getFunction();
Evan Cheng52ff54e2010-04-02 19:36:14 +00001119 if (NonScalarIntSafe &&
1120 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng0b592c02010-04-01 06:04:33 +00001121 if (Size >= 16 &&
1122 (Subtarget->isUnalignedMemAccessFast() ||
Chandler Carruthd2bb6712010-04-02 01:31:24 +00001123 ((DstAlign == 0 || DstAlign >= 16) &&
1124 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng0b592c02010-04-01 06:04:33 +00001125 Subtarget->getStackAlignment() >= 16) {
1126 if (Subtarget->hasSSE2())
1127 return MVT::v4i32;
Evan Cheng52ff54e2010-04-02 19:36:14 +00001128 if (Subtarget->hasSSE1())
Evan Cheng0b592c02010-04-01 06:04:33 +00001129 return MVT::v4f32;
Evan Cheng63716482010-04-08 07:37:57 +00001130 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng281d37e2010-04-01 20:27:45 +00001131 !Subtarget->is64Bit() &&
Evan Cheng0b592c02010-04-01 06:04:33 +00001132 Subtarget->getStackAlignment() >= 8 &&
Evan Cheng63716482010-04-08 07:37:57 +00001133 Subtarget->hasSSE2()) {
1134 // Do not use f64 to lower memcpy if source is string constant. It's
1135 // better to use i32 to avoid the loads.
Evan Cheng0b592c02010-04-01 06:04:33 +00001136 return MVT::f64;
Evan Cheng63716482010-04-08 07:37:57 +00001137 }
Chris Lattnerf0bf1062008-10-28 05:49:35 +00001138 }
Evan Cheng8c590372008-05-15 08:39:06 +00001139 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001140 return MVT::i64;
1141 return MVT::i32;
Evan Cheng8c590372008-05-15 08:39:06 +00001142}
1143
Chris Lattner25525cd2010-01-25 23:38:14 +00001144/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1145/// current function. The returned value is a member of the
1146/// MachineJumpTableInfo::JTEntryKind enum.
1147unsigned X86TargetLowering::getJumpTableEncoding() const {
1148 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1149 // symbol.
1150 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1151 Subtarget->isPICStyleGOT())
Chris Lattner82411c42010-01-26 05:02:42 +00001152 return MachineJumpTableInfo::EK_Custom32;
Chris Lattner25525cd2010-01-25 23:38:14 +00001153
1154 // Otherwise, use the normal jump table encoding heuristics.
1155 return TargetLowering::getJumpTableEncoding();
1156}
1157
Chris Lattner541d8902010-01-26 06:28:43 +00001158/// getPICBaseSymbol - Return the X86-32 PIC base.
1159MCSymbol *
1160X86TargetLowering::getPICBaseSymbol(const MachineFunction *MF,
1161 MCContext &Ctx) const {
1162 const MCAsmInfo &MAI = *getTargetMachine().getMCAsmInfo();
Chris Lattner3b197832010-03-30 18:10:53 +00001163 return Ctx.GetOrCreateSymbol(Twine(MAI.getPrivateGlobalPrefix())+
1164 Twine(MF->getFunctionNumber())+"$pb");
Chris Lattner541d8902010-01-26 06:28:43 +00001165}
1166
1167
Chris Lattner82411c42010-01-26 05:02:42 +00001168const MCExpr *
1169X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1170 const MachineBasicBlock *MBB,
1171 unsigned uid,MCContext &Ctx) const{
1172 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1173 Subtarget->isPICStyleGOT());
1174 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1175 // entries.
Daniel Dunbarbb6c3dc2010-03-15 23:51:06 +00001176 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1177 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattner82411c42010-01-26 05:02:42 +00001178}
1179
Evan Cheng6fb06762007-11-09 01:32:10 +00001180/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1181/// jumptable.
Dan Gohman8181bd12008-07-27 21:46:04 +00001182SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner541d8902010-01-26 06:28:43 +00001183 SelectionDAG &DAG) const {
Chris Lattneraa7c6d22009-07-09 03:15:51 +00001184 if (!Subtarget->is64Bit())
Dale Johannesen24dd9a52009-02-07 00:55:49 +00001185 // This doesn't have DebugLoc associated with it, but is not really the
1186 // same as a Register.
Chris Lattnerd2c680b2010-04-02 20:16:16 +00001187 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Cheng6fb06762007-11-09 01:32:10 +00001188 return Table;
1189}
1190
Chris Lattner541d8902010-01-26 06:28:43 +00001191/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1192/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1193/// MCExpr.
1194const MCExpr *X86TargetLowering::
1195getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1196 MCContext &Ctx) const {
1197 // X86-64 uses RIP relative addressing based on the jump table label.
1198 if (Subtarget->isPICStyleRIPRel())
1199 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1200
1201 // Otherwise, the reference is relative to the PIC base.
1202 return MCSymbolRefExpr::Create(getPICBaseSymbol(MF, Ctx), Ctx);
1203}
1204
Bill Wendling045f2632009-07-01 18:50:55 +00001205/// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling25a8ae32009-06-30 22:38:32 +00001206unsigned X86TargetLowering::getFunctionAlignment(const Function *F) const {
Dan Gohman4f6b95c2009-08-18 00:20:06 +00001207 return F->hasFnAttr(Attribute::OptimizeForSize) ? 0 : 4;
Bill Wendling25a8ae32009-06-30 22:38:32 +00001208}
1209
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001210//===----------------------------------------------------------------------===//
1211// Return Value Calling Convention Implementation
1212//===----------------------------------------------------------------------===//
1213
1214#include "X86GenCallingConv.inc"
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001215
Kenneth Uildriks87d04262009-11-07 02:11:54 +00001216bool
1217X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv, bool isVarArg,
1218 const SmallVectorImpl<EVT> &OutTys,
1219 const SmallVectorImpl<ISD::ArgFlagsTy> &ArgsFlags,
Dan Gohmandbb121b2010-04-17 15:26:15 +00001220 SelectionDAG &DAG) const {
Kenneth Uildriks87d04262009-11-07 02:11:54 +00001221 SmallVector<CCValAssign, 16> RVLocs;
1222 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1223 RVLocs, *DAG.getContext());
1224 return CCInfo.CheckReturn(OutTys, ArgsFlags, RetCC_X86);
1225}
1226
Dan Gohman9178de12009-08-05 01:29:28 +00001227SDValue
1228X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel5838baa2009-09-02 08:44:58 +00001229 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman9178de12009-08-05 01:29:28 +00001230 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmandbb121b2010-04-17 15:26:15 +00001231 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohmand80404c2010-04-17 14:41:14 +00001232 MachineFunction &MF = DAG.getMachineFunction();
1233 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michel91099d62009-02-17 22:15:04 +00001234
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001235 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman9178de12009-08-05 01:29:28 +00001236 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1237 RVLocs, *DAG.getContext());
1238 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michel91099d62009-02-17 22:15:04 +00001239
Evan Chengcf840d52010-02-04 02:40:39 +00001240 // Add the regs to the liveout set for the function.
1241 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1242 for (unsigned i = 0; i != RVLocs.size(); ++i)
1243 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1244 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michel91099d62009-02-17 22:15:04 +00001245
Dan Gohman8181bd12008-07-27 21:46:04 +00001246 SDValue Flag;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001247
Dan Gohman8181bd12008-07-27 21:46:04 +00001248 SmallVector<SDValue, 6> RetOps;
Chris Lattnerb56cc342008-03-11 03:23:40 +00001249 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1250 // Operand #1 = Bytes To Pop
Dan Gohmand80404c2010-04-17 14:41:14 +00001251 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1252 MVT::i16));
Scott Michel91099d62009-02-17 22:15:04 +00001253
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001254 // Copy the result values into the output registers.
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001255 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1256 CCValAssign &VA = RVLocs[i];
1257 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohman9178de12009-08-05 01:29:28 +00001258 SDValue ValToCopy = Outs[i].Val;
Scott Michel91099d62009-02-17 22:15:04 +00001259
Chris Lattnerb56cc342008-03-11 03:23:40 +00001260 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1261 // the RET instruction and handled by the FP Stackifier.
Dan Gohman6c4be722009-02-04 17:28:58 +00001262 if (VA.getLocReg() == X86::ST0 ||
1263 VA.getLocReg() == X86::ST1) {
Chris Lattnerb56cc342008-03-11 03:23:40 +00001264 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1265 // change the value to the FP stack register class.
Dan Gohman6c4be722009-02-04 17:28:58 +00001266 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001267 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattnerb56cc342008-03-11 03:23:40 +00001268 RetOps.push_back(ValToCopy);
1269 // Don't emit a copytoreg.
1270 continue;
1271 }
Dale Johannesena585daf2008-06-24 22:01:44 +00001272
Evan Chengef356282009-02-23 09:03:22 +00001273 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1274 // which is returned in RAX / RDX.
Evan Chenge8db6e02009-02-22 08:05:12 +00001275 if (Subtarget->is64Bit()) {
Owen Andersonac9de032009-08-10 22:56:29 +00001276 EVT ValVT = ValToCopy.getValueType();
Evan Chengef356282009-02-23 09:03:22 +00001277 if (ValVT.isVector() && ValVT.getSizeInBits() == 64) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001278 ValToCopy = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, ValToCopy);
Evan Chengef356282009-02-23 09:03:22 +00001279 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1)
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001280 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, ValToCopy);
Evan Chengef356282009-02-23 09:03:22 +00001281 }
Evan Chenge8db6e02009-02-22 08:05:12 +00001282 }
1283
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001284 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001285 Flag = Chain.getValue(1);
1286 }
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001287
1288 // The x86-64 ABI for returning structs by value requires that we copy
1289 // the sret argument into %rax for the return. We saved the argument into
1290 // a virtual register in the entry block, so now we copy the value out
1291 // and into %rax.
1292 if (Subtarget->is64Bit() &&
1293 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1294 MachineFunction &MF = DAG.getMachineFunction();
1295 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1296 unsigned Reg = FuncInfo->getSRetReturnReg();
Zhongxing Xu16984082010-05-26 08:10:02 +00001297 assert(Reg &&
1298 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001299 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001300
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001301 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001302 Flag = Chain.getValue(1);
Dan Gohman1c738f52009-10-12 16:36:12 +00001303
1304 // RAX now acts like a return value.
Evan Chengcf840d52010-02-04 02:40:39 +00001305 MRI.addLiveOut(X86::RAX);
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001306 }
Scott Michel91099d62009-02-17 22:15:04 +00001307
Chris Lattnerb56cc342008-03-11 03:23:40 +00001308 RetOps[0] = Chain; // Update chain.
1309
1310 // Add the flag if we have it.
Gabor Greif1c80d112008-08-28 21:40:38 +00001311 if (Flag.getNode())
Chris Lattnerb56cc342008-03-11 03:23:40 +00001312 RetOps.push_back(Flag);
Scott Michel91099d62009-02-17 22:15:04 +00001313
1314 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001315 MVT::Other, &RetOps[0], RetOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001316}
1317
Dan Gohman9178de12009-08-05 01:29:28 +00001318/// LowerCallResult - Lower the result values of a call into the
1319/// appropriate copies out of appropriate physical registers.
1320///
1321SDValue
1322X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel5838baa2009-09-02 08:44:58 +00001323 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman9178de12009-08-05 01:29:28 +00001324 const SmallVectorImpl<ISD::InputArg> &Ins,
1325 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmandbb121b2010-04-17 15:26:15 +00001326 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001327
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001328 // Assign locations to each value returned by this call.
1329 SmallVector<CCValAssign, 16> RVLocs;
Edwin Törökaf8e1332009-02-01 18:15:56 +00001330 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman9178de12009-08-05 01:29:28 +00001331 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Owen Anderson175b6542009-07-22 00:24:57 +00001332 RVLocs, *DAG.getContext());
Dan Gohman9178de12009-08-05 01:29:28 +00001333 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michel91099d62009-02-17 22:15:04 +00001334
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001335 // Copy all of the result registers out of their specified physreg.
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001336 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman6c4be722009-02-04 17:28:58 +00001337 CCValAssign &VA = RVLocs[i];
Owen Andersonac9de032009-08-10 22:56:29 +00001338 EVT CopyVT = VA.getValVT();
Scott Michel91099d62009-02-17 22:15:04 +00001339
Edwin Törökaf8e1332009-02-01 18:15:56 +00001340 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001341 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Dan Gohman9178de12009-08-05 01:29:28 +00001342 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
Chris Lattner8316f2d2010-04-07 22:58:41 +00001343 report_fatal_error("SSE register return with SSE disabled");
Edwin Törökaf8e1332009-02-01 18:15:56 +00001344 }
1345
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001346 // If this is a call to a function that returns an fp value on the floating
1347 // point stack, but where we prefer to use the value in xmm registers, copy
1348 // it out as F80 and use a truncate to move it from fp stack reg to xmm reg.
Dan Gohman6c4be722009-02-04 17:28:58 +00001349 if ((VA.getLocReg() == X86::ST0 ||
1350 VA.getLocReg() == X86::ST1) &&
1351 isScalarFPTypeInSSEReg(VA.getValVT())) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001352 CopyVT = MVT::f80;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001353 }
Scott Michel91099d62009-02-17 22:15:04 +00001354
Evan Cheng9cc600e2009-02-20 20:43:02 +00001355 SDValue Val;
1356 if (Is64Bit && CopyVT.isVector() && CopyVT.getSizeInBits() == 64) {
Evan Chengef356282009-02-23 09:03:22 +00001357 // For x86-64, MMX values are returned in XMM0 / XMM1 except for v1i64.
1358 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1359 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001360 MVT::v2i64, InFlag).getValue(1);
Evan Chengef356282009-02-23 09:03:22 +00001361 Val = Chain.getValue(0);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001362 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1363 Val, DAG.getConstant(0, MVT::i64));
Evan Chengef356282009-02-23 09:03:22 +00001364 } else {
1365 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001366 MVT::i64, InFlag).getValue(1);
Evan Chengef356282009-02-23 09:03:22 +00001367 Val = Chain.getValue(0);
1368 }
Evan Cheng9cc600e2009-02-20 20:43:02 +00001369 Val = DAG.getNode(ISD::BIT_CONVERT, dl, CopyVT, Val);
1370 } else {
1371 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1372 CopyVT, InFlag).getValue(1);
1373 Val = Chain.getValue(0);
1374 }
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001375 InFlag = Chain.getValue(2);
Chris Lattner40758732007-12-29 06:41:28 +00001376
Dan Gohman6c4be722009-02-04 17:28:58 +00001377 if (CopyVT != VA.getValVT()) {
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001378 // Round the F80 the right size, which also moves to the appropriate xmm
1379 // register.
Dan Gohman6c4be722009-02-04 17:28:58 +00001380 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
Chris Lattnere22e1fb2008-03-10 21:08:41 +00001381 // This truncation won't change the value.
1382 DAG.getIntPtrConstant(1));
1383 }
Scott Michel91099d62009-02-17 22:15:04 +00001384
Dan Gohman9178de12009-08-05 01:29:28 +00001385 InVals.push_back(Val);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001386 }
Duncan Sands698842f2008-07-02 17:40:58 +00001387
Dan Gohman9178de12009-08-05 01:29:28 +00001388 return Chain;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001389}
1390
1391
1392//===----------------------------------------------------------------------===//
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001393// C & StdCall & Fast Calling Convention implementation
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001394//===----------------------------------------------------------------------===//
1395// StdCall calling convention seems to be standard for many Windows' API
1396// routines and around. It differs from C calling convention just a little:
1397// callee should clean up the stack, not caller. Symbols should be also
1398// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001399// For info on fast calling convention see Fast Calling Convention (tail call)
1400// implementation LowerX86_32FastCCCallTo.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001401
Dan Gohman9178de12009-08-05 01:29:28 +00001402/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001403/// semantics.
Dan Gohman9178de12009-08-05 01:29:28 +00001404static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1405 if (Outs.empty())
Gordon Henriksen18ace102008-01-05 16:56:59 +00001406 return false;
Duncan Sandsc93fae32008-03-21 09:14:45 +00001407
Dan Gohman9178de12009-08-05 01:29:28 +00001408 return Outs[0].Flags.isSRet();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001409}
1410
Dan Gohmanc21d06a2009-08-01 19:14:37 +00001411/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001412/// return semantics.
Dan Gohman9178de12009-08-05 01:29:28 +00001413static bool
1414ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1415 if (Ins.empty())
Gordon Henriksen18ace102008-01-05 16:56:59 +00001416 return false;
Duncan Sandsc93fae32008-03-21 09:14:45 +00001417
Dan Gohman9178de12009-08-05 01:29:28 +00001418 return Ins[0].Flags.isSRet();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001419}
1420
Dan Gohman705e3f72008-09-13 01:54:27 +00001421/// CCAssignFnForNode - Selects the correct CCAssignFn for a the
1422/// given CallingConvention value.
Sandeep Patel5838baa2009-09-02 08:44:58 +00001423CCAssignFn *X86TargetLowering::CCAssignFnForNode(CallingConv::ID CC) const {
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00001424 if (Subtarget->is64Bit()) {
Chris Lattnerac9a9392010-03-11 00:22:57 +00001425 if (CC == CallingConv::GHC)
1426 return CC_X86_64_GHC;
1427 else if (Subtarget->isTargetWin64())
Anton Korobeynikov99bd1882008-03-22 20:37:30 +00001428 return CC_X86_Win64_C;
Evan Chengded8f902008-09-07 09:07:23 +00001429 else
1430 return CC_X86_64_C;
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00001431 }
1432
Gordon Henriksen18ace102008-01-05 16:56:59 +00001433 if (CC == CallingConv::X86_FastCall)
1434 return CC_X86_32_FastCall;
Anton Korobeynikove454f182010-05-16 09:08:45 +00001435 else if (CC == CallingConv::X86_ThisCall)
1436 return CC_X86_32_ThisCall;
Evan Chenga9d15b92008-09-10 18:25:29 +00001437 else if (CC == CallingConv::Fast)
1438 return CC_X86_32_FastCC;
Chris Lattnerac9a9392010-03-11 00:22:57 +00001439 else if (CC == CallingConv::GHC)
1440 return CC_X86_32_GHC;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001441 else
1442 return CC_X86_32_C;
1443}
1444
Arnold Schwaighofer56653e32008-02-26 17:50:59 +00001445/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1446/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001447/// the specific parameter attribute. The copy will be passed as a byval
1448/// function parameter.
Scott Michel91099d62009-02-17 22:15:04 +00001449static SDValue
Dan Gohman8181bd12008-07-27 21:46:04 +00001450CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001451 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1452 DebugLoc dl) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001453 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001454 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Mon P Wang483af3c2010-04-04 03:10:48 +00001455 /*isVolatile*/false, /*AlwaysInline=*/true,
1456 NULL, 0, NULL, 0);
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00001457}
1458
Chris Lattnerac9a9392010-03-11 00:22:57 +00001459/// IsTailCallConvention - Return true if the calling convention is one that
1460/// supports tail call optimization.
1461static bool IsTailCallConvention(CallingConv::ID CC) {
1462 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1463}
1464
Evan Cheng6b6ed592010-01-27 00:07:07 +00001465/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1466/// a tailcall target by changing its ABI.
1467static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattnerac9a9392010-03-11 00:22:57 +00001468 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng6b6ed592010-01-27 00:07:07 +00001469}
1470
Dan Gohman9178de12009-08-05 01:29:28 +00001471SDValue
1472X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel5838baa2009-09-02 08:44:58 +00001473 CallingConv::ID CallConv,
Dan Gohman9178de12009-08-05 01:29:28 +00001474 const SmallVectorImpl<ISD::InputArg> &Ins,
1475 DebugLoc dl, SelectionDAG &DAG,
1476 const CCValAssign &VA,
1477 MachineFrameInfo *MFI,
Dan Gohmandbb121b2010-04-17 15:26:15 +00001478 unsigned i) const {
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001479 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman9178de12009-08-05 01:29:28 +00001480 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng6b6ed592010-01-27 00:07:07 +00001481 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sandsc93fae32008-03-21 09:14:45 +00001482 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov5e9f7e82009-08-14 18:19:10 +00001483 EVT ValVT;
1484
1485 // If value is passed by pointer we have address passed instead of the value
1486 // itself.
1487 if (VA.getLocInfo() == CCValAssign::Indirect)
1488 ValVT = VA.getLocVT();
1489 else
1490 ValVT = VA.getValVT();
Evan Cheng3e42a522008-01-10 02:24:25 +00001491
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001492 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michel91099d62009-02-17 22:15:04 +00001493 // changed with more analysis.
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00001494 // In case of tail call optimization mark all arguments mutable. Since they
1495 // could be overwritten by lowering of arguments in case of a tail call.
Evan Chengf36bebc2010-02-02 23:58:13 +00001496 if (Flags.isByVal()) {
1497 int FI = MFI->CreateFixedObject(Flags.getByValSize(),
Evan Cheng9ff54082010-07-03 00:40:23 +00001498 VA.getLocMemOffset(), isImmutable);
Evan Chengf36bebc2010-02-02 23:58:13 +00001499 return DAG.getFrameIndex(FI, getPointerTy());
1500 } else {
1501 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Cheng9ff54082010-07-03 00:40:23 +00001502 VA.getLocMemOffset(), isImmutable);
Evan Chengf36bebc2010-02-02 23:58:13 +00001503 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1504 return DAG.getLoad(ValVT, dl, Chain, FIN,
David Greene25160362010-02-15 16:53:33 +00001505 PseudoSourceValue::getFixedStack(FI), 0,
1506 false, false, 0);
Evan Chengf36bebc2010-02-02 23:58:13 +00001507 }
Rafael Espindola03cbeb72007-09-14 15:48:13 +00001508}
1509
Dan Gohman8181bd12008-07-27 21:46:04 +00001510SDValue
Dan Gohman9178de12009-08-05 01:29:28 +00001511X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel5838baa2009-09-02 08:44:58 +00001512 CallingConv::ID CallConv,
Dan Gohman9178de12009-08-05 01:29:28 +00001513 bool isVarArg,
1514 const SmallVectorImpl<ISD::InputArg> &Ins,
1515 DebugLoc dl,
1516 SelectionDAG &DAG,
Dan Gohmandbb121b2010-04-17 15:26:15 +00001517 SmallVectorImpl<SDValue> &InVals)
1518 const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001519 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001520 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michel91099d62009-02-17 22:15:04 +00001521
Gordon Henriksen18ace102008-01-05 16:56:59 +00001522 const Function* Fn = MF.getFunction();
1523 if (Fn->hasExternalLinkage() &&
1524 Subtarget->isTargetCygMing() &&
1525 Fn->getName() == "main")
1526 FuncInfo->setForceFramePointer(true);
1527
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001528 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen18ace102008-01-05 16:56:59 +00001529 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001530 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001531
Chris Lattnerac9a9392010-03-11 00:22:57 +00001532 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1533 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001534
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001535 // Assign locations to all of the incoming arguments.
1536 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman9178de12009-08-05 01:29:28 +00001537 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1538 ArgLocs, *DAG.getContext());
1539 CCInfo.AnalyzeFormalArguments(Ins, CCAssignFnForNode(CallConv));
Scott Michel91099d62009-02-17 22:15:04 +00001540
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001541 unsigned LastVal = ~0U;
Anton Korobeynikov78c31602009-08-03 08:13:56 +00001542 SDValue ArgValue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001543 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1544 CCValAssign &VA = ArgLocs[i];
1545 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1546 // places.
1547 assert(VA.getValNo() != LastVal &&
1548 "Don't support value assigned to multiple locs yet");
1549 LastVal = VA.getValNo();
Scott Michel91099d62009-02-17 22:15:04 +00001550
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001551 if (VA.isRegLoc()) {
Owen Andersonac9de032009-08-10 22:56:29 +00001552 EVT RegVT = VA.getLocVT();
Devang Patelf3707e82009-01-05 17:31:22 +00001553 TargetRegisterClass *RC = NULL;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001554 if (RegVT == MVT::i32)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001555 RC = X86::GR32RegisterClass;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001556 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen18ace102008-01-05 16:56:59 +00001557 RC = X86::GR64RegisterClass;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001558 else if (RegVT == MVT::f32)
Gordon Henriksen18ace102008-01-05 16:56:59 +00001559 RC = X86::FR32RegisterClass;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001560 else if (RegVT == MVT::f64)
Gordon Henriksen18ace102008-01-05 16:56:59 +00001561 RC = X86::FR64RegisterClass;
Duncan Sands92c43912008-06-06 12:08:01 +00001562 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengf5af6fe2008-04-25 07:56:45 +00001563 RC = X86::VR128RegisterClass;
Anton Korobeynikov8485b632009-08-03 08:13:24 +00001564 else if (RegVT.isVector() && RegVT.getSizeInBits() == 64)
1565 RC = X86::VR64RegisterClass;
1566 else
Edwin Törökbd448e32009-07-14 16:55:14 +00001567 llvm_unreachable("Unknown argument type!");
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001568
Dan Gohmanc21d06a2009-08-01 19:14:37 +00001569 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman9178de12009-08-05 01:29:28 +00001570 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michel91099d62009-02-17 22:15:04 +00001571
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001572 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1573 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1574 // right size.
1575 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesence0805b2009-02-03 19:33:06 +00001576 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001577 DAG.getValueType(VA.getValVT()));
1578 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesence0805b2009-02-03 19:33:06 +00001579 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001580 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov8485b632009-08-03 08:13:24 +00001581 else if (VA.getLocInfo() == CCValAssign::BCvt)
Anton Korobeynikova6ad5be2009-08-03 08:14:14 +00001582 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getValVT(), ArgValue);
Scott Michel91099d62009-02-17 22:15:04 +00001583
Anton Korobeynikov78c31602009-08-03 08:13:56 +00001584 if (VA.isExtInLoc()) {
Anton Korobeynikov8485b632009-08-03 08:13:24 +00001585 // Handle MMX values passed in XMM regs.
1586 if (RegVT.isVector()) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001587 ArgValue = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1588 ArgValue, DAG.getConstant(0, MVT::i64));
Anton Korobeynikov8485b632009-08-03 08:13:24 +00001589 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getValVT(), ArgValue);
1590 } else
1591 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Chengad6980b2008-04-25 20:13:28 +00001592 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001593 } else {
1594 assert(VA.isMemLoc());
Dan Gohman9178de12009-08-05 01:29:28 +00001595 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001596 }
Anton Korobeynikov78c31602009-08-03 08:13:56 +00001597
1598 // If value is passed via pointer - do a load.
1599 if (VA.getLocInfo() == CCValAssign::Indirect)
David Greene25160362010-02-15 16:53:33 +00001600 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue, NULL, 0,
1601 false, false, 0);
Anton Korobeynikov78c31602009-08-03 08:13:56 +00001602
Dan Gohman9178de12009-08-05 01:29:28 +00001603 InVals.push_back(ArgValue);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001604 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001605
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001606 // The x86-64 ABI for returning structs by value requires that we copy
1607 // the sret argument into %rax for the return. Save the argument into
1608 // a virtual register so that we can access it from the return points.
Dan Gohmanc21d06a2009-08-01 19:14:37 +00001609 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001610 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1611 unsigned Reg = FuncInfo->getSRetReturnReg();
1612 if (!Reg) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001613 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001614 FuncInfo->setSRetReturnReg(Reg);
1615 }
Dan Gohman9178de12009-08-05 01:29:28 +00001616 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001617 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohmanb47dabd2008-04-21 23:59:07 +00001618 }
1619
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001620 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng6b6ed592010-01-27 00:07:07 +00001621 // Align stack specially for tail calls.
1622 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001623 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001624
1625 // If the function takes variable number of arguments, make a frame index for
1626 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001627 if (isVarArg) {
Anton Korobeynikove454f182010-05-16 09:08:45 +00001628 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1629 CallConv != CallingConv::X86_ThisCall)) {
Evan Cheng9ff54082010-07-03 00:40:23 +00001630 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001631 }
1632 if (Is64Bit) {
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001633 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1634
1635 // FIXME: We should really autogenerate these arrays
1636 static const unsigned GPR64ArgRegsWin64[] = {
1637 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen18ace102008-01-05 16:56:59 +00001638 };
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001639 static const unsigned XMMArgRegsWin64[] = {
1640 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3
1641 };
1642 static const unsigned GPR64ArgRegs64Bit[] = {
1643 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1644 };
1645 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001646 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1647 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1648 };
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001649 const unsigned *GPR64ArgRegs, *XMMArgRegs;
1650
1651 if (IsWin64) {
1652 TotalNumIntRegs = 4; TotalNumXMMRegs = 4;
1653 GPR64ArgRegs = GPR64ArgRegsWin64;
1654 XMMArgRegs = XMMArgRegsWin64;
1655 } else {
1656 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1657 GPR64ArgRegs = GPR64ArgRegs64Bit;
1658 XMMArgRegs = XMMArgRegs64Bit;
1659 }
1660 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1661 TotalNumIntRegs);
1662 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs,
1663 TotalNumXMMRegs);
1664
Devang Patelc386c842009-06-05 21:57:13 +00001665 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Evan Cheng0b84fe12009-02-13 22:36:38 +00001666 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Edwin Törökaf8e1332009-02-01 18:15:56 +00001667 "SSE register cannot be used when SSE is disabled!");
Devang Patelc386c842009-06-05 21:57:13 +00001668 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Cheng0b84fe12009-02-13 22:36:38 +00001669 "SSE register cannot be used when SSE is disabled!");
Devang Patelc386c842009-06-05 21:57:13 +00001670 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasSSE1())
Edwin Törökaf8e1332009-02-01 18:15:56 +00001671 // Kernel mode asks for SSE to be disabled, so don't push them
1672 // on the stack.
1673 TotalNumXMMRegs = 0;
Bill Wendling042eda32009-03-11 22:30:01 +00001674
Gordon Henriksen18ace102008-01-05 16:56:59 +00001675 // For X86-64, if there are vararg parameters that are passed via
1676 // registers, then we must store them to their spots on the stack so they
1677 // may be loaded by deferencing the result of va_next.
Dan Gohmand80404c2010-04-17 14:41:14 +00001678 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1679 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1680 FuncInfo->setRegSaveFrameIndex(
1681 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
1682 false));
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001683
Gordon Henriksen18ace102008-01-05 16:56:59 +00001684 // Store the integer parameter registers.
Dan Gohman8181bd12008-07-27 21:46:04 +00001685 SmallVector<SDValue, 8> MemOps;
Dan Gohmand80404c2010-04-17 14:41:14 +00001686 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1687 getPointerTy());
1688 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001689 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohman34228bf2009-08-15 01:38:56 +00001690 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1691 DAG.getIntPtrConstant(Offset));
Bob Wilsonb6737aa2009-04-20 18:36:57 +00001692 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
1693 X86::GR64RegisterClass);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001694 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman8181bd12008-07-27 21:46:04 +00001695 SDValue Store =
Dale Johannesence0805b2009-02-03 19:33:06 +00001696 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Dan Gohmand80404c2010-04-17 14:41:14 +00001697 PseudoSourceValue::getFixedStack(
1698 FuncInfo->getRegSaveFrameIndex()),
David Greene25160362010-02-15 16:53:33 +00001699 Offset, false, false, 0);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001700 MemOps.push_back(Store);
Dan Gohman34228bf2009-08-15 01:38:56 +00001701 Offset += 8;
Gordon Henriksen18ace102008-01-05 16:56:59 +00001702 }
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001703
Dan Gohmanb9f06832009-08-16 21:24:25 +00001704 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1705 // Now store the XMM (fp + vector) parameter registers.
1706 SmallVector<SDValue, 11> SaveXMMOps;
1707 SaveXMMOps.push_back(Chain);
Dan Gohman34228bf2009-08-15 01:38:56 +00001708
Dan Gohmanb9f06832009-08-16 21:24:25 +00001709 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
1710 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1711 SaveXMMOps.push_back(ALVal);
Dan Gohman34228bf2009-08-15 01:38:56 +00001712
Dan Gohmand80404c2010-04-17 14:41:14 +00001713 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1714 FuncInfo->getRegSaveFrameIndex()));
1715 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1716 FuncInfo->getVarArgsFPOffset()));
Dan Gohman34228bf2009-08-15 01:38:56 +00001717
Dan Gohmanb9f06832009-08-16 21:24:25 +00001718 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
1719 unsigned VReg = MF.addLiveIn(XMMArgRegs[NumXMMRegs],
1720 X86::VR128RegisterClass);
1721 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1722 SaveXMMOps.push_back(Val);
1723 }
1724 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1725 MVT::Other,
1726 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen18ace102008-01-05 16:56:59 +00001727 }
Dan Gohmanb9f06832009-08-16 21:24:25 +00001728
1729 if (!MemOps.empty())
1730 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1731 &MemOps[0], MemOps.size());
Gordon Henriksen18ace102008-01-05 16:56:59 +00001732 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001733 }
Scott Michel91099d62009-02-17 22:15:04 +00001734
Gordon Henriksen18ace102008-01-05 16:56:59 +00001735 // Some CCs need callee pop.
Dan Gohman41a10c32010-05-27 18:43:40 +00001736 if (Subtarget->IsCalleePop(isVarArg, CallConv)) {
Dan Gohmand80404c2010-04-17 14:41:14 +00001737 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001738 } else {
Dan Gohmand80404c2010-04-17 14:41:14 +00001739 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001740 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattnerac9a9392010-03-11 00:22:57 +00001741 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohmand80404c2010-04-17 14:41:14 +00001742 FuncInfo->setBytesToPopOnReturn(4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001743 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001744
Gordon Henriksen18ace102008-01-05 16:56:59 +00001745 if (!Is64Bit) {
Dan Gohmand80404c2010-04-17 14:41:14 +00001746 // RegSaveFrameIndex is X86-64 only.
1747 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikove454f182010-05-16 09:08:45 +00001748 if (CallConv == CallingConv::X86_FastCall ||
1749 CallConv == CallingConv::X86_ThisCall)
Dan Gohmand80404c2010-04-17 14:41:14 +00001750 // fastcc functions can't have varargs.
1751 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001752 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001753
Dan Gohman9178de12009-08-05 01:29:28 +00001754 return Chain;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001755}
1756
Dan Gohman8181bd12008-07-27 21:46:04 +00001757SDValue
Dan Gohman9178de12009-08-05 01:29:28 +00001758X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1759 SDValue StackPtr, SDValue Arg,
1760 DebugLoc dl, SelectionDAG &DAG,
Evan Chengbc077bf2008-01-10 00:09:10 +00001761 const CCValAssign &VA,
Dan Gohmandbb121b2010-04-17 15:26:15 +00001762 ISD::ArgFlagsTy Flags) const {
Anton Korobeynikov2cbcdb72009-08-03 08:12:53 +00001763 const unsigned FirstStackArgOffset = (Subtarget->isTargetWin64() ? 32 : 0);
Anton Korobeynikov2cbcdb72009-08-03 08:12:53 +00001764 unsigned LocMemOffset = FirstStackArgOffset + VA.getLocMemOffset();
Dan Gohman8181bd12008-07-27 21:46:04 +00001765 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesence0805b2009-02-03 19:33:06 +00001766 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Duncan Sandsc93fae32008-03-21 09:14:45 +00001767 if (Flags.isByVal()) {
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001768 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Evan Chengbc077bf2008-01-10 00:09:10 +00001769 }
Dale Johannesence0805b2009-02-03 19:33:06 +00001770 return DAG.getStore(Chain, dl, Arg, PtrOff,
David Greene25160362010-02-15 16:53:33 +00001771 PseudoSourceValue::getStack(), LocMemOffset,
1772 false, false, 0);
Evan Chengbc077bf2008-01-10 00:09:10 +00001773}
1774
Bill Wendling6ddc87b2009-01-16 19:25:27 +00001775/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001776/// optimization is performed and it is required.
Scott Michel91099d62009-02-17 22:15:04 +00001777SDValue
1778X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Cheng00787d52010-01-26 19:04:47 +00001779 SDValue &OutRetAddr, SDValue Chain,
1780 bool IsTailCall, bool Is64Bit,
Dan Gohmandbb121b2010-04-17 15:26:15 +00001781 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001782 // Adjust the Return address stack slot.
Owen Andersonac9de032009-08-10 22:56:29 +00001783 EVT VT = getPointerTy();
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001784 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling6ddc87b2009-01-16 19:25:27 +00001785
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001786 // Load the "old" Return address.
David Greene25160362010-02-15 16:53:33 +00001787 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, NULL, 0, false, false, 0);
Gabor Greif1c80d112008-08-28 21:40:38 +00001788 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001789}
1790
1791/// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1792/// optimization is performed and it is required (FPDiff!=0).
Scott Michel91099d62009-02-17 22:15:04 +00001793static SDValue
1794EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman8181bd12008-07-27 21:46:04 +00001795 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesence0805b2009-02-03 19:33:06 +00001796 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001797 // Store the return address to the appropriate stack slot.
1798 if (!FPDiff) return Chain;
1799 // Calculate the new stack slot for the return address.
1800 int SlotSize = Is64Bit ? 8 : 4;
Scott Michel91099d62009-02-17 22:15:04 +00001801 int NewReturnAddrFI =
Evan Cheng9ff54082010-07-03 00:40:23 +00001802 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001803 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman8181bd12008-07-27 21:46:04 +00001804 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michel91099d62009-02-17 22:15:04 +00001805 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
David Greene25160362010-02-15 16:53:33 +00001806 PseudoSourceValue::getFixedStack(NewReturnAddrFI), 0,
1807 false, false, 0);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001808 return Chain;
1809}
1810
Dan Gohman9178de12009-08-05 01:29:28 +00001811SDValue
Evan Chengff116f92010-02-02 23:55:14 +00001812X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel5838baa2009-09-02 08:44:58 +00001813 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng6b6ed592010-01-27 00:07:07 +00001814 bool &isTailCall,
Dan Gohman9178de12009-08-05 01:29:28 +00001815 const SmallVectorImpl<ISD::OutputArg> &Outs,
1816 const SmallVectorImpl<ISD::InputArg> &Ins,
1817 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmandbb121b2010-04-17 15:26:15 +00001818 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman9178de12009-08-05 01:29:28 +00001819 MachineFunction &MF = DAG.getMachineFunction();
1820 bool Is64Bit = Subtarget->is64Bit();
1821 bool IsStructRet = CallIsStructReturn(Outs);
Evan Chengf4919612010-02-05 02:21:12 +00001822 bool IsSibcall = false;
Dan Gohman9178de12009-08-05 01:29:28 +00001823
Evan Chengf4919612010-02-05 02:21:12 +00001824 if (isTailCall) {
Evan Cheng6b6ed592010-01-27 00:07:07 +00001825 // Check if it's really possible to do a tail call.
Evan Chengec290582010-03-15 18:54:48 +00001826 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1827 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Evan Chengff116f92010-02-02 23:55:14 +00001828 Outs, Ins, DAG);
Evan Chengc54fa452010-02-06 03:28:46 +00001829
1830 // Sibcalls are automatically detected tailcalls which do not require
1831 // ABI changes.
Dan Gohmanea8579c2010-02-08 20:27:50 +00001832 if (!GuaranteedTailCallOpt && isTailCall)
Evan Chengf4919612010-02-05 02:21:12 +00001833 IsSibcall = true;
Evan Chengc54fa452010-02-06 03:28:46 +00001834
1835 if (isTailCall)
1836 ++NumTailCalls;
Evan Chengf4919612010-02-05 02:21:12 +00001837 }
Evan Cheng6b6ed592010-01-27 00:07:07 +00001838
Chris Lattnerac9a9392010-03-11 00:22:57 +00001839 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1840 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001841
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001842 // Analyze operands of the call, assigning locations to each operand.
1843 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman9178de12009-08-05 01:29:28 +00001844 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1845 ArgLocs, *DAG.getContext());
1846 CCInfo.AnalyzeCallOperands(Outs, CCAssignFnForNode(CallConv));
Scott Michel91099d62009-02-17 22:15:04 +00001847
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001848 // Get a count of how many bytes are to be pushed on the stack.
1849 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengc54fa452010-02-06 03:28:46 +00001850 if (IsSibcall)
Evan Chengc38381c2010-02-02 02:22:50 +00001851 // This is a sibcall. The memory operands are available in caller's
1852 // own caller's stack.
1853 NumBytes = 0;
Chris Lattnerac9a9392010-03-11 00:22:57 +00001854 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengc54fa452010-02-06 03:28:46 +00001855 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001856
Gordon Henriksen18ace102008-01-05 16:56:59 +00001857 int FPDiff = 0;
Evan Chengc54fa452010-02-06 03:28:46 +00001858 if (isTailCall && !IsSibcall) {
Gordon Henriksen18ace102008-01-05 16:56:59 +00001859 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michel91099d62009-02-17 22:15:04 +00001860 unsigned NumBytesCallerPushed =
Gordon Henriksen18ace102008-01-05 16:56:59 +00001861 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1862 FPDiff = NumBytesCallerPushed - NumBytes;
1863
1864 // Set the delta of movement of the returnaddr stackslot.
1865 // But only set if delta is greater than previous delta.
1866 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1867 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
1868 }
1869
Evan Chengc54fa452010-02-06 03:28:46 +00001870 if (!IsSibcall)
1871 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001872
Dan Gohman8181bd12008-07-27 21:46:04 +00001873 SDValue RetAddrFrIdx;
Arnold Schwaighofera38df102008-04-12 18:11:06 +00001874 // Load return adress for tail calls.
Evan Chengc54fa452010-02-06 03:28:46 +00001875 if (isTailCall && FPDiff)
1876 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
1877 Is64Bit, FPDiff, dl);
Gordon Henriksen18ace102008-01-05 16:56:59 +00001878
Dan Gohman8181bd12008-07-27 21:46:04 +00001879 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1880 SmallVector<SDValue, 8> MemOpChains;
1881 SDValue StackPtr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001882
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001883 // Walk the register/memloc assignments, inserting copies/loads. In the case
1884 // of tail call optimization arguments are handle later.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001885 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1886 CCValAssign &VA = ArgLocs[i];
Owen Andersonac9de032009-08-10 22:56:29 +00001887 EVT RegVT = VA.getLocVT();
Dan Gohman9178de12009-08-05 01:29:28 +00001888 SDValue Arg = Outs[i].Val;
1889 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman705e3f72008-09-13 01:54:27 +00001890 bool isByVal = Flags.isByVal();
Scott Michel91099d62009-02-17 22:15:04 +00001891
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001892 // Promote the value if needed.
1893 switch (VA.getLocInfo()) {
Edwin Törökbd448e32009-07-14 16:55:14 +00001894 default: llvm_unreachable("Unknown loc info!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001895 case CCValAssign::Full: break;
1896 case CCValAssign::SExt:
Anton Korobeynikov8485b632009-08-03 08:13:24 +00001897 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001898 break;
1899 case CCValAssign::ZExt:
Anton Korobeynikov8485b632009-08-03 08:13:24 +00001900 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001901 break;
1902 case CCValAssign::AExt:
Anton Korobeynikov8485b632009-08-03 08:13:24 +00001903 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
1904 // Special case: passing MMX values in XMM registers.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001905 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
1906 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
1907 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov8485b632009-08-03 08:13:24 +00001908 } else
1909 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
1910 break;
1911 case CCValAssign::BCvt:
1912 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, RegVT, Arg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001913 break;
Anton Korobeynikov78c31602009-08-03 08:13:56 +00001914 case CCValAssign::Indirect: {
1915 // Store the argument.
1916 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Cheng174e2cf2009-10-18 18:16:27 +00001917 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov78c31602009-08-03 08:13:56 +00001918 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
David Greene25160362010-02-15 16:53:33 +00001919 PseudoSourceValue::getFixedStack(FI), 0,
1920 false, false, 0);
Anton Korobeynikov78c31602009-08-03 08:13:56 +00001921 Arg = SpillSlot;
1922 break;
1923 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001924 }
Scott Michel91099d62009-02-17 22:15:04 +00001925
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001926 if (VA.isRegLoc()) {
1927 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
Evan Chengc54fa452010-02-06 03:28:46 +00001928 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Chengf4919612010-02-05 02:21:12 +00001929 assert(VA.isMemLoc());
1930 if (StackPtr.getNode() == 0)
1931 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
1932 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
1933 dl, DAG, VA, Flags));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001934 }
1935 }
Scott Michel91099d62009-02-17 22:15:04 +00001936
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001937 if (!MemOpChains.empty())
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001938 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001939 &MemOpChains[0], MemOpChains.size());
1940
1941 // Build a sequence of copy-to-reg nodes chained together with token chain
1942 // and flag operands which copy the outgoing args into registers.
Dan Gohman8181bd12008-07-27 21:46:04 +00001943 SDValue InFlag;
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001944 // Tail call byval lowering might overwrite argument registers so in case of
1945 // tail call optimization the copies to registers are lowered later.
Dan Gohman9178de12009-08-05 01:29:28 +00001946 if (!isTailCall)
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001947 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michel91099d62009-02-17 22:15:04 +00001948 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00001949 RegsToPass[i].second, InFlag);
Arnold Schwaighofera0032722008-04-30 09:16:33 +00001950 InFlag = Chain.getValue(1);
1951 }
Gordon Henriksen18ace102008-01-05 16:56:59 +00001952
Chris Lattnerf165d342009-07-09 04:24:46 +00001953 if (Subtarget->isPICStyleGOT()) {
Chris Lattner679cad52009-07-09 02:55:47 +00001954 // ELF / PIC requires GOT in the EBX register before function calls via PLT
1955 // GOT pointer.
Dan Gohman9178de12009-08-05 01:29:28 +00001956 if (!isTailCall) {
Chris Lattner679cad52009-07-09 02:55:47 +00001957 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
1958 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerd2c680b2010-04-02 20:16:16 +00001959 DebugLoc(), getPointerTy()),
Chris Lattner679cad52009-07-09 02:55:47 +00001960 InFlag);
1961 InFlag = Chain.getValue(1);
1962 } else {
1963 // If we are tail calling and generating PIC/GOT style code load the
1964 // address of the callee into ECX. The value in ecx is used as target of
1965 // the tail jump. This is done to circumvent the ebx/callee-saved problem
1966 // for tail calls on PIC/GOT architectures. Normally we would just put the
1967 // address of GOT into ebx and then call target@PLT. But for tail calls
1968 // ebx would be restored (since ebx is callee saved) before jumping to the
1969 // target@PLT.
1970
1971 // Note: The actual moving to ECX is done further down.
1972 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
1973 if (G && !G->getGlobal()->hasHiddenVisibility() &&
1974 !G->getGlobal()->hasProtectedVisibility())
1975 Callee = LowerGlobalAddress(Callee, DAG);
1976 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner5d1f2572009-07-09 04:39:06 +00001977 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattner679cad52009-07-09 02:55:47 +00001978 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001979 }
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00001980
Gordon Henriksen18ace102008-01-05 16:56:59 +00001981 if (Is64Bit && isVarArg) {
1982 // From AMD64 ABI document:
1983 // For calls that may call functions that use varargs or stdargs
1984 // (prototype-less calls or calls to functions containing ellipsis (...) in
1985 // the declaration) %al is used as hidden argument to specify the number
1986 // of SSE registers used. The contents of %al do not need to match exactly
1987 // the number of registers, but must be an ubound on the number of SSE
1988 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov1ded0db2008-04-27 23:15:03 +00001989
1990 // FIXME: Verify this on Win64
Gordon Henriksen18ace102008-01-05 16:56:59 +00001991 // Count the number of XMM registers allocated.
1992 static const unsigned XMMArgRegs[] = {
1993 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1994 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1995 };
1996 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Scott Michel91099d62009-02-17 22:15:04 +00001997 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Edwin Törökaf8e1332009-02-01 18:15:56 +00001998 && "SSE registers cannot be used when SSE is disabled");
Scott Michel91099d62009-02-17 22:15:04 +00001999
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00002000 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00002001 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen18ace102008-01-05 16:56:59 +00002002 InFlag = Chain.getValue(1);
2003 }
2004
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00002005
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00002006 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman9178de12009-08-05 01:29:28 +00002007 if (isTailCall) {
2008 // Force all the incoming stack arguments to be loaded from the stack
2009 // before any new outgoing arguments are stored to the stack, because the
2010 // outgoing stack slots may alias the incoming argument stack slots, and
2011 // the alias isn't otherwise explicit. This is slightly more conservative
2012 // than necessary, because it means that each store effectively depends
2013 // on every argument instead of just those arguments it would clobber.
2014 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2015
Dan Gohman8181bd12008-07-27 21:46:04 +00002016 SmallVector<SDValue, 8> MemOpChains2;
2017 SDValue FIN;
Gordon Henriksen18ace102008-01-05 16:56:59 +00002018 int FI = 0;
Arnold Schwaighofere2db0f42008-02-26 09:19:59 +00002019 // Do not flag preceeding copytoreg stuff together with the following stuff.
Dan Gohman8181bd12008-07-27 21:46:04 +00002020 InFlag = SDValue();
Dan Gohmanea8579c2010-02-08 20:27:50 +00002021 if (GuaranteedTailCallOpt) {
Evan Chengc38381c2010-02-02 02:22:50 +00002022 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2023 CCValAssign &VA = ArgLocs[i];
2024 if (VA.isRegLoc())
2025 continue;
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00002026 assert(VA.isMemLoc());
Dan Gohman9178de12009-08-05 01:29:28 +00002027 SDValue Arg = Outs[i].Val;
2028 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen18ace102008-01-05 16:56:59 +00002029 // Create frame index.
2030 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands92c43912008-06-06 12:08:01 +00002031 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Cheng9ff54082010-07-03 00:40:23 +00002032 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00002033 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighofer449b01a2008-01-11 16:49:42 +00002034
Duncan Sandsc93fae32008-03-21 09:14:45 +00002035 if (Flags.isByVal()) {
Evan Cheng5817a0e2008-01-12 01:08:07 +00002036 // Copy relative to framepointer.
Dan Gohman8181bd12008-07-27 21:46:04 +00002037 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greif1c80d112008-08-28 21:40:38 +00002038 if (StackPtr.getNode() == 0)
Scott Michel91099d62009-02-17 22:15:04 +00002039 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00002040 getPointerTy());
Dale Johannesence0805b2009-02-03 19:33:06 +00002041 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofera38df102008-04-12 18:11:06 +00002042
Dan Gohman9178de12009-08-05 01:29:28 +00002043 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2044 ArgChain,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00002045 Flags, DAG, dl));
Gordon Henriksen18ace102008-01-05 16:56:59 +00002046 } else {
Evan Cheng5817a0e2008-01-12 01:08:07 +00002047 // Store relative to framepointer.
Dan Gohman12a9c082008-02-06 22:27:42 +00002048 MemOpChains2.push_back(
Dan Gohman9178de12009-08-05 01:29:28 +00002049 DAG.getStore(ArgChain, dl, Arg, FIN,
David Greene25160362010-02-15 16:53:33 +00002050 PseudoSourceValue::getFixedStack(FI), 0,
2051 false, false, 0));
Scott Michel91099d62009-02-17 22:15:04 +00002052 }
Gordon Henriksen18ace102008-01-05 16:56:59 +00002053 }
2054 }
2055
2056 if (!MemOpChains2.empty())
Owen Anderson36e3a6e2009-08-11 20:47:22 +00002057 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighoferdfb21302008-01-11 14:34:56 +00002058 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen18ace102008-01-05 16:56:59 +00002059
Arnold Schwaighofera0032722008-04-30 09:16:33 +00002060 // Copy arguments to their registers.
2061 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michel91099d62009-02-17 22:15:04 +00002062 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00002063 RegsToPass[i].second, InFlag);
Arnold Schwaighofera0032722008-04-30 09:16:33 +00002064 InFlag = Chain.getValue(1);
2065 }
Dan Gohman8181bd12008-07-27 21:46:04 +00002066 InFlag =SDValue();
Arnold Schwaighofera38df102008-04-12 18:11:06 +00002067
Gordon Henriksen18ace102008-01-05 16:56:59 +00002068 // Store the return address to the appropriate stack slot.
Arnold Schwaighofera38df102008-04-12 18:11:06 +00002069 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesence0805b2009-02-03 19:33:06 +00002070 FPDiff, dl);
Gordon Henriksen18ace102008-01-05 16:56:59 +00002071 }
2072
Jeffrey Yasskine233d8a2009-11-16 22:41:33 +00002073 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2074 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2075 // In the 64-bit large code model, we have to make all calls
2076 // through a register, since the call instruction's 32-bit
2077 // pc-relative offset may not be large enough to hold the whole
2078 // address.
2079 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskine233d8a2009-11-16 22:41:33 +00002080 // If the callee is a GlobalAddress node (quite common, every direct call
2081 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2082 // it.
2083
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002084 // We should use extra load for direct calls to dllimported functions in
2085 // non-JIT mode.
Dan Gohman36c56d02010-04-15 01:51:59 +00002086 const GlobalValue *GV = G->getGlobal();
Chris Lattner180a7ee2009-07-10 05:48:03 +00002087 if (!GV->hasDLLImportLinkage()) {
Chris Lattner8e8afe42009-07-09 05:02:21 +00002088 unsigned char OpFlags = 0;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00002089
Chris Lattner8e8afe42009-07-09 05:02:21 +00002090 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2091 // external symbols most go through the PLT in PIC mode. If the symbol
2092 // has hidden or protected visibility, or if it is static or local, then
2093 // we don't need to use the PLT - we can directly call it.
2094 if (Subtarget->isTargetELF() &&
2095 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner48837612009-07-09 05:27:35 +00002096 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner8e8afe42009-07-09 05:02:21 +00002097 OpFlags = X86II::MO_PLT;
Chris Lattner4a948932009-07-10 20:47:30 +00002098 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner48837612009-07-09 05:27:35 +00002099 (GV->isDeclaration() || GV->isWeakForLinker()) &&
2100 Subtarget->getDarwinVers() < 9) {
2101 // PC-relative references to external symbols should go through $stub,
2102 // unless we're building with the leopard linker or later, which
2103 // automatically synthesizes these stubs.
2104 OpFlags = X86II::MO_DARWIN_STUB;
2105 }
Chris Lattner8e8afe42009-07-09 05:02:21 +00002106
Chris Lattner48837612009-07-09 05:27:35 +00002107 Callee = DAG.getTargetGlobalAddress(GV, getPointerTy(),
Chris Lattner8e8afe42009-07-09 05:02:21 +00002108 G->getOffset(), OpFlags);
2109 }
Bill Wendlingfef06052008-09-16 21:48:12 +00002110 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner8e8afe42009-07-09 05:02:21 +00002111 unsigned char OpFlags = 0;
2112
2113 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to external
2114 // symbols should go through the PLT.
2115 if (Subtarget->isTargetELF() &&
Chris Lattner48837612009-07-09 05:27:35 +00002116 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Chris Lattner8e8afe42009-07-09 05:02:21 +00002117 OpFlags = X86II::MO_PLT;
Chris Lattner4a948932009-07-10 20:47:30 +00002118 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner48837612009-07-09 05:27:35 +00002119 Subtarget->getDarwinVers() < 9) {
2120 // PC-relative references to external symbols should go through $stub,
2121 // unless we're building with the leopard linker or later, which
2122 // automatically synthesizes these stubs.
2123 OpFlags = X86II::MO_DARWIN_STUB;
2124 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00002125
Chris Lattner8e8afe42009-07-09 05:02:21 +00002126 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2127 OpFlags);
Jeffrey Yasskine233d8a2009-11-16 22:41:33 +00002128 }
2129
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002130 // Returns a chain & a flag for retval copy to use.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00002131 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00002132 SmallVector<SDValue, 8> Ops;
Gordon Henriksen18ace102008-01-05 16:56:59 +00002133
Evan Chengc54fa452010-02-06 03:28:46 +00002134 if (!IsSibcall && isTailCall) {
Dale Johannesen9bfc0172009-02-06 23:05:02 +00002135 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2136 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen18ace102008-01-05 16:56:59 +00002137 InFlag = Chain.getValue(1);
Gordon Henriksen18ace102008-01-05 16:56:59 +00002138 }
Scott Michel91099d62009-02-17 22:15:04 +00002139
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002140 Ops.push_back(Chain);
2141 Ops.push_back(Callee);
2142
Dan Gohman9178de12009-08-05 01:29:28 +00002143 if (isTailCall)
Owen Anderson36e3a6e2009-08-11 20:47:22 +00002144 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002145
Gordon Henriksen18ace102008-01-05 16:56:59 +00002146 // Add argument registers to the end of the list so that they are known live
2147 // into the call.
Evan Chenge14fc242008-01-07 23:08:23 +00002148 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2149 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2150 RegsToPass[i].second.getValueType()));
Scott Michel91099d62009-02-17 22:15:04 +00002151
Evan Cheng8ba45e62008-03-18 23:36:35 +00002152 // Add an implicit use GOT pointer in EBX.
Dan Gohman9178de12009-08-05 01:29:28 +00002153 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng8ba45e62008-03-18 23:36:35 +00002154 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2155
2156 // Add an implicit use of AL for x86 vararg functions.
2157 if (Is64Bit && isVarArg)
Owen Anderson36e3a6e2009-08-11 20:47:22 +00002158 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng8ba45e62008-03-18 23:36:35 +00002159
Gabor Greif1c80d112008-08-28 21:40:38 +00002160 if (InFlag.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002161 Ops.push_back(InFlag);
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00002162
Dan Gohman9178de12009-08-05 01:29:28 +00002163 if (isTailCall) {
Dale Johannesenfd642742010-06-05 00:30:45 +00002164 // We used to do:
2165 //// If this is the first return lowered for this function, add the regs
2166 //// to the liveout set for the function.
2167 // This isn't right, although it's probably harmless on x86; liveouts
2168 // should be computed from returns not tail calls. Consider a void
2169 // function making a tail call to a function returning int.
Dan Gohman9178de12009-08-05 01:29:28 +00002170 return DAG.getNode(X86ISD::TC_RETURN, dl,
2171 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen18ace102008-01-05 16:56:59 +00002172 }
2173
Dale Johannesence0805b2009-02-03 19:33:06 +00002174 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002175 InFlag = Chain.getValue(1);
2176
2177 // Create the CALLSEQ_END node.
Gordon Henriksen18ace102008-01-05 16:56:59 +00002178 unsigned NumBytesForCalleeToPush;
Dan Gohman41a10c32010-05-27 18:43:40 +00002179 if (Subtarget->IsCalleePop(isVarArg, CallConv))
Gordon Henriksen18ace102008-01-05 16:56:59 +00002180 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattnerac9a9392010-03-11 00:22:57 +00002181 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmandf1a7ff2010-02-10 16:03:48 +00002182 // If this is a call to a struct-return function, the callee
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002183 // pops the hidden struct pointer, so we have to push it back.
2184 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00002185 NumBytesForCalleeToPush = 4;
Gordon Henriksen18ace102008-01-05 16:56:59 +00002186 else
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00002187 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michel91099d62009-02-17 22:15:04 +00002188
Gordon Henriksen6bbcc672008-01-03 16:47:34 +00002189 // Returns a flag for retval copy to use.
Evan Chengc54fa452010-02-06 03:28:46 +00002190 if (!IsSibcall) {
2191 Chain = DAG.getCALLSEQ_END(Chain,
2192 DAG.getIntPtrConstant(NumBytes, true),
2193 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2194 true),
2195 InFlag);
2196 InFlag = Chain.getValue(1);
2197 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002198
2199 // Handle result values, copying them out of physregs into vregs that we
2200 // return.
Dan Gohman9178de12009-08-05 01:29:28 +00002201 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2202 Ins, dl, DAG, InVals);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002203}
2204
2205
2206//===----------------------------------------------------------------------===//
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00002207// Fast Calling Convention (tail call) implementation
2208//===----------------------------------------------------------------------===//
2209
2210// Like std call, callee cleans arguments, convention except that ECX is
2211// reserved for storing the tail called function address. Only 2 registers are
2212// free for argument passing (inreg). Tail call optimization is performed
2213// provided:
2214// * tailcallopt is enabled
2215// * caller/callee are fastcc
Arnold Schwaighofer480c5672008-02-26 10:21:54 +00002216// On X86_64 architecture with GOT-style position independent code only local
2217// (within module) calls are supported at the moment.
Arnold Schwaighofer373e8652007-10-12 21:30:57 +00002218// To keep the stack aligned according to platform abi the function
2219// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2220// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00002221// If a tail called function callee has more arguments than the caller the
2222// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer373e8652007-10-12 21:30:57 +00002223// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00002224// original REtADDR, but before the saved framepointer or the spilled registers
2225// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2226// stack layout:
2227// arg1
2228// arg2
2229// RETADDR
Scott Michel91099d62009-02-17 22:15:04 +00002230// [ new RETADDR
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00002231// move area ]
2232// (possible EBP)
2233// ESI
2234// EDI
2235// local1 ..
2236
2237/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2238/// for a 16 byte align requirement.
Dan Gohmandbb121b2010-04-17 15:26:15 +00002239unsigned
2240X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2241 SelectionDAG& DAG) const {
Evan Chengded8f902008-09-07 09:07:23 +00002242 MachineFunction &MF = DAG.getMachineFunction();
2243 const TargetMachine &TM = MF.getTarget();
2244 const TargetFrameInfo &TFI = *TM.getFrameInfo();
2245 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michel91099d62009-02-17 22:15:04 +00002246 uint64_t AlignMask = StackAlignment - 1;
Evan Chengded8f902008-09-07 09:07:23 +00002247 int64_t Offset = StackSize;
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00002248 uint64_t SlotSize = TD->getPointerSize();
Evan Chengded8f902008-09-07 09:07:23 +00002249 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2250 // Number smaller than 12 so just add the difference.
2251 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2252 } else {
2253 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michel91099d62009-02-17 22:15:04 +00002254 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chengded8f902008-09-07 09:07:23 +00002255 (StackAlignment-SlotSize);
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00002256 }
Evan Chengded8f902008-09-07 09:07:23 +00002257 return Offset;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00002258}
2259
Evan Chengf4919612010-02-05 02:21:12 +00002260/// MatchingStackOffset - Return true if the given stack call argument is
2261/// already available in the same position (relatively) of the caller's
2262/// incoming argument stack.
2263static
2264bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2265 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2266 const X86InstrInfo *TII) {
Evan Cheng3df6bd42010-03-05 08:38:04 +00002267 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2268 int FI = INT_MAX;
Evan Chengf4919612010-02-05 02:21:12 +00002269 if (Arg.getOpcode() == ISD::CopyFromReg) {
2270 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
2271 if (!VR || TargetRegisterInfo::isPhysicalRegister(VR))
2272 return false;
2273 MachineInstr *Def = MRI->getVRegDef(VR);
2274 if (!Def)
2275 return false;
2276 if (!Flags.isByVal()) {
2277 if (!TII->isLoadFromStackSlot(Def, FI))
2278 return false;
2279 } else {
2280 unsigned Opcode = Def->getOpcode();
2281 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2282 Def->getOperand(1).isFI()) {
2283 FI = Def->getOperand(1).getIndex();
Evan Cheng3df6bd42010-03-05 08:38:04 +00002284 Bytes = Flags.getByValSize();
Evan Chengf4919612010-02-05 02:21:12 +00002285 } else
2286 return false;
2287 }
Evan Cheng3df6bd42010-03-05 08:38:04 +00002288 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2289 if (Flags.isByVal())
2290 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng53c69cb2010-03-05 19:55:55 +00002291 // dereferenced. e.g.
Evan Cheng3df6bd42010-03-05 08:38:04 +00002292 // define @foo(%struct.X* %A) {
2293 // tail call @bar(%struct.X* byval %A)
2294 // }
Evan Chengf4919612010-02-05 02:21:12 +00002295 return false;
2296 SDValue Ptr = Ld->getBasePtr();
2297 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2298 if (!FINode)
2299 return false;
2300 FI = FINode->getIndex();
Evan Cheng3df6bd42010-03-05 08:38:04 +00002301 } else
2302 return false;
Evan Chengf4919612010-02-05 02:21:12 +00002303
Evan Cheng3df6bd42010-03-05 08:38:04 +00002304 assert(FI != INT_MAX);
Evan Chengf4919612010-02-05 02:21:12 +00002305 if (!MFI->isFixedObjectIndex(FI))
2306 return false;
Evan Cheng3df6bd42010-03-05 08:38:04 +00002307 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Chengf4919612010-02-05 02:21:12 +00002308}
2309
Dan Gohman9178de12009-08-05 01:29:28 +00002310/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2311/// for tail call optimization. Targets which want to do tail call
2312/// optimization should implement this function.
2313bool
2314X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel5838baa2009-09-02 08:44:58 +00002315 CallingConv::ID CalleeCC,
Dan Gohman9178de12009-08-05 01:29:28 +00002316 bool isVarArg,
Evan Chengec290582010-03-15 18:54:48 +00002317 bool isCalleeStructRet,
2318 bool isCallerStructRet,
Evan Chengd82fae32010-01-27 06:25:16 +00002319 const SmallVectorImpl<ISD::OutputArg> &Outs,
2320 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman9178de12009-08-05 01:29:28 +00002321 SelectionDAG& DAG) const {
Chris Lattnerac9a9392010-03-11 00:22:57 +00002322 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengd82fae32010-01-27 06:25:16 +00002323 CalleeCC != CallingConv::C)
2324 return false;
2325
Evan Cheng3d424642010-01-29 06:45:59 +00002326 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng522dbc02010-03-26 16:26:03 +00002327 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng3d424642010-01-29 06:45:59 +00002328 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng1facdf22010-04-30 01:12:32 +00002329 CallingConv::ID CallerCC = CallerF->getCallingConv();
2330 bool CCMatch = CallerCC == CalleeCC;
2331
Dan Gohmanea8579c2010-02-08 20:27:50 +00002332 if (GuaranteedTailCallOpt) {
Evan Cheng1facdf22010-04-30 01:12:32 +00002333 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Chengca18ef22010-01-31 06:44:49 +00002334 return true;
2335 return false;
2336 }
2337
Dale Johannesen7d0d7972010-05-28 23:24:28 +00002338 // Look for obvious safe cases to perform tail call optimization that do not
2339 // require ABI changes. This is what gcc calls sibcall.
Evan Chengc38381c2010-02-02 02:22:50 +00002340
Evan Cheng522dbc02010-03-26 16:26:03 +00002341 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2342 // emit a special epilogue.
2343 if (RegInfo->needsStackRealignment(MF))
2344 return false;
2345
Evan Cheng50ed8882010-03-26 02:13:13 +00002346 // Do not sibcall optimize vararg calls unless the call site is not passing any
2347 // arguments.
2348 if (isVarArg && !Outs.empty())
Evan Chengca18ef22010-01-31 06:44:49 +00002349 return false;
2350
Evan Chengec290582010-03-15 18:54:48 +00002351 // Also avoid sibcall optimization if either caller or callee uses struct
2352 // return semantics.
2353 if (isCalleeStructRet || isCallerStructRet)
2354 return false;
2355
Evan Chengd5b29562010-03-20 02:58:15 +00002356 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2357 // Therefore if it's not used by the call it is not safe to optimize this into
2358 // a sibcall.
2359 bool Unused = false;
2360 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2361 if (!Ins[i].Used) {
2362 Unused = true;
2363 break;
2364 }
2365 }
2366 if (Unused) {
2367 SmallVector<CCValAssign, 16> RVLocs;
2368 CCState CCInfo(CalleeCC, false, getTargetMachine(),
2369 RVLocs, *DAG.getContext());
2370 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng1facdf22010-04-30 01:12:32 +00002371 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengd5b29562010-03-20 02:58:15 +00002372 CCValAssign &VA = RVLocs[i];
2373 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2374 return false;
2375 }
2376 }
2377
Evan Cheng1facdf22010-04-30 01:12:32 +00002378 // If the calling conventions do not match, then we'd better make sure the
2379 // results are returned in the same way as what the caller expects.
2380 if (!CCMatch) {
2381 SmallVector<CCValAssign, 16> RVLocs1;
2382 CCState CCInfo1(CalleeCC, false, getTargetMachine(),
2383 RVLocs1, *DAG.getContext());
2384 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2385
2386 SmallVector<CCValAssign, 16> RVLocs2;
2387 CCState CCInfo2(CallerCC, false, getTargetMachine(),
2388 RVLocs2, *DAG.getContext());
2389 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2390
2391 if (RVLocs1.size() != RVLocs2.size())
2392 return false;
2393 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2394 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2395 return false;
2396 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2397 return false;
2398 if (RVLocs1[i].isRegLoc()) {
2399 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2400 return false;
2401 } else {
2402 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2403 return false;
2404 }
2405 }
2406 }
2407
Evan Cheng73e1dbe2010-01-30 01:22:00 +00002408 // If the callee takes no arguments then go on to check the results of the
2409 // call.
2410 if (!Outs.empty()) {
2411 // Check if stack adjustment is needed. For now, do not do this if any
2412 // argument is passed on the stack.
2413 SmallVector<CCValAssign, 16> ArgLocs;
2414 CCState CCInfo(CalleeCC, isVarArg, getTargetMachine(),
2415 ArgLocs, *DAG.getContext());
2416 CCInfo.AnalyzeCallOperands(Outs, CCAssignFnForNode(CalleeCC));
Evan Chengc38381c2010-02-02 02:22:50 +00002417 if (CCInfo.getNextStackOffset()) {
2418 MachineFunction &MF = DAG.getMachineFunction();
2419 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2420 return false;
2421 if (Subtarget->isTargetWin64())
2422 // Win64 ABI has additional complications.
2423 return false;
2424
2425 // Check if the arguments are already laid out in the right way as
2426 // the caller's fixed stack objects.
2427 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Chengf4919612010-02-05 02:21:12 +00002428 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2429 const X86InstrInfo *TII =
2430 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengc38381c2010-02-02 02:22:50 +00002431 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2432 CCValAssign &VA = ArgLocs[i];
Evan Chengc38381c2010-02-02 02:22:50 +00002433 SDValue Arg = Outs[i].Val;
2434 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengc38381c2010-02-02 02:22:50 +00002435 if (VA.getLocInfo() == CCValAssign::Indirect)
2436 return false;
2437 if (!VA.isRegLoc()) {
Evan Chengf4919612010-02-05 02:21:12 +00002438 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2439 MFI, MRI, TII))
Evan Chengc38381c2010-02-02 02:22:50 +00002440 return false;
2441 }
2442 }
2443 }
Evan Chengaca4d8d2010-05-29 01:35:22 +00002444
2445 // If the tailcall address may be in a register, then make sure it's
2446 // possible to register allocate for it. In 32-bit, the call address can
2447 // only target EAX, EDX, or ECX since the tail call must be scheduled after
2448 // callee-saved registers are restored. In 64-bit, it's RAX, RCX, RDX, RSI,
2449 // RDI, R8, R9, R11.
2450 if (!isa<GlobalAddressSDNode>(Callee) &&
2451 !isa<ExternalSymbolSDNode>(Callee)) {
2452 unsigned Limit = Subtarget->is64Bit() ? 8 : 3;
2453 unsigned NumInRegs = 0;
2454 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2455 CCValAssign &VA = ArgLocs[i];
2456 if (VA.isRegLoc()) {
2457 if (++NumInRegs == Limit)
2458 return false;
2459 }
2460 }
2461 }
Evan Cheng73e1dbe2010-01-30 01:22:00 +00002462 }
Evan Chengd82fae32010-01-27 06:25:16 +00002463
Evan Cheng411c0522010-02-03 03:28:02 +00002464 return true;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00002465}
2466
Dan Gohmanca4857a2008-09-03 23:12:08 +00002467FastISel *
Chris Lattnerbc491002010-04-05 06:05:26 +00002468X86TargetLowering::createFastISel(MachineFunction &mf,
Evan Cheng00787d52010-01-26 19:04:47 +00002469 DenseMap<const Value *, unsigned> &vm,
2470 DenseMap<const BasicBlock*, MachineBasicBlock*> &bm,
Dan Gohmanc603a5e2010-04-22 20:46:50 +00002471 DenseMap<const AllocaInst *, int> &am,
2472 std::vector<std::pair<MachineInstr*, unsigned> > &pn
Dan Gohman9dd43582008-10-14 23:54:11 +00002473#ifndef NDEBUG
Dan Gohman68cd2d92010-04-14 19:53:31 +00002474 , SmallSet<const Instruction *, 8> &cil
Dan Gohman9dd43582008-10-14 23:54:11 +00002475#endif
Dan Gohmandbb121b2010-04-17 15:26:15 +00002476 ) const {
Dan Gohmanc603a5e2010-04-22 20:46:50 +00002477 return X86::createFastISel(mf, vm, bm, am, pn
Dan Gohman9dd43582008-10-14 23:54:11 +00002478#ifndef NDEBUG
2479 , cil
2480#endif
2481 );
Dan Gohman97805ee2008-08-19 21:32:53 +00002482}
2483
2484
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002485//===----------------------------------------------------------------------===//
2486// Other Lowering Hooks
2487//===----------------------------------------------------------------------===//
2488
2489
Dan Gohmandbb121b2010-04-17 15:26:15 +00002490SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikove844e472007-08-15 17:12:32 +00002491 MachineFunction &MF = DAG.getMachineFunction();
2492 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2493 int ReturnAddrIndex = FuncInfo->getRAIndex();
2494
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002495 if (ReturnAddrIndex == 0) {
2496 // Set up a frame object for the return address.
Bill Wendling6ddc87b2009-01-16 19:25:27 +00002497 uint64_t SlotSize = TD->getPointerSize();
David Greene6424ab92009-11-12 20:49:22 +00002498 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Cheng9ff54082010-07-03 00:40:23 +00002499 false);
Anton Korobeynikove844e472007-08-15 17:12:32 +00002500 FuncInfo->setRAIndex(ReturnAddrIndex);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002501 }
2502
2503 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
2504}
2505
2506
Anton Korobeynikovc283e152009-08-05 23:01:26 +00002507bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2508 bool hasSymbolicDisplacement) {
2509 // Offset should fit into 32 bit immediate field.
Benjamin Kramer25c5cb62010-03-29 21:13:41 +00002510 if (!isInt<32>(Offset))
Anton Korobeynikovc283e152009-08-05 23:01:26 +00002511 return false;
2512
2513 // If we don't have a symbolic displacement - we don't have any extra
2514 // restrictions.
2515 if (!hasSymbolicDisplacement)
2516 return true;
2517
2518 // FIXME: Some tweaks might be needed for medium code model.
2519 if (M != CodeModel::Small && M != CodeModel::Kernel)
2520 return false;
2521
2522 // For small code model we assume that latest object is 16MB before end of 31
2523 // bits boundary. We may also accept pretty large negative constants knowing
2524 // that all objects are in the positive half of address space.
2525 if (M == CodeModel::Small && Offset < 16*1024*1024)
2526 return true;
2527
2528 // For kernel code model we know that all object resist in the negative half
2529 // of 32bits address space. We may not accept negative offsets, since they may
2530 // be just off and we may accept pretty large positive ones.
2531 if (M == CodeModel::Kernel && Offset > 0)
2532 return true;
2533
2534 return false;
2535}
2536
Chris Lattnerebb91142008-12-24 23:53:05 +00002537/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2538/// specific condition code, returning the condition code and the LHS/RHS of the
2539/// comparison to make.
2540static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2541 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002542 if (!isFP) {
2543 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2544 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2545 // X > -1 -> X == 0, jump !sign.
2546 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattnerebb91142008-12-24 23:53:05 +00002547 return X86::COND_NS;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002548 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2549 // X < 0 -> X == 0, jump on sign.
Chris Lattnerebb91142008-12-24 23:53:05 +00002550 return X86::COND_S;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002551 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman37b34262007-09-17 14:49:27 +00002552 // X < 1 -> X <= 0
2553 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattnerebb91142008-12-24 23:53:05 +00002554 return X86::COND_LE;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002555 }
2556 }
2557
2558 switch (SetCCOpcode) {
Edwin Törökbd448e32009-07-14 16:55:14 +00002559 default: llvm_unreachable("Invalid integer condition!");
Chris Lattnerebb91142008-12-24 23:53:05 +00002560 case ISD::SETEQ: return X86::COND_E;
2561 case ISD::SETGT: return X86::COND_G;
2562 case ISD::SETGE: return X86::COND_GE;
2563 case ISD::SETLT: return X86::COND_L;
2564 case ISD::SETLE: return X86::COND_LE;
2565 case ISD::SETNE: return X86::COND_NE;
2566 case ISD::SETULT: return X86::COND_B;
2567 case ISD::SETUGT: return X86::COND_A;
2568 case ISD::SETULE: return X86::COND_BE;
2569 case ISD::SETUGE: return X86::COND_AE;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002570 }
Chris Lattnerb8397512008-12-23 23:42:27 +00002571 }
Scott Michel91099d62009-02-17 22:15:04 +00002572
Chris Lattnerb8397512008-12-23 23:42:27 +00002573 // First determine if it is required or is profitable to flip the operands.
Duncan Sandsc2a04622008-10-24 13:03:10 +00002574
Chris Lattnerb8397512008-12-23 23:42:27 +00002575 // If LHS is a foldable load, but RHS is not, flip the condition.
2576 if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) &&
2577 !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) {
2578 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2579 std::swap(LHS, RHS);
Evan Chengfc937c92008-08-28 23:48:31 +00002580 }
2581
Chris Lattnerb8397512008-12-23 23:42:27 +00002582 switch (SetCCOpcode) {
2583 default: break;
2584 case ISD::SETOLT:
2585 case ISD::SETOLE:
2586 case ISD::SETUGT:
2587 case ISD::SETUGE:
2588 std::swap(LHS, RHS);
2589 break;
2590 }
2591
2592 // On a floating point condition, the flags are set as follows:
2593 // ZF PF CF op
2594 // 0 | 0 | 0 | X > Y
2595 // 0 | 0 | 1 | X < Y
2596 // 1 | 0 | 0 | X == Y
2597 // 1 | 1 | 1 | unordered
2598 switch (SetCCOpcode) {
Edwin Törökbd448e32009-07-14 16:55:14 +00002599 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattnerb8397512008-12-23 23:42:27 +00002600 case ISD::SETUEQ:
Chris Lattnerebb91142008-12-24 23:53:05 +00002601 case ISD::SETEQ: return X86::COND_E;
Chris Lattnerb8397512008-12-23 23:42:27 +00002602 case ISD::SETOLT: // flipped
2603 case ISD::SETOGT:
Chris Lattnerebb91142008-12-24 23:53:05 +00002604 case ISD::SETGT: return X86::COND_A;
Chris Lattnerb8397512008-12-23 23:42:27 +00002605 case ISD::SETOLE: // flipped
2606 case ISD::SETOGE:
Chris Lattnerebb91142008-12-24 23:53:05 +00002607 case ISD::SETGE: return X86::COND_AE;
Chris Lattnerb8397512008-12-23 23:42:27 +00002608 case ISD::SETUGT: // flipped
2609 case ISD::SETULT:
Chris Lattnerebb91142008-12-24 23:53:05 +00002610 case ISD::SETLT: return X86::COND_B;
Chris Lattnerb8397512008-12-23 23:42:27 +00002611 case ISD::SETUGE: // flipped
2612 case ISD::SETULE:
Chris Lattnerebb91142008-12-24 23:53:05 +00002613 case ISD::SETLE: return X86::COND_BE;
Chris Lattnerb8397512008-12-23 23:42:27 +00002614 case ISD::SETONE:
Chris Lattnerebb91142008-12-24 23:53:05 +00002615 case ISD::SETNE: return X86::COND_NE;
2616 case ISD::SETUO: return X86::COND_P;
2617 case ISD::SETO: return X86::COND_NP;
Dan Gohman8ab7dd02009-10-20 16:22:37 +00002618 case ISD::SETOEQ:
2619 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattnerb8397512008-12-23 23:42:27 +00002620 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002621}
2622
2623/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2624/// code. Current x86 isa includes the following FP cmov instructions:
2625/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
2626static bool hasFPCMov(unsigned X86CC) {
2627 switch (X86CC) {
2628 default:
2629 return false;
2630 case X86::COND_B:
2631 case X86::COND_BE:
2632 case X86::COND_E:
2633 case X86::COND_P:
2634 case X86::COND_A:
2635 case X86::COND_AE:
2636 case X86::COND_NE:
2637 case X86::COND_NP:
2638 return true;
2639 }
2640}
2641
Evan Cheng6337b552009-10-27 19:56:55 +00002642/// isFPImmLegal - Returns true if the target can instruction select the
2643/// specified FP immediate natively. If false, the legalizer will
2644/// materialize the FP immediate as a load from a constant pool.
Evan Chenga0e67782009-10-28 01:43:28 +00002645bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Cheng6337b552009-10-27 19:56:55 +00002646 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
2647 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
2648 return true;
2649 }
2650 return false;
2651}
2652
Nate Begeman543d2142009-04-27 18:41:29 +00002653/// isUndefOrInRange - Return true if Val is undef or if its value falls within
2654/// the specified range (L, H].
2655static bool isUndefOrInRange(int Val, int Low, int Hi) {
2656 return (Val < 0) || (Val >= Low && Val < Hi);
2657}
2658
2659/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
2660/// specified value.
2661static bool isUndefOrEqual(int Val, int CmpVal) {
2662 if (Val < 0 || Val == CmpVal)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002663 return true;
Nate Begeman543d2142009-04-27 18:41:29 +00002664 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002665}
2666
Nate Begeman543d2142009-04-27 18:41:29 +00002667/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
2668/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
2669/// the second operand.
Owen Andersonac9de032009-08-10 22:56:29 +00002670static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00002671 if (VT == MVT::v4f32 || VT == MVT::v4i32 || VT == MVT::v4i16)
Nate Begeman543d2142009-04-27 18:41:29 +00002672 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00002673 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman543d2142009-04-27 18:41:29 +00002674 return (Mask[0] < 2 && Mask[1] < 2);
2675 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002676}
2677
Nate Begeman543d2142009-04-27 18:41:29 +00002678bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopher3d82bbd2009-08-27 18:07:15 +00002679 SmallVector<int, 8> M;
Nate Begeman543d2142009-04-27 18:41:29 +00002680 N->getMask(M);
2681 return ::isPSHUFDMask(M, N->getValueType(0));
2682}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002683
Nate Begeman543d2142009-04-27 18:41:29 +00002684/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
2685/// is suitable for input to PSHUFHW.
Owen Andersonac9de032009-08-10 22:56:29 +00002686static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00002687 if (VT != MVT::v8i16)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002688 return false;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00002689
Nate Begeman543d2142009-04-27 18:41:29 +00002690 // Lower quadword copied in order or undef.
2691 for (int i = 0; i != 4; ++i)
2692 if (Mask[i] >= 0 && Mask[i] != i)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002693 return false;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00002694
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002695 // Upper quadword shuffled.
Nate Begeman543d2142009-04-27 18:41:29 +00002696 for (int i = 4; i != 8; ++i)
2697 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002698 return false;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00002699
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002700 return true;
2701}
2702
Nate Begeman543d2142009-04-27 18:41:29 +00002703bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopher3d82bbd2009-08-27 18:07:15 +00002704 SmallVector<int, 8> M;
Nate Begeman543d2142009-04-27 18:41:29 +00002705 N->getMask(M);
2706 return ::isPSHUFHWMask(M, N->getValueType(0));
2707}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002708
Nate Begeman543d2142009-04-27 18:41:29 +00002709/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
2710/// is suitable for input to PSHUFLW.
Owen Andersonac9de032009-08-10 22:56:29 +00002711static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00002712 if (VT != MVT::v8i16)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002713 return false;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00002714
Rafael Espindola37f8e8a2009-04-24 12:40:33 +00002715 // Upper quadword copied in order.
Nate Begeman543d2142009-04-27 18:41:29 +00002716 for (int i = 4; i != 8; ++i)
2717 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola37f8e8a2009-04-24 12:40:33 +00002718 return false;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00002719
Rafael Espindola37f8e8a2009-04-24 12:40:33 +00002720 // Lower quadword shuffled.
Nate Begeman543d2142009-04-27 18:41:29 +00002721 for (int i = 0; i != 4; ++i)
2722 if (Mask[i] >= 4)
Rafael Espindola37f8e8a2009-04-24 12:40:33 +00002723 return false;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00002724
Rafael Espindola37f8e8a2009-04-24 12:40:33 +00002725 return true;
Nate Begemanda17a812009-04-24 03:42:54 +00002726}
2727
Nate Begeman543d2142009-04-27 18:41:29 +00002728bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopher3d82bbd2009-08-27 18:07:15 +00002729 SmallVector<int, 8> M;
Nate Begeman543d2142009-04-27 18:41:29 +00002730 N->getMask(M);
2731 return ::isPSHUFLWMask(M, N->getValueType(0));
2732}
2733
Nate Begeman080f8e22009-10-19 02:17:23 +00002734/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
2735/// is suitable for input to PALIGNR.
2736static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
2737 bool hasSSSE3) {
2738 int i, e = VT.getVectorNumElements();
2739
2740 // Do not handle v2i64 / v2f64 shuffles with palignr.
2741 if (e < 4 || !hasSSSE3)
2742 return false;
2743
2744 for (i = 0; i != e; ++i)
2745 if (Mask[i] >= 0)
2746 break;
2747
2748 // All undef, not a palignr.
2749 if (i == e)
2750 return false;
2751
2752 // Determine if it's ok to perform a palignr with only the LHS, since we
2753 // don't have access to the actual shuffle elements to see if RHS is undef.
2754 bool Unary = Mask[i] < (int)e;
2755 bool NeedsUnary = false;
2756
2757 int s = Mask[i] - i;
2758
2759 // Check the rest of the elements to see if they are consecutive.
2760 for (++i; i != e; ++i) {
2761 int m = Mask[i];
2762 if (m < 0)
2763 continue;
2764
2765 Unary = Unary && (m < (int)e);
2766 NeedsUnary = NeedsUnary || (m < s);
2767
2768 if (NeedsUnary && !Unary)
2769 return false;
2770 if (Unary && m != ((s+i) & (e-1)))
2771 return false;
2772 if (!Unary && m != (s+i))
2773 return false;
2774 }
2775 return true;
2776}
2777
2778bool X86::isPALIGNRMask(ShuffleVectorSDNode *N) {
2779 SmallVector<int, 8> M;
2780 N->getMask(M);
2781 return ::isPALIGNRMask(M, N->getValueType(0), true);
2782}
2783
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002784/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
2785/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersonac9de032009-08-10 22:56:29 +00002786static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman543d2142009-04-27 18:41:29 +00002787 int NumElems = VT.getVectorNumElements();
2788 if (NumElems != 2 && NumElems != 4)
2789 return false;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00002790
Nate Begeman543d2142009-04-27 18:41:29 +00002791 int Half = NumElems / 2;
2792 for (int i = 0; i < Half; ++i)
2793 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002794 return false;
Nate Begeman543d2142009-04-27 18:41:29 +00002795 for (int i = Half; i < NumElems; ++i)
2796 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002797 return false;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00002798
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002799 return true;
2800}
2801
Nate Begeman543d2142009-04-27 18:41:29 +00002802bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
2803 SmallVector<int, 8> M;
2804 N->getMask(M);
2805 return ::isSHUFPMask(M, N->getValueType(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002806}
2807
2808/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
2809/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
2810/// half elements to come from vector 1 (which would equal the dest.) and
2811/// the upper half to come from vector 2.
Owen Andersonac9de032009-08-10 22:56:29 +00002812static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman543d2142009-04-27 18:41:29 +00002813 int NumElems = VT.getVectorNumElements();
Eric Christopher3d82bbd2009-08-27 18:07:15 +00002814
2815 if (NumElems != 2 && NumElems != 4)
Nate Begeman543d2142009-04-27 18:41:29 +00002816 return false;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00002817
Nate Begeman543d2142009-04-27 18:41:29 +00002818 int Half = NumElems / 2;
2819 for (int i = 0; i < Half; ++i)
2820 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002821 return false;
Nate Begeman543d2142009-04-27 18:41:29 +00002822 for (int i = Half; i < NumElems; ++i)
2823 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002824 return false;
2825 return true;
2826}
2827
Nate Begeman543d2142009-04-27 18:41:29 +00002828static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
2829 SmallVector<int, 8> M;
2830 N->getMask(M);
2831 return isCommutedSHUFPMask(M, N->getValueType(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002832}
2833
2834/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
2835/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman543d2142009-04-27 18:41:29 +00002836bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
2837 if (N->getValueType(0).getVectorNumElements() != 4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002838 return false;
2839
2840 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman543d2142009-04-27 18:41:29 +00002841 return isUndefOrEqual(N->getMaskElt(0), 6) &&
2842 isUndefOrEqual(N->getMaskElt(1), 7) &&
2843 isUndefOrEqual(N->getMaskElt(2), 2) &&
2844 isUndefOrEqual(N->getMaskElt(3), 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002845}
2846
Nate Begemanb13034d2009-11-07 23:17:15 +00002847/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
2848/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
2849/// <2, 3, 2, 3>
2850bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
2851 unsigned NumElems = N->getValueType(0).getVectorNumElements();
2852
2853 if (NumElems != 4)
2854 return false;
2855
2856 return isUndefOrEqual(N->getMaskElt(0), 2) &&
2857 isUndefOrEqual(N->getMaskElt(1), 3) &&
2858 isUndefOrEqual(N->getMaskElt(2), 2) &&
2859 isUndefOrEqual(N->getMaskElt(3), 3);
2860}
2861
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002862/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
2863/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman543d2142009-04-27 18:41:29 +00002864bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
2865 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002866
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002867 if (NumElems != 2 && NumElems != 4)
2868 return false;
2869
2870 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman543d2142009-04-27 18:41:29 +00002871 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002872 return false;
2873
2874 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman543d2142009-04-27 18:41:29 +00002875 if (!isUndefOrEqual(N->getMaskElt(i), i))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002876 return false;
2877
2878 return true;
2879}
2880
Nate Begemanb13034d2009-11-07 23:17:15 +00002881/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
2882/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
2883bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman543d2142009-04-27 18:41:29 +00002884 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002885
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002886 if (NumElems != 2 && NumElems != 4)
2887 return false;
2888
2889 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman543d2142009-04-27 18:41:29 +00002890 if (!isUndefOrEqual(N->getMaskElt(i), i))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002891 return false;
2892
Nate Begeman543d2142009-04-27 18:41:29 +00002893 for (unsigned i = 0; i < NumElems/2; ++i)
2894 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002895 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002896
2897 return true;
2898}
2899
2900/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
2901/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersonac9de032009-08-10 22:56:29 +00002902static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola37f8e8a2009-04-24 12:40:33 +00002903 bool V2IsSplat = false) {
Nate Begeman543d2142009-04-27 18:41:29 +00002904 int NumElts = VT.getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002905 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
2906 return false;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00002907
Nate Begeman543d2142009-04-27 18:41:29 +00002908 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
2909 int BitI = Mask[i];
2910 int BitI1 = Mask[i+1];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002911 if (!isUndefOrEqual(BitI, j))
2912 return false;
2913 if (V2IsSplat) {
Mon P Wang56d91642009-02-04 01:16:59 +00002914 if (!isUndefOrEqual(BitI1, NumElts))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002915 return false;
2916 } else {
2917 if (!isUndefOrEqual(BitI1, j + NumElts))
2918 return false;
2919 }
2920 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002921 return true;
2922}
2923
Nate Begeman543d2142009-04-27 18:41:29 +00002924bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
2925 SmallVector<int, 8> M;
2926 N->getMask(M);
2927 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002928}
2929
2930/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
2931/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopher3d82bbd2009-08-27 18:07:15 +00002932static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola37f8e8a2009-04-24 12:40:33 +00002933 bool V2IsSplat = false) {
Nate Begeman543d2142009-04-27 18:41:29 +00002934 int NumElts = VT.getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002935 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
2936 return false;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00002937
Nate Begeman543d2142009-04-27 18:41:29 +00002938 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
2939 int BitI = Mask[i];
2940 int BitI1 = Mask[i+1];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002941 if (!isUndefOrEqual(BitI, j + NumElts/2))
2942 return false;
2943 if (V2IsSplat) {
2944 if (isUndefOrEqual(BitI1, NumElts))
2945 return false;
2946 } else {
2947 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
2948 return false;
2949 }
2950 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002951 return true;
2952}
2953
Nate Begeman543d2142009-04-27 18:41:29 +00002954bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
2955 SmallVector<int, 8> M;
2956 N->getMask(M);
2957 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002958}
2959
2960/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
2961/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
2962/// <0, 0, 1, 1>
Owen Andersonac9de032009-08-10 22:56:29 +00002963static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman543d2142009-04-27 18:41:29 +00002964 int NumElems = VT.getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002965 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
2966 return false;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00002967
Nate Begeman543d2142009-04-27 18:41:29 +00002968 for (int i = 0, j = 0; i != NumElems; i += 2, ++j) {
2969 int BitI = Mask[i];
2970 int BitI1 = Mask[i+1];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002971 if (!isUndefOrEqual(BitI, j))
2972 return false;
2973 if (!isUndefOrEqual(BitI1, j))
2974 return false;
2975 }
Rafael Espindola37f8e8a2009-04-24 12:40:33 +00002976 return true;
Nate Begemanda17a812009-04-24 03:42:54 +00002977}
2978
Nate Begeman543d2142009-04-27 18:41:29 +00002979bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
2980 SmallVector<int, 8> M;
2981 N->getMask(M);
2982 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
2983}
2984
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002985/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
2986/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
2987/// <2, 2, 3, 3>
Owen Andersonac9de032009-08-10 22:56:29 +00002988static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman543d2142009-04-27 18:41:29 +00002989 int NumElems = VT.getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002990 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
2991 return false;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00002992
Nate Begeman543d2142009-04-27 18:41:29 +00002993 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
2994 int BitI = Mask[i];
2995 int BitI1 = Mask[i+1];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002996 if (!isUndefOrEqual(BitI, j))
2997 return false;
2998 if (!isUndefOrEqual(BitI1, j))
2999 return false;
3000 }
Rafael Espindola37f8e8a2009-04-24 12:40:33 +00003001 return true;
Nate Begemanda17a812009-04-24 03:42:54 +00003002}
3003
Nate Begeman543d2142009-04-27 18:41:29 +00003004bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3005 SmallVector<int, 8> M;
3006 N->getMask(M);
3007 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3008}
3009
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003010/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3011/// specifies a shuffle of elements that is suitable for input to MOVSS,
3012/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersonac9de032009-08-10 22:56:29 +00003013static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedmand49401f2009-06-06 06:05:10 +00003014 if (VT.getVectorElementType().getSizeInBits() < 32)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003015 return false;
Eli Friedmand49401f2009-06-06 06:05:10 +00003016
3017 int NumElts = VT.getVectorNumElements();
Eric Christopher3d82bbd2009-08-27 18:07:15 +00003018
Nate Begeman543d2142009-04-27 18:41:29 +00003019 if (!isUndefOrEqual(Mask[0], NumElts))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003020 return false;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00003021
Nate Begeman543d2142009-04-27 18:41:29 +00003022 for (int i = 1; i < NumElts; ++i)
3023 if (!isUndefOrEqual(Mask[i], i))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003024 return false;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00003025
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003026 return true;
3027}
3028
Nate Begeman543d2142009-04-27 18:41:29 +00003029bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3030 SmallVector<int, 8> M;
3031 N->getMask(M);
3032 return ::isMOVLMask(M, N->getValueType(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003033}
3034
3035/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3036/// of what x86 movss want. X86 movs requires the lowest element to be lowest
3037/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersonac9de032009-08-10 22:56:29 +00003038static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman543d2142009-04-27 18:41:29 +00003039 bool V2IsSplat = false, bool V2IsUndef = false) {
3040 int NumOps = VT.getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003041 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
3042 return false;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00003043
Nate Begeman543d2142009-04-27 18:41:29 +00003044 if (!isUndefOrEqual(Mask[0], 0))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003045 return false;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00003046
Nate Begeman543d2142009-04-27 18:41:29 +00003047 for (int i = 1; i < NumOps; ++i)
3048 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3049 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3050 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003051 return false;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00003052
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003053 return true;
3054}
3055
Nate Begeman543d2142009-04-27 18:41:29 +00003056static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003057 bool V2IsUndef = false) {
Nate Begeman543d2142009-04-27 18:41:29 +00003058 SmallVector<int, 8> M;
3059 N->getMask(M);
3060 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003061}
3062
3063/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3064/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Nate Begeman543d2142009-04-27 18:41:29 +00003065bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N) {
3066 if (N->getValueType(0).getVectorNumElements() != 4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003067 return false;
3068
3069 // Expect 1, 1, 3, 3
Rafael Espindola37f8e8a2009-04-24 12:40:33 +00003070 for (unsigned i = 0; i < 2; ++i) {
Nate Begeman543d2142009-04-27 18:41:29 +00003071 int Elt = N->getMaskElt(i);
3072 if (Elt >= 0 && Elt != 1)
3073 return false;
Rafael Espindola37f8e8a2009-04-24 12:40:33 +00003074 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003075
3076 bool HasHi = false;
3077 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman543d2142009-04-27 18:41:29 +00003078 int Elt = N->getMaskElt(i);
3079 if (Elt >= 0 && Elt != 3)
3080 return false;
3081 if (Elt == 3)
3082 HasHi = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003083 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003084 // Don't use movshdup if it can be done with a shufps.
Nate Begeman543d2142009-04-27 18:41:29 +00003085 // FIXME: verify that matching u, u, 3, 3 is what we want.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003086 return HasHi;
3087}
3088
3089/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3090/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Nate Begeman543d2142009-04-27 18:41:29 +00003091bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N) {
3092 if (N->getValueType(0).getVectorNumElements() != 4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003093 return false;
3094
3095 // Expect 0, 0, 2, 2
Nate Begeman543d2142009-04-27 18:41:29 +00003096 for (unsigned i = 0; i < 2; ++i)
3097 if (N->getMaskElt(i) > 0)
3098 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003099
3100 bool HasHi = false;
3101 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman543d2142009-04-27 18:41:29 +00003102 int Elt = N->getMaskElt(i);
3103 if (Elt >= 0 && Elt != 2)
3104 return false;
3105 if (Elt == 2)
3106 HasHi = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003107 }
Nate Begeman543d2142009-04-27 18:41:29 +00003108 // Don't use movsldup if it can be done with a shufps.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003109 return HasHi;
3110}
3111
Evan Chenga2497eb2008-09-25 20:50:48 +00003112/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3113/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman543d2142009-04-27 18:41:29 +00003114bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3115 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00003116
Nate Begeman543d2142009-04-27 18:41:29 +00003117 for (int i = 0; i < e; ++i)
3118 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chenga2497eb2008-09-25 20:50:48 +00003119 return false;
Nate Begeman543d2142009-04-27 18:41:29 +00003120 for (int i = 0; i < e; ++i)
3121 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Chenga2497eb2008-09-25 20:50:48 +00003122 return false;
3123 return true;
3124}
3125
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003126/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begeman080f8e22009-10-19 02:17:23 +00003127/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003128unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman543d2142009-04-27 18:41:29 +00003129 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3130 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3131
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003132 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3133 unsigned Mask = 0;
Nate Begeman543d2142009-04-27 18:41:29 +00003134 for (int i = 0; i < NumOperands; ++i) {
3135 int Val = SVOp->getMaskElt(NumOperands-i-1);
3136 if (Val < 0) Val = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003137 if (Val >= NumOperands) Val -= NumOperands;
3138 Mask |= Val;
3139 if (i != NumOperands - 1)
3140 Mask <<= Shift;
3141 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003142 return Mask;
3143}
3144
3145/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begeman080f8e22009-10-19 02:17:23 +00003146/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003147unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman543d2142009-04-27 18:41:29 +00003148 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003149 unsigned Mask = 0;
3150 // 8 nodes, but we only care about the last 4.
3151 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman543d2142009-04-27 18:41:29 +00003152 int Val = SVOp->getMaskElt(i);
3153 if (Val >= 0)
Mon P Wang56d91642009-02-04 01:16:59 +00003154 Mask |= (Val - 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003155 if (i != 4)
3156 Mask <<= 2;
3157 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003158 return Mask;
3159}
3160
3161/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begeman080f8e22009-10-19 02:17:23 +00003162/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003163unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman543d2142009-04-27 18:41:29 +00003164 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003165 unsigned Mask = 0;
3166 // 8 nodes, but we only care about the first 4.
3167 for (int i = 3; i >= 0; --i) {
Nate Begeman543d2142009-04-27 18:41:29 +00003168 int Val = SVOp->getMaskElt(i);
3169 if (Val >= 0)
3170 Mask |= Val;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003171 if (i != 0)
3172 Mask <<= 2;
3173 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003174 return Mask;
3175}
3176
Nate Begeman080f8e22009-10-19 02:17:23 +00003177/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3178/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3179unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3180 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3181 EVT VVT = N->getValueType(0);
3182 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3183 int Val = 0;
3184
3185 unsigned i, e;
3186 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3187 Val = SVOp->getMaskElt(i);
3188 if (Val >= 0)
3189 break;
3190 }
3191 return (Val - i) * EltSize;
3192}
3193
Evan Chengb723fb52009-07-30 08:33:02 +00003194/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3195/// constant +0.0.
3196bool X86::isZeroNode(SDValue Elt) {
3197 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmanbcc946d2010-06-18 14:22:04 +00003198 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Chengb723fb52009-07-30 08:33:02 +00003199 (isa<ConstantFPSDNode>(Elt) &&
3200 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3201}
3202
Nate Begeman543d2142009-04-27 18:41:29 +00003203/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3204/// their permute mask.
3205static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3206 SelectionDAG &DAG) {
Owen Andersonac9de032009-08-10 22:56:29 +00003207 EVT VT = SVOp->getValueType(0);
Nate Begemane8f61cb2009-04-29 05:20:52 +00003208 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman543d2142009-04-27 18:41:29 +00003209 SmallVector<int, 8> MaskVec;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00003210
Nate Begemane8f61cb2009-04-29 05:20:52 +00003211 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman543d2142009-04-27 18:41:29 +00003212 int idx = SVOp->getMaskElt(i);
3213 if (idx < 0)
3214 MaskVec.push_back(idx);
Nate Begemane8f61cb2009-04-29 05:20:52 +00003215 else if (idx < (int)NumElems)
Nate Begeman543d2142009-04-27 18:41:29 +00003216 MaskVec.push_back(idx + NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003217 else
Nate Begeman543d2142009-04-27 18:41:29 +00003218 MaskVec.push_back(idx - NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003219 }
Nate Begeman543d2142009-04-27 18:41:29 +00003220 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3221 SVOp->getOperand(0), &MaskVec[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003222}
3223
Evan Chenga6769df2007-12-07 21:30:01 +00003224/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3225/// the two vector operands have swapped position.
Owen Andersonac9de032009-08-10 22:56:29 +00003226static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begemane8f61cb2009-04-29 05:20:52 +00003227 unsigned NumElems = VT.getVectorNumElements();
3228 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman543d2142009-04-27 18:41:29 +00003229 int idx = Mask[i];
3230 if (idx < 0)
Evan Chengfca29242007-12-07 08:07:39 +00003231 continue;
Nate Begemane8f61cb2009-04-29 05:20:52 +00003232 else if (idx < (int)NumElems)
Nate Begeman543d2142009-04-27 18:41:29 +00003233 Mask[i] = idx + NumElems;
Evan Chengfca29242007-12-07 08:07:39 +00003234 else
Nate Begeman543d2142009-04-27 18:41:29 +00003235 Mask[i] = idx - NumElems;
Evan Chengfca29242007-12-07 08:07:39 +00003236 }
Evan Chengfca29242007-12-07 08:07:39 +00003237}
3238
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003239/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3240/// match movhlps. The lower half elements should come from upper half of
3241/// V1 (and in order), and the upper half elements should come from the upper
3242/// half of V2 (and in order).
Nate Begeman543d2142009-04-27 18:41:29 +00003243static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
3244 if (Op->getValueType(0).getVectorNumElements() != 4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003245 return false;
3246 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman543d2142009-04-27 18:41:29 +00003247 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003248 return false;
3249 for (unsigned i = 2; i != 4; ++i)
Nate Begeman543d2142009-04-27 18:41:29 +00003250 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003251 return false;
3252 return true;
3253}
3254
3255/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng40ee6e52008-05-08 00:57:18 +00003256/// is promoted to a vector. It also returns the LoadSDNode by reference if
3257/// required.
3258static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Chenga2497eb2008-09-25 20:50:48 +00003259 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3260 return false;
3261 N = N->getOperand(0).getNode();
3262 if (!ISD::isNON_EXTLoad(N))
3263 return false;
3264 if (LD)
3265 *LD = cast<LoadSDNode>(N);
3266 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003267}
3268
3269/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3270/// match movlp{s|d}. The lower half elements should come from lower half of
3271/// V1 (and in order), and the upper half elements should come from the upper
3272/// half of V2 (and in order). And since V1 will become the source of the
3273/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman543d2142009-04-27 18:41:29 +00003274static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3275 ShuffleVectorSDNode *Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003276 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
3277 return false;
3278 // Is V2 is a vector load, don't do this transformation. We will try to use
3279 // load folding shufps op.
3280 if (ISD::isNON_EXTLoad(V2))
3281 return false;
3282
Nate Begemane8f61cb2009-04-29 05:20:52 +00003283 unsigned NumElems = Op->getValueType(0).getVectorNumElements();
Eric Christopher3d82bbd2009-08-27 18:07:15 +00003284
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003285 if (NumElems != 2 && NumElems != 4)
3286 return false;
Nate Begemane8f61cb2009-04-29 05:20:52 +00003287 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman543d2142009-04-27 18:41:29 +00003288 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003289 return false;
Nate Begemane8f61cb2009-04-29 05:20:52 +00003290 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman543d2142009-04-27 18:41:29 +00003291 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003292 return false;
3293 return true;
3294}
3295
3296/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
3297/// all the same.
3298static bool isSplatVector(SDNode *N) {
3299 if (N->getOpcode() != ISD::BUILD_VECTOR)
3300 return false;
3301
Dan Gohman8181bd12008-07-27 21:46:04 +00003302 SDValue SplatValue = N->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003303 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
3304 if (N->getOperand(i) != SplatValue)
3305 return false;
3306 return true;
3307}
3308
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003309/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopher3d82bbd2009-08-27 18:07:15 +00003310/// to an zero vector.
Nate Begemane8f61cb2009-04-29 05:20:52 +00003311/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman543d2142009-04-27 18:41:29 +00003312static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003313 SDValue V1 = N->getOperand(0);
3314 SDValue V2 = N->getOperand(1);
Nate Begemane8f61cb2009-04-29 05:20:52 +00003315 unsigned NumElems = N->getValueType(0).getVectorNumElements();
3316 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman543d2142009-04-27 18:41:29 +00003317 int Idx = N->getMaskElt(i);
Nate Begemane8f61cb2009-04-29 05:20:52 +00003318 if (Idx >= (int)NumElems) {
Nate Begeman543d2142009-04-27 18:41:29 +00003319 unsigned Opc = V2.getOpcode();
Rafael Espindola37f8e8a2009-04-24 12:40:33 +00003320 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
3321 continue;
Evan Chengb723fb52009-07-30 08:33:02 +00003322 if (Opc != ISD::BUILD_VECTOR ||
3323 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman543d2142009-04-27 18:41:29 +00003324 return false;
3325 } else if (Idx >= 0) {
3326 unsigned Opc = V1.getOpcode();
3327 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
3328 continue;
Evan Chengb723fb52009-07-30 08:33:02 +00003329 if (Opc != ISD::BUILD_VECTOR ||
3330 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattnere6aa3862007-11-25 00:24:49 +00003331 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003332 }
3333 }
3334 return true;
3335}
3336
3337/// getZeroVector - Returns a vector of specified type with all zero elements.
3338///
Owen Andersonac9de032009-08-10 22:56:29 +00003339static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesence0805b2009-02-03 19:33:06 +00003340 DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00003341 assert(VT.isVector() && "Expected a vector type");
Scott Michel91099d62009-02-17 22:15:04 +00003342
Chris Lattnere6aa3862007-11-25 00:24:49 +00003343 // Always build zero vectors as <4 x i32> or <2 x i32> bitcasted to their dest
3344 // type. This ensures they get CSE'd.
Dan Gohman8181bd12008-07-27 21:46:04 +00003345 SDValue Vec;
Duncan Sands92c43912008-06-06 12:08:01 +00003346 if (VT.getSizeInBits() == 64) { // MMX
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003347 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3348 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Evan Cheng8c590372008-05-15 08:39:06 +00003349 } else if (HasSSE2) { // SSE2
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003350 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3351 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Evan Cheng8c590372008-05-15 08:39:06 +00003352 } else { // SSE1
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003353 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
3354 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
Evan Cheng8c590372008-05-15 08:39:06 +00003355 }
Dale Johannesence0805b2009-02-03 19:33:06 +00003356 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003357}
3358
Chris Lattnere6aa3862007-11-25 00:24:49 +00003359/// getOnesVector - Returns a vector of specified type with all bits set.
3360///
Owen Andersonac9de032009-08-10 22:56:29 +00003361static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00003362 assert(VT.isVector() && "Expected a vector type");
Scott Michel91099d62009-02-17 22:15:04 +00003363
Chris Lattnere6aa3862007-11-25 00:24:49 +00003364 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
3365 // type. This ensures they get CSE'd.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003366 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Dan Gohman8181bd12008-07-27 21:46:04 +00003367 SDValue Vec;
Duncan Sands92c43912008-06-06 12:08:01 +00003368 if (VT.getSizeInBits() == 64) // MMX
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003369 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
Chris Lattnere6aa3862007-11-25 00:24:49 +00003370 else // SSE
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003371 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Dale Johannesence0805b2009-02-03 19:33:06 +00003372 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Chris Lattnere6aa3862007-11-25 00:24:49 +00003373}
3374
3375
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003376/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
3377/// that point to V2 points to its first element.
Nate Begeman543d2142009-04-27 18:41:29 +00003378static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersonac9de032009-08-10 22:56:29 +00003379 EVT VT = SVOp->getValueType(0);
Nate Begemane8f61cb2009-04-29 05:20:52 +00003380 unsigned NumElems = VT.getVectorNumElements();
Eric Christopher3d82bbd2009-08-27 18:07:15 +00003381
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003382 bool Changed = false;
Nate Begeman543d2142009-04-27 18:41:29 +00003383 SmallVector<int, 8> MaskVec;
3384 SVOp->getMask(MaskVec);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00003385
Nate Begemane8f61cb2009-04-29 05:20:52 +00003386 for (unsigned i = 0; i != NumElems; ++i) {
3387 if (MaskVec[i] > (int)NumElems) {
Nate Begeman543d2142009-04-27 18:41:29 +00003388 MaskVec[i] = NumElems;
3389 Changed = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003390 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003391 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003392 if (Changed)
Nate Begeman543d2142009-04-27 18:41:29 +00003393 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
3394 SVOp->getOperand(1), &MaskVec[0]);
3395 return SDValue(SVOp, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003396}
3397
3398/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
3399/// operation of specified width.
Owen Andersonac9de032009-08-10 22:56:29 +00003400static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman543d2142009-04-27 18:41:29 +00003401 SDValue V2) {
3402 unsigned NumElems = VT.getVectorNumElements();
3403 SmallVector<int, 8> Mask;
3404 Mask.push_back(NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003405 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman543d2142009-04-27 18:41:29 +00003406 Mask.push_back(i);
3407 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003408}
3409
Nate Begeman543d2142009-04-27 18:41:29 +00003410/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersonac9de032009-08-10 22:56:29 +00003411static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman543d2142009-04-27 18:41:29 +00003412 SDValue V2) {
3413 unsigned NumElems = VT.getVectorNumElements();
3414 SmallVector<int, 8> Mask;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003415 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman543d2142009-04-27 18:41:29 +00003416 Mask.push_back(i);
3417 Mask.push_back(i + NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003418 }
Nate Begeman543d2142009-04-27 18:41:29 +00003419 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003420}
3421
Nate Begeman543d2142009-04-27 18:41:29 +00003422/// getUnpackhMask - Returns a vector_shuffle node for an unpackh operation.
Owen Andersonac9de032009-08-10 22:56:29 +00003423static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman543d2142009-04-27 18:41:29 +00003424 SDValue V2) {
3425 unsigned NumElems = VT.getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003426 unsigned Half = NumElems/2;
Nate Begeman543d2142009-04-27 18:41:29 +00003427 SmallVector<int, 8> Mask;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003428 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman543d2142009-04-27 18:41:29 +00003429 Mask.push_back(i + Half);
3430 Mask.push_back(i + NumElems + Half);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003431 }
Nate Begeman543d2142009-04-27 18:41:29 +00003432 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner2d91b962008-03-09 01:05:04 +00003433}
3434
Evan Chengbf8b2c52008-04-05 00:30:36 +00003435/// PromoteSplat - Promote a splat of v4f32, v8i16 or v16i8 to v4i32.
Eric Christopher3d82bbd2009-08-27 18:07:15 +00003436static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG,
Nate Begeman543d2142009-04-27 18:41:29 +00003437 bool HasSSE2) {
3438 if (SV->getValueType(0).getVectorNumElements() <= 4)
3439 return SDValue(SV, 0);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00003440
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003441 EVT PVT = MVT::v4f32;
Owen Andersonac9de032009-08-10 22:56:29 +00003442 EVT VT = SV->getValueType(0);
Nate Begeman543d2142009-04-27 18:41:29 +00003443 DebugLoc dl = SV->getDebugLoc();
3444 SDValue V1 = SV->getOperand(0);
3445 int NumElems = VT.getVectorNumElements();
3446 int EltNo = SV->getSplatIndex();
Rafael Espindola37f8e8a2009-04-24 12:40:33 +00003447
Nate Begeman543d2142009-04-27 18:41:29 +00003448 // unpack elements to the correct location
3449 while (NumElems > 4) {
3450 if (EltNo < NumElems/2) {
3451 V1 = getUnpackl(DAG, dl, VT, V1, V1);
3452 } else {
3453 V1 = getUnpackh(DAG, dl, VT, V1, V1);
3454 EltNo -= NumElems/2;
3455 }
3456 NumElems >>= 1;
3457 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00003458
Nate Begeman543d2142009-04-27 18:41:29 +00003459 // Perform the splat.
3460 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Dale Johannesence0805b2009-02-03 19:33:06 +00003461 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, PVT, V1);
Nate Begeman543d2142009-04-27 18:41:29 +00003462 V1 = DAG.getVectorShuffle(PVT, dl, V1, DAG.getUNDEF(PVT), &SplatMask[0]);
3463 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, V1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003464}
3465
3466/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattnere6aa3862007-11-25 00:24:49 +00003467/// vector of zero or undef vector. This produces a shuffle where the low
3468/// element of V2 is swizzled into the zero/undef vector, landing at element
3469/// Idx. This produces a shuffle mask like 4,1,2,3 (idx=0) or 0,1,2,4 (idx=3).
Dan Gohman8181bd12008-07-27 21:46:04 +00003470static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Cheng8c590372008-05-15 08:39:06 +00003471 bool isZero, bool HasSSE2,
3472 SelectionDAG &DAG) {
Owen Andersonac9de032009-08-10 22:56:29 +00003473 EVT VT = V2.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00003474 SDValue V1 = isZero
Nate Begeman543d2142009-04-27 18:41:29 +00003475 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
3476 unsigned NumElems = VT.getVectorNumElements();
3477 SmallVector<int, 16> MaskVec;
Chris Lattnere6aa3862007-11-25 00:24:49 +00003478 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman543d2142009-04-27 18:41:29 +00003479 // If this is the insertion idx, put the low elt of V2 here.
3480 MaskVec.push_back(i == Idx ? NumElems : i);
3481 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003482}
3483
Evan Chengdea99362008-05-29 08:22:04 +00003484/// getNumOfConsecutiveZeros - Return the number of elements in a result of
3485/// a shuffle that is zero.
3486static
Nate Begeman543d2142009-04-27 18:41:29 +00003487unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp, int NumElems,
3488 bool Low, SelectionDAG &DAG) {
Evan Chengdea99362008-05-29 08:22:04 +00003489 unsigned NumZeros = 0;
Nate Begeman543d2142009-04-27 18:41:29 +00003490 for (int i = 0; i < NumElems; ++i) {
Evan Cheng57db53b2008-06-25 20:52:59 +00003491 unsigned Index = Low ? i : NumElems-i-1;
Nate Begeman543d2142009-04-27 18:41:29 +00003492 int Idx = SVOp->getMaskElt(Index);
3493 if (Idx < 0) {
Evan Chengdea99362008-05-29 08:22:04 +00003494 ++NumZeros;
3495 continue;
3496 }
Nate Begeman543d2142009-04-27 18:41:29 +00003497 SDValue Elt = DAG.getShuffleScalarElt(SVOp, Index);
Evan Chengb723fb52009-07-30 08:33:02 +00003498 if (Elt.getNode() && X86::isZeroNode(Elt))
Evan Chengdea99362008-05-29 08:22:04 +00003499 ++NumZeros;
3500 else
3501 break;
3502 }
3503 return NumZeros;
3504}
3505
3506/// isVectorShift - Returns true if the shuffle can be implemented as a
3507/// logical left or right shift of a vector.
Nate Begeman543d2142009-04-27 18:41:29 +00003508/// FIXME: split into pslldqi, psrldqi, palignr variants.
3509static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman8181bd12008-07-27 21:46:04 +00003510 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
John McCall1fb3c9f2010-04-07 01:49:15 +00003511 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
Evan Chengdea99362008-05-29 08:22:04 +00003512
3513 isLeft = true;
Nate Begeman543d2142009-04-27 18:41:29 +00003514 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems, true, DAG);
Evan Chengdea99362008-05-29 08:22:04 +00003515 if (!NumZeros) {
3516 isLeft = false;
Nate Begeman543d2142009-04-27 18:41:29 +00003517 NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems, false, DAG);
Evan Chengdea99362008-05-29 08:22:04 +00003518 if (!NumZeros)
3519 return false;
3520 }
Evan Chengdea99362008-05-29 08:22:04 +00003521 bool SeenV1 = false;
3522 bool SeenV2 = false;
John McCall1fb3c9f2010-04-07 01:49:15 +00003523 for (unsigned i = NumZeros; i < NumElems; ++i) {
3524 unsigned Val = isLeft ? (i - NumZeros) : i;
3525 int Idx_ = SVOp->getMaskElt(isLeft ? i : (i - NumZeros));
3526 if (Idx_ < 0)
Evan Chengdea99362008-05-29 08:22:04 +00003527 continue;
John McCall1fb3c9f2010-04-07 01:49:15 +00003528 unsigned Idx = (unsigned) Idx_;
Nate Begeman543d2142009-04-27 18:41:29 +00003529 if (Idx < NumElems)
Evan Chengdea99362008-05-29 08:22:04 +00003530 SeenV1 = true;
3531 else {
Nate Begeman543d2142009-04-27 18:41:29 +00003532 Idx -= NumElems;
Evan Chengdea99362008-05-29 08:22:04 +00003533 SeenV2 = true;
3534 }
Nate Begeman543d2142009-04-27 18:41:29 +00003535 if (Idx != Val)
Evan Chengdea99362008-05-29 08:22:04 +00003536 return false;
3537 }
3538 if (SeenV1 && SeenV2)
3539 return false;
3540
Nate Begeman543d2142009-04-27 18:41:29 +00003541 ShVal = SeenV1 ? SVOp->getOperand(0) : SVOp->getOperand(1);
Evan Chengdea99362008-05-29 08:22:04 +00003542 ShAmt = NumZeros;
3543 return true;
3544}
3545
3546
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003547/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
3548///
Dan Gohman8181bd12008-07-27 21:46:04 +00003549static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003550 unsigned NumNonZero, unsigned NumZero,
Dan Gohmandbb121b2010-04-17 15:26:15 +00003551 SelectionDAG &DAG,
3552 const TargetLowering &TLI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003553 if (NumNonZero > 8)
Dan Gohman8181bd12008-07-27 21:46:04 +00003554 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003555
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003556 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00003557 SDValue V(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003558 bool First = true;
3559 for (unsigned i = 0; i < 16; ++i) {
3560 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
3561 if (ThisIsNonZero && First) {
3562 if (NumZero)
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003563 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003564 else
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003565 V = DAG.getUNDEF(MVT::v8i16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003566 First = false;
3567 }
3568
3569 if ((i & 1) != 0) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003570 SDValue ThisElt(0, 0), LastElt(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003571 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
3572 if (LastIsNonZero) {
Scott Michel91099d62009-02-17 22:15:04 +00003573 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003574 MVT::i16, Op.getOperand(i-1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003575 }
3576 if (ThisIsNonZero) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003577 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
3578 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
3579 ThisElt, DAG.getConstant(8, MVT::i8));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003580 if (LastIsNonZero)
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003581 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003582 } else
3583 ThisElt = LastElt;
3584
Gabor Greif1c80d112008-08-28 21:40:38 +00003585 if (ThisElt.getNode())
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003586 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner5872a362008-01-17 07:00:52 +00003587 DAG.getIntPtrConstant(i/2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003588 }
3589 }
3590
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003591 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003592}
3593
3594/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
3595///
Dan Gohman8181bd12008-07-27 21:46:04 +00003596static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmandbb121b2010-04-17 15:26:15 +00003597 unsigned NumNonZero, unsigned NumZero,
3598 SelectionDAG &DAG,
3599 const TargetLowering &TLI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003600 if (NumNonZero > 4)
Dan Gohman8181bd12008-07-27 21:46:04 +00003601 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003602
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003603 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00003604 SDValue V(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003605 bool First = true;
3606 for (unsigned i = 0; i < 8; ++i) {
3607 bool isNonZero = (NonZeros & (1 << i)) != 0;
3608 if (isNonZero) {
3609 if (First) {
3610 if (NumZero)
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003611 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003612 else
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003613 V = DAG.getUNDEF(MVT::v8i16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003614 First = false;
3615 }
Scott Michel91099d62009-02-17 22:15:04 +00003616 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003617 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner5872a362008-01-17 07:00:52 +00003618 DAG.getIntPtrConstant(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003619 }
3620 }
3621
3622 return V;
3623}
3624
Evan Chengdea99362008-05-29 08:22:04 +00003625/// getVShift - Return a vector logical shift node.
3626///
Owen Andersonac9de032009-08-10 22:56:29 +00003627static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman543d2142009-04-27 18:41:29 +00003628 unsigned NumBits, SelectionDAG &DAG,
3629 const TargetLowering &TLI, DebugLoc dl) {
Duncan Sands92c43912008-06-06 12:08:01 +00003630 bool isMMX = VT.getSizeInBits() == 64;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003631 EVT ShVT = isMMX ? MVT::v1i64 : MVT::v2i64;
Evan Chengdea99362008-05-29 08:22:04 +00003632 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Dale Johannesence0805b2009-02-03 19:33:06 +00003633 SrcOp = DAG.getNode(ISD::BIT_CONVERT, dl, ShVT, SrcOp);
3634 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3635 DAG.getNode(Opc, dl, ShVT, SrcOp,
Gabor Greif825aa892008-08-28 23:19:51 +00003636 DAG.getConstant(NumBits, TLI.getShiftAmountTy())));
Evan Chengdea99362008-05-29 08:22:04 +00003637}
3638
Dan Gohman8181bd12008-07-27 21:46:04 +00003639SDValue
Evan Chenge31a26a2009-12-09 21:00:30 +00003640X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmandbb121b2010-04-17 15:26:15 +00003641 SelectionDAG &DAG) const {
Evan Chenge31a26a2009-12-09 21:00:30 +00003642
3643 // Check if the scalar load can be widened into a vector load. And if
3644 // the address is "base + cst" see if the cst can be "absorbed" into
3645 // the shuffle mask.
3646 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
3647 SDValue Ptr = LD->getBasePtr();
3648 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
3649 return SDValue();
3650 EVT PVT = LD->getValueType(0);
3651 if (PVT != MVT::i32 && PVT != MVT::f32)
3652 return SDValue();
3653
3654 int FI = -1;
3655 int64_t Offset = 0;
3656 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
3657 FI = FINode->getIndex();
3658 Offset = 0;
3659 } else if (Ptr.getOpcode() == ISD::ADD &&
3660 isa<ConstantSDNode>(Ptr.getOperand(1)) &&
3661 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
3662 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
3663 Offset = Ptr.getConstantOperandVal(1);
3664 Ptr = Ptr.getOperand(0);
3665 } else {
3666 return SDValue();
3667 }
3668
3669 SDValue Chain = LD->getChain();
3670 // Make sure the stack object alignment is at least 16.
3671 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
3672 if (DAG.InferPtrAlignment(Ptr) < 16) {
3673 if (MFI->isFixedObjectIndex(FI)) {
Eric Christopherc21aa852010-01-23 06:02:43 +00003674 // Can't change the alignment. FIXME: It's possible to compute
3675 // the exact stack offset and reference FI + adjust offset instead.
3676 // If someone *really* cares about this. That's the way to implement it.
3677 return SDValue();
Evan Chenge31a26a2009-12-09 21:00:30 +00003678 } else {
3679 MFI->setObjectAlignment(FI, 16);
3680 }
3681 }
3682
3683 // (Offset % 16) must be multiple of 4. Then address is then
3684 // Ptr + (Offset & ~15).
3685 if (Offset < 0)
3686 return SDValue();
3687 if ((Offset % 16) & 3)
3688 return SDValue();
3689 int64_t StartOffset = Offset & ~15;
3690 if (StartOffset)
3691 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
3692 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
3693
3694 int EltNo = (Offset - StartOffset) >> 2;
3695 int Mask[4] = { EltNo, EltNo, EltNo, EltNo };
3696 EVT VT = (PVT == MVT::i32) ? MVT::v4i32 : MVT::v4f32;
David Greene25160362010-02-15 16:53:33 +00003697 SDValue V1 = DAG.getLoad(VT, dl, Chain, Ptr,LD->getSrcValue(),0,
3698 false, false, 0);
Evan Chenge31a26a2009-12-09 21:00:30 +00003699 // Canonicalize it to a v4i32 shuffle.
3700 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32, V1);
3701 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3702 DAG.getVectorShuffle(MVT::v4i32, dl, V1,
3703 DAG.getUNDEF(MVT::v4i32), &Mask[0]));
3704 }
3705
3706 return SDValue();
3707}
3708
Nate Begeman14d2ce62010-03-24 22:19:06 +00003709/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
3710/// vector of type 'VT', see if the elements can be replaced by a single large
3711/// load which has the same value as a build_vector whose operands are 'elts'.
3712///
3713/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
3714///
3715/// FIXME: we'd also like to handle the case where the last elements are zero
3716/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
3717/// There's even a handy isZeroNode for that purpose.
Nate Begeman1aa900a2010-03-24 20:49:50 +00003718static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
3719 DebugLoc &dl, SelectionDAG &DAG) {
3720 EVT EltVT = VT.getVectorElementType();
3721 unsigned NumElems = Elts.size();
3722
Nate Begeman1aa900a2010-03-24 20:49:50 +00003723 LoadSDNode *LDBase = NULL;
3724 unsigned LastLoadedElt = -1U;
Nate Begeman14d2ce62010-03-24 22:19:06 +00003725
3726 // For each element in the initializer, see if we've found a load or an undef.
3727 // If we don't find an initial load element, or later load elements are
3728 // non-consecutive, bail out.
Nate Begeman1aa900a2010-03-24 20:49:50 +00003729 for (unsigned i = 0; i < NumElems; ++i) {
3730 SDValue Elt = Elts[i];
3731
3732 if (!Elt.getNode() ||
3733 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
3734 return SDValue();
3735 if (!LDBase) {
3736 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
3737 return SDValue();
3738 LDBase = cast<LoadSDNode>(Elt.getNode());
3739 LastLoadedElt = i;
3740 continue;
3741 }
3742 if (Elt.getOpcode() == ISD::UNDEF)
3743 continue;
3744
3745 LoadSDNode *LD = cast<LoadSDNode>(Elt);
3746 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
3747 return SDValue();
3748 LastLoadedElt = i;
3749 }
Nate Begeman14d2ce62010-03-24 22:19:06 +00003750
3751 // If we have found an entire vector of loads and undefs, then return a large
3752 // load of the entire vector width starting at the base pointer. If we found
3753 // consecutive loads for the low half, generate a vzext_load node.
Nate Begeman1aa900a2010-03-24 20:49:50 +00003754 if (LastLoadedElt == NumElems - 1) {
3755 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
3756 return DAG.getLoad(VT, dl, LDBase->getChain(), LDBase->getBasePtr(),
3757 LDBase->getSrcValue(), LDBase->getSrcValueOffset(),
3758 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
3759 return DAG.getLoad(VT, dl, LDBase->getChain(), LDBase->getBasePtr(),
3760 LDBase->getSrcValue(), LDBase->getSrcValueOffset(),
3761 LDBase->isVolatile(), LDBase->isNonTemporal(),
3762 LDBase->getAlignment());
3763 } else if (NumElems == 4 && LastLoadedElt == 1) {
3764 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
3765 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
3766 SDValue ResNode = DAG.getNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops, 2);
3767 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, ResNode);
3768 }
3769 return SDValue();
3770}
3771
Evan Chenge31a26a2009-12-09 21:00:30 +00003772SDValue
Dan Gohmandbb121b2010-04-17 15:26:15 +00003773X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00003774 DebugLoc dl = Op.getDebugLoc();
Chris Lattnere6aa3862007-11-25 00:24:49 +00003775 // All zero's are handled with pxor, all one's are handled with pcmpeqd.
Gabor Greif825aa892008-08-28 23:19:51 +00003776 if (ISD::isBuildVectorAllZeros(Op.getNode())
3777 || ISD::isBuildVectorAllOnes(Op.getNode())) {
Chris Lattnere6aa3862007-11-25 00:24:49 +00003778 // Canonicalize this to either <4 x i32> or <2 x i32> (SSE vs MMX) to
3779 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
3780 // eliminated on x86-32 hosts.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003781 if (Op.getValueType() == MVT::v4i32 || Op.getValueType() == MVT::v2i32)
Chris Lattnere6aa3862007-11-25 00:24:49 +00003782 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003783
Gabor Greif1c80d112008-08-28 21:40:38 +00003784 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesence0805b2009-02-03 19:33:06 +00003785 return getOnesVector(Op.getValueType(), DAG, dl);
3786 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattnere6aa3862007-11-25 00:24:49 +00003787 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003788
Owen Andersonac9de032009-08-10 22:56:29 +00003789 EVT VT = Op.getValueType();
3790 EVT ExtVT = VT.getVectorElementType();
3791 unsigned EVTBits = ExtVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003792
3793 unsigned NumElems = Op.getNumOperands();
3794 unsigned NumZero = 0;
3795 unsigned NumNonZero = 0;
3796 unsigned NonZeros = 0;
Chris Lattner92bdcb52008-03-08 22:48:29 +00003797 bool IsAllConstants = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00003798 SmallSet<SDValue, 8> Values;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003799 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003800 SDValue Elt = Op.getOperand(i);
Evan Chengc1073492007-12-12 06:45:40 +00003801 if (Elt.getOpcode() == ISD::UNDEF)
3802 continue;
3803 Values.insert(Elt);
3804 if (Elt.getOpcode() != ISD::Constant &&
3805 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattner92bdcb52008-03-08 22:48:29 +00003806 IsAllConstants = false;
Evan Chengb723fb52009-07-30 08:33:02 +00003807 if (X86::isZeroNode(Elt))
Evan Chengc1073492007-12-12 06:45:40 +00003808 NumZero++;
3809 else {
3810 NonZeros |= (1 << i);
3811 NumNonZero++;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003812 }
3813 }
3814
3815 if (NumNonZero == 0) {
Chris Lattnere6aa3862007-11-25 00:24:49 +00003816 // All undef vector. Return an UNDEF. All zero vectors were handled above.
Dale Johannesen9bfc0172009-02-06 23:05:02 +00003817 return DAG.getUNDEF(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003818 }
3819
Chris Lattner66a4dda2008-03-09 05:42:06 +00003820 // Special case for single non-zero, non-undef, element.
Eli Friedmand49401f2009-06-06 06:05:10 +00003821 if (NumNonZero == 1) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003822 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman8181bd12008-07-27 21:46:04 +00003823 SDValue Item = Op.getOperand(Idx);
Scott Michel91099d62009-02-17 22:15:04 +00003824
Chris Lattner2d91b962008-03-09 01:05:04 +00003825 // If this is an insertion of an i64 value on x86-32, and if the top bits of
3826 // the value are obviously zero, truncate the value to i32 and do the
3827 // insertion that way. Only do this if the value is non-constant or if the
3828 // value is a constant being inserted into element 0. It is cheaper to do
3829 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003830 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner2d91b962008-03-09 01:05:04 +00003831 (!IsAllConstants || Idx == 0)) {
3832 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
3833 // Handle MMX and SSE both.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003834 EVT VecVT = VT == MVT::v2i64 ? MVT::v4i32 : MVT::v2i32;
3835 unsigned VecElts = VT == MVT::v2i64 ? 4 : 2;
Scott Michel91099d62009-02-17 22:15:04 +00003836
Chris Lattner2d91b962008-03-09 01:05:04 +00003837 // Truncate the value (which may itself be a constant) to i32, and
3838 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003839 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesence0805b2009-02-03 19:33:06 +00003840 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Cheng8c590372008-05-15 08:39:06 +00003841 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
3842 Subtarget->hasSSE2(), DAG);
Scott Michel91099d62009-02-17 22:15:04 +00003843
Chris Lattner2d91b962008-03-09 01:05:04 +00003844 // Now we have our 32-bit value zero extended in the low element of
3845 // a vector. If Idx != 0, swizzle it into place.
3846 if (Idx != 0) {
Nate Begeman543d2142009-04-27 18:41:29 +00003847 SmallVector<int, 4> Mask;
3848 Mask.push_back(Idx);
3849 for (unsigned i = 1; i != VecElts; ++i)
3850 Mask.push_back(i);
3851 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopher3d82bbd2009-08-27 18:07:15 +00003852 DAG.getUNDEF(Item.getValueType()),
Nate Begeman543d2142009-04-27 18:41:29 +00003853 &Mask[0]);
Chris Lattner2d91b962008-03-09 01:05:04 +00003854 }
Dale Johannesence0805b2009-02-03 19:33:06 +00003855 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Item);
Chris Lattner2d91b962008-03-09 01:05:04 +00003856 }
3857 }
Scott Michel91099d62009-02-17 22:15:04 +00003858
Chris Lattnerac914892008-03-08 22:59:52 +00003859 // If we have a constant or non-constant insertion into the low element of
3860 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
3861 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedmand49401f2009-06-06 06:05:10 +00003862 // depending on what the source datatype is.
3863 if (Idx == 0) {
3864 if (NumZero == 0) {
3865 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003866 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
3867 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedmand49401f2009-06-06 06:05:10 +00003868 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
3869 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
3870 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
3871 DAG);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00003872 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
3873 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
3874 EVT MiddleVT = VT.getSizeInBits() == 64 ? MVT::v2i32 : MVT::v4i32;
Eli Friedmand49401f2009-06-06 06:05:10 +00003875 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
3876 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
3877 Subtarget->hasSSE2(), DAG);
3878 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Item);
3879 }
Chris Lattner92bdcb52008-03-08 22:48:29 +00003880 }
Evan Chengdea99362008-05-29 08:22:04 +00003881
3882 // Is it a vector logical left shift?
3883 if (NumElems == 2 && Idx == 1 &&
Evan Chengb723fb52009-07-30 08:33:02 +00003884 X86::isZeroNode(Op.getOperand(0)) &&
3885 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands92c43912008-06-06 12:08:01 +00003886 unsigned NumBits = VT.getSizeInBits();
Evan Chengdea99362008-05-29 08:22:04 +00003887 return getVShift(true, VT,
Scott Michel91099d62009-02-17 22:15:04 +00003888 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesen24dd9a52009-02-07 00:55:49 +00003889 VT, Op.getOperand(1)),
Dale Johannesence0805b2009-02-03 19:33:06 +00003890 NumBits/2, DAG, *this, dl);
Evan Chengdea99362008-05-29 08:22:04 +00003891 }
Scott Michel91099d62009-02-17 22:15:04 +00003892
Chris Lattner92bdcb52008-03-08 22:48:29 +00003893 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman8181bd12008-07-27 21:46:04 +00003894 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003895
Chris Lattnerac914892008-03-08 22:59:52 +00003896 // Otherwise, if this is a vector with i32 or f32 elements, and the element
3897 // is a non-constant being inserted into an element other than the low one,
3898 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
3899 // movd/movss) to move this into the low element, then shuffle it into
3900 // place.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003901 if (EVTBits == 32) {
Dale Johannesence0805b2009-02-03 19:33:06 +00003902 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michel91099d62009-02-17 22:15:04 +00003903
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003904 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Cheng8c590372008-05-15 08:39:06 +00003905 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
3906 Subtarget->hasSSE2(), DAG);
Nate Begeman543d2142009-04-27 18:41:29 +00003907 SmallVector<int, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003908 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman543d2142009-04-27 18:41:29 +00003909 MaskVec.push_back(i == Idx ? 0 : 1);
3910 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003911 }
3912 }
3913
Chris Lattner66a4dda2008-03-09 05:42:06 +00003914 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chenge31a26a2009-12-09 21:00:30 +00003915 if (Values.size() == 1) {
3916 if (EVTBits == 32) {
3917 // Instead of a shuffle like this:
3918 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
3919 // Check if it's possible to issue this instead.
3920 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
3921 unsigned Idx = CountTrailingZeros_32(NonZeros);
3922 SDValue Item = Op.getOperand(Idx);
3923 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
3924 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
3925 }
Dan Gohman8181bd12008-07-27 21:46:04 +00003926 return SDValue();
Evan Chenge31a26a2009-12-09 21:00:30 +00003927 }
Scott Michel91099d62009-02-17 22:15:04 +00003928
Dan Gohman21463242007-07-24 22:55:08 +00003929 // A vector full of immediates; various special cases are already
3930 // handled, so this is best done with a single constant-pool load.
Chris Lattner92bdcb52008-03-08 22:48:29 +00003931 if (IsAllConstants)
Dan Gohman8181bd12008-07-27 21:46:04 +00003932 return SDValue();
Dan Gohman21463242007-07-24 22:55:08 +00003933
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003934 // Let legalizer expand 2-wide build_vectors.
Evan Cheng40ee6e52008-05-08 00:57:18 +00003935 if (EVTBits == 64) {
3936 if (NumNonZero == 1) {
3937 // One half is zero or undef.
3938 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesence0805b2009-02-03 19:33:06 +00003939 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng40ee6e52008-05-08 00:57:18 +00003940 Op.getOperand(Idx));
Evan Cheng8c590372008-05-15 08:39:06 +00003941 return getShuffleVectorZeroOrUndef(V2, Idx, true,
3942 Subtarget->hasSSE2(), DAG);
Evan Cheng40ee6e52008-05-08 00:57:18 +00003943 }
Dan Gohman8181bd12008-07-27 21:46:04 +00003944 return SDValue();
Evan Cheng40ee6e52008-05-08 00:57:18 +00003945 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003946
3947 // If element VT is < 32 bits, convert it to inserts into a zero vector.
3948 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003949 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003950 *this);
Gabor Greif1c80d112008-08-28 21:40:38 +00003951 if (V.getNode()) return V;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003952 }
3953
3954 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003955 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003956 *this);
Gabor Greif1c80d112008-08-28 21:40:38 +00003957 if (V.getNode()) return V;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003958 }
3959
3960 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman8181bd12008-07-27 21:46:04 +00003961 SmallVector<SDValue, 8> V;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003962 V.resize(NumElems);
3963 if (NumElems == 4 && NumZero > 0) {
3964 for (unsigned i = 0; i < 4; ++i) {
3965 bool isZero = !(NonZeros & (1 << i));
3966 if (isZero)
Dale Johannesence0805b2009-02-03 19:33:06 +00003967 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003968 else
Dale Johannesence0805b2009-02-03 19:33:06 +00003969 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003970 }
3971
3972 for (unsigned i = 0; i < 2; ++i) {
3973 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
3974 default: break;
3975 case 0:
3976 V[i] = V[i*2]; // Must be a zero vector.
3977 break;
3978 case 1:
Nate Begeman543d2142009-04-27 18:41:29 +00003979 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003980 break;
3981 case 2:
Nate Begeman543d2142009-04-27 18:41:29 +00003982 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003983 break;
3984 case 3:
Nate Begeman543d2142009-04-27 18:41:29 +00003985 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003986 break;
3987 }
3988 }
3989
Nate Begeman543d2142009-04-27 18:41:29 +00003990 SmallVector<int, 8> MaskVec;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003991 bool Reverse = (NonZeros & 0x3) == 2;
3992 for (unsigned i = 0; i < 2; ++i)
Nate Begeman543d2142009-04-27 18:41:29 +00003993 MaskVec.push_back(Reverse ? 1-i : i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003994 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
3995 for (unsigned i = 0; i < 2; ++i)
Nate Begeman543d2142009-04-27 18:41:29 +00003996 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
3997 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003998 }
3999
Nate Begeman1aa900a2010-03-24 20:49:50 +00004000 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
4001 // Check for a build vector of consecutive loads.
4002 for (unsigned i = 0; i < NumElems; ++i)
4003 V[i] = Op.getOperand(i);
4004
4005 // Check for elements which are consecutive loads.
4006 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
4007 if (LD.getNode())
4008 return LD;
4009
4010 // For SSE 4.1, use inserts into undef.
4011 if (getSubtarget()->hasSSE41()) {
Nate Begeman543d2142009-04-27 18:41:29 +00004012 V[0] = DAG.getUNDEF(VT);
4013 for (unsigned i = 0; i < NumElems; ++i)
4014 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
4015 V[0] = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, V[0],
4016 Op.getOperand(i), DAG.getIntPtrConstant(i));
4017 return V[0];
4018 }
Nate Begeman1aa900a2010-03-24 20:49:50 +00004019
4020 // Otherwise, expand into a number of unpckl*
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004021 // e.g. for v4f32
4022 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
4023 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
4024 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004025 for (unsigned i = 0; i < NumElems; ++i)
Dale Johannesence0805b2009-02-03 19:33:06 +00004026 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004027 NumElems >>= 1;
4028 while (NumElems != 0) {
4029 for (unsigned i = 0; i < NumElems; ++i)
Nate Begeman543d2142009-04-27 18:41:29 +00004030 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + NumElems]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004031 NumElems >>= 1;
4032 }
4033 return V[0];
4034 }
Dan Gohman8181bd12008-07-27 21:46:04 +00004035 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004036}
4037
Mon P Wanga8ff0dd2010-01-24 00:05:03 +00004038SDValue
Dan Gohmandbb121b2010-04-17 15:26:15 +00004039X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Mon P Wanga8ff0dd2010-01-24 00:05:03 +00004040 // We support concatenate two MMX registers and place them in a MMX
4041 // register. This is better than doing a stack convert.
4042 DebugLoc dl = Op.getDebugLoc();
4043 EVT ResVT = Op.getValueType();
4044 assert(Op.getNumOperands() == 2);
4045 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
4046 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
4047 int Mask[2];
4048 SDValue InVec = DAG.getNode(ISD::BIT_CONVERT,dl, MVT::v1i64, Op.getOperand(0));
4049 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4050 InVec = Op.getOperand(1);
4051 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
4052 unsigned NumElts = ResVT.getVectorNumElements();
4053 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, ResVT, VecOp);
4054 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
4055 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
4056 } else {
4057 InVec = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v1i64, InVec);
4058 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4059 Mask[0] = 0; Mask[1] = 2;
4060 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
4061 }
4062 return DAG.getNode(ISD::BIT_CONVERT, dl, ResVT, VecOp);
4063}
4064
Nate Begeman2c87c422009-02-23 08:49:38 +00004065// v8i16 shuffles - Prefer shuffles in the following order:
4066// 1. [all] pshuflw, pshufhw, optional move
4067// 2. [ssse3] 1 x pshufb
4068// 3. [ssse3] 2 x pshufb + 1 x por
4069// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Evan Chengfca29242007-12-07 08:07:39 +00004070static
Nate Begeman543d2142009-04-27 18:41:29 +00004071SDValue LowerVECTOR_SHUFFLEv8i16(ShuffleVectorSDNode *SVOp,
Dan Gohmandbb121b2010-04-17 15:26:15 +00004072 SelectionDAG &DAG,
4073 const X86TargetLowering &TLI) {
Nate Begeman543d2142009-04-27 18:41:29 +00004074 SDValue V1 = SVOp->getOperand(0);
4075 SDValue V2 = SVOp->getOperand(1);
4076 DebugLoc dl = SVOp->getDebugLoc();
Nate Begeman2c87c422009-02-23 08:49:38 +00004077 SmallVector<int, 8> MaskVals;
Evan Cheng75184a92007-12-11 01:46:18 +00004078
Nate Begeman2c87c422009-02-23 08:49:38 +00004079 // Determine if more than 1 of the words in each of the low and high quadwords
4080 // of the result come from the same quadword of one of the two inputs. Undef
4081 // mask values count as coming from any quadword, for better codegen.
4082 SmallVector<unsigned, 4> LoQuad(4);
4083 SmallVector<unsigned, 4> HiQuad(4);
4084 BitVector InputQuads(4);
4085 for (unsigned i = 0; i < 8; ++i) {
4086 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman543d2142009-04-27 18:41:29 +00004087 int EltIdx = SVOp->getMaskElt(i);
Nate Begeman2c87c422009-02-23 08:49:38 +00004088 MaskVals.push_back(EltIdx);
4089 if (EltIdx < 0) {
4090 ++Quad[0];
4091 ++Quad[1];
4092 ++Quad[2];
4093 ++Quad[3];
Evan Cheng75184a92007-12-11 01:46:18 +00004094 continue;
Nate Begeman2c87c422009-02-23 08:49:38 +00004095 }
4096 ++Quad[EltIdx / 4];
4097 InputQuads.set(EltIdx / 4);
Evan Cheng75184a92007-12-11 01:46:18 +00004098 }
Bill Wendling2c7cd592008-08-21 22:35:37 +00004099
Nate Begeman2c87c422009-02-23 08:49:38 +00004100 int BestLoQuad = -1;
Evan Cheng75184a92007-12-11 01:46:18 +00004101 unsigned MaxQuad = 1;
4102 for (unsigned i = 0; i < 4; ++i) {
Nate Begeman2c87c422009-02-23 08:49:38 +00004103 if (LoQuad[i] > MaxQuad) {
4104 BestLoQuad = i;
4105 MaxQuad = LoQuad[i];
Evan Cheng75184a92007-12-11 01:46:18 +00004106 }
Evan Chengfca29242007-12-07 08:07:39 +00004107 }
4108
Nate Begeman2c87c422009-02-23 08:49:38 +00004109 int BestHiQuad = -1;
Evan Cheng75184a92007-12-11 01:46:18 +00004110 MaxQuad = 1;
4111 for (unsigned i = 0; i < 4; ++i) {
Nate Begeman2c87c422009-02-23 08:49:38 +00004112 if (HiQuad[i] > MaxQuad) {
4113 BestHiQuad = i;
4114 MaxQuad = HiQuad[i];
Evan Cheng75184a92007-12-11 01:46:18 +00004115 }
4116 }
4117
Nate Begeman2c87c422009-02-23 08:49:38 +00004118 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004119 // of the two input vectors, shuffle them into one input vector so only a
Nate Begeman2c87c422009-02-23 08:49:38 +00004120 // single pshufb instruction is necessary. If There are more than 2 input
4121 // quads, disable the next transformation since it does not help SSSE3.
4122 bool V1Used = InputQuads[0] || InputQuads[1];
4123 bool V2Used = InputQuads[2] || InputQuads[3];
4124 if (TLI.getSubtarget()->hasSSSE3()) {
4125 if (InputQuads.count() == 2 && V1Used && V2Used) {
4126 BestLoQuad = InputQuads.find_first();
4127 BestHiQuad = InputQuads.find_next(BestLoQuad);
4128 }
4129 if (InputQuads.count() > 2) {
4130 BestLoQuad = -1;
4131 BestHiQuad = -1;
4132 }
4133 }
Bill Wendling2c7cd592008-08-21 22:35:37 +00004134
Nate Begeman2c87c422009-02-23 08:49:38 +00004135 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
4136 // the shuffle mask. If a quad is scored as -1, that means that it contains
4137 // words from all 4 input quadwords.
4138 SDValue NewV;
4139 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman543d2142009-04-27 18:41:29 +00004140 SmallVector<int, 8> MaskV;
4141 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
4142 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004143 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004144 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V1),
4145 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V2), &MaskV[0]);
4146 NewV = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, NewV);
Evan Cheng75184a92007-12-11 01:46:18 +00004147
Nate Begeman2c87c422009-02-23 08:49:38 +00004148 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
4149 // source words for the shuffle, to aid later transformations.
4150 bool AllWordsInNewV = true;
Mon P Wangb1db1202009-03-11 06:35:11 +00004151 bool InOrder[2] = { true, true };
Evan Cheng75184a92007-12-11 01:46:18 +00004152 for (unsigned i = 0; i != 8; ++i) {
Nate Begeman2c87c422009-02-23 08:49:38 +00004153 int idx = MaskVals[i];
Mon P Wangb1db1202009-03-11 06:35:11 +00004154 if (idx != (int)i)
4155 InOrder[i/4] = false;
Nate Begeman2c87c422009-02-23 08:49:38 +00004156 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng75184a92007-12-11 01:46:18 +00004157 continue;
Nate Begeman2c87c422009-02-23 08:49:38 +00004158 AllWordsInNewV = false;
4159 break;
Evan Cheng75184a92007-12-11 01:46:18 +00004160 }
Bill Wendling2c7cd592008-08-21 22:35:37 +00004161
Nate Begeman2c87c422009-02-23 08:49:38 +00004162 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
4163 if (AllWordsInNewV) {
4164 for (int i = 0; i != 8; ++i) {
4165 int idx = MaskVals[i];
4166 if (idx < 0)
Evan Cheng75184a92007-12-11 01:46:18 +00004167 continue;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004168 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begeman2c87c422009-02-23 08:49:38 +00004169 if ((idx != i) && idx < 4)
4170 pshufhw = false;
4171 if ((idx != i) && idx > 3)
4172 pshuflw = false;
Evan Cheng75184a92007-12-11 01:46:18 +00004173 }
Nate Begeman2c87c422009-02-23 08:49:38 +00004174 V1 = NewV;
4175 V2Used = false;
4176 BestLoQuad = 0;
4177 BestHiQuad = 1;
Evan Chengfca29242007-12-07 08:07:39 +00004178 }
Evan Cheng75184a92007-12-11 01:46:18 +00004179
Nate Begeman2c87c422009-02-23 08:49:38 +00004180 // If we've eliminated the use of V2, and the new mask is a pshuflw or
4181 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wangb1db1202009-03-11 06:35:11 +00004182 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004183 return DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004184 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Evan Cheng75184a92007-12-11 01:46:18 +00004185 }
Evan Cheng75184a92007-12-11 01:46:18 +00004186 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004187
Nate Begeman2c87c422009-02-23 08:49:38 +00004188 // If we have SSSE3, and all words of the result are from 1 input vector,
4189 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
4190 // is present, fall back to case 4.
4191 if (TLI.getSubtarget()->hasSSSE3()) {
4192 SmallVector<SDValue,16> pshufbMask;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004193
Nate Begeman2c87c422009-02-23 08:49:38 +00004194 // If we have elements from both input vectors, set the high bit of the
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004195 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begeman2c87c422009-02-23 08:49:38 +00004196 // mask, and elements that come from V1 in the V2 mask, so that the two
4197 // results can be OR'd together.
4198 bool TwoInputs = V1Used && V2Used;
4199 for (unsigned i = 0; i != 8; ++i) {
4200 int EltIdx = MaskVals[i] * 2;
4201 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004202 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4203 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begeman2c87c422009-02-23 08:49:38 +00004204 continue;
4205 }
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004206 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
4207 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begeman2c87c422009-02-23 08:49:38 +00004208 }
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004209 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V1);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004210 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Cheng907a2d22009-02-25 22:49:59 +00004211 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004212 MVT::v16i8, &pshufbMask[0], 16));
Nate Begeman2c87c422009-02-23 08:49:38 +00004213 if (!TwoInputs)
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004214 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004215
Nate Begeman2c87c422009-02-23 08:49:38 +00004216 // Calculate the shuffle mask for the second input, shuffle it, and
4217 // OR it with the first shuffled input.
4218 pshufbMask.clear();
4219 for (unsigned i = 0; i != 8; ++i) {
4220 int EltIdx = MaskVals[i] * 2;
4221 if (EltIdx < 16) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004222 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4223 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begeman2c87c422009-02-23 08:49:38 +00004224 continue;
4225 }
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004226 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
4227 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begeman2c87c422009-02-23 08:49:38 +00004228 }
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004229 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V2);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004230 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00004231 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004232 MVT::v16i8, &pshufbMask[0], 16));
4233 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
4234 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
Nate Begeman2c87c422009-02-23 08:49:38 +00004235 }
4236
4237 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
4238 // and update MaskVals with new element order.
4239 BitVector InOrder(8);
4240 if (BestLoQuad >= 0) {
Nate Begeman543d2142009-04-27 18:41:29 +00004241 SmallVector<int, 8> MaskV;
Nate Begeman2c87c422009-02-23 08:49:38 +00004242 for (int i = 0; i != 4; ++i) {
4243 int idx = MaskVals[i];
4244 if (idx < 0) {
Nate Begeman543d2142009-04-27 18:41:29 +00004245 MaskV.push_back(-1);
Nate Begeman2c87c422009-02-23 08:49:38 +00004246 InOrder.set(i);
4247 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman543d2142009-04-27 18:41:29 +00004248 MaskV.push_back(idx & 3);
Nate Begeman2c87c422009-02-23 08:49:38 +00004249 InOrder.set(i);
4250 } else {
Nate Begeman543d2142009-04-27 18:41:29 +00004251 MaskV.push_back(-1);
Nate Begeman2c87c422009-02-23 08:49:38 +00004252 }
4253 }
4254 for (unsigned i = 4; i != 8; ++i)
Nate Begeman543d2142009-04-27 18:41:29 +00004255 MaskV.push_back(i);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004256 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman543d2142009-04-27 18:41:29 +00004257 &MaskV[0]);
Nate Begeman2c87c422009-02-23 08:49:38 +00004258 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004259
Nate Begeman2c87c422009-02-23 08:49:38 +00004260 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
4261 // and update MaskVals with the new element order.
4262 if (BestHiQuad >= 0) {
Nate Begeman543d2142009-04-27 18:41:29 +00004263 SmallVector<int, 8> MaskV;
Nate Begeman2c87c422009-02-23 08:49:38 +00004264 for (unsigned i = 0; i != 4; ++i)
Nate Begeman543d2142009-04-27 18:41:29 +00004265 MaskV.push_back(i);
Nate Begeman2c87c422009-02-23 08:49:38 +00004266 for (unsigned i = 4; i != 8; ++i) {
4267 int idx = MaskVals[i];
4268 if (idx < 0) {
Nate Begeman543d2142009-04-27 18:41:29 +00004269 MaskV.push_back(-1);
Nate Begeman2c87c422009-02-23 08:49:38 +00004270 InOrder.set(i);
4271 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman543d2142009-04-27 18:41:29 +00004272 MaskV.push_back((idx & 3) + 4);
Nate Begeman2c87c422009-02-23 08:49:38 +00004273 InOrder.set(i);
4274 } else {
Nate Begeman543d2142009-04-27 18:41:29 +00004275 MaskV.push_back(-1);
Nate Begeman2c87c422009-02-23 08:49:38 +00004276 }
4277 }
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004278 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman543d2142009-04-27 18:41:29 +00004279 &MaskV[0]);
Nate Begeman2c87c422009-02-23 08:49:38 +00004280 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004281
Nate Begeman2c87c422009-02-23 08:49:38 +00004282 // In case BestHi & BestLo were both -1, which means each quadword has a word
4283 // from each of the four input quadwords, calculate the InOrder bitvector now
4284 // before falling through to the insert/extract cleanup.
4285 if (BestLoQuad == -1 && BestHiQuad == -1) {
4286 NewV = V1;
4287 for (int i = 0; i != 8; ++i)
4288 if (MaskVals[i] < 0 || MaskVals[i] == i)
4289 InOrder.set(i);
4290 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004291
Nate Begeman2c87c422009-02-23 08:49:38 +00004292 // The other elements are put in the right place using pextrw and pinsrw.
4293 for (unsigned i = 0; i != 8; ++i) {
4294 if (InOrder[i])
4295 continue;
4296 int EltIdx = MaskVals[i];
4297 if (EltIdx < 0)
4298 continue;
4299 SDValue ExtOp = (EltIdx < 8)
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004300 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begeman2c87c422009-02-23 08:49:38 +00004301 DAG.getIntPtrConstant(EltIdx))
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004302 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begeman2c87c422009-02-23 08:49:38 +00004303 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004304 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begeman2c87c422009-02-23 08:49:38 +00004305 DAG.getIntPtrConstant(i));
4306 }
4307 return NewV;
4308}
4309
4310// v16i8 shuffles - Prefer shuffles in the following order:
4311// 1. [ssse3] 1 x pshufb
4312// 2. [ssse3] 2 x pshufb + 1 x por
4313// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
4314static
Nate Begeman543d2142009-04-27 18:41:29 +00004315SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmandbb121b2010-04-17 15:26:15 +00004316 SelectionDAG &DAG,
4317 const X86TargetLowering &TLI) {
Nate Begeman543d2142009-04-27 18:41:29 +00004318 SDValue V1 = SVOp->getOperand(0);
4319 SDValue V2 = SVOp->getOperand(1);
4320 DebugLoc dl = SVOp->getDebugLoc();
Nate Begeman2c87c422009-02-23 08:49:38 +00004321 SmallVector<int, 16> MaskVals;
Nate Begeman543d2142009-04-27 18:41:29 +00004322 SVOp->getMask(MaskVals);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004323
Nate Begeman2c87c422009-02-23 08:49:38 +00004324 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004325 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begeman2c87c422009-02-23 08:49:38 +00004326 // present, fall back to case 3.
4327 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
4328 bool V1Only = true;
4329 bool V2Only = true;
4330 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman543d2142009-04-27 18:41:29 +00004331 int EltIdx = MaskVals[i];
Nate Begeman2c87c422009-02-23 08:49:38 +00004332 if (EltIdx < 0)
4333 continue;
4334 if (EltIdx < 16)
4335 V2Only = false;
4336 else
4337 V1Only = false;
4338 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004339
Nate Begeman2c87c422009-02-23 08:49:38 +00004340 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
4341 if (TLI.getSubtarget()->hasSSSE3()) {
4342 SmallVector<SDValue,16> pshufbMask;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004343
Nate Begeman2c87c422009-02-23 08:49:38 +00004344 // If all result elements are from one input vector, then only translate
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004345 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begeman2c87c422009-02-23 08:49:38 +00004346 //
4347 // Otherwise, we have elements from both input vectors, and must zero out
4348 // elements that come from V2 in the first mask, and V1 in the second mask
4349 // so that we can OR them together.
4350 bool TwoInputs = !(V1Only || V2Only);
4351 for (unsigned i = 0; i != 16; ++i) {
4352 int EltIdx = MaskVals[i];
4353 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004354 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begeman2c87c422009-02-23 08:49:38 +00004355 continue;
4356 }
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004357 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begeman2c87c422009-02-23 08:49:38 +00004358 }
4359 // If all the elements are from V2, assign it to V1 and return after
4360 // building the first pshufb.
4361 if (V2Only)
4362 V1 = V2;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004363 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Cheng907a2d22009-02-25 22:49:59 +00004364 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004365 MVT::v16i8, &pshufbMask[0], 16));
Nate Begeman2c87c422009-02-23 08:49:38 +00004366 if (!TwoInputs)
4367 return V1;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004368
Nate Begeman2c87c422009-02-23 08:49:38 +00004369 // Calculate the shuffle mask for the second input, shuffle it, and
4370 // OR it with the first shuffled input.
4371 pshufbMask.clear();
4372 for (unsigned i = 0; i != 16; ++i) {
4373 int EltIdx = MaskVals[i];
4374 if (EltIdx < 16) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004375 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begeman2c87c422009-02-23 08:49:38 +00004376 continue;
4377 }
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004378 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begeman2c87c422009-02-23 08:49:38 +00004379 }
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004380 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Cheng907a2d22009-02-25 22:49:59 +00004381 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004382 MVT::v16i8, &pshufbMask[0], 16));
4383 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begeman2c87c422009-02-23 08:49:38 +00004384 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004385
Nate Begeman2c87c422009-02-23 08:49:38 +00004386 // No SSSE3 - Calculate in place words and then fix all out of place words
4387 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
4388 // the 16 different words that comprise the two doublequadword input vectors.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004389 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
4390 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V2);
Nate Begeman2c87c422009-02-23 08:49:38 +00004391 SDValue NewV = V2Only ? V2 : V1;
4392 for (int i = 0; i != 8; ++i) {
4393 int Elt0 = MaskVals[i*2];
4394 int Elt1 = MaskVals[i*2+1];
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004395
Nate Begeman2c87c422009-02-23 08:49:38 +00004396 // This word of the result is all undef, skip it.
4397 if (Elt0 < 0 && Elt1 < 0)
4398 continue;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004399
Nate Begeman2c87c422009-02-23 08:49:38 +00004400 // This word of the result is already in the correct place, skip it.
4401 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
4402 continue;
4403 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
4404 continue;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004405
Nate Begeman2c87c422009-02-23 08:49:38 +00004406 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
4407 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
4408 SDValue InsElt;
Mon P Wangd0cec7a2009-03-11 18:47:57 +00004409
4410 // If Elt0 and Elt1 are defined, are consecutive, and can be load
4411 // using a single extract together, load it and store it.
4412 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004413 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wangd0cec7a2009-03-11 18:47:57 +00004414 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004415 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wangd0cec7a2009-03-11 18:47:57 +00004416 DAG.getIntPtrConstant(i));
4417 continue;
4418 }
4419
Nate Begeman2c87c422009-02-23 08:49:38 +00004420 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wangd0cec7a2009-03-11 18:47:57 +00004421 // source byte is not also odd, shift the extracted word left 8 bits
4422 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begeman2c87c422009-02-23 08:49:38 +00004423 if (Elt1 >= 0) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004424 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begeman2c87c422009-02-23 08:49:38 +00004425 DAG.getIntPtrConstant(Elt1 / 2));
4426 if ((Elt1 & 1) == 0)
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004427 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Nate Begeman2c87c422009-02-23 08:49:38 +00004428 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wangd0cec7a2009-03-11 18:47:57 +00004429 else if (Elt0 >= 0)
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004430 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
4431 DAG.getConstant(0xFF00, MVT::i16));
Nate Begeman2c87c422009-02-23 08:49:38 +00004432 }
4433 // If Elt0 is defined, extract it from the appropriate source. If the
4434 // source byte is not also even, shift the extracted word right 8 bits. If
4435 // Elt1 was also defined, OR the extracted values together before
4436 // inserting them in the result.
4437 if (Elt0 >= 0) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004438 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begeman2c87c422009-02-23 08:49:38 +00004439 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
4440 if ((Elt0 & 1) != 0)
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004441 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Nate Begeman2c87c422009-02-23 08:49:38 +00004442 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wangd0cec7a2009-03-11 18:47:57 +00004443 else if (Elt1 >= 0)
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004444 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
4445 DAG.getConstant(0x00FF, MVT::i16));
4446 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begeman2c87c422009-02-23 08:49:38 +00004447 : InsElt0;
4448 }
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004449 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begeman2c87c422009-02-23 08:49:38 +00004450 DAG.getIntPtrConstant(i));
4451 }
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004452 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, NewV);
Evan Cheng75184a92007-12-11 01:46:18 +00004453}
4454
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004455/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
4456/// ones, or rewriting v4i32 / v2f32 as 2 wide ones if possible. This can be
4457/// done when every pair / quad of shuffle mask elements point to elements in
4458/// the right sequence. e.g.
Evan Cheng75184a92007-12-11 01:46:18 +00004459/// vector_shuffle <>, <>, < 3, 4, | 10, 11, | 0, 1, | 14, 15>
4460static
Nate Begeman543d2142009-04-27 18:41:29 +00004461SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
4462 SelectionDAG &DAG,
Dan Gohmandbb121b2010-04-17 15:26:15 +00004463 const TargetLowering &TLI, DebugLoc dl) {
Owen Andersonac9de032009-08-10 22:56:29 +00004464 EVT VT = SVOp->getValueType(0);
Nate Begeman543d2142009-04-27 18:41:29 +00004465 SDValue V1 = SVOp->getOperand(0);
4466 SDValue V2 = SVOp->getOperand(1);
4467 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004468 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004469 EVT MaskVT = MVT::getIntVectorWithNumElements(NewWidth);
Owen Andersonac9de032009-08-10 22:56:29 +00004470 EVT NewVT = MaskVT;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004471 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands92c43912008-06-06 12:08:01 +00004472 default: assert(false && "Unexpected!");
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004473 case MVT::v4f32: NewVT = MVT::v2f64; break;
4474 case MVT::v4i32: NewVT = MVT::v2i64; break;
4475 case MVT::v8i16: NewVT = MVT::v4i32; break;
4476 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004477 }
4478
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00004479 if (NewWidth == 2) {
Duncan Sands92c43912008-06-06 12:08:01 +00004480 if (VT.isInteger())
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004481 NewVT = MVT::v2i64;
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004482 else
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004483 NewVT = MVT::v2f64;
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +00004484 }
Nate Begeman543d2142009-04-27 18:41:29 +00004485 int Scale = NumElems / NewWidth;
4486 SmallVector<int, 8> MaskVec;
Evan Cheng75184a92007-12-11 01:46:18 +00004487 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman543d2142009-04-27 18:41:29 +00004488 int StartIdx = -1;
4489 for (int j = 0; j < Scale; ++j) {
4490 int EltIdx = SVOp->getMaskElt(i+j);
4491 if (EltIdx < 0)
Evan Cheng75184a92007-12-11 01:46:18 +00004492 continue;
Nate Begeman543d2142009-04-27 18:41:29 +00004493 if (StartIdx == -1)
Evan Cheng75184a92007-12-11 01:46:18 +00004494 StartIdx = EltIdx - (EltIdx % Scale);
4495 if (EltIdx != StartIdx + j)
Dan Gohman8181bd12008-07-27 21:46:04 +00004496 return SDValue();
Evan Cheng75184a92007-12-11 01:46:18 +00004497 }
Nate Begeman543d2142009-04-27 18:41:29 +00004498 if (StartIdx == -1)
4499 MaskVec.push_back(-1);
Evan Cheng75184a92007-12-11 01:46:18 +00004500 else
Nate Begeman543d2142009-04-27 18:41:29 +00004501 MaskVec.push_back(StartIdx / Scale);
Evan Chengfca29242007-12-07 08:07:39 +00004502 }
4503
Dale Johannesence0805b2009-02-03 19:33:06 +00004504 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V1);
4505 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V2);
Nate Begeman543d2142009-04-27 18:41:29 +00004506 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Chengfca29242007-12-07 08:07:39 +00004507}
4508
Evan Chenge9b9c672008-05-09 21:53:03 +00004509/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng40ee6e52008-05-08 00:57:18 +00004510///
Owen Andersonac9de032009-08-10 22:56:29 +00004511static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman543d2142009-04-27 18:41:29 +00004512 SDValue SrcOp, SelectionDAG &DAG,
4513 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004514 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00004515 LoadSDNode *LD = NULL;
Gabor Greif1c80d112008-08-28 21:40:38 +00004516 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng40ee6e52008-05-08 00:57:18 +00004517 LD = dyn_cast<LoadSDNode>(SrcOp);
4518 if (!LD) {
4519 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
4520 // instead.
Owen Anderson2dd68a22009-08-11 21:59:30 +00004521 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
4522 if ((ExtVT.SimpleTy != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng40ee6e52008-05-08 00:57:18 +00004523 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
4524 SrcOp.getOperand(0).getOpcode() == ISD::BIT_CONVERT &&
Owen Anderson2dd68a22009-08-11 21:59:30 +00004525 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00004526 // PR2108
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004527 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Dale Johannesence0805b2009-02-03 19:33:06 +00004528 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4529 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
4530 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
4531 OpVT,
Gabor Greif825aa892008-08-28 23:19:51 +00004532 SrcOp.getOperand(0)
4533 .getOperand(0))));
Evan Cheng40ee6e52008-05-08 00:57:18 +00004534 }
4535 }
4536 }
4537
Dale Johannesence0805b2009-02-03 19:33:06 +00004538 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4539 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Scott Michel91099d62009-02-17 22:15:04 +00004540 DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesence0805b2009-02-03 19:33:06 +00004541 OpVT, SrcOp)));
Evan Cheng40ee6e52008-05-08 00:57:18 +00004542}
4543
Evan Chengf50554e2008-07-22 21:13:36 +00004544/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
4545/// shuffles.
Dan Gohman8181bd12008-07-27 21:46:04 +00004546static SDValue
Nate Begeman543d2142009-04-27 18:41:29 +00004547LowerVECTOR_SHUFFLE_4wide(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
4548 SDValue V1 = SVOp->getOperand(0);
4549 SDValue V2 = SVOp->getOperand(1);
4550 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersonac9de032009-08-10 22:56:29 +00004551 EVT VT = SVOp->getValueType(0);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004552
Evan Chengf50554e2008-07-22 21:13:36 +00004553 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola4e3ff5a2008-08-28 18:32:53 +00004554 Locs.resize(4);
Nate Begeman543d2142009-04-27 18:41:29 +00004555 SmallVector<int, 8> Mask1(4U, -1);
4556 SmallVector<int, 8> PermMask;
4557 SVOp->getMask(PermMask);
4558
Evan Chengf50554e2008-07-22 21:13:36 +00004559 unsigned NumHi = 0;
4560 unsigned NumLo = 0;
Evan Chengf50554e2008-07-22 21:13:36 +00004561 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman543d2142009-04-27 18:41:29 +00004562 int Idx = PermMask[i];
4563 if (Idx < 0) {
Evan Chengf50554e2008-07-22 21:13:36 +00004564 Locs[i] = std::make_pair(-1, -1);
4565 } else {
Nate Begeman543d2142009-04-27 18:41:29 +00004566 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
4567 if (Idx < 4) {
Evan Chengf50554e2008-07-22 21:13:36 +00004568 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman543d2142009-04-27 18:41:29 +00004569 Mask1[NumLo] = Idx;
Evan Chengf50554e2008-07-22 21:13:36 +00004570 NumLo++;
4571 } else {
4572 Locs[i] = std::make_pair(1, NumHi);
4573 if (2+NumHi < 4)
Nate Begeman543d2142009-04-27 18:41:29 +00004574 Mask1[2+NumHi] = Idx;
Evan Chengf50554e2008-07-22 21:13:36 +00004575 NumHi++;
4576 }
4577 }
4578 }
Evan Cheng3cae0332008-07-23 00:22:17 +00004579
Evan Chengf50554e2008-07-22 21:13:36 +00004580 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng3cae0332008-07-23 00:22:17 +00004581 // If no more than two elements come from either vector. This can be
4582 // implemented with two shuffles. First shuffle gather the elements.
4583 // The second shuffle, which takes the first shuffle as both of its
4584 // vector operands, put the elements into the right order.
Nate Begeman543d2142009-04-27 18:41:29 +00004585 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng3cae0332008-07-23 00:22:17 +00004586
Nate Begeman543d2142009-04-27 18:41:29 +00004587 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004588
Evan Chengf50554e2008-07-22 21:13:36 +00004589 for (unsigned i = 0; i != 4; ++i) {
4590 if (Locs[i].first == -1)
4591 continue;
4592 else {
4593 unsigned Idx = (i < 2) ? 0 : 4;
4594 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman543d2142009-04-27 18:41:29 +00004595 Mask2[i] = Idx;
Evan Chengf50554e2008-07-22 21:13:36 +00004596 }
4597 }
4598
Nate Begeman543d2142009-04-27 18:41:29 +00004599 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng3cae0332008-07-23 00:22:17 +00004600 } else if (NumLo == 3 || NumHi == 3) {
4601 // Otherwise, we must have three elements from one vector, call it X, and
4602 // one element from the other, call it Y. First, use a shufps to build an
4603 // intermediate vector with the one element from Y and the element from X
4604 // that will be in the same half in the final destination (the indexes don't
4605 // matter). Then, use a shufps to build the final vector, taking the half
4606 // containing the element from Y from the intermediate, and the other half
4607 // from X.
4608 if (NumHi == 3) {
4609 // Normalize it so the 3 elements come from V1.
Nate Begeman543d2142009-04-27 18:41:29 +00004610 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng3cae0332008-07-23 00:22:17 +00004611 std::swap(V1, V2);
4612 }
4613
4614 // Find the element from V2.
4615 unsigned HiIndex;
4616 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman543d2142009-04-27 18:41:29 +00004617 int Val = PermMask[HiIndex];
4618 if (Val < 0)
Evan Cheng3cae0332008-07-23 00:22:17 +00004619 continue;
Evan Cheng3cae0332008-07-23 00:22:17 +00004620 if (Val >= 4)
4621 break;
4622 }
4623
Nate Begeman543d2142009-04-27 18:41:29 +00004624 Mask1[0] = PermMask[HiIndex];
4625 Mask1[1] = -1;
4626 Mask1[2] = PermMask[HiIndex^1];
4627 Mask1[3] = -1;
4628 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng3cae0332008-07-23 00:22:17 +00004629
4630 if (HiIndex >= 2) {
Nate Begeman543d2142009-04-27 18:41:29 +00004631 Mask1[0] = PermMask[0];
4632 Mask1[1] = PermMask[1];
4633 Mask1[2] = HiIndex & 1 ? 6 : 4;
4634 Mask1[3] = HiIndex & 1 ? 4 : 6;
4635 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng3cae0332008-07-23 00:22:17 +00004636 } else {
Nate Begeman543d2142009-04-27 18:41:29 +00004637 Mask1[0] = HiIndex & 1 ? 2 : 0;
4638 Mask1[1] = HiIndex & 1 ? 0 : 2;
4639 Mask1[2] = PermMask[2];
4640 Mask1[3] = PermMask[3];
4641 if (Mask1[2] >= 0)
4642 Mask1[2] += 4;
4643 if (Mask1[3] >= 0)
4644 Mask1[3] += 4;
4645 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng3cae0332008-07-23 00:22:17 +00004646 }
Evan Chengf50554e2008-07-22 21:13:36 +00004647 }
4648
4649 // Break it into (shuffle shuffle_hi, shuffle_lo).
4650 Locs.clear();
Nate Begeman543d2142009-04-27 18:41:29 +00004651 SmallVector<int,8> LoMask(4U, -1);
4652 SmallVector<int,8> HiMask(4U, -1);
4653
4654 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengf50554e2008-07-22 21:13:36 +00004655 unsigned MaskIdx = 0;
4656 unsigned LoIdx = 0;
4657 unsigned HiIdx = 2;
4658 for (unsigned i = 0; i != 4; ++i) {
4659 if (i == 2) {
4660 MaskPtr = &HiMask;
4661 MaskIdx = 1;
4662 LoIdx = 0;
4663 HiIdx = 2;
4664 }
Nate Begeman543d2142009-04-27 18:41:29 +00004665 int Idx = PermMask[i];
4666 if (Idx < 0) {
Evan Chengf50554e2008-07-22 21:13:36 +00004667 Locs[i] = std::make_pair(-1, -1);
Nate Begeman543d2142009-04-27 18:41:29 +00004668 } else if (Idx < 4) {
Evan Chengf50554e2008-07-22 21:13:36 +00004669 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman543d2142009-04-27 18:41:29 +00004670 (*MaskPtr)[LoIdx] = Idx;
Evan Chengf50554e2008-07-22 21:13:36 +00004671 LoIdx++;
4672 } else {
4673 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman543d2142009-04-27 18:41:29 +00004674 (*MaskPtr)[HiIdx] = Idx;
Evan Chengf50554e2008-07-22 21:13:36 +00004675 HiIdx++;
4676 }
4677 }
4678
Nate Begeman543d2142009-04-27 18:41:29 +00004679 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
4680 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
4681 SmallVector<int, 8> MaskOps;
Evan Chengf50554e2008-07-22 21:13:36 +00004682 for (unsigned i = 0; i != 4; ++i) {
4683 if (Locs[i].first == -1) {
Nate Begeman543d2142009-04-27 18:41:29 +00004684 MaskOps.push_back(-1);
Evan Chengf50554e2008-07-22 21:13:36 +00004685 } else {
4686 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman543d2142009-04-27 18:41:29 +00004687 MaskOps.push_back(Idx);
Evan Chengf50554e2008-07-22 21:13:36 +00004688 }
4689 }
Nate Begeman543d2142009-04-27 18:41:29 +00004690 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengf50554e2008-07-22 21:13:36 +00004691}
4692
Dan Gohman8181bd12008-07-27 21:46:04 +00004693SDValue
Dan Gohmandbb121b2010-04-17 15:26:15 +00004694X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman543d2142009-04-27 18:41:29 +00004695 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman8181bd12008-07-27 21:46:04 +00004696 SDValue V1 = Op.getOperand(0);
4697 SDValue V2 = Op.getOperand(1);
Owen Andersonac9de032009-08-10 22:56:29 +00004698 EVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004699 DebugLoc dl = Op.getDebugLoc();
Nate Begeman543d2142009-04-27 18:41:29 +00004700 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands92c43912008-06-06 12:08:01 +00004701 bool isMMX = VT.getSizeInBits() == 64;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004702 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
4703 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
4704 bool V1IsSplat = false;
4705 bool V2IsSplat = false;
4706
Nate Begeman543d2142009-04-27 18:41:29 +00004707 if (isZeroShuffle(SVOp))
Dale Johannesence0805b2009-02-03 19:33:06 +00004708 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004709
Nate Begeman543d2142009-04-27 18:41:29 +00004710 // Promote splats to v4f32.
4711 if (SVOp->isSplat()) {
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004712 if (isMMX || NumElems < 4)
Nate Begeman543d2142009-04-27 18:41:29 +00004713 return Op;
4714 return PromoteSplat(SVOp, DAG, Subtarget->hasSSE2());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004715 }
4716
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004717 // If the shuffle can be profitably rewritten as a narrower shuffle, then
4718 // do it!
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004719 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
Nate Begeman543d2142009-04-27 18:41:29 +00004720 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, *this, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004721 if (NewOp.getNode())
Scott Michel91099d62009-02-17 22:15:04 +00004722 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
Dale Johannesence0805b2009-02-03 19:33:06 +00004723 LowerVECTOR_SHUFFLE(NewOp, DAG));
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004724 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004725 // FIXME: Figure out a cleaner way to do this.
4726 // Try to make use of movq to zero out the top part.
Gabor Greif1c80d112008-08-28 21:40:38 +00004727 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
Nate Begeman543d2142009-04-27 18:41:29 +00004728 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, *this, dl);
Gabor Greif1c80d112008-08-28 21:40:38 +00004729 if (NewOp.getNode()) {
Nate Begeman543d2142009-04-27 18:41:29 +00004730 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
4731 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
4732 DAG, Subtarget, dl);
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004733 }
Gabor Greif1c80d112008-08-28 21:40:38 +00004734 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
Nate Begeman543d2142009-04-27 18:41:29 +00004735 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, *this, dl);
4736 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
Evan Chenge9b9c672008-05-09 21:53:03 +00004737 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
Nate Begeman543d2142009-04-27 18:41:29 +00004738 DAG, Subtarget, dl);
Evan Cheng15e8f5a2007-12-15 03:00:47 +00004739 }
4740 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004741
Nate Begeman543d2142009-04-27 18:41:29 +00004742 if (X86::isPSHUFDMask(SVOp))
4743 return Op;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004744
Evan Chengdea99362008-05-29 08:22:04 +00004745 // Check if this can be converted into a logical shift.
4746 bool isLeft = false;
4747 unsigned ShAmt = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00004748 SDValue ShVal;
Nate Begeman543d2142009-04-27 18:41:29 +00004749 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chenge31a26a2009-12-09 21:00:30 +00004750 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengdea99362008-05-29 08:22:04 +00004751 if (isShift && ShVal.hasOneUse()) {
Scott Michel91099d62009-02-17 22:15:04 +00004752 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengdea99362008-05-29 08:22:04 +00004753 // v_set0 + movlhps or movhlps, etc.
Dan Gohman3bab1f72009-09-23 21:02:20 +00004754 EVT EltVT = VT.getVectorElementType();
4755 ShAmt *= EltVT.getSizeInBits();
Dale Johannesence0805b2009-02-03 19:33:06 +00004756 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengdea99362008-05-29 08:22:04 +00004757 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004758
Nate Begeman543d2142009-04-27 18:41:29 +00004759 if (X86::isMOVLMask(SVOp)) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00004760 if (V1IsUndef)
4761 return V2;
Gabor Greif1c80d112008-08-28 21:40:38 +00004762 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesence0805b2009-02-03 19:33:06 +00004763 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Nate Begeman6357f9d2008-07-25 19:05:58 +00004764 if (!isMMX)
4765 return Op;
Evan Cheng40ee6e52008-05-08 00:57:18 +00004766 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004767
Nate Begeman543d2142009-04-27 18:41:29 +00004768 // FIXME: fold these into legal mask.
4769 if (!isMMX && (X86::isMOVSHDUPMask(SVOp) ||
4770 X86::isMOVSLDUPMask(SVOp) ||
4771 X86::isMOVHLPSMask(SVOp) ||
Nate Begemanb13034d2009-11-07 23:17:15 +00004772 X86::isMOVLHPSMask(SVOp) ||
Nate Begeman543d2142009-04-27 18:41:29 +00004773 X86::isMOVLPMask(SVOp)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004774 return Op;
4775
Nate Begeman543d2142009-04-27 18:41:29 +00004776 if (ShouldXformToMOVHLPS(SVOp) ||
4777 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
4778 return CommuteVectorShuffle(SVOp, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004779
Evan Chengdea99362008-05-29 08:22:04 +00004780 if (isShift) {
4781 // No better options. Use a vshl / vsrl.
Dan Gohman3bab1f72009-09-23 21:02:20 +00004782 EVT EltVT = VT.getVectorElementType();
4783 ShAmt *= EltVT.getSizeInBits();
Dale Johannesence0805b2009-02-03 19:33:06 +00004784 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengdea99362008-05-29 08:22:04 +00004785 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004786
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004787 bool Commuted = false;
Chris Lattnere6aa3862007-11-25 00:24:49 +00004788 // FIXME: This should also accept a bitcast of a splat? Be careful, not
4789 // 1,1,1,1 -> v8i16 though.
Gabor Greif1c80d112008-08-28 21:40:38 +00004790 V1IsSplat = isSplatVector(V1.getNode());
4791 V2IsSplat = isSplatVector(V2.getNode());
Scott Michel91099d62009-02-17 22:15:04 +00004792
Chris Lattnere6aa3862007-11-25 00:24:49 +00004793 // Canonicalize the splat or undef, if present, to be on the RHS.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004794 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman543d2142009-04-27 18:41:29 +00004795 Op = CommuteVectorShuffle(SVOp, DAG);
4796 SVOp = cast<ShuffleVectorSDNode>(Op);
4797 V1 = SVOp->getOperand(0);
4798 V2 = SVOp->getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004799 std::swap(V1IsSplat, V2IsSplat);
4800 std::swap(V1IsUndef, V2IsUndef);
4801 Commuted = true;
4802 }
4803
Nate Begeman543d2142009-04-27 18:41:29 +00004804 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
4805 // Shuffling low element of v1 into undef, just return v1.
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004806 if (V2IsUndef)
Nate Begeman543d2142009-04-27 18:41:29 +00004807 return V1;
4808 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
4809 // the instruction selector will not match, so get a canonical MOVL with
4810 // swapped operands to undo the commute.
4811 return getMOVL(DAG, dl, VT, V2, V1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004812 }
4813
Nate Begeman543d2142009-04-27 18:41:29 +00004814 if (X86::isUNPCKL_v_undef_Mask(SVOp) ||
4815 X86::isUNPCKH_v_undef_Mask(SVOp) ||
4816 X86::isUNPCKLMask(SVOp) ||
4817 X86::isUNPCKHMask(SVOp))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004818 return Op;
4819
4820 if (V2IsSplat) {
4821 // Normalize mask so all entries that point to V2 points to its first
4822 // element then try to match unpck{h|l} again. If match, return a
4823 // new vector_shuffle with the corrected mask.
Nate Begeman543d2142009-04-27 18:41:29 +00004824 SDValue NewMask = NormalizeMask(SVOp, DAG);
4825 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
4826 if (NSVOp != SVOp) {
4827 if (X86::isUNPCKLMask(NSVOp, true)) {
4828 return NewMask;
4829 } else if (X86::isUNPCKHMask(NSVOp, true)) {
4830 return NewMask;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004831 }
4832 }
4833 }
4834
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004835 if (Commuted) {
4836 // Commute is back and try unpck* again.
Nate Begeman543d2142009-04-27 18:41:29 +00004837 // FIXME: this seems wrong.
4838 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
4839 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
4840 if (X86::isUNPCKL_v_undef_Mask(NewSVOp) ||
4841 X86::isUNPCKH_v_undef_Mask(NewSVOp) ||
4842 X86::isUNPCKLMask(NewSVOp) ||
4843 X86::isUNPCKHMask(NewSVOp))
4844 return NewOp;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004845 }
4846
Nate Begeman2c87c422009-02-23 08:49:38 +00004847 // FIXME: for mmx, bitcast v2i32 to v4i16 for shuffle.
Nate Begeman543d2142009-04-27 18:41:29 +00004848
4849 // Normalize the node to match x86 shuffle ops if needed
4850 if (!isMMX && V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
4851 return CommuteVectorShuffle(SVOp, DAG);
4852
4853 // Check for legal shuffle and return?
4854 SmallVector<int, 16> PermMask;
4855 SVOp->getMask(PermMask);
4856 if (isShuffleMaskLegal(PermMask, VT))
Evan Chengbf8b2c52008-04-05 00:30:36 +00004857 return Op;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004858
Evan Cheng75184a92007-12-11 01:46:18 +00004859 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004860 if (VT == MVT::v8i16) {
Nate Begeman543d2142009-04-27 18:41:29 +00004861 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(SVOp, DAG, *this);
Gabor Greif1c80d112008-08-28 21:40:38 +00004862 if (NewOp.getNode())
Evan Cheng75184a92007-12-11 01:46:18 +00004863 return NewOp;
4864 }
4865
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004866 if (VT == MVT::v16i8) {
Nate Begeman543d2142009-04-27 18:41:29 +00004867 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
Nate Begeman2c87c422009-02-23 08:49:38 +00004868 if (NewOp.getNode())
4869 return NewOp;
4870 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004871
Evan Chengf50554e2008-07-22 21:13:36 +00004872 // Handle all 4 wide cases with a number of shuffles except for MMX.
4873 if (NumElems == 4 && !isMMX)
Nate Begeman543d2142009-04-27 18:41:29 +00004874 return LowerVECTOR_SHUFFLE_4wide(SVOp, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004875
Dan Gohman8181bd12008-07-27 21:46:04 +00004876 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004877}
4878
Dan Gohman8181bd12008-07-27 21:46:04 +00004879SDValue
4880X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmandbb121b2010-04-17 15:26:15 +00004881 SelectionDAG &DAG) const {
Owen Andersonac9de032009-08-10 22:56:29 +00004882 EVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004883 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00004884 if (VT.getSizeInBits() == 8) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004885 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begemand77e59e2008-02-11 04:19:36 +00004886 Op.getOperand(0), Op.getOperand(1));
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004887 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begemand77e59e2008-02-11 04:19:36 +00004888 DAG.getValueType(VT));
Dale Johannesence0805b2009-02-03 19:33:06 +00004889 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands92c43912008-06-06 12:08:01 +00004890 } else if (VT.getSizeInBits() == 16) {
Evan Chengf9393b32009-01-02 05:29:08 +00004891 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
4892 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
4893 if (Idx == 0)
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004894 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
4895 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Dale Johannesence0805b2009-02-03 19:33:06 +00004896 DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004897 MVT::v4i32,
Evan Chengf9393b32009-01-02 05:29:08 +00004898 Op.getOperand(0)),
4899 Op.getOperand(1)));
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004900 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begemand77e59e2008-02-11 04:19:36 +00004901 Op.getOperand(0), Op.getOperand(1));
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004902 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begemand77e59e2008-02-11 04:19:36 +00004903 DAG.getValueType(VT));
Dale Johannesence0805b2009-02-03 19:33:06 +00004904 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004905 } else if (VT == MVT::f32) {
Evan Cheng6c249332008-03-24 21:52:23 +00004906 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
4907 // the result back to FR32 register. It's only worth matching if the
Dan Gohman9fdd0142008-10-31 00:57:24 +00004908 // result has a single use which is a store or a bitcast to i32. And in
4909 // the case of a store, it's not worth it if the index is a constant 0,
4910 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng6c249332008-03-24 21:52:23 +00004911 if (!Op.hasOneUse())
Dan Gohman8181bd12008-07-27 21:46:04 +00004912 return SDValue();
Gabor Greif1c80d112008-08-28 21:40:38 +00004913 SDNode *User = *Op.getNode()->use_begin();
Dan Gohman9fdd0142008-10-31 00:57:24 +00004914 if ((User->getOpcode() != ISD::STORE ||
4915 (isa<ConstantSDNode>(Op.getOperand(1)) &&
4916 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Dan Gohman788db592008-04-16 02:32:24 +00004917 (User->getOpcode() != ISD::BIT_CONVERT ||
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004918 User->getValueType(0) != MVT::i32))
Dan Gohman8181bd12008-07-27 21:46:04 +00004919 return SDValue();
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004920 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
4921 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32,
Dale Johannesence0805b2009-02-03 19:33:06 +00004922 Op.getOperand(0)),
4923 Op.getOperand(1));
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004924 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, Extract);
4925 } else if (VT == MVT::i32) {
Mon P Wangac2a3c52009-01-15 21:10:20 +00004926 // ExtractPS works with constant index.
4927 if (isa<ConstantSDNode>(Op.getOperand(1)))
4928 return Op;
Nate Begemand77e59e2008-02-11 04:19:36 +00004929 }
Dan Gohman8181bd12008-07-27 21:46:04 +00004930 return SDValue();
Nate Begemand77e59e2008-02-11 04:19:36 +00004931}
4932
4933
Dan Gohman8181bd12008-07-27 21:46:04 +00004934SDValue
Dan Gohmandbb121b2010-04-17 15:26:15 +00004935X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
4936 SelectionDAG &DAG) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004937 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman8181bd12008-07-27 21:46:04 +00004938 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004939
Evan Cheng6c249332008-03-24 21:52:23 +00004940 if (Subtarget->hasSSE41()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004941 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004942 if (Res.getNode())
Evan Cheng6c249332008-03-24 21:52:23 +00004943 return Res;
4944 }
Nate Begemand77e59e2008-02-11 04:19:36 +00004945
Owen Andersonac9de032009-08-10 22:56:29 +00004946 EVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00004947 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004948 // TODO: handle v16i8.
Duncan Sands92c43912008-06-06 12:08:01 +00004949 if (VT.getSizeInBits() == 16) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004950 SDValue Vec = Op.getOperand(0);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004951 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng75184a92007-12-11 01:46:18 +00004952 if (Idx == 0)
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004953 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
4954 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Scott Michel91099d62009-02-17 22:15:04 +00004955 DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00004956 MVT::v4i32, Vec),
Evan Cheng75184a92007-12-11 01:46:18 +00004957 Op.getOperand(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004958 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck5d3fa642009-12-17 15:31:52 +00004959 EVT EltVT = MVT::i32;
Dan Gohman3bab1f72009-09-23 21:02:20 +00004960 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004961 Op.getOperand(0), Op.getOperand(1));
Dan Gohman3bab1f72009-09-23 21:02:20 +00004962 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004963 DAG.getValueType(VT));
Dale Johannesence0805b2009-02-03 19:33:06 +00004964 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands92c43912008-06-06 12:08:01 +00004965 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004966 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004967 if (Idx == 0)
4968 return Op;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004969
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004970 // SHUFPS the element to the lowest double word, then movss.
Nate Begeman543d2142009-04-27 18:41:29 +00004971 int Mask[4] = { Idx, -1, -1, -1 };
Owen Andersonac9de032009-08-10 22:56:29 +00004972 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004973 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman543d2142009-04-27 18:41:29 +00004974 DAG.getUNDEF(VVT), Mask);
Dale Johannesence0805b2009-02-03 19:33:06 +00004975 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner5872a362008-01-17 07:00:52 +00004976 DAG.getIntPtrConstant(0));
Duncan Sands92c43912008-06-06 12:08:01 +00004977 } else if (VT.getSizeInBits() == 64) {
Nate Begemand77e59e2008-02-11 04:19:36 +00004978 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
4979 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
4980 // to match extract_elt for f64.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004981 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004982 if (Idx == 0)
4983 return Op;
4984
4985 // UNPCKHPD the element to the lowest double word, then movsd.
4986 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
4987 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman543d2142009-04-27 18:41:29 +00004988 int Mask[2] = { 1, -1 };
Owen Andersonac9de032009-08-10 22:56:29 +00004989 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopher3d82bbd2009-08-27 18:07:15 +00004990 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman543d2142009-04-27 18:41:29 +00004991 DAG.getUNDEF(VVT), Mask);
Dale Johannesence0805b2009-02-03 19:33:06 +00004992 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner5872a362008-01-17 07:00:52 +00004993 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004994 }
4995
Dan Gohman8181bd12008-07-27 21:46:04 +00004996 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004997}
4998
Dan Gohman8181bd12008-07-27 21:46:04 +00004999SDValue
Dan Gohmandbb121b2010-04-17 15:26:15 +00005000X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
5001 SelectionDAG &DAG) const {
Owen Andersonac9de032009-08-10 22:56:29 +00005002 EVT VT = Op.getValueType();
Dan Gohman3bab1f72009-09-23 21:02:20 +00005003 EVT EltVT = VT.getVectorElementType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005004 DebugLoc dl = Op.getDebugLoc();
Nate Begemand77e59e2008-02-11 04:19:36 +00005005
Dan Gohman8181bd12008-07-27 21:46:04 +00005006 SDValue N0 = Op.getOperand(0);
5007 SDValue N1 = Op.getOperand(1);
5008 SDValue N2 = Op.getOperand(2);
Nate Begemand77e59e2008-02-11 04:19:36 +00005009
Dan Gohman3bab1f72009-09-23 21:02:20 +00005010 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohman5a7af042008-08-14 22:53:18 +00005011 isa<ConstantSDNode>(N2)) {
Chris Lattner5fc65c52010-02-23 02:07:48 +00005012 unsigned Opc;
5013 if (VT == MVT::v8i16)
5014 Opc = X86ISD::PINSRW;
5015 else if (VT == MVT::v4i16)
5016 Opc = X86ISD::MMX_PINSRW;
5017 else if (VT == MVT::v16i8)
5018 Opc = X86ISD::PINSRB;
5019 else
5020 Opc = X86ISD::PINSRB;
5021
Nate Begemand77e59e2008-02-11 04:19:36 +00005022 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
5023 // argument.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005024 if (N1.getValueType() != MVT::i32)
5025 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
5026 if (N2.getValueType() != MVT::i32)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005027 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesence0805b2009-02-03 19:33:06 +00005028 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman3bab1f72009-09-23 21:02:20 +00005029 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begemand77e59e2008-02-11 04:19:36 +00005030 // Bits [7:6] of the constant are the source select. This will always be
5031 // zero here. The DAG Combiner may combine an extract_elt index into these
5032 // bits. For example (insert (extract, 3), 2) could be matched by putting
5033 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michel91099d62009-02-17 22:15:04 +00005034 // Bits [5:4] of the constant are the destination select. This is the
Nate Begemand77e59e2008-02-11 04:19:36 +00005035 // value of the incoming immediate.
Scott Michel91099d62009-02-17 22:15:04 +00005036 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begemand77e59e2008-02-11 04:19:36 +00005037 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005038 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherefb657e2009-07-24 00:33:09 +00005039 // Create this as a scalar to vector..
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005040 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesence0805b2009-02-03 19:33:06 +00005041 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman3bab1f72009-09-23 21:02:20 +00005042 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherefb657e2009-07-24 00:33:09 +00005043 // PINSR* works with constant index.
5044 return Op;
Nate Begemand77e59e2008-02-11 04:19:36 +00005045 }
Dan Gohman8181bd12008-07-27 21:46:04 +00005046 return SDValue();
Nate Begemand77e59e2008-02-11 04:19:36 +00005047}
5048
Dan Gohman8181bd12008-07-27 21:46:04 +00005049SDValue
Dan Gohmandbb121b2010-04-17 15:26:15 +00005050X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersonac9de032009-08-10 22:56:29 +00005051 EVT VT = Op.getValueType();
Dan Gohman3bab1f72009-09-23 21:02:20 +00005052 EVT EltVT = VT.getVectorElementType();
Nate Begemand77e59e2008-02-11 04:19:36 +00005053
5054 if (Subtarget->hasSSE41())
5055 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
5056
Dan Gohman3bab1f72009-09-23 21:02:20 +00005057 if (EltVT == MVT::i8)
Dan Gohman8181bd12008-07-27 21:46:04 +00005058 return SDValue();
Evan Chenge12a7eb2007-12-12 07:55:34 +00005059
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005060 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00005061 SDValue N0 = Op.getOperand(0);
5062 SDValue N1 = Op.getOperand(1);
5063 SDValue N2 = Op.getOperand(2);
Evan Chenge12a7eb2007-12-12 07:55:34 +00005064
Dan Gohman3bab1f72009-09-23 21:02:20 +00005065 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Chenge12a7eb2007-12-12 07:55:34 +00005066 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
5067 // as its second argument.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005068 if (N1.getValueType() != MVT::i32)
5069 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
5070 if (N2.getValueType() != MVT::i32)
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005071 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Chris Lattner5fc65c52010-02-23 02:07:48 +00005072 return DAG.getNode(VT == MVT::v8i16 ? X86ISD::PINSRW : X86ISD::MMX_PINSRW,
5073 dl, VT, N0, N1, N2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005074 }
Dan Gohman8181bd12008-07-27 21:46:04 +00005075 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005076}
5077
Dan Gohman8181bd12008-07-27 21:46:04 +00005078SDValue
Dan Gohmandbb121b2010-04-17 15:26:15 +00005079X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005080 DebugLoc dl = Op.getDebugLoc();
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005081 if (Op.getValueType() == MVT::v2f32)
5082 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f32,
5083 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i32,
5084 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32,
Evan Cheng759fe022008-07-22 18:39:19 +00005085 Op.getOperand(0))));
5086
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005087 if (Op.getValueType() == MVT::v1i64 && Op.getOperand(0).getValueType() == MVT::i64)
5088 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindolafe2a3972009-08-03 02:45:34 +00005089
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005090 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
5091 EVT VT = MVT::v2i32;
5092 switch (Op.getValueType().getSimpleVT().SimpleTy) {
Evan Chengd1045a62008-02-18 23:04:32 +00005093 default: break;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005094 case MVT::v16i8:
5095 case MVT::v8i16:
5096 VT = MVT::v4i32;
Evan Chengd1045a62008-02-18 23:04:32 +00005097 break;
5098 }
Dale Johannesence0805b2009-02-03 19:33:06 +00005099 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(),
5100 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, AnyExt));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005101}
5102
Bill Wendlingfef06052008-09-16 21:48:12 +00005103// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
5104// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
5105// one of the above mentioned nodes. It has to be wrapped because otherwise
5106// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
5107// be used to form addressing mode. These wrapped nodes will be selected
5108// into MOV32ri.
Dan Gohman8181bd12008-07-27 21:46:04 +00005109SDValue
Dan Gohmandbb121b2010-04-17 15:26:15 +00005110X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005111 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00005112
Chris Lattner5062b3b2009-06-26 19:22:52 +00005113 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5114 // global base reg.
5115 unsigned char OpFlag = 0;
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005116 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovc283e152009-08-05 23:01:26 +00005117 CodeModel::Model M = getTargetMachine().getCodeModel();
5118
Chris Lattner28d40c62009-07-11 20:29:19 +00005119 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovc283e152009-08-05 23:01:26 +00005120 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattneraa7c6d22009-07-09 03:15:51 +00005121 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner4a948932009-07-10 20:47:30 +00005122 else if (Subtarget->isPICStyleGOT())
Chris Lattnerf165d342009-07-09 04:24:46 +00005123 OpFlag = X86II::MO_GOTOFF;
Chris Lattner2e9393c2009-07-10 21:00:45 +00005124 else if (Subtarget->isPICStyleStubPIC())
Chris Lattnerf165d342009-07-09 04:24:46 +00005125 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00005126
Evan Cheng68c18682009-03-13 07:51:59 +00005127 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner5062b3b2009-06-26 19:22:52 +00005128 CP->getAlignment(),
5129 CP->getOffset(), OpFlag);
5130 DebugLoc DL = CP->getDebugLoc();
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005131 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005132 // With PIC, the address is actually $g + Offset.
Chris Lattner5062b3b2009-06-26 19:22:52 +00005133 if (OpFlag) {
5134 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesen24dd9a52009-02-07 00:55:49 +00005135 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerd2c680b2010-04-02 20:16:16 +00005136 DebugLoc(), getPointerTy()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005137 Result);
5138 }
5139
5140 return Result;
5141}
5142
Dan Gohmandbb121b2010-04-17 15:26:15 +00005143SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005144 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00005145
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005146 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5147 // global base reg.
5148 unsigned char OpFlag = 0;
5149 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovc283e152009-08-05 23:01:26 +00005150 CodeModel::Model M = getTargetMachine().getCodeModel();
5151
Chris Lattner28d40c62009-07-11 20:29:19 +00005152 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovc283e152009-08-05 23:01:26 +00005153 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattneraa7c6d22009-07-09 03:15:51 +00005154 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner4a948932009-07-10 20:47:30 +00005155 else if (Subtarget->isPICStyleGOT())
Chris Lattnerf165d342009-07-09 04:24:46 +00005156 OpFlag = X86II::MO_GOTOFF;
Chris Lattner2e9393c2009-07-10 21:00:45 +00005157 else if (Subtarget->isPICStyleStubPIC())
Chris Lattnerf165d342009-07-09 04:24:46 +00005158 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00005159
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005160 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
5161 OpFlag);
5162 DebugLoc DL = JT->getDebugLoc();
5163 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00005164
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005165 // With PIC, the address is actually $g + Offset.
5166 if (OpFlag) {
5167 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
5168 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerd2c680b2010-04-02 20:16:16 +00005169 DebugLoc(), getPointerTy()),
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005170 Result);
5171 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00005172
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005173 return Result;
5174}
5175
5176SDValue
Dan Gohmandbb121b2010-04-17 15:26:15 +00005177X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005178 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopher3d82bbd2009-08-27 18:07:15 +00005179
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005180 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5181 // global base reg.
5182 unsigned char OpFlag = 0;
5183 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovc283e152009-08-05 23:01:26 +00005184 CodeModel::Model M = getTargetMachine().getCodeModel();
5185
Chris Lattner28d40c62009-07-11 20:29:19 +00005186 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovc283e152009-08-05 23:01:26 +00005187 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattneraa7c6d22009-07-09 03:15:51 +00005188 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner4a948932009-07-10 20:47:30 +00005189 else if (Subtarget->isPICStyleGOT())
Chris Lattnerf165d342009-07-09 04:24:46 +00005190 OpFlag = X86II::MO_GOTOFF;
Chris Lattner2e9393c2009-07-10 21:00:45 +00005191 else if (Subtarget->isPICStyleStubPIC())
Chris Lattnerf165d342009-07-09 04:24:46 +00005192 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00005193
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005194 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00005195
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005196 DebugLoc DL = Op.getDebugLoc();
5197 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00005198
5199
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005200 // With PIC, the address is actually $g + Offset.
5201 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattneraa7c6d22009-07-09 03:15:51 +00005202 !Subtarget->is64Bit()) {
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005203 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
5204 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerd2c680b2010-04-02 20:16:16 +00005205 DebugLoc(), getPointerTy()),
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005206 Result);
5207 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00005208
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005209 return Result;
5210}
5211
Dan Gohman8181bd12008-07-27 21:46:04 +00005212SDValue
Dan Gohmandbb121b2010-04-17 15:26:15 +00005213X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman885793b2009-11-20 23:18:13 +00005214 // Create the TargetBlockAddressAddress node.
5215 unsigned char OpFlags =
5216 Subtarget->ClassifyBlockAddressReference();
Dan Gohman064403e2009-10-30 01:28:02 +00005217 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman36c56d02010-04-15 01:51:59 +00005218 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman885793b2009-11-20 23:18:13 +00005219 DebugLoc dl = Op.getDebugLoc();
5220 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
5221 /*isTarget=*/true, OpFlags);
5222
Dan Gohman064403e2009-10-30 01:28:02 +00005223 if (Subtarget->isPICStyleRIPRel() &&
5224 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman885793b2009-11-20 23:18:13 +00005225 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
5226 else
5227 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman064403e2009-10-30 01:28:02 +00005228
Dan Gohman885793b2009-11-20 23:18:13 +00005229 // With PIC, the address is actually $g + Offset.
5230 if (isGlobalRelativeToPICBase(OpFlags)) {
5231 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
5232 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
5233 Result);
5234 }
Dan Gohman064403e2009-10-30 01:28:02 +00005235
5236 return Result;
5237}
5238
5239SDValue
Dale Johannesenea996922009-02-04 20:06:27 +00005240X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman36322c72008-10-18 02:06:02 +00005241 int64_t Offset,
Evan Cheng7f250d62008-09-24 00:05:32 +00005242 SelectionDAG &DAG) const {
Dan Gohman36322c72008-10-18 02:06:02 +00005243 // Create the TargetGlobalAddress node, folding in the constant
5244 // offset if it is legal.
Chris Lattner505aa6c2009-07-10 07:20:05 +00005245 unsigned char OpFlags =
5246 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovc283e152009-08-05 23:01:26 +00005247 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman36322c72008-10-18 02:06:02 +00005248 SDValue Result;
Anton Korobeynikovc283e152009-08-05 23:01:26 +00005249 if (OpFlags == X86II::MO_NO_FLAG &&
5250 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner9ab4e662009-07-09 00:58:53 +00005251 // A direct static reference to a global.
Dale Johannesenf97110c2009-07-21 00:12:29 +00005252 Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), Offset);
Dan Gohman36322c72008-10-18 02:06:02 +00005253 Offset = 0;
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005254 } else {
Chris Lattner5bdaa522009-06-27 05:39:56 +00005255 Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), 0, OpFlags);
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005256 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00005257
Chris Lattner28d40c62009-07-11 20:29:19 +00005258 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovc283e152009-08-05 23:01:26 +00005259 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005260 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
5261 else
5262 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman36322c72008-10-18 02:06:02 +00005263
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005264 // With PIC, the address is actually $g + Offset.
Chris Lattner054532c2009-07-10 07:34:39 +00005265 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesenea996922009-02-04 20:06:27 +00005266 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
5267 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005268 Result);
5269 }
Scott Michel91099d62009-02-17 22:15:04 +00005270
Chris Lattner054532c2009-07-10 07:34:39 +00005271 // For globals that require a load from a stub to get the address, emit the
5272 // load.
5273 if (isGlobalStubReference(OpFlags))
Dale Johannesenea996922009-02-04 20:06:27 +00005274 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
David Greene25160362010-02-15 16:53:33 +00005275 PseudoSourceValue::getGOT(), 0, false, false, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005276
Dan Gohman36322c72008-10-18 02:06:02 +00005277 // If there was a non-zero offset that we didn't fold, create an explicit
5278 // addition for it.
5279 if (Offset != 0)
Dale Johannesenea996922009-02-04 20:06:27 +00005280 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman36322c72008-10-18 02:06:02 +00005281 DAG.getConstant(Offset, getPointerTy()));
5282
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005283 return Result;
5284}
5285
Evan Cheng7f250d62008-09-24 00:05:32 +00005286SDValue
Dan Gohmandbb121b2010-04-17 15:26:15 +00005287X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng7f250d62008-09-24 00:05:32 +00005288 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman36322c72008-10-18 02:06:02 +00005289 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005290 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Cheng7f250d62008-09-24 00:05:32 +00005291}
5292
Rafael Espindolaaf759ab2009-04-17 14:35:58 +00005293static SDValue
5294GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersonac9de032009-08-10 22:56:29 +00005295 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerec7cfd42009-06-26 21:20:29 +00005296 unsigned char OperandFlags) {
Anton Korobeynikov7767af52009-12-11 19:39:55 +00005297 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005298 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Rafael Espindolaaf759ab2009-04-17 14:35:58 +00005299 DebugLoc dl = GA->getDebugLoc();
5300 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
5301 GA->getValueType(0),
Chris Lattnerec7cfd42009-06-26 21:20:29 +00005302 GA->getOffset(),
5303 OperandFlags);
Rafael Espindolaaf759ab2009-04-17 14:35:58 +00005304 if (InFlag) {
5305 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola7fc4b8d2009-04-24 12:59:40 +00005306 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindolaaf759ab2009-04-17 14:35:58 +00005307 } else {
5308 SDValue Ops[] = { Chain, TGA };
Rafael Espindola7fc4b8d2009-04-24 12:59:40 +00005309 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindolaaf759ab2009-04-17 14:35:58 +00005310 }
Anton Korobeynikov7767af52009-12-11 19:39:55 +00005311
5312 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb6d3f252010-05-14 21:14:32 +00005313 MFI->setAdjustsStack(true);
Anton Korobeynikov7767af52009-12-11 19:39:55 +00005314
Rafael Espindola7fc4b8d2009-04-24 12:59:40 +00005315 SDValue Flag = Chain.getValue(1);
5316 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindolaaf759ab2009-04-17 14:35:58 +00005317}
5318
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00005319// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman8181bd12008-07-27 21:46:04 +00005320static SDValue
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00005321LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersonac9de032009-08-10 22:56:29 +00005322 const EVT PtrVT) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005323 SDValue InFlag;
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00005324 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
5325 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005326 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerd2c680b2010-04-02 20:16:16 +00005327 DebugLoc(), PtrVT), InFlag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005328 InFlag = Chain.getValue(1);
5329
Chris Lattnerec7cfd42009-06-26 21:20:29 +00005330 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005331}
5332
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00005333// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman8181bd12008-07-27 21:46:04 +00005334static SDValue
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00005335LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersonac9de032009-08-10 22:56:29 +00005336 const EVT PtrVT) {
Chris Lattnerec7cfd42009-06-26 21:20:29 +00005337 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
5338 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00005339}
5340
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005341// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
5342// "local exec" model.
Dan Gohman8181bd12008-07-27 21:46:04 +00005343static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersonac9de032009-08-10 22:56:29 +00005344 const EVT PtrVT, TLSModel::Model model,
Rafael Espindolab93a5122009-04-13 13:02:49 +00005345 bool is64Bit) {
Dale Johannesenea996922009-02-04 20:06:27 +00005346 DebugLoc dl = GA->getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005347 // Get the Thread Pointer
Rafael Espindolabca99f72009-04-08 21:14:34 +00005348 SDValue Base = DAG.getNode(X86ISD::SegmentBaseAddress,
Chris Lattnerd2c680b2010-04-02 20:16:16 +00005349 DebugLoc(), PtrVT,
Rafael Espindolab93a5122009-04-13 13:02:49 +00005350 DAG.getRegister(is64Bit? X86::FS : X86::GS,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005351 MVT::i32));
Rafael Espindolabca99f72009-04-08 21:14:34 +00005352
5353 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Base,
David Greene25160362010-02-15 16:53:33 +00005354 NULL, 0, false, false, 0);
Rafael Espindolabca99f72009-04-08 21:14:34 +00005355
Chris Lattnerec7cfd42009-06-26 21:20:29 +00005356 unsigned char OperandFlags = 0;
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005357 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
5358 // initialexec.
5359 unsigned WrapperKind = X86ISD::Wrapper;
5360 if (model == TLSModel::LocalExec) {
Chris Lattnerec7cfd42009-06-26 21:20:29 +00005361 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005362 } else if (is64Bit) {
5363 assert(model == TLSModel::InitialExec);
5364 OperandFlags = X86II::MO_GOTTPOFF;
5365 WrapperKind = X86ISD::WrapperRIP;
5366 } else {
5367 assert(model == TLSModel::InitialExec);
5368 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerec7cfd42009-06-26 21:20:29 +00005369 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00005370
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005371 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
5372 // exec)
Chris Lattner3207f8b2009-06-21 02:22:34 +00005373 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), GA->getValueType(0),
Chris Lattnerec7cfd42009-06-26 21:20:29 +00005374 GA->getOffset(), OperandFlags);
Chris Lattnerdc6fc472009-06-27 04:16:01 +00005375 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005376
Rafael Espindola7b620af2009-02-27 13:37:18 +00005377 if (model == TLSModel::InitialExec)
Dale Johannesenea996922009-02-04 20:06:27 +00005378 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
David Greene25160362010-02-15 16:53:33 +00005379 PseudoSourceValue::getGOT(), 0, false, false, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005380
5381 // The address of the thread local variable is the add of the thread
5382 // pointer with the offset of the variable.
Dale Johannesenea996922009-02-04 20:06:27 +00005383 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005384}
5385
Dan Gohman8181bd12008-07-27 21:46:04 +00005386SDValue
Dan Gohmandbb121b2010-04-17 15:26:15 +00005387X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Eric Christopheree8d3332010-06-03 04:07:48 +00005388
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005389 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerec7cfd42009-06-26 21:20:29 +00005390 const GlobalValue *GV = GA->getGlobal();
Eric Christopher3d82bbd2009-08-27 18:07:15 +00005391
Eric Christopheree8d3332010-06-03 04:07:48 +00005392 if (Subtarget->isTargetELF()) {
5393 // TODO: implement the "local dynamic" model
5394 // TODO: implement the "initial exec"model for pic executables
5395
5396 // If GV is an alias then use the aliasee for determining
5397 // thread-localness.
5398 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
5399 GV = GA->resolveAliasedGlobal(false);
5400
5401 TLSModel::Model model
5402 = getTLSModel(GV, getTargetMachine().getRelocationModel());
5403
5404 switch (model) {
5405 case TLSModel::GeneralDynamic:
5406 case TLSModel::LocalDynamic: // not implemented
5407 if (Subtarget->is64Bit())
5408 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
5409 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
5410
5411 case TLSModel::InitialExec:
5412 case TLSModel::LocalExec:
5413 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
5414 Subtarget->is64Bit());
5415 }
5416 } else if (Subtarget->isTargetDarwin()) {
5417 // Darwin only has one model of TLS. Lower to that.
5418 unsigned char OpFlag = 0;
5419 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
5420 X86ISD::WrapperRIP : X86ISD::Wrapper;
5421
5422 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5423 // global base reg.
5424 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
5425 !Subtarget->is64Bit();
5426 if (PIC32)
5427 OpFlag = X86II::MO_TLVP_PIC_BASE;
5428 else
5429 OpFlag = X86II::MO_TLVP;
5430
5431 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(),
5432 getPointerTy(),
5433 GA->getOffset(), OpFlag);
5434
5435 DebugLoc DL = Op.getDebugLoc();
5436 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
5437
5438 // With PIC32, the address is actually $g + Offset.
5439 if (PIC32)
5440 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
5441 DAG.getNode(X86ISD::GlobalBaseReg,
5442 DebugLoc(), getPointerTy()),
5443 Offset);
5444
5445 // Lowering the machine isd will make sure everything is in the right
5446 // location.
5447 SDValue Args[] = { Offset };
5448 SDValue Chain = DAG.getNode(X86ISD::TLSCALL, DL, MVT::Other, Args, 1);
5449
5450 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
5451 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
5452 MFI->setAdjustsStack(true);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00005453
Eric Christopheree8d3332010-06-03 04:07:48 +00005454 // And our return value (tls address) is in the standard call return value
5455 // location.
5456 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
5457 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00005458 }
Eric Christopheree8d3332010-06-03 04:07:48 +00005459
5460 assert(false &&
5461 "TLS not implemented for this target.");
Eric Christopher3d82bbd2009-08-27 18:07:15 +00005462
Edwin Törökbd448e32009-07-14 16:55:14 +00005463 llvm_unreachable("Unreachable");
Chris Lattnerda028df2009-04-01 22:14:45 +00005464 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005465}
5466
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005467
Chris Lattner62814a32007-10-17 06:02:13 +00005468/// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michel91099d62009-02-17 22:15:04 +00005469/// take a 2 x i32 value to shift plus a shift amount.
Dan Gohmandbb121b2010-04-17 15:26:15 +00005470SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman092014e2008-03-03 22:22:09 +00005471 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersonac9de032009-08-10 22:56:29 +00005472 EVT VT = Op.getValueType();
Duncan Sands92c43912008-06-06 12:08:01 +00005473 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005474 DebugLoc dl = Op.getDebugLoc();
Chris Lattner62814a32007-10-17 06:02:13 +00005475 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman8181bd12008-07-27 21:46:04 +00005476 SDValue ShOpLo = Op.getOperand(0);
5477 SDValue ShOpHi = Op.getOperand(1);
5478 SDValue ShAmt = Op.getOperand(2);
Chris Lattner996d9e52009-07-29 05:48:09 +00005479 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005480 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner996d9e52009-07-29 05:48:09 +00005481 : DAG.getConstant(0, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005482
Dan Gohman8181bd12008-07-27 21:46:04 +00005483 SDValue Tmp2, Tmp3;
Chris Lattner62814a32007-10-17 06:02:13 +00005484 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005485 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
5486 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner62814a32007-10-17 06:02:13 +00005487 } else {
Dale Johannesence0805b2009-02-03 19:33:06 +00005488 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
5489 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner62814a32007-10-17 06:02:13 +00005490 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005491
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005492 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
5493 DAG.getConstant(VTBits, MVT::i8));
Chris Lattner44977012010-02-22 00:28:59 +00005494 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005495 AndNode, DAG.getConstant(0, MVT::i8));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005496
Dan Gohman8181bd12008-07-27 21:46:04 +00005497 SDValue Hi, Lo;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005498 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman8181bd12008-07-27 21:46:04 +00005499 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
5500 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf19591c2008-06-30 10:19:09 +00005501
Chris Lattner62814a32007-10-17 06:02:13 +00005502 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005503 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
5504 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner62814a32007-10-17 06:02:13 +00005505 } else {
Dale Johannesence0805b2009-02-03 19:33:06 +00005506 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
5507 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner62814a32007-10-17 06:02:13 +00005508 }
5509
Dan Gohman8181bd12008-07-27 21:46:04 +00005510 SDValue Ops[2] = { Lo, Hi };
Dale Johannesence0805b2009-02-03 19:33:06 +00005511 return DAG.getMergeValues(Ops, 2, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005512}
5513
Dan Gohmandbb121b2010-04-17 15:26:15 +00005514SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
5515 SelectionDAG &DAG) const {
Owen Andersonac9de032009-08-10 22:56:29 +00005516 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedmanc0521fb2009-06-06 03:57:58 +00005517
5518 if (SrcVT.isVector()) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005519 if (SrcVT == MVT::v2i32 && Op.getValueType() == MVT::v2f64) {
Eli Friedmanc0521fb2009-06-06 03:57:58 +00005520 return Op;
5521 }
5522 return SDValue();
5523 }
5524
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005525 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerdd3e1422008-02-27 05:57:41 +00005526 "Unknown SINT_TO_FP to lower!");
Scott Michel91099d62009-02-17 22:15:04 +00005527
Eli Friedman9d77ac32009-05-27 00:47:34 +00005528 // These are really Legal; return the operand so the caller accepts it as
5529 // Legal.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005530 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman9d77ac32009-05-27 00:47:34 +00005531 return Op;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005532 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman9d77ac32009-05-27 00:47:34 +00005533 Subtarget->is64Bit()) {
5534 return Op;
5535 }
Scott Michel91099d62009-02-17 22:15:04 +00005536
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005537 DebugLoc dl = Op.getDebugLoc();
Duncan Sands92c43912008-06-06 12:08:01 +00005538 unsigned Size = SrcVT.getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005539 MachineFunction &MF = DAG.getMachineFunction();
David Greene6424ab92009-11-12 20:49:22 +00005540 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman8181bd12008-07-27 21:46:04 +00005541 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesence0805b2009-02-03 19:33:06 +00005542 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling6b42d012009-03-13 08:41:47 +00005543 StackSlot,
David Greene25160362010-02-15 16:53:33 +00005544 PseudoSourceValue::getFixedStack(SSFI), 0,
5545 false, false, 0);
Eli Friedman8c3cb582009-05-23 09:59:16 +00005546 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
5547}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005548
Owen Andersonac9de032009-08-10 22:56:29 +00005549SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Dale Johannesen58d8a702010-05-15 18:51:12 +00005550 SDValue StackSlot,
Dan Gohmandbb121b2010-04-17 15:26:15 +00005551 SelectionDAG &DAG) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005552 // Build the FILD
Eli Friedman8c3cb582009-05-23 09:59:16 +00005553 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005554 SDVTList Tys;
Chris Lattnercf515b52008-01-16 06:24:21 +00005555 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen2fc20782007-09-14 22:26:36 +00005556 if (useSSE)
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005557 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005558 else
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005559 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Benjamin Kramer65f60c92009-12-29 16:57:26 +00005560 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Dale Johannesence0805b2009-02-03 19:33:06 +00005561 SDValue Result = DAG.getNode(useSSE ? X86ISD::FILD_FLAG : X86ISD::FILD, dl,
Benjamin Kramer65f60c92009-12-29 16:57:26 +00005562 Tys, Ops, array_lengthof(Ops));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005563
Dale Johannesen2fc20782007-09-14 22:26:36 +00005564 if (useSSE) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005565 Chain = Result.getValue(1);
Dan Gohman8181bd12008-07-27 21:46:04 +00005566 SDValue InFlag = Result.getValue(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005567
5568 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
5569 // shouldn't be necessary except that RFP cannot be live across
5570 // multiple blocks. When stackifier is fixed, they can be uncoupled.
5571 MachineFunction &MF = DAG.getMachineFunction();
David Greene6424ab92009-11-12 20:49:22 +00005572 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8, false);
Dan Gohman8181bd12008-07-27 21:46:04 +00005573 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005574 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer65f60c92009-12-29 16:57:26 +00005575 SDValue Ops[] = {
5576 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
5577 };
5578 Chain = DAG.getNode(X86ISD::FST, dl, Tys, Ops, array_lengthof(Ops));
Dale Johannesence0805b2009-02-03 19:33:06 +00005579 Result = DAG.getLoad(Op.getValueType(), dl, Chain, StackSlot,
David Greene25160362010-02-15 16:53:33 +00005580 PseudoSourceValue::getFixedStack(SSFI), 0,
5581 false, false, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005582 }
5583
5584 return Result;
5585}
5586
Bill Wendling14a30ef2009-01-17 03:56:04 +00005587// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmandbb121b2010-04-17 15:26:15 +00005588SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
5589 SelectionDAG &DAG) const {
Bill Wendling14a30ef2009-01-17 03:56:04 +00005590 // This algorithm is not obvious. Here it is in C code, more or less:
5591 /*
5592 double uint64_to_double( uint32_t hi, uint32_t lo ) {
5593 static const __m128i exp = { 0x4330000045300000ULL, 0 };
5594 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesenfb019af2008-10-21 23:07:49 +00005595
Bill Wendling14a30ef2009-01-17 03:56:04 +00005596 // Copy ints to xmm registers.
5597 __m128i xh = _mm_cvtsi32_si128( hi );
5598 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesenfb019af2008-10-21 23:07:49 +00005599
Bill Wendling14a30ef2009-01-17 03:56:04 +00005600 // Combine into low half of a single xmm register.
5601 __m128i x = _mm_unpacklo_epi32( xh, xl );
5602 __m128d d;
5603 double sd;
Dale Johannesenfb019af2008-10-21 23:07:49 +00005604
Bill Wendling14a30ef2009-01-17 03:56:04 +00005605 // Merge in appropriate exponents to give the integer bits the right
5606 // magnitude.
5607 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesenfb019af2008-10-21 23:07:49 +00005608
Bill Wendling14a30ef2009-01-17 03:56:04 +00005609 // Subtract away the biases to deal with the IEEE-754 double precision
5610 // implicit 1.
5611 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesenfb019af2008-10-21 23:07:49 +00005612
Bill Wendling14a30ef2009-01-17 03:56:04 +00005613 // All conversions up to here are exact. The correctly rounded result is
5614 // calculated using the current rounding mode using the following
5615 // horizontal add.
5616 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
5617 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
5618 // store doesn't really need to be here (except
5619 // maybe to zero the other double)
5620 return sd;
5621 }
5622 */
Dale Johannesenfb019af2008-10-21 23:07:49 +00005623
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005624 DebugLoc dl = Op.getDebugLoc();
Owen Anderson6361f972009-07-15 21:51:10 +00005625 LLVMContext *Context = DAG.getContext();
Dale Johannesence0805b2009-02-03 19:33:06 +00005626
Dale Johannesena359b8b2008-10-21 20:50:01 +00005627 // Build some magic constants.
Bill Wendling14a30ef2009-01-17 03:56:04 +00005628 std::vector<Constant*> CV0;
Owen Andersoneacb44d2009-07-24 23:12:02 +00005629 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
5630 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
5631 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
5632 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Anderson2f422e02009-07-28 21:19:26 +00005633 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng68c18682009-03-13 07:51:59 +00005634 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesena359b8b2008-10-21 20:50:01 +00005635
Bill Wendling14a30ef2009-01-17 03:56:04 +00005636 std::vector<Constant*> CV1;
Owen Anderson6361f972009-07-15 21:51:10 +00005637 CV1.push_back(
Owen Andersond363a0e2009-07-27 20:59:43 +00005638 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Anderson6361f972009-07-15 21:51:10 +00005639 CV1.push_back(
Owen Andersond363a0e2009-07-27 20:59:43 +00005640 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Anderson2f422e02009-07-28 21:19:26 +00005641 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng68c18682009-03-13 07:51:59 +00005642 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesena359b8b2008-10-21 20:50:01 +00005643
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005644 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
5645 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sandsca872ca2008-10-22 11:24:12 +00005646 Op.getOperand(0),
5647 DAG.getIntPtrConstant(1)));
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005648 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
5649 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sandsca872ca2008-10-22 11:24:12 +00005650 Op.getOperand(0),
5651 DAG.getIntPtrConstant(0)));
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005652 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
5653 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Bill Wendling14a30ef2009-01-17 03:56:04 +00005654 PseudoSourceValue::getConstantPool(), 0,
David Greene25160362010-02-15 16:53:33 +00005655 false, false, 16);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005656 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
5657 SDValue XR2F = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Unpck2);
5658 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Bill Wendling14a30ef2009-01-17 03:56:04 +00005659 PseudoSourceValue::getConstantPool(), 0,
David Greene25160362010-02-15 16:53:33 +00005660 false, false, 16);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005661 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling14a30ef2009-01-17 03:56:04 +00005662
Dale Johannesena359b8b2008-10-21 20:50:01 +00005663 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman543d2142009-04-27 18:41:29 +00005664 int ShufMask[2] = { 1, -1 };
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005665 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
5666 DAG.getUNDEF(MVT::v2f64), ShufMask);
5667 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
5668 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesena359b8b2008-10-21 20:50:01 +00005669 DAG.getIntPtrConstant(0));
5670}
5671
Bill Wendling14a30ef2009-01-17 03:56:04 +00005672// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmandbb121b2010-04-17 15:26:15 +00005673SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
5674 SelectionDAG &DAG) const {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005675 DebugLoc dl = Op.getDebugLoc();
Bill Wendling14a30ef2009-01-17 03:56:04 +00005676 // FP constant to bias correct the final result.
5677 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005678 MVT::f64);
Bill Wendling14a30ef2009-01-17 03:56:04 +00005679
5680 // Load the 32-bit value into an XMM register.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005681 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
5682 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling14a30ef2009-01-17 03:56:04 +00005683 Op.getOperand(0),
5684 DAG.getIntPtrConstant(0)));
5685
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005686 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
5687 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Load),
Bill Wendling14a30ef2009-01-17 03:56:04 +00005688 DAG.getIntPtrConstant(0));
5689
5690 // Or the load with the bias.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005691 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
5692 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesence0805b2009-02-03 19:33:06 +00005693 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005694 MVT::v2f64, Load)),
5695 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesence0805b2009-02-03 19:33:06 +00005696 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005697 MVT::v2f64, Bias)));
5698 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
5699 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Or),
Bill Wendling14a30ef2009-01-17 03:56:04 +00005700 DAG.getIntPtrConstant(0));
5701
5702 // Subtract the bias.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005703 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling14a30ef2009-01-17 03:56:04 +00005704
5705 // Handle final rounding.
Owen Andersonac9de032009-08-10 22:56:29 +00005706 EVT DestVT = Op.getValueType();
Bill Wendlingdb547de2009-01-17 07:40:19 +00005707
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005708 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005709 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendlingdb547de2009-01-17 07:40:19 +00005710 DAG.getIntPtrConstant(0));
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005711 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005712 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendlingdb547de2009-01-17 07:40:19 +00005713 }
5714
5715 // Handle final rounding.
5716 return Sub;
Bill Wendling14a30ef2009-01-17 03:56:04 +00005717}
5718
Dan Gohmandbb121b2010-04-17 15:26:15 +00005719SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
5720 SelectionDAG &DAG) const {
Evan Cheng44fd2392009-01-19 08:08:22 +00005721 SDValue N0 = Op.getOperand(0);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005722 DebugLoc dl = Op.getDebugLoc();
Bill Wendling14a30ef2009-01-17 03:56:04 +00005723
Dale Johannesen58d8a702010-05-15 18:51:12 +00005724 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Cheng44fd2392009-01-19 08:08:22 +00005725 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
5726 // the optimization here.
5727 if (DAG.SignBitIsZero(N0))
Dale Johannesence0805b2009-02-03 19:33:06 +00005728 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Cheng44fd2392009-01-19 08:08:22 +00005729
Owen Andersonac9de032009-08-10 22:56:29 +00005730 EVT SrcVT = N0.getValueType();
Dale Johannesen58d8a702010-05-15 18:51:12 +00005731 EVT DstVT = Op.getValueType();
5732 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling14a30ef2009-01-17 03:56:04 +00005733 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen58d8a702010-05-15 18:51:12 +00005734 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling14a30ef2009-01-17 03:56:04 +00005735 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman8c3cb582009-05-23 09:59:16 +00005736
5737 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005738 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen58d8a702010-05-15 18:51:12 +00005739 if (SrcVT == MVT::i32) {
5740 SDValue WordOff = DAG.getConstant(4, getPointerTy());
5741 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
5742 getPointerTy(), StackSlot, WordOff);
5743 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
5744 StackSlot, NULL, 0, false, false, 0);
5745 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
5746 OffsetSlot, NULL, 0, false, false, 0);
5747 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
5748 return Fild;
5749 }
5750
5751 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
5752 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
David Greene25160362010-02-15 16:53:33 +00005753 StackSlot, NULL, 0, false, false, 0);
Dale Johannesen58d8a702010-05-15 18:51:12 +00005754 // For i64 source, we need to add the appropriate power of 2 if the input
5755 // was negative. This is the same as the optimization in
5756 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
5757 // we must be careful to do the computation in x87 extended precision, not
5758 // in SSE. (The generic code can't know it's OK to do this, or how to.)
5759 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
5760 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
5761 SDValue Fild = DAG.getNode(X86ISD::FILD, dl, Tys, Ops, 3);
5762
5763 APInt FF(32, 0x5F800000ULL);
5764
5765 // Check whether the sign bit is set.
5766 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
5767 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
5768 ISD::SETLT);
5769
5770 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
5771 SDValue FudgePtr = DAG.getConstantPool(
5772 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
5773 getPointerTy());
5774
5775 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
5776 SDValue Zero = DAG.getIntPtrConstant(0);
5777 SDValue Four = DAG.getIntPtrConstant(4);
5778 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
5779 Zero, Four);
5780 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
5781
5782 // Load the value out, extending it from f32 to f80.
5783 // FIXME: Avoid the extend by constructing the right constant pool?
5784 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
5785 FudgePtr, PseudoSourceValue::getConstantPool(),
5786 0, MVT::f32, false, false, 4);
5787 // Extend everything to 80 bits to force it to be done on x87.
5788 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
5789 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling14a30ef2009-01-17 03:56:04 +00005790}
5791
Dan Gohman8181bd12008-07-27 21:46:04 +00005792std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmandbb121b2010-04-17 15:26:15 +00005793FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005794 DebugLoc dl = Op.getDebugLoc();
Eli Friedman8c3cb582009-05-23 09:59:16 +00005795
Owen Andersonac9de032009-08-10 22:56:29 +00005796 EVT DstTy = Op.getValueType();
Eli Friedman8c3cb582009-05-23 09:59:16 +00005797
5798 if (!IsSigned) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005799 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
5800 DstTy = MVT::i64;
Eli Friedman8c3cb582009-05-23 09:59:16 +00005801 }
5802
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005803 assert(DstTy.getSimpleVT() <= MVT::i64 &&
5804 DstTy.getSimpleVT() >= MVT::i16 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005805 "Unknown FP_TO_SINT to lower!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005806
Dale Johannesen2fc20782007-09-14 22:26:36 +00005807 // These are really Legal.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005808 if (DstTy == MVT::i32 &&
Chris Lattnercf515b52008-01-16 06:24:21 +00005809 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman8181bd12008-07-27 21:46:04 +00005810 return std::make_pair(SDValue(), SDValue());
Dale Johannesen958b08b2007-09-19 23:55:34 +00005811 if (Subtarget->is64Bit() &&
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005812 DstTy == MVT::i64 &&
Eli Friedman9d77ac32009-05-27 00:47:34 +00005813 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman8181bd12008-07-27 21:46:04 +00005814 return std::make_pair(SDValue(), SDValue());
Dale Johannesen2fc20782007-09-14 22:26:36 +00005815
Evan Cheng05441e62007-10-15 20:11:21 +00005816 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
5817 // stack slot.
5818 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman8c3cb582009-05-23 09:59:16 +00005819 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene6424ab92009-11-12 20:49:22 +00005820 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman8181bd12008-07-27 21:46:04 +00005821 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopher3d82bbd2009-08-27 18:07:15 +00005822
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005823 unsigned Opc;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005824 switch (DstTy.getSimpleVT().SimpleTy) {
Edwin Törökbd448e32009-07-14 16:55:14 +00005825 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005826 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
5827 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
5828 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005829 }
5830
Dan Gohman8181bd12008-07-27 21:46:04 +00005831 SDValue Chain = DAG.getEntryNode();
5832 SDValue Value = Op.getOperand(0);
Chris Lattnercf515b52008-01-16 06:24:21 +00005833 if (isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType())) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005834 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Dale Johannesence0805b2009-02-03 19:33:06 +00005835 Chain = DAG.getStore(Chain, dl, Value, StackSlot,
David Greene25160362010-02-15 16:53:33 +00005836 PseudoSourceValue::getFixedStack(SSFI), 0,
5837 false, false, 0);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005838 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman8181bd12008-07-27 21:46:04 +00005839 SDValue Ops[] = {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005840 Chain, StackSlot, DAG.getValueType(Op.getOperand(0).getValueType())
5841 };
Dale Johannesence0805b2009-02-03 19:33:06 +00005842 Value = DAG.getNode(X86ISD::FLD, dl, Tys, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005843 Chain = Value.getValue(1);
David Greene6424ab92009-11-12 20:49:22 +00005844 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005845 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
5846 }
5847
5848 // Build the FP_TO_INT*_IN_MEM
Dan Gohman8181bd12008-07-27 21:46:04 +00005849 SDValue Ops[] = { Chain, Value, StackSlot };
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005850 SDValue FIST = DAG.getNode(Opc, dl, MVT::Other, Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005851
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005852 return std::make_pair(FIST, StackSlot);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005853}
5854
Dan Gohmandbb121b2010-04-17 15:26:15 +00005855SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
5856 SelectionDAG &DAG) const {
Eli Friedmanc0521fb2009-06-06 03:57:58 +00005857 if (Op.getValueType().isVector()) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005858 if (Op.getValueType() == MVT::v2i32 &&
5859 Op.getOperand(0).getValueType() == MVT::v2f64) {
Eli Friedmanc0521fb2009-06-06 03:57:58 +00005860 return Op;
5861 }
5862 return SDValue();
5863 }
5864
Eli Friedman8c3cb582009-05-23 09:59:16 +00005865 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman8181bd12008-07-27 21:46:04 +00005866 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman9d77ac32009-05-27 00:47:34 +00005867 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
5868 if (FIST.getNode() == 0) return Op;
Scott Michel91099d62009-02-17 22:15:04 +00005869
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005870 // Load the result.
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005871 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
David Greene25160362010-02-15 16:53:33 +00005872 FIST, StackSlot, NULL, 0, false, false, 0);
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005873}
5874
Dan Gohmandbb121b2010-04-17 15:26:15 +00005875SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
5876 SelectionDAG &DAG) const {
Eli Friedman8c3cb582009-05-23 09:59:16 +00005877 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
5878 SDValue FIST = Vals.first, StackSlot = Vals.second;
5879 assert(FIST.getNode() && "Unexpected failure");
5880
5881 // Load the result.
5882 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
David Greene25160362010-02-15 16:53:33 +00005883 FIST, StackSlot, NULL, 0, false, false, 0);
Eli Friedman8c3cb582009-05-23 09:59:16 +00005884}
5885
Dan Gohmandbb121b2010-04-17 15:26:15 +00005886SDValue X86TargetLowering::LowerFABS(SDValue Op,
5887 SelectionDAG &DAG) const {
Owen Anderson6361f972009-07-15 21:51:10 +00005888 LLVMContext *Context = DAG.getContext();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005889 DebugLoc dl = Op.getDebugLoc();
Owen Andersonac9de032009-08-10 22:56:29 +00005890 EVT VT = Op.getValueType();
5891 EVT EltVT = VT;
Duncan Sands92c43912008-06-06 12:08:01 +00005892 if (VT.isVector())
5893 EltVT = VT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005894 std::vector<Constant*> CV;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005895 if (EltVT == MVT::f64) {
Owen Andersond363a0e2009-07-27 20:59:43 +00005896 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005897 CV.push_back(C);
5898 CV.push_back(C);
5899 } else {
Owen Andersond363a0e2009-07-27 20:59:43 +00005900 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005901 CV.push_back(C);
5902 CV.push_back(C);
5903 CV.push_back(C);
5904 CV.push_back(C);
5905 }
Owen Anderson2f422e02009-07-28 21:19:26 +00005906 Constant *C = ConstantVector::get(CV);
Evan Cheng68c18682009-03-13 07:51:59 +00005907 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005908 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
David Greene25160362010-02-15 16:53:33 +00005909 PseudoSourceValue::getConstantPool(), 0,
5910 false, false, 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005911 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005912}
5913
Dan Gohmandbb121b2010-04-17 15:26:15 +00005914SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson6361f972009-07-15 21:51:10 +00005915 LLVMContext *Context = DAG.getContext();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005916 DebugLoc dl = Op.getDebugLoc();
Owen Andersonac9de032009-08-10 22:56:29 +00005917 EVT VT = Op.getValueType();
5918 EVT EltVT = VT;
Duncan Sands831102e2009-09-06 19:29:07 +00005919 if (VT.isVector())
Duncan Sands92c43912008-06-06 12:08:01 +00005920 EltVT = VT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005921 std::vector<Constant*> CV;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005922 if (EltVT == MVT::f64) {
Owen Andersond363a0e2009-07-27 20:59:43 +00005923 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005924 CV.push_back(C);
5925 CV.push_back(C);
5926 } else {
Owen Andersond363a0e2009-07-27 20:59:43 +00005927 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005928 CV.push_back(C);
5929 CV.push_back(C);
5930 CV.push_back(C);
5931 CV.push_back(C);
5932 }
Owen Anderson2f422e02009-07-28 21:19:26 +00005933 Constant *C = ConstantVector::get(CV);
Evan Cheng68c18682009-03-13 07:51:59 +00005934 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005935 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
David Greene25160362010-02-15 16:53:33 +00005936 PseudoSourceValue::getConstantPool(), 0,
5937 false, false, 16);
Duncan Sands92c43912008-06-06 12:08:01 +00005938 if (VT.isVector()) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005939 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005940 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
5941 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesence0805b2009-02-03 19:33:06 +00005942 Op.getOperand(0)),
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005943 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, Mask)));
Evan Cheng92b8f782007-07-19 23:36:01 +00005944 } else {
Dale Johannesence0805b2009-02-03 19:33:06 +00005945 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Cheng92b8f782007-07-19 23:36:01 +00005946 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005947}
5948
Dan Gohmandbb121b2010-04-17 15:26:15 +00005949SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson6361f972009-07-15 21:51:10 +00005950 LLVMContext *Context = DAG.getContext();
Dan Gohman8181bd12008-07-27 21:46:04 +00005951 SDValue Op0 = Op.getOperand(0);
5952 SDValue Op1 = Op.getOperand(1);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00005953 DebugLoc dl = Op.getDebugLoc();
Owen Andersonac9de032009-08-10 22:56:29 +00005954 EVT VT = Op.getValueType();
5955 EVT SrcVT = Op1.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005956
5957 // If second operand is smaller, extend it first.
Duncan Sandsec142ee2008-06-08 20:54:56 +00005958 if (SrcVT.bitsLT(VT)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005959 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005960 SrcVT = VT;
5961 }
Dale Johannesenfb0fa912007-10-21 01:07:44 +00005962 // And if it is bigger, shrink it first.
Duncan Sandsec142ee2008-06-08 20:54:56 +00005963 if (SrcVT.bitsGT(VT)) {
Dale Johannesence0805b2009-02-03 19:33:06 +00005964 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesenfb0fa912007-10-21 01:07:44 +00005965 SrcVT = VT;
Dale Johannesenfb0fa912007-10-21 01:07:44 +00005966 }
5967
5968 // At this point the operands and the result should have the same
5969 // type, and that won't be f80 since that is not custom lowered.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005970
5971 // First get the sign bit of second operand.
5972 std::vector<Constant*> CV;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005973 if (SrcVT == MVT::f64) {
Owen Andersond363a0e2009-07-27 20:59:43 +00005974 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
5975 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005976 } else {
Owen Andersond363a0e2009-07-27 20:59:43 +00005977 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
5978 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
5979 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
5980 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005981 }
Owen Anderson2f422e02009-07-28 21:19:26 +00005982 Constant *C = ConstantVector::get(CV);
Evan Cheng68c18682009-03-13 07:51:59 +00005983 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005984 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
David Greene25160362010-02-15 16:53:33 +00005985 PseudoSourceValue::getConstantPool(), 0,
5986 false, false, 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00005987 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005988
5989 // Shift sign bit right or left if the two operands have different types.
Duncan Sandsec142ee2008-06-08 20:54:56 +00005990 if (SrcVT.bitsGT(VT)) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00005991 // Op0 is MVT::f32, Op1 is MVT::f64.
5992 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
5993 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
5994 DAG.getConstant(32, MVT::i32));
5995 SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32, SignBit);
5996 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner5872a362008-01-17 07:00:52 +00005997 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005998 }
5999
6000 // Clear first operand sign bit.
6001 CV.clear();
Owen Anderson36e3a6e2009-08-11 20:47:22 +00006002 if (VT == MVT::f64) {
Owen Andersond363a0e2009-07-27 20:59:43 +00006003 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
6004 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006005 } else {
Owen Andersond363a0e2009-07-27 20:59:43 +00006006 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
6007 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6008 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6009 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006010 }
Owen Anderson2f422e02009-07-28 21:19:26 +00006011 C = ConstantVector::get(CV);
Evan Cheng68c18682009-03-13 07:51:59 +00006012 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00006013 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
David Greene25160362010-02-15 16:53:33 +00006014 PseudoSourceValue::getConstantPool(), 0,
6015 false, false, 16);
Dale Johannesence0805b2009-02-03 19:33:06 +00006016 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006017
6018 // Or the value with the sign bit.
Dale Johannesence0805b2009-02-03 19:33:06 +00006019 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006020}
6021
Dan Gohman99a12192009-03-04 19:44:21 +00006022/// Emit nodes that will be selected as "test Op0,Op0", or something
6023/// equivalent.
Dan Gohmanc8b47852009-03-07 01:58:32 +00006024SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Chenga6a5f5f2010-04-26 19:06:11 +00006025 SelectionDAG &DAG) const {
Dan Gohman99a12192009-03-04 19:44:21 +00006026 DebugLoc dl = Op.getDebugLoc();
6027
Dan Gohmanc8b47852009-03-07 01:58:32 +00006028 // CF and OF aren't always set the way we want. Determine which
6029 // of these we need.
6030 bool NeedCF = false;
6031 bool NeedOF = false;
6032 switch (X86CC) {
Bill Wendlingbddc13f2010-06-28 21:08:32 +00006033 default: break;
Dan Gohmanc8b47852009-03-07 01:58:32 +00006034 case X86::COND_A: case X86::COND_AE:
6035 case X86::COND_B: case X86::COND_BE:
6036 NeedCF = true;
6037 break;
6038 case X86::COND_G: case X86::COND_GE:
6039 case X86::COND_L: case X86::COND_LE:
6040 case X86::COND_O: case X86::COND_NO:
6041 NeedOF = true;
6042 break;
Dan Gohmanc8b47852009-03-07 01:58:32 +00006043 }
6044
Dan Gohman99a12192009-03-04 19:44:21 +00006045 // See if we can use the EFLAGS value from the operand instead of
Dan Gohmanc8b47852009-03-07 01:58:32 +00006046 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
6047 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingbddc13f2010-06-28 21:08:32 +00006048 if (Op.getResNo() != 0 || NeedOF || NeedCF)
6049 // Emit a CMP with 0, which is the TEST pattern.
6050 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
6051 DAG.getConstant(0, Op.getValueType()));
6052
6053 unsigned Opcode = 0;
6054 unsigned NumOperands = 0;
6055 switch (Op.getNode()->getOpcode()) {
6056 case ISD::ADD:
6057 // Due to an isel shortcoming, be conservative if this add is likely to be
6058 // selected as part of a load-modify-store instruction. When the root node
6059 // in a match is a store, isel doesn't know how to remap non-chain non-flag
6060 // uses of other nodes in the match, such as the ADD in this case. This
6061 // leads to the ADD being left around and reselected, with the result being
6062 // two adds in the output. Alas, even if none our users are stores, that
6063 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
6064 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
6065 // climbing the DAG back to the root, and it doesn't seem to be worth the
6066 // effort.
6067 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman99a12192009-03-04 19:44:21 +00006068 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingbddc13f2010-06-28 21:08:32 +00006069 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
6070 goto default_case;
6071
6072 if (ConstantSDNode *C =
6073 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
6074 // An add of one will be selected as an INC.
6075 if (C->getAPIntValue() == 1) {
6076 Opcode = X86ISD::INC;
6077 NumOperands = 1;
6078 break;
Dan Gohman12e03292009-09-18 19:59:53 +00006079 }
Bill Wendlingbddc13f2010-06-28 21:08:32 +00006080
6081 // An add of negative one (subtract of one) will be selected as a DEC.
6082 if (C->getAPIntValue().isAllOnesValue()) {
6083 Opcode = X86ISD::DEC;
6084 NumOperands = 1;
6085 break;
6086 }
Dan Gohman99a12192009-03-04 19:44:21 +00006087 }
Bill Wendlingbddc13f2010-06-28 21:08:32 +00006088
6089 // Otherwise use a regular EFLAGS-setting add.
6090 Opcode = X86ISD::ADD;
6091 NumOperands = 2;
6092 break;
6093 case ISD::AND: {
6094 // If the primary and result isn't used, don't bother using X86ISD::AND,
6095 // because a TEST instruction will be better.
6096 bool NonFlagUse = false;
6097 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
6098 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
6099 SDNode *User = *UI;
6100 unsigned UOpNo = UI.getOperandNo();
6101 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
6102 // Look pass truncate.
6103 UOpNo = User->use_begin().getOperandNo();
6104 User = *User->use_begin();
6105 }
6106
6107 if (User->getOpcode() != ISD::BRCOND &&
6108 User->getOpcode() != ISD::SETCC &&
6109 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
6110 NonFlagUse = true;
6111 break;
6112 }
Dan Gohman99a12192009-03-04 19:44:21 +00006113 }
Bill Wendlingbddc13f2010-06-28 21:08:32 +00006114
6115 if (!NonFlagUse)
6116 break;
6117 }
6118 // FALL THROUGH
6119 case ISD::SUB:
6120 case ISD::OR:
6121 case ISD::XOR:
6122 // Due to the ISEL shortcoming noted above, be conservative if this op is
6123 // likely to be selected as part of a load-modify-store instruction.
6124 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
6125 UE = Op.getNode()->use_end(); UI != UE; ++UI)
6126 if (UI->getOpcode() == ISD::STORE)
6127 goto default_case;
6128
6129 // Otherwise use a regular EFLAGS-setting instruction.
6130 switch (Op.getNode()->getOpcode()) {
6131 default: llvm_unreachable("unexpected operator!");
6132 case ISD::SUB: Opcode = X86ISD::SUB; break;
6133 case ISD::OR: Opcode = X86ISD::OR; break;
6134 case ISD::XOR: Opcode = X86ISD::XOR; break;
6135 case ISD::AND: Opcode = X86ISD::AND; break;
6136 }
6137
6138 NumOperands = 2;
6139 break;
6140 case X86ISD::ADD:
6141 case X86ISD::SUB:
6142 case X86ISD::INC:
6143 case X86ISD::DEC:
6144 case X86ISD::OR:
6145 case X86ISD::XOR:
6146 case X86ISD::AND:
6147 return SDValue(Op.getNode(), 1);
6148 default:
6149 default_case:
6150 break;
Dan Gohman99a12192009-03-04 19:44:21 +00006151 }
6152
Bill Wendlingbddc13f2010-06-28 21:08:32 +00006153 if (Opcode == 0)
6154 // Emit a CMP with 0, which is the TEST pattern.
6155 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
6156 DAG.getConstant(0, Op.getValueType()));
6157
6158 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
6159 SmallVector<SDValue, 4> Ops;
6160 for (unsigned i = 0; i != NumOperands; ++i)
6161 Ops.push_back(Op.getOperand(i));
6162
6163 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
6164 DAG.ReplaceAllUsesWith(Op, New);
6165 return SDValue(New.getNode(), 1);
Dan Gohman99a12192009-03-04 19:44:21 +00006166}
6167
6168/// Emit nodes that will be selected as "cmp Op0,Op1", or something
6169/// equivalent.
Dan Gohmanc8b47852009-03-07 01:58:32 +00006170SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Chenga6a5f5f2010-04-26 19:06:11 +00006171 SelectionDAG &DAG) const {
Dan Gohman99a12192009-03-04 19:44:21 +00006172 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
6173 if (C->getAPIntValue() == 0)
Evan Chenga6a5f5f2010-04-26 19:06:11 +00006174 return EmitTest(Op0, X86CC, DAG);
Dan Gohman99a12192009-03-04 19:44:21 +00006175
6176 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson36e3a6e2009-08-11 20:47:22 +00006177 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman99a12192009-03-04 19:44:21 +00006178}
6179
Evan Cheng095dac22010-01-06 19:38:29 +00006180/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
6181/// if it's possible.
Evan Cheng1870cf52010-04-21 01:47:12 +00006182SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
6183 DebugLoc dl, SelectionDAG &DAG) const {
Evan Chengcb611272010-02-27 07:36:59 +00006184 SDValue Op0 = And.getOperand(0);
6185 SDValue Op1 = And.getOperand(1);
6186 if (Op0.getOpcode() == ISD::TRUNCATE)
6187 Op0 = Op0.getOperand(0);
6188 if (Op1.getOpcode() == ISD::TRUNCATE)
6189 Op1 = Op1.getOperand(0);
6190
Evan Cheng095dac22010-01-06 19:38:29 +00006191 SDValue LHS, RHS;
Dan Gohman6454f3f2010-06-24 02:07:59 +00006192 if (Op1.getOpcode() == ISD::SHL)
6193 std::swap(Op0, Op1);
6194 if (Op0.getOpcode() == ISD::SHL) {
Evan Chengcb611272010-02-27 07:36:59 +00006195 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
6196 if (And00C->getZExtValue() == 1) {
Dan Gohman6454f3f2010-06-24 02:07:59 +00006197 // If we looked past a truncate, check that it's only truncating away
6198 // known zeros.
6199 unsigned BitWidth = Op0.getValueSizeInBits();
6200 unsigned AndBitWidth = And.getValueSizeInBits();
6201 if (BitWidth > AndBitWidth) {
6202 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
6203 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
6204 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
6205 return SDValue();
6206 }
Evan Chengcb611272010-02-27 07:36:59 +00006207 LHS = Op1;
6208 RHS = Op0.getOperand(1);
Evan Cheng095dac22010-01-06 19:38:29 +00006209 }
Evan Chengcb611272010-02-27 07:36:59 +00006210 } else if (Op1.getOpcode() == ISD::Constant) {
6211 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
6212 SDValue AndLHS = Op0;
Evan Cheng095dac22010-01-06 19:38:29 +00006213 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
6214 LHS = AndLHS.getOperand(0);
6215 RHS = AndLHS.getOperand(1);
Dan Gohman22cefb02009-01-29 01:59:02 +00006216 }
Evan Cheng095dac22010-01-06 19:38:29 +00006217 }
Evan Cheng950aac02007-09-25 01:57:46 +00006218
Evan Cheng095dac22010-01-06 19:38:29 +00006219 if (LHS.getNode()) {
Evan Cheng3cbcbbb2010-04-17 06:13:15 +00006220 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Cheng095dac22010-01-06 19:38:29 +00006221 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Cheng3cbcbbb2010-04-17 06:13:15 +00006222 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Cheng095dac22010-01-06 19:38:29 +00006223 // the encoding for the i16 version is larger than the i32 version.
Evan Cheng3cbcbbb2010-04-17 06:13:15 +00006224 // Also promote i16 to i32 for performance / code size reason.
6225 if (LHS.getValueType() == MVT::i8 ||
Evan Chengab625302010-04-28 08:30:49 +00006226 LHS.getValueType() == MVT::i16)
Evan Cheng095dac22010-01-06 19:38:29 +00006227 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattner77a62312008-12-25 05:34:37 +00006228
Evan Cheng095dac22010-01-06 19:38:29 +00006229 // If the operand types disagree, extend the shift amount to match. Since
6230 // BT ignores high bits (like shifts) we can use anyextend.
6231 if (LHS.getValueType() != RHS.getValueType())
6232 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohman22cefb02009-01-29 01:59:02 +00006233
Evan Cheng095dac22010-01-06 19:38:29 +00006234 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
6235 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
6236 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
6237 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattner77a62312008-12-25 05:34:37 +00006238 }
6239
Evan Chengc621d452010-01-05 06:52:31 +00006240 return SDValue();
6241}
6242
Dan Gohmandbb121b2010-04-17 15:26:15 +00006243SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Chengc621d452010-01-05 06:52:31 +00006244 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
6245 SDValue Op0 = Op.getOperand(0);
6246 SDValue Op1 = Op.getOperand(1);
6247 DebugLoc dl = Op.getDebugLoc();
6248 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
6249
6250 // Optimize to BT if possible.
Evan Cheng095dac22010-01-06 19:38:29 +00006251 // Lower (X & (1 << N)) == 0 to BT(X, N).
6252 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
6253 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
6254 if (Op0.getOpcode() == ISD::AND &&
6255 Op0.hasOneUse() &&
6256 Op1.getOpcode() == ISD::Constant &&
Dan Gohmanbcc946d2010-06-18 14:22:04 +00006257 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Cheng095dac22010-01-06 19:38:29 +00006258 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
6259 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
6260 if (NewSetCC.getNode())
6261 return NewSetCC;
6262 }
Evan Chengc621d452010-01-05 06:52:31 +00006263
Evan Chengcb611272010-02-27 07:36:59 +00006264 // Look for "(setcc) == / != 1" to avoid unncessary setcc.
6265 if (Op0.getOpcode() == X86ISD::SETCC &&
6266 Op1.getOpcode() == ISD::Constant &&
6267 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
6268 cast<ConstantSDNode>(Op1)->isNullValue()) &&
6269 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
6270 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
6271 bool Invert = (CC == ISD::SETNE) ^
6272 cast<ConstantSDNode>(Op1)->isNullValue();
6273 if (Invert)
6274 CCode = X86::GetOppositeBranchCondition(CCode);
6275 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
6276 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
6277 }
6278
Evan Cheng3cbcbbb2010-04-17 06:13:15 +00006279 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattner77a62312008-12-25 05:34:37 +00006280 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman8ab7dd02009-10-20 16:22:37 +00006281 if (X86CC == X86::COND_INVALID)
6282 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00006283
Evan Chenga6a5f5f2010-04-26 19:06:11 +00006284 SDValue Cond = EmitCmp(Op0, Op1, X86CC, DAG);
Evan Cheng834ae6b2009-12-15 00:53:42 +00006285
6286 // Use sbb x, x to materialize carry bit into a GPR.
Evan Chengedeb1692009-12-16 00:53:11 +00006287 if (X86CC == X86::COND_B)
Evan Cheng834ae6b2009-12-15 00:53:42 +00006288 return DAG.getNode(ISD::AND, dl, MVT::i8,
6289 DAG.getNode(X86ISD::SETCC_CARRY, dl, MVT::i8,
6290 DAG.getConstant(X86CC, MVT::i8), Cond),
6291 DAG.getConstant(1, MVT::i8));
Evan Cheng834ae6b2009-12-15 00:53:42 +00006292
Owen Anderson36e3a6e2009-08-11 20:47:22 +00006293 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
6294 DAG.getConstant(X86CC, MVT::i8), Cond);
Evan Cheng950aac02007-09-25 01:57:46 +00006295}
6296
Dan Gohmandbb121b2010-04-17 15:26:15 +00006297SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman8181bd12008-07-27 21:46:04 +00006298 SDValue Cond;
6299 SDValue Op0 = Op.getOperand(0);
6300 SDValue Op1 = Op.getOperand(1);
6301 SDValue CC = Op.getOperand(2);
Owen Andersonac9de032009-08-10 22:56:29 +00006302 EVT VT = Op.getValueType();
Nate Begeman03605a02008-07-17 16:51:19 +00006303 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
6304 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006305 DebugLoc dl = Op.getDebugLoc();
Nate Begeman03605a02008-07-17 16:51:19 +00006306
6307 if (isFP) {
6308 unsigned SSECC = 8;
Owen Andersonac9de032009-08-10 22:56:29 +00006309 EVT VT0 = Op0.getValueType();
Owen Anderson36e3a6e2009-08-11 20:47:22 +00006310 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
6311 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman03605a02008-07-17 16:51:19 +00006312 bool Swap = false;
6313
6314 switch (SetCCOpcode) {
6315 default: break;
Nate Begeman6357f9d2008-07-25 19:05:58 +00006316 case ISD::SETOEQ:
Nate Begeman03605a02008-07-17 16:51:19 +00006317 case ISD::SETEQ: SSECC = 0; break;
Scott Michel91099d62009-02-17 22:15:04 +00006318 case ISD::SETOGT:
Nate Begeman03605a02008-07-17 16:51:19 +00006319 case ISD::SETGT: Swap = true; // Fallthrough
6320 case ISD::SETLT:
6321 case ISD::SETOLT: SSECC = 1; break;
6322 case ISD::SETOGE:
6323 case ISD::SETGE: Swap = true; // Fallthrough
6324 case ISD::SETLE:
6325 case ISD::SETOLE: SSECC = 2; break;
6326 case ISD::SETUO: SSECC = 3; break;
Nate Begeman6357f9d2008-07-25 19:05:58 +00006327 case ISD::SETUNE:
Nate Begeman03605a02008-07-17 16:51:19 +00006328 case ISD::SETNE: SSECC = 4; break;
6329 case ISD::SETULE: Swap = true;
6330 case ISD::SETUGE: SSECC = 5; break;
6331 case ISD::SETULT: Swap = true;
6332 case ISD::SETUGT: SSECC = 6; break;
6333 case ISD::SETO: SSECC = 7; break;
6334 }
6335 if (Swap)
6336 std::swap(Op0, Op1);
6337
Nate Begeman6357f9d2008-07-25 19:05:58 +00006338 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman03605a02008-07-17 16:51:19 +00006339 if (SSECC == 8) {
Nate Begeman6357f9d2008-07-25 19:05:58 +00006340 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006341 SDValue UNORD, EQ;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00006342 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
6343 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesence0805b2009-02-03 19:33:06 +00006344 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begeman6357f9d2008-07-25 19:05:58 +00006345 }
6346 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006347 SDValue ORD, NEQ;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00006348 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
6349 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesence0805b2009-02-03 19:33:06 +00006350 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begeman6357f9d2008-07-25 19:05:58 +00006351 }
Edwin Törökbd448e32009-07-14 16:55:14 +00006352 llvm_unreachable("Illegal FP comparison");
Nate Begeman03605a02008-07-17 16:51:19 +00006353 }
6354 // Handle all other FP comparisons here.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00006355 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman03605a02008-07-17 16:51:19 +00006356 }
Scott Michel91099d62009-02-17 22:15:04 +00006357
Nate Begeman03605a02008-07-17 16:51:19 +00006358 // We are handling one of the integer comparisons here. Since SSE only has
6359 // GT and EQ comparisons for integer, swapping operands and multiple
6360 // operations may be required for some comparisons.
6361 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
6362 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michel91099d62009-02-17 22:15:04 +00006363
Owen Anderson36e3a6e2009-08-11 20:47:22 +00006364 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman03605a02008-07-17 16:51:19 +00006365 default: break;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00006366 case MVT::v8i8:
6367 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
6368 case MVT::v4i16:
6369 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
6370 case MVT::v2i32:
6371 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
6372 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman03605a02008-07-17 16:51:19 +00006373 }
Scott Michel91099d62009-02-17 22:15:04 +00006374
Nate Begeman03605a02008-07-17 16:51:19 +00006375 switch (SetCCOpcode) {
6376 default: break;
6377 case ISD::SETNE: Invert = true;
6378 case ISD::SETEQ: Opc = EQOpc; break;
6379 case ISD::SETLT: Swap = true;
6380 case ISD::SETGT: Opc = GTOpc; break;
6381 case ISD::SETGE: Swap = true;
6382 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
6383 case ISD::SETULT: Swap = true;
6384 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
6385 case ISD::SETUGE: Swap = true;
6386 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
6387 }
6388 if (Swap)
6389 std::swap(Op0, Op1);
Scott Michel91099d62009-02-17 22:15:04 +00006390
Nate Begeman03605a02008-07-17 16:51:19 +00006391 // Since SSE has no unsigned integer comparisons, we need to flip the sign
6392 // bits of the inputs before performing those operations.
6393 if (FlipSigns) {
Owen Andersonac9de032009-08-10 22:56:29 +00006394 EVT EltVT = VT.getVectorElementType();
Duncan Sands505ba942009-02-01 18:06:53 +00006395 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
6396 EltVT);
Dan Gohman8181bd12008-07-27 21:46:04 +00006397 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Cheng907a2d22009-02-25 22:49:59 +00006398 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
6399 SignBits.size());
Dale Johannesence0805b2009-02-03 19:33:06 +00006400 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
6401 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman03605a02008-07-17 16:51:19 +00006402 }
Scott Michel91099d62009-02-17 22:15:04 +00006403
Dale Johannesence0805b2009-02-03 19:33:06 +00006404 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman03605a02008-07-17 16:51:19 +00006405
6406 // If the logical-not of the result is required, perform that now.
Bob Wilson81a42cf2009-01-22 17:39:32 +00006407 if (Invert)
Dale Johannesence0805b2009-02-03 19:33:06 +00006408 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson81a42cf2009-01-22 17:39:32 +00006409
Nate Begeman03605a02008-07-17 16:51:19 +00006410 return Result;
6411}
Evan Cheng950aac02007-09-25 01:57:46 +00006412
Evan Chengd580f022008-12-03 08:38:43 +00006413// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman99a12192009-03-04 19:44:21 +00006414static bool isX86LogicalCmp(SDValue Op) {
6415 unsigned Opc = Op.getNode()->getOpcode();
6416 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
6417 return true;
6418 if (Op.getResNo() == 1 &&
6419 (Opc == X86ISD::ADD ||
6420 Opc == X86ISD::SUB ||
6421 Opc == X86ISD::SMUL ||
6422 Opc == X86ISD::UMUL ||
6423 Opc == X86ISD::INC ||
Dan Gohman12e03292009-09-18 19:59:53 +00006424 Opc == X86ISD::DEC ||
6425 Opc == X86ISD::OR ||
6426 Opc == X86ISD::XOR ||
6427 Opc == X86ISD::AND))
Dan Gohman99a12192009-03-04 19:44:21 +00006428 return true;
6429
6430 return false;
Evan Chengd580f022008-12-03 08:38:43 +00006431}
6432
Dan Gohmandbb121b2010-04-17 15:26:15 +00006433SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006434 bool addTest = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00006435 SDValue Cond = Op.getOperand(0);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006436 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00006437 SDValue CC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006438
Dan Gohman8ab7dd02009-10-20 16:22:37 +00006439 if (Cond.getOpcode() == ISD::SETCC) {
6440 SDValue NewCond = LowerSETCC(Cond, DAG);
6441 if (NewCond.getNode())
6442 Cond = NewCond;
6443 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006444
Evan Cheng506f6f02010-01-26 02:00:44 +00006445 // (select (x == 0), -1, 0) -> (sign_bit (x - 1))
6446 SDValue Op1 = Op.getOperand(1);
6447 SDValue Op2 = Op.getOperand(2);
6448 if (Cond.getOpcode() == X86ISD::SETCC &&
6449 cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue() == X86::COND_E) {
6450 SDValue Cmp = Cond.getOperand(1);
6451 if (Cmp.getOpcode() == X86ISD::CMP) {
6452 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op1);
6453 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
6454 ConstantSDNode *RHSC =
6455 dyn_cast<ConstantSDNode>(Cmp.getOperand(1).getNode());
6456 if (N1C && N1C->isAllOnesValue() &&
6457 N2C && N2C->isNullValue() &&
6458 RHSC && RHSC->isNullValue()) {
6459 SDValue CmpOp0 = Cmp.getOperand(0);
Chris Lattneraeeb8b72010-03-14 18:44:35 +00006460 Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Evan Cheng506f6f02010-01-26 02:00:44 +00006461 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
6462 return DAG.getNode(X86ISD::SETCC_CARRY, dl, Op.getValueType(),
6463 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
6464 }
6465 }
6466 }
6467
Evan Cheng834ae6b2009-12-15 00:53:42 +00006468 // Look pass (and (setcc_carry (cmp ...)), 1).
6469 if (Cond.getOpcode() == ISD::AND &&
6470 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
6471 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
6472 if (C && C->getAPIntValue() == 1)
6473 Cond = Cond.getOperand(0);
6474 }
6475
Evan Cheng50d37ab2007-10-08 22:16:29 +00006476 // If condition flag is set by a X86ISD::CMP, then use it as the condition
6477 // setting operand in place of the X86ISD::SETCC.
Evan Cheng834ae6b2009-12-15 00:53:42 +00006478 if (Cond.getOpcode() == X86ISD::SETCC ||
6479 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006480 CC = Cond.getOperand(0);
6481
Dan Gohman8181bd12008-07-27 21:46:04 +00006482 SDValue Cmp = Cond.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006483 unsigned Opc = Cmp.getOpcode();
Owen Andersonac9de032009-08-10 22:56:29 +00006484 EVT VT = Op.getValueType();
Scott Michel91099d62009-02-17 22:15:04 +00006485
Evan Cheng50d37ab2007-10-08 22:16:29 +00006486 bool IllegalFPCMov = false;
Duncan Sands92c43912008-06-06 12:08:01 +00006487 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattnercf515b52008-01-16 06:24:21 +00006488 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman40686732008-09-26 21:54:37 +00006489 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michel91099d62009-02-17 22:15:04 +00006490
Chris Lattnere4577dc2009-03-12 06:52:53 +00006491 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
6492 Opc == X86ISD::BT) { // FIXME
Evan Cheng50d37ab2007-10-08 22:16:29 +00006493 Cond = Cmp;
Evan Cheng950aac02007-09-25 01:57:46 +00006494 addTest = false;
6495 }
6496 }
6497
6498 if (addTest) {
Evan Cheng095dac22010-01-06 19:38:29 +00006499 // Look pass the truncate.
6500 if (Cond.getOpcode() == ISD::TRUNCATE)
6501 Cond = Cond.getOperand(0);
6502
6503 // We know the result of AND is compared against zero. Try to match
6504 // it to BT.
6505 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
6506 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
6507 if (NewSetCC.getNode()) {
6508 CC = NewSetCC.getOperand(0);
6509 Cond = NewSetCC.getOperand(1);
6510 addTest = false;
6511 }
6512 }
6513 }
6514
6515 if (addTest) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00006516 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Chenga6a5f5f2010-04-26 19:06:11 +00006517 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng950aac02007-09-25 01:57:46 +00006518 }
6519
Evan Cheng950aac02007-09-25 01:57:46 +00006520 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
6521 // condition is true.
Evan Cheng506f6f02010-01-26 02:00:44 +00006522 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Flag);
6523 SDValue Ops[] = { Op2, Op1, CC, Cond };
Benjamin Kramer65f60c92009-12-29 16:57:26 +00006524 return DAG.getNode(X86ISD::CMOV, dl, VTs, Ops, array_lengthof(Ops));
Evan Cheng950aac02007-09-25 01:57:46 +00006525}
6526
Evan Chengd580f022008-12-03 08:38:43 +00006527// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
6528// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
6529// from the AND / OR.
6530static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
6531 Opc = Op.getOpcode();
6532 if (Opc != ISD::OR && Opc != ISD::AND)
6533 return false;
6534 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
6535 Op.getOperand(0).hasOneUse() &&
6536 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
6537 Op.getOperand(1).hasOneUse());
6538}
6539
Evan Cheng67f98b12009-02-02 08:19:07 +00006540// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
6541// 1 and that the SETCC node has a single use.
Evan Cheng8c3af2c2009-02-02 08:07:36 +00006542static bool isXor1OfSetCC(SDValue Op) {
6543 if (Op.getOpcode() != ISD::XOR)
6544 return false;
6545 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
6546 if (N1C && N1C->getAPIntValue() == 1) {
6547 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
6548 Op.getOperand(0).hasOneUse();
6549 }
6550 return false;
6551}
6552
Dan Gohmandbb121b2010-04-17 15:26:15 +00006553SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006554 bool addTest = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00006555 SDValue Chain = Op.getOperand(0);
6556 SDValue Cond = Op.getOperand(1);
6557 SDValue Dest = Op.getOperand(2);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006558 DebugLoc dl = Op.getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00006559 SDValue CC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006560
Dan Gohman8ab7dd02009-10-20 16:22:37 +00006561 if (Cond.getOpcode() == ISD::SETCC) {
6562 SDValue NewCond = LowerSETCC(Cond, DAG);
6563 if (NewCond.getNode())
6564 Cond = NewCond;
6565 }
Chris Lattner77a62312008-12-25 05:34:37 +00006566#if 0
6567 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingf5399032008-12-12 21:15:41 +00006568 else if (Cond.getOpcode() == X86ISD::ADD ||
6569 Cond.getOpcode() == X86ISD::SUB ||
6570 Cond.getOpcode() == X86ISD::SMUL ||
6571 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling7e04be62008-12-09 22:08:41 +00006572 Cond = LowerXALUO(Cond, DAG);
Chris Lattner77a62312008-12-25 05:34:37 +00006573#endif
Scott Michel91099d62009-02-17 22:15:04 +00006574
Evan Cheng834ae6b2009-12-15 00:53:42 +00006575 // Look pass (and (setcc_carry (cmp ...)), 1).
6576 if (Cond.getOpcode() == ISD::AND &&
6577 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
6578 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
6579 if (C && C->getAPIntValue() == 1)
6580 Cond = Cond.getOperand(0);
6581 }
6582
Evan Cheng50d37ab2007-10-08 22:16:29 +00006583 // If condition flag is set by a X86ISD::CMP, then use it as the condition
6584 // setting operand in place of the X86ISD::SETCC.
Evan Cheng834ae6b2009-12-15 00:53:42 +00006585 if (Cond.getOpcode() == X86ISD::SETCC ||
6586 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006587 CC = Cond.getOperand(0);
6588
Dan Gohman8181bd12008-07-27 21:46:04 +00006589 SDValue Cmp = Cond.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006590 unsigned Opc = Cmp.getOpcode();
Chris Lattner77a62312008-12-25 05:34:37 +00006591 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman99a12192009-03-04 19:44:21 +00006592 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng50d37ab2007-10-08 22:16:29 +00006593 Cond = Cmp;
Evan Cheng950aac02007-09-25 01:57:46 +00006594 addTest = false;
Bill Wendlingd3511522008-12-02 01:06:39 +00006595 } else {
Evan Chengd580f022008-12-03 08:38:43 +00006596 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling809e7bd2008-12-03 08:32:02 +00006597 default: break;
6598 case X86::COND_O:
Dan Gohman0fc9ed62009-01-07 00:15:08 +00006599 case X86::COND_B:
Chris Lattner77a62312008-12-25 05:34:37 +00006600 // These can only come from an arithmetic instruction with overflow,
6601 // e.g. SADDO, UADDO.
Bill Wendling809e7bd2008-12-03 08:32:02 +00006602 Cond = Cond.getNode()->getOperand(1);
6603 addTest = false;
6604 break;
Bill Wendlingd3511522008-12-02 01:06:39 +00006605 }
Evan Cheng950aac02007-09-25 01:57:46 +00006606 }
Evan Chengd580f022008-12-03 08:38:43 +00006607 } else {
6608 unsigned CondOpc;
6609 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
6610 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Chengd580f022008-12-03 08:38:43 +00006611 if (CondOpc == ISD::OR) {
6612 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
6613 // two branches instead of an explicit OR instruction with a
6614 // separate test.
6615 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman99a12192009-03-04 19:44:21 +00006616 isX86LogicalCmp(Cmp)) {
Evan Chengd580f022008-12-03 08:38:43 +00006617 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006618 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Chengd580f022008-12-03 08:38:43 +00006619 Chain, Dest, CC, Cmp);
6620 CC = Cond.getOperand(1).getOperand(0);
6621 Cond = Cmp;
6622 addTest = false;
6623 }
6624 } else { // ISD::AND
6625 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
6626 // two branches instead of an explicit AND instruction with a
6627 // separate test. However, we only do this if this block doesn't
6628 // have a fall-through edge, because this requires an explicit
6629 // jmp when the condition is false.
6630 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman99a12192009-03-04 19:44:21 +00006631 isX86LogicalCmp(Cmp) &&
Evan Chengd580f022008-12-03 08:38:43 +00006632 Op.getNode()->hasOneUse()) {
6633 X86::CondCode CCode =
6634 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
6635 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00006636 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman4e3d9822010-06-18 15:30:29 +00006637 SDNode *User = *Op.getNode()->use_begin();
Evan Chengd580f022008-12-03 08:38:43 +00006638 // Look for an unconditional branch following this conditional branch.
6639 // We need this because we need to reverse the successors in order
6640 // to implement FCMP_OEQ.
Dan Gohman4e3d9822010-06-18 15:30:29 +00006641 if (User->getOpcode() == ISD::BR) {
6642 SDValue FalseBB = User->getOperand(1);
6643 SDNode *NewBR =
6644 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Chengd580f022008-12-03 08:38:43 +00006645 assert(NewBR == User);
Nick Lewyckya217bb82010-06-20 20:27:42 +00006646 (void)NewBR;
Evan Chengd580f022008-12-03 08:38:43 +00006647 Dest = FalseBB;
Dan Gohman6a00fcb2008-10-21 03:29:32 +00006648
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006649 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Chengd580f022008-12-03 08:38:43 +00006650 Chain, Dest, CC, Cmp);
6651 X86::CondCode CCode =
6652 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
6653 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00006654 CC = DAG.getConstant(CCode, MVT::i8);
Evan Chengd580f022008-12-03 08:38:43 +00006655 Cond = Cmp;
6656 addTest = false;
6657 }
6658 }
Dan Gohman6a00fcb2008-10-21 03:29:32 +00006659 }
Evan Cheng8c3af2c2009-02-02 08:07:36 +00006660 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
6661 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
6662 // It should be transformed during dag combiner except when the condition
6663 // is set by a arithmetics with overflow node.
6664 X86::CondCode CCode =
6665 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
6666 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00006667 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng8c3af2c2009-02-02 08:07:36 +00006668 Cond = Cond.getOperand(0).getOperand(1);
6669 addTest = false;
Dan Gohman6a00fcb2008-10-21 03:29:32 +00006670 }
Evan Cheng950aac02007-09-25 01:57:46 +00006671 }
6672
6673 if (addTest) {
Evan Cheng095dac22010-01-06 19:38:29 +00006674 // Look pass the truncate.
6675 if (Cond.getOpcode() == ISD::TRUNCATE)
6676 Cond = Cond.getOperand(0);
6677
6678 // We know the result of AND is compared against zero. Try to match
6679 // it to BT.
6680 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
6681 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
6682 if (NewSetCC.getNode()) {
6683 CC = NewSetCC.getOperand(0);
6684 Cond = NewSetCC.getOperand(1);
6685 addTest = false;
6686 }
6687 }
6688 }
6689
6690 if (addTest) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00006691 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Chenga6a5f5f2010-04-26 19:06:11 +00006692 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng950aac02007-09-25 01:57:46 +00006693 }
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006694 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman6a00fcb2008-10-21 03:29:32 +00006695 Chain, Dest, CC, Cond);
Evan Cheng950aac02007-09-25 01:57:46 +00006696}
6697
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006698
6699// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
6700// Calls to _alloca is needed to probe the stack when allocating more than 4k
6701// bytes in one go. Touching the stack at 4K increments is necessary to ensure
6702// that the guard pages used by the OS virtual memory manager are allocated in
6703// correct sequence.
Dan Gohman8181bd12008-07-27 21:46:04 +00006704SDValue
6705X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmandbb121b2010-04-17 15:26:15 +00006706 SelectionDAG &DAG) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006707 assert(Subtarget->isTargetCygMing() &&
6708 "This should be used only on Cygwin/Mingw targets");
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006709 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00006710
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006711 // Get the inputs.
Dan Gohman8181bd12008-07-27 21:46:04 +00006712 SDValue Chain = Op.getOperand(0);
6713 SDValue Size = Op.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006714 // FIXME: Ensure alignment here
6715
Dan Gohman8181bd12008-07-27 21:46:04 +00006716 SDValue Flag;
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00006717
Owen Anderson36e3a6e2009-08-11 20:47:22 +00006718 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006719
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006720 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Size, Flag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006721 Flag = Chain.getValue(1);
6722
Anton Korobeynikov7cd32422010-03-06 19:32:29 +00006723 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006724
Anton Korobeynikov7cd32422010-03-06 19:32:29 +00006725 Chain = DAG.getNode(X86ISD::MINGW_ALLOCA, dl, NodeTys, Chain, Flag);
6726 Flag = Chain.getValue(1);
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00006727
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006728 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov487aefd2008-06-11 20:16:42 +00006729
Dan Gohman8181bd12008-07-27 21:46:04 +00006730 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006731 return DAG.getMergeValues(Ops1, 2, dl);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006732}
6733
Dan Gohmandbb121b2010-04-17 15:26:15 +00006734SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohmand80404c2010-04-17 14:41:14 +00006735 MachineFunction &MF = DAG.getMachineFunction();
6736 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
6737
Dan Gohman12a9c082008-02-06 22:27:42 +00006738 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006739 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006740
6741 if (!Subtarget->is64Bit()) {
6742 // vastart just stores the address of the VarArgsFrameIndex slot into the
6743 // memory location argument.
Dan Gohmand80404c2010-04-17 14:41:14 +00006744 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
6745 getPointerTy());
David Greene25160362010-02-15 16:53:33 +00006746 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1), SV, 0,
6747 false, false, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006748 }
6749
6750 // __va_list_tag:
6751 // gp_offset (0 - 6 * 8)
6752 // fp_offset (48 - 48 + 8 * 16)
6753 // overflow_arg_area (point to parameters coming in memory).
6754 // reg_save_area
Dan Gohman8181bd12008-07-27 21:46:04 +00006755 SmallVector<SDValue, 8> MemOps;
6756 SDValue FIN = Op.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006757 // Store gp_offset
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006758 SDValue Store = DAG.getStore(Op.getOperand(0), dl,
Dan Gohmand80404c2010-04-17 14:41:14 +00006759 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
6760 MVT::i32),
David Greene25160362010-02-15 16:53:33 +00006761 FIN, SV, 0, false, false, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006762 MemOps.push_back(Store);
6763
6764 // Store fp_offset
Scott Michel91099d62009-02-17 22:15:04 +00006765 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006766 FIN, DAG.getIntPtrConstant(4));
6767 Store = DAG.getStore(Op.getOperand(0), dl,
Dan Gohmand80404c2010-04-17 14:41:14 +00006768 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
6769 MVT::i32),
David Greene25160362010-02-15 16:53:33 +00006770 FIN, SV, 0, false, false, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006771 MemOps.push_back(Store);
6772
6773 // Store ptr to overflow_arg_area
Scott Michel91099d62009-02-17 22:15:04 +00006774 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006775 FIN, DAG.getIntPtrConstant(4));
Dan Gohmand80404c2010-04-17 14:41:14 +00006776 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
6777 getPointerTy());
David Greene25160362010-02-15 16:53:33 +00006778 Store = DAG.getStore(Op.getOperand(0), dl, OVFIN, FIN, SV, 0,
6779 false, false, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006780 MemOps.push_back(Store);
6781
6782 // Store ptr to reg_save_area.
Scott Michel91099d62009-02-17 22:15:04 +00006783 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006784 FIN, DAG.getIntPtrConstant(8));
Dan Gohmand80404c2010-04-17 14:41:14 +00006785 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
6786 getPointerTy());
David Greene25160362010-02-15 16:53:33 +00006787 Store = DAG.getStore(Op.getOperand(0), dl, RSFIN, FIN, SV, 0,
6788 false, false, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006789 MemOps.push_back(Store);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00006790 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesen0db52dd2009-02-03 20:21:25 +00006791 &MemOps[0], MemOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006792}
6793
Dan Gohmandbb121b2010-04-17 15:26:15 +00006794SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman827cb1f2008-05-10 01:26:14 +00006795 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
6796 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_arg!");
Dan Gohman827cb1f2008-05-10 01:26:14 +00006797
Chris Lattner8316f2d2010-04-07 22:58:41 +00006798 report_fatal_error("VAArgInst is not yet implemented for x86-64!");
Dan Gohman8181bd12008-07-27 21:46:04 +00006799 return SDValue();
Dan Gohman827cb1f2008-05-10 01:26:14 +00006800}
6801
Dan Gohmandbb121b2010-04-17 15:26:15 +00006802SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006803 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman840ff5c2008-04-18 20:55:41 +00006804 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman8181bd12008-07-27 21:46:04 +00006805 SDValue Chain = Op.getOperand(0);
6806 SDValue DstPtr = Op.getOperand(1);
6807 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman12a9c082008-02-06 22:27:42 +00006808 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
6809 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006810 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006811
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00006812 return DAG.getMemcpy(Chain, dl, DstPtr, SrcPtr,
Mon P Wang483af3c2010-04-04 03:10:48 +00006813 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
6814 false, DstSV, 0, SrcSV, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006815}
6816
Dan Gohman8181bd12008-07-27 21:46:04 +00006817SDValue
Dan Gohmandbb121b2010-04-17 15:26:15 +00006818X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00006819 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00006820 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006821 switch (IntNo) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006822 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006823 // Comparison intrinsics.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006824 case Intrinsic::x86_sse_comieq_ss:
6825 case Intrinsic::x86_sse_comilt_ss:
6826 case Intrinsic::x86_sse_comile_ss:
6827 case Intrinsic::x86_sse_comigt_ss:
6828 case Intrinsic::x86_sse_comige_ss:
6829 case Intrinsic::x86_sse_comineq_ss:
6830 case Intrinsic::x86_sse_ucomieq_ss:
6831 case Intrinsic::x86_sse_ucomilt_ss:
6832 case Intrinsic::x86_sse_ucomile_ss:
6833 case Intrinsic::x86_sse_ucomigt_ss:
6834 case Intrinsic::x86_sse_ucomige_ss:
6835 case Intrinsic::x86_sse_ucomineq_ss:
6836 case Intrinsic::x86_sse2_comieq_sd:
6837 case Intrinsic::x86_sse2_comilt_sd:
6838 case Intrinsic::x86_sse2_comile_sd:
6839 case Intrinsic::x86_sse2_comigt_sd:
6840 case Intrinsic::x86_sse2_comige_sd:
6841 case Intrinsic::x86_sse2_comineq_sd:
6842 case Intrinsic::x86_sse2_ucomieq_sd:
6843 case Intrinsic::x86_sse2_ucomilt_sd:
6844 case Intrinsic::x86_sse2_ucomile_sd:
6845 case Intrinsic::x86_sse2_ucomigt_sd:
6846 case Intrinsic::x86_sse2_ucomige_sd:
6847 case Intrinsic::x86_sse2_ucomineq_sd: {
6848 unsigned Opc = 0;
6849 ISD::CondCode CC = ISD::SETCC_INVALID;
6850 switch (IntNo) {
6851 default: break;
6852 case Intrinsic::x86_sse_comieq_ss:
6853 case Intrinsic::x86_sse2_comieq_sd:
6854 Opc = X86ISD::COMI;
6855 CC = ISD::SETEQ;
6856 break;
6857 case Intrinsic::x86_sse_comilt_ss:
6858 case Intrinsic::x86_sse2_comilt_sd:
6859 Opc = X86ISD::COMI;
6860 CC = ISD::SETLT;
6861 break;
6862 case Intrinsic::x86_sse_comile_ss:
6863 case Intrinsic::x86_sse2_comile_sd:
6864 Opc = X86ISD::COMI;
6865 CC = ISD::SETLE;
6866 break;
6867 case Intrinsic::x86_sse_comigt_ss:
6868 case Intrinsic::x86_sse2_comigt_sd:
6869 Opc = X86ISD::COMI;
6870 CC = ISD::SETGT;
6871 break;
6872 case Intrinsic::x86_sse_comige_ss:
6873 case Intrinsic::x86_sse2_comige_sd:
6874 Opc = X86ISD::COMI;
6875 CC = ISD::SETGE;
6876 break;
6877 case Intrinsic::x86_sse_comineq_ss:
6878 case Intrinsic::x86_sse2_comineq_sd:
6879 Opc = X86ISD::COMI;
6880 CC = ISD::SETNE;
6881 break;
6882 case Intrinsic::x86_sse_ucomieq_ss:
6883 case Intrinsic::x86_sse2_ucomieq_sd:
6884 Opc = X86ISD::UCOMI;
6885 CC = ISD::SETEQ;
6886 break;
6887 case Intrinsic::x86_sse_ucomilt_ss:
6888 case Intrinsic::x86_sse2_ucomilt_sd:
6889 Opc = X86ISD::UCOMI;
6890 CC = ISD::SETLT;
6891 break;
6892 case Intrinsic::x86_sse_ucomile_ss:
6893 case Intrinsic::x86_sse2_ucomile_sd:
6894 Opc = X86ISD::UCOMI;
6895 CC = ISD::SETLE;
6896 break;
6897 case Intrinsic::x86_sse_ucomigt_ss:
6898 case Intrinsic::x86_sse2_ucomigt_sd:
6899 Opc = X86ISD::UCOMI;
6900 CC = ISD::SETGT;
6901 break;
6902 case Intrinsic::x86_sse_ucomige_ss:
6903 case Intrinsic::x86_sse2_ucomige_sd:
6904 Opc = X86ISD::UCOMI;
6905 CC = ISD::SETGE;
6906 break;
6907 case Intrinsic::x86_sse_ucomineq_ss:
6908 case Intrinsic::x86_sse2_ucomineq_sd:
6909 Opc = X86ISD::UCOMI;
6910 CC = ISD::SETNE;
6911 break;
6912 }
6913
Dan Gohman8181bd12008-07-27 21:46:04 +00006914 SDValue LHS = Op.getOperand(1);
6915 SDValue RHS = Op.getOperand(2);
Chris Lattnerebb91142008-12-24 23:53:05 +00006916 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman8ab7dd02009-10-20 16:22:37 +00006917 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson36e3a6e2009-08-11 20:47:22 +00006918 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
6919 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
6920 DAG.getConstant(X86CC, MVT::i8), Cond);
6921 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006922 }
Eric Christopher95d79262009-07-29 00:28:05 +00006923 // ptest intrinsics. The intrinsic these come from are designed to return
Eric Christopher79e0e8b2009-07-29 01:01:19 +00006924 // an integer value, not just an instruction so lower it to the ptest
6925 // pattern and a setcc for the result.
Eric Christopher95d79262009-07-29 00:28:05 +00006926 case Intrinsic::x86_sse41_ptestz:
6927 case Intrinsic::x86_sse41_ptestc:
6928 case Intrinsic::x86_sse41_ptestnzc:{
6929 unsigned X86CC = 0;
6930 switch (IntNo) {
Eric Christopher6612b082009-07-29 18:14:04 +00006931 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Eric Christopher95d79262009-07-29 00:28:05 +00006932 case Intrinsic::x86_sse41_ptestz:
6933 // ZF = 1
6934 X86CC = X86::COND_E;
6935 break;
6936 case Intrinsic::x86_sse41_ptestc:
6937 // CF = 1
6938 X86CC = X86::COND_B;
6939 break;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00006940 case Intrinsic::x86_sse41_ptestnzc:
Eric Christopher95d79262009-07-29 00:28:05 +00006941 // ZF and CF = 0
6942 X86CC = X86::COND_A;
6943 break;
6944 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00006945
Eric Christopher95d79262009-07-29 00:28:05 +00006946 SDValue LHS = Op.getOperand(1);
6947 SDValue RHS = Op.getOperand(2);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00006948 SDValue Test = DAG.getNode(X86ISD::PTEST, dl, MVT::i32, LHS, RHS);
6949 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
6950 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
6951 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher95d79262009-07-29 00:28:05 +00006952 }
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006953
6954 // Fix vector shift instructions where the last operand is a non-immediate
6955 // i32 value.
6956 case Intrinsic::x86_sse2_pslli_w:
6957 case Intrinsic::x86_sse2_pslli_d:
6958 case Intrinsic::x86_sse2_pslli_q:
6959 case Intrinsic::x86_sse2_psrli_w:
6960 case Intrinsic::x86_sse2_psrli_d:
6961 case Intrinsic::x86_sse2_psrli_q:
6962 case Intrinsic::x86_sse2_psrai_w:
6963 case Intrinsic::x86_sse2_psrai_d:
6964 case Intrinsic::x86_mmx_pslli_w:
6965 case Intrinsic::x86_mmx_pslli_d:
6966 case Intrinsic::x86_mmx_pslli_q:
6967 case Intrinsic::x86_mmx_psrli_w:
6968 case Intrinsic::x86_mmx_psrli_d:
6969 case Intrinsic::x86_mmx_psrli_q:
6970 case Intrinsic::x86_mmx_psrai_w:
6971 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006972 SDValue ShAmt = Op.getOperand(2);
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006973 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman8181bd12008-07-27 21:46:04 +00006974 return SDValue();
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006975
6976 unsigned NewIntNo = 0;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00006977 EVT ShAmtVT = MVT::v4i32;
Evan Cheng9f69f9d2008-05-04 09:15:50 +00006978 switch (IntNo) {
6979 case Intrinsic::x86_sse2_pslli_w:
6980 NewIntNo = Intrinsic::x86_sse2_psll_w;
6981 break;
6982 case Intrinsic::x86_sse2_pslli_d:
6983 NewIntNo = Intrinsic::x86_sse2_psll_d;
6984 break;
6985 case Intrinsic::x86_sse2_pslli_q:
6986 NewIntNo = Intrinsic::x86_sse2_psll_q;
6987 break;
6988 case Intrinsic::x86_sse2_psrli_w:
6989 NewIntNo = Intrinsic::x86_sse2_psrl_w;
6990 break;
6991 case Intrinsic::x86_sse2_psrli_d:
6992 NewIntNo = Intrinsic::x86_sse2_psrl_d;
6993 break;
6994 case Intrinsic::x86_sse2_psrli_q:
6995 NewIntNo = Intrinsic::x86_sse2_psrl_q;
6996 break;
6997 case Intrinsic::x86_sse2_psrai_w:
6998 NewIntNo = Intrinsic::x86_sse2_psra_w;
6999 break;
7000 case Intrinsic::x86_sse2_psrai_d:
7001 NewIntNo = Intrinsic::x86_sse2_psra_d;
7002 break;
7003 default: {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007004 ShAmtVT = MVT::v2i32;
Evan Cheng9f69f9d2008-05-04 09:15:50 +00007005 switch (IntNo) {
7006 case Intrinsic::x86_mmx_pslli_w:
7007 NewIntNo = Intrinsic::x86_mmx_psll_w;
7008 break;
7009 case Intrinsic::x86_mmx_pslli_d:
7010 NewIntNo = Intrinsic::x86_mmx_psll_d;
7011 break;
7012 case Intrinsic::x86_mmx_pslli_q:
7013 NewIntNo = Intrinsic::x86_mmx_psll_q;
7014 break;
7015 case Intrinsic::x86_mmx_psrli_w:
7016 NewIntNo = Intrinsic::x86_mmx_psrl_w;
7017 break;
7018 case Intrinsic::x86_mmx_psrli_d:
7019 NewIntNo = Intrinsic::x86_mmx_psrl_d;
7020 break;
7021 case Intrinsic::x86_mmx_psrli_q:
7022 NewIntNo = Intrinsic::x86_mmx_psrl_q;
7023 break;
7024 case Intrinsic::x86_mmx_psrai_w:
7025 NewIntNo = Intrinsic::x86_mmx_psra_w;
7026 break;
7027 case Intrinsic::x86_mmx_psrai_d:
7028 NewIntNo = Intrinsic::x86_mmx_psra_d;
7029 break;
Edwin Törökbd448e32009-07-14 16:55:14 +00007030 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng9f69f9d2008-05-04 09:15:50 +00007031 }
7032 break;
7033 }
7034 }
Mon P Wang04c767e2009-09-03 19:56:25 +00007035
7036 // The vector shift intrinsics with scalars uses 32b shift amounts but
7037 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
7038 // to be zero.
7039 SDValue ShOps[4];
7040 ShOps[0] = ShAmt;
7041 ShOps[1] = DAG.getConstant(0, MVT::i32);
7042 if (ShAmtVT == MVT::v4i32) {
7043 ShOps[2] = DAG.getUNDEF(MVT::i32);
7044 ShOps[3] = DAG.getUNDEF(MVT::i32);
7045 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
7046 } else {
7047 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
7048 }
7049
Owen Andersonac9de032009-08-10 22:56:29 +00007050 EVT VT = Op.getValueType();
Mon P Wang04c767e2009-09-03 19:56:25 +00007051 ShAmt = DAG.getNode(ISD::BIT_CONVERT, dl, VT, ShAmt);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007052 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007053 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng9f69f9d2008-05-04 09:15:50 +00007054 Op.getOperand(1), ShAmt);
7055 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007056 }
7057}
7058
Dan Gohmandbb121b2010-04-17 15:26:15 +00007059SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
7060 SelectionDAG &DAG) const {
Evan Cheng32d1bb92010-05-22 01:47:14 +00007061 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7062 MFI->setReturnAddressIsTaken(true);
7063
Bill Wendling6ddc87b2009-01-16 19:25:27 +00007064 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00007065 DebugLoc dl = Op.getDebugLoc();
Bill Wendling6ddc87b2009-01-16 19:25:27 +00007066
7067 if (Depth > 0) {
7068 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
7069 SDValue Offset =
7070 DAG.getConstant(TD->getPointerSize(),
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007071 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007072 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michel91099d62009-02-17 22:15:04 +00007073 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007074 FrameAddr, Offset),
David Greene25160362010-02-15 16:53:33 +00007075 NULL, 0, false, false, 0);
Bill Wendling6ddc87b2009-01-16 19:25:27 +00007076 }
7077
7078 // Just load the return address.
Dan Gohman8181bd12008-07-27 21:46:04 +00007079 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michel91099d62009-02-17 22:15:04 +00007080 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
David Greene25160362010-02-15 16:53:33 +00007081 RetAddrFI, NULL, 0, false, false, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007082}
7083
Dan Gohmandbb121b2010-04-17 15:26:15 +00007084SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng33633672008-09-27 01:56:22 +00007085 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7086 MFI->setFrameAddressIsTaken(true);
Evan Cheng32d1bb92010-05-22 01:47:14 +00007087
Owen Andersonac9de032009-08-10 22:56:29 +00007088 EVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00007089 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng33633672008-09-27 01:56:22 +00007090 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
7091 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007092 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng33633672008-09-27 01:56:22 +00007093 while (Depth--)
David Greene25160362010-02-15 16:53:33 +00007094 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr, NULL, 0,
7095 false, false, 0);
Evan Cheng33633672008-09-27 01:56:22 +00007096 return FrameAddr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007097}
7098
Dan Gohman8181bd12008-07-27 21:46:04 +00007099SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmandbb121b2010-04-17 15:26:15 +00007100 SelectionDAG &DAG) const {
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00007101 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007102}
7103
Dan Gohmandbb121b2010-04-17 15:26:15 +00007104SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007105 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman8181bd12008-07-27 21:46:04 +00007106 SDValue Chain = Op.getOperand(0);
7107 SDValue Offset = Op.getOperand(1);
7108 SDValue Handler = Op.getOperand(2);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00007109 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007110
Anton Korobeynikov1ec04ee2008-09-08 21:12:47 +00007111 SDValue Frame = DAG.getRegister(Subtarget->is64Bit() ? X86::RBP : X86::EBP,
7112 getPointerTy());
7113 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007114
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007115 SDValue StoreAddr = DAG.getNode(ISD::SUB, dl, getPointerTy(), Frame,
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00007116 DAG.getIntPtrConstant(-TD->getPointerSize()));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007117 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
David Greene25160362010-02-15 16:53:33 +00007118 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, NULL, 0, false, false, 0);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007119 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikov1ec04ee2008-09-08 21:12:47 +00007120 MF.getRegInfo().addLiveOut(StoreAddrReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007121
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007122 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007123 MVT::Other,
Anton Korobeynikov1ec04ee2008-09-08 21:12:47 +00007124 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007125}
7126
Dan Gohman8181bd12008-07-27 21:46:04 +00007127SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmandbb121b2010-04-17 15:26:15 +00007128 SelectionDAG &DAG) const {
Dan Gohman8181bd12008-07-27 21:46:04 +00007129 SDValue Root = Op.getOperand(0);
7130 SDValue Trmp = Op.getOperand(1); // trampoline
7131 SDValue FPtr = Op.getOperand(2); // nested function
7132 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00007133 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007134
Dan Gohman12a9c082008-02-06 22:27:42 +00007135 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007136
7137 if (Subtarget->is64Bit()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00007138 SDValue OutChains[6];
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00007139
7140 // Large code-model.
Chris Lattner0b4334c2010-02-05 19:20:30 +00007141 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
7142 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00007143
Dan Gohmanb41dfba2008-05-14 01:58:56 +00007144 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
7145 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00007146
7147 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
7148
7149 // Load the pointer to the nested function into R11.
7150 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman8181bd12008-07-27 21:46:04 +00007151 SDValue Addr = Trmp;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007152 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
David Greene25160362010-02-15 16:53:33 +00007153 Addr, TrmpAddr, 0, false, false, 0);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00007154
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007155 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
7156 DAG.getConstant(2, MVT::i64));
David Greene25160362010-02-15 16:53:33 +00007157 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr, TrmpAddr, 2,
7158 false, false, 2);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00007159
7160 // Load the 'nest' parameter value into R10.
7161 // R10 is specified in X86CallingConv.td
7162 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007163 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
7164 DAG.getConstant(10, MVT::i64));
7165 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
David Greene25160362010-02-15 16:53:33 +00007166 Addr, TrmpAddr, 10, false, false, 0);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00007167
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007168 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
7169 DAG.getConstant(12, MVT::i64));
David Greene25160362010-02-15 16:53:33 +00007170 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr, TrmpAddr, 12,
7171 false, false, 2);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00007172
7173 // Jump to the nested function.
7174 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007175 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
7176 DAG.getConstant(20, MVT::i64));
7177 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
David Greene25160362010-02-15 16:53:33 +00007178 Addr, TrmpAddr, 20, false, false, 0);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00007179
7180 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007181 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
7182 DAG.getConstant(22, MVT::i64));
7183 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
David Greene25160362010-02-15 16:53:33 +00007184 TrmpAddr, 22, false, false, 0);
Duncan Sands3e8ff6f2008-01-16 22:55:25 +00007185
Dan Gohman8181bd12008-07-27 21:46:04 +00007186 SDValue Ops[] =
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007187 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007188 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007189 } else {
Dan Gohman0bd70702008-01-31 01:01:48 +00007190 const Function *Func =
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007191 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel5838baa2009-09-02 08:44:58 +00007192 CallingConv::ID CC = Func->getCallingConv();
Duncan Sands466eadd2007-08-29 19:01:20 +00007193 unsigned NestReg;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007194
7195 switch (CC) {
7196 default:
Edwin Törökbd448e32009-07-14 16:55:14 +00007197 llvm_unreachable("Unsupported calling convention");
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007198 case CallingConv::C:
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007199 case CallingConv::X86_StdCall: {
7200 // Pass 'nest' parameter in ECX.
7201 // Must be kept in sync with X86CallingConv.td
Duncan Sands466eadd2007-08-29 19:01:20 +00007202 NestReg = X86::ECX;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007203
7204 // Check that ECX wasn't needed by an 'inreg' parameter.
7205 const FunctionType *FTy = Func->getFunctionType();
Devang Pateld222f862008-09-25 21:00:45 +00007206 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007207
Chris Lattner1c8733e2008-03-12 17:45:29 +00007208 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007209 unsigned InRegCount = 0;
7210 unsigned Idx = 1;
7211
7212 for (FunctionType::param_iterator I = FTy->param_begin(),
7213 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Pateld222f862008-09-25 21:00:45 +00007214 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007215 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovd0fef972008-09-09 18:22:57 +00007216 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007217
7218 if (InRegCount > 2) {
Chris Lattner8316f2d2010-04-07 22:58:41 +00007219 report_fatal_error("Nest register in use - reduce number of inreg parameters!");
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007220 }
7221 }
7222 break;
7223 }
7224 case CallingConv::X86_FastCall:
Anton Korobeynikove454f182010-05-16 09:08:45 +00007225 case CallingConv::X86_ThisCall:
Duncan Sands162c1d52008-09-10 13:22:10 +00007226 case CallingConv::Fast:
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007227 // Pass 'nest' parameter in EAX.
7228 // Must be kept in sync with X86CallingConv.td
Duncan Sands466eadd2007-08-29 19:01:20 +00007229 NestReg = X86::EAX;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007230 break;
7231 }
7232
Dan Gohman8181bd12008-07-27 21:46:04 +00007233 SDValue OutChains[4];
7234 SDValue Addr, Disp;
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007235
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007236 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
7237 DAG.getConstant(10, MVT::i32));
7238 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007239
Chris Lattner0b4334c2010-02-05 19:20:30 +00007240 // This is storing the opcode for MOV32ri.
7241 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Dan Gohmanb41dfba2008-05-14 01:58:56 +00007242 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Scott Michel91099d62009-02-17 22:15:04 +00007243 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007244 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
David Greene25160362010-02-15 16:53:33 +00007245 Trmp, TrmpAddr, 0, false, false, 0);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007246
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007247 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
7248 DAG.getConstant(1, MVT::i32));
David Greene25160362010-02-15 16:53:33 +00007249 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr, TrmpAddr, 1,
7250 false, false, 1);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007251
Chris Lattner0b4334c2010-02-05 19:20:30 +00007252 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007253 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
7254 DAG.getConstant(5, MVT::i32));
7255 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
David Greene25160362010-02-15 16:53:33 +00007256 TrmpAddr, 5, false, false, 1);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007257
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007258 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
7259 DAG.getConstant(6, MVT::i32));
David Greene25160362010-02-15 16:53:33 +00007260 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr, TrmpAddr, 6,
7261 false, false, 1);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007262
Dan Gohman8181bd12008-07-27 21:46:04 +00007263 SDValue Ops[] =
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007264 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007265 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007266 }
7267}
7268
Dan Gohmandbb121b2010-04-17 15:26:15 +00007269SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
7270 SelectionDAG &DAG) const {
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00007271 /*
7272 The rounding mode is in bits 11:10 of FPSR, and has the following
7273 settings:
7274 00 Round to nearest
7275 01 Round to -inf
7276 10 Round to +inf
7277 11 Round to 0
7278
7279 FLT_ROUNDS, on the other hand, expects the following:
7280 -1 Undefined
7281 0 Round to 0
7282 1 Round to nearest
7283 2 Round to +inf
7284 3 Round to -inf
7285
7286 To perform the conversion, we do:
7287 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
7288 */
7289
7290 MachineFunction &MF = DAG.getMachineFunction();
7291 const TargetMachine &TM = MF.getTarget();
7292 const TargetFrameInfo &TFI = *TM.getFrameInfo();
7293 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersonac9de032009-08-10 22:56:29 +00007294 EVT VT = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00007295 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00007296
7297 // Save FP Control Word to stack slot
David Greene6424ab92009-11-12 20:49:22 +00007298 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman8181bd12008-07-27 21:46:04 +00007299 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00007300
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007301 SDValue Chain = DAG.getNode(X86ISD::FNSTCW16m, dl, MVT::Other,
Evan Cheng6617eed2008-09-24 23:26:36 +00007302 DAG.getEntryNode(), StackSlot);
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00007303
7304 // Load FP Control Word from stack slot
David Greene25160362010-02-15 16:53:33 +00007305 SDValue CWD = DAG.getLoad(MVT::i16, dl, Chain, StackSlot, NULL, 0,
7306 false, false, 0);
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00007307
7308 // Transform as necessary
Dan Gohman8181bd12008-07-27 21:46:04 +00007309 SDValue CWD1 =
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007310 DAG.getNode(ISD::SRL, dl, MVT::i16,
7311 DAG.getNode(ISD::AND, dl, MVT::i16,
7312 CWD, DAG.getConstant(0x800, MVT::i16)),
7313 DAG.getConstant(11, MVT::i8));
Dan Gohman8181bd12008-07-27 21:46:04 +00007314 SDValue CWD2 =
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007315 DAG.getNode(ISD::SRL, dl, MVT::i16,
7316 DAG.getNode(ISD::AND, dl, MVT::i16,
7317 CWD, DAG.getConstant(0x400, MVT::i16)),
7318 DAG.getConstant(9, MVT::i8));
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00007319
Dan Gohman8181bd12008-07-27 21:46:04 +00007320 SDValue RetVal =
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007321 DAG.getNode(ISD::AND, dl, MVT::i16,
7322 DAG.getNode(ISD::ADD, dl, MVT::i16,
7323 DAG.getNode(ISD::OR, dl, MVT::i16, CWD1, CWD2),
7324 DAG.getConstant(1, MVT::i16)),
7325 DAG.getConstant(3, MVT::i16));
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00007326
7327
Duncan Sands92c43912008-06-06 12:08:01 +00007328 return DAG.getNode((VT.getSizeInBits() < 16 ?
Dale Johannesen24dd9a52009-02-07 00:55:49 +00007329 ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00007330}
7331
Dan Gohmandbb121b2010-04-17 15:26:15 +00007332SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersonac9de032009-08-10 22:56:29 +00007333 EVT VT = Op.getValueType();
7334 EVT OpVT = VT;
Duncan Sands92c43912008-06-06 12:08:01 +00007335 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00007336 DebugLoc dl = Op.getDebugLoc();
Evan Cheng48679f42007-12-14 02:13:44 +00007337
7338 Op = Op.getOperand(0);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007339 if (VT == MVT::i8) {
Evan Cheng7cfbfe32007-12-14 08:30:15 +00007340 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007341 OpVT = MVT::i32;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007342 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng48679f42007-12-14 02:13:44 +00007343 }
Evan Cheng48679f42007-12-14 02:13:44 +00007344
Evan Cheng7cfbfe32007-12-14 08:30:15 +00007345 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007346 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007347 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng7cfbfe32007-12-14 08:30:15 +00007348
7349 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer65f60c92009-12-29 16:57:26 +00007350 SDValue Ops[] = {
7351 Op,
7352 DAG.getConstant(NumBits+NumBits-1, OpVT),
7353 DAG.getConstant(X86::COND_E, MVT::i8),
7354 Op.getValue(1)
7355 };
7356 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng7cfbfe32007-12-14 08:30:15 +00007357
7358 // Finally xor with NumBits-1.
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007359 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng7cfbfe32007-12-14 08:30:15 +00007360
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007361 if (VT == MVT::i8)
7362 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng48679f42007-12-14 02:13:44 +00007363 return Op;
7364}
7365
Dan Gohmandbb121b2010-04-17 15:26:15 +00007366SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersonac9de032009-08-10 22:56:29 +00007367 EVT VT = Op.getValueType();
7368 EVT OpVT = VT;
Duncan Sands92c43912008-06-06 12:08:01 +00007369 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00007370 DebugLoc dl = Op.getDebugLoc();
Evan Cheng48679f42007-12-14 02:13:44 +00007371
7372 Op = Op.getOperand(0);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007373 if (VT == MVT::i8) {
7374 OpVT = MVT::i32;
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007375 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng48679f42007-12-14 02:13:44 +00007376 }
Evan Cheng7cfbfe32007-12-14 08:30:15 +00007377
7378 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007379 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007380 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng7cfbfe32007-12-14 08:30:15 +00007381
7382 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer65f60c92009-12-29 16:57:26 +00007383 SDValue Ops[] = {
7384 Op,
7385 DAG.getConstant(NumBits, OpVT),
7386 DAG.getConstant(X86::COND_E, MVT::i8),
7387 Op.getValue(1)
7388 };
7389 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng7cfbfe32007-12-14 08:30:15 +00007390
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007391 if (VT == MVT::i8)
7392 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng48679f42007-12-14 02:13:44 +00007393 return Op;
7394}
7395
Dan Gohmandbb121b2010-04-17 15:26:15 +00007396SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
Owen Andersonac9de032009-08-10 22:56:29 +00007397 EVT VT = Op.getValueType();
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007398 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00007399 DebugLoc dl = Op.getDebugLoc();
Scott Michel91099d62009-02-17 22:15:04 +00007400
Mon P Wang14edb092008-12-18 21:42:19 +00007401 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
7402 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
7403 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
7404 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
7405 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
7406 //
7407 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
7408 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
7409 // return AloBlo + AloBhi + AhiBlo;
7410
7411 SDValue A = Op.getOperand(0);
7412 SDValue B = Op.getOperand(1);
Scott Michel91099d62009-02-17 22:15:04 +00007413
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007414 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007415 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
7416 A, DAG.getConstant(32, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007417 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007418 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
7419 B, DAG.getConstant(32, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007420 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007421 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wang14edb092008-12-18 21:42:19 +00007422 A, B);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007423 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007424 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wang14edb092008-12-18 21:42:19 +00007425 A, Bhi);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007426 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007427 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wang14edb092008-12-18 21:42:19 +00007428 Ahi, B);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007429 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007430 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
7431 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007432 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007433 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
7434 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007435 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
7436 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wang14edb092008-12-18 21:42:19 +00007437 return Res;
7438}
7439
7440
Dan Gohmandbb121b2010-04-17 15:26:15 +00007441SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling7e04be62008-12-09 22:08:41 +00007442 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
7443 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendlingd3511522008-12-02 01:06:39 +00007444 // looks for this combo and may remove the "setcc" instruction if the "setcc"
7445 // has only one use.
Bill Wendlingd06b4202008-11-26 22:37:40 +00007446 SDNode *N = Op.getNode();
Bill Wendlingd3511522008-12-02 01:06:39 +00007447 SDValue LHS = N->getOperand(0);
7448 SDValue RHS = N->getOperand(1);
Bill Wendling7e04be62008-12-09 22:08:41 +00007449 unsigned BaseOp = 0;
7450 unsigned Cond = 0;
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00007451 DebugLoc dl = Op.getDebugLoc();
Bill Wendling7e04be62008-12-09 22:08:41 +00007452
7453 switch (Op.getOpcode()) {
Edwin Törökbd448e32009-07-14 16:55:14 +00007454 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling7e04be62008-12-09 22:08:41 +00007455 case ISD::SADDO:
Dan Gohman99a12192009-03-04 19:44:21 +00007456 // A subtract of one will be selected as a INC. Note that INC doesn't
7457 // set CF, so we can't do this for UADDO.
7458 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
7459 if (C->getAPIntValue() == 1) {
7460 BaseOp = X86ISD::INC;
7461 Cond = X86::COND_O;
7462 break;
7463 }
Bill Wendlingae034ed2008-12-12 00:56:36 +00007464 BaseOp = X86ISD::ADD;
Bill Wendling7e04be62008-12-09 22:08:41 +00007465 Cond = X86::COND_O;
7466 break;
7467 case ISD::UADDO:
Bill Wendlingae034ed2008-12-12 00:56:36 +00007468 BaseOp = X86ISD::ADD;
Dan Gohman0fc9ed62009-01-07 00:15:08 +00007469 Cond = X86::COND_B;
Bill Wendling7e04be62008-12-09 22:08:41 +00007470 break;
7471 case ISD::SSUBO:
Dan Gohman99a12192009-03-04 19:44:21 +00007472 // A subtract of one will be selected as a DEC. Note that DEC doesn't
7473 // set CF, so we can't do this for USUBO.
7474 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
7475 if (C->getAPIntValue() == 1) {
7476 BaseOp = X86ISD::DEC;
7477 Cond = X86::COND_O;
7478 break;
7479 }
Bill Wendlingae034ed2008-12-12 00:56:36 +00007480 BaseOp = X86ISD::SUB;
Bill Wendling7e04be62008-12-09 22:08:41 +00007481 Cond = X86::COND_O;
7482 break;
7483 case ISD::USUBO:
Bill Wendlingae034ed2008-12-12 00:56:36 +00007484 BaseOp = X86ISD::SUB;
Dan Gohman0fc9ed62009-01-07 00:15:08 +00007485 Cond = X86::COND_B;
Bill Wendling7e04be62008-12-09 22:08:41 +00007486 break;
7487 case ISD::SMULO:
Bill Wendlingf5399032008-12-12 21:15:41 +00007488 BaseOp = X86ISD::SMUL;
Bill Wendling7e04be62008-12-09 22:08:41 +00007489 Cond = X86::COND_O;
7490 break;
7491 case ISD::UMULO:
Bill Wendlingf5399032008-12-12 21:15:41 +00007492 BaseOp = X86ISD::UMUL;
Dan Gohman0fc9ed62009-01-07 00:15:08 +00007493 Cond = X86::COND_B;
Bill Wendling7e04be62008-12-09 22:08:41 +00007494 break;
7495 }
Bill Wendlingd06b4202008-11-26 22:37:40 +00007496
Bill Wendlingd3511522008-12-02 01:06:39 +00007497 // Also sets EFLAGS.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007498 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007499 SDValue Sum = DAG.getNode(BaseOp, dl, VTs, LHS, RHS);
Bill Wendlingd06b4202008-11-26 22:37:40 +00007500
Bill Wendlingd3511522008-12-02 01:06:39 +00007501 SDValue SetCC =
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007502 DAG.getNode(X86ISD::SETCC, dl, N->getValueType(1),
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007503 DAG.getConstant(Cond, MVT::i32), SDValue(Sum.getNode(), 1));
Bill Wendlingd06b4202008-11-26 22:37:40 +00007504
Bill Wendlingd3511522008-12-02 01:06:39 +00007505 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
7506 return Sum;
Bill Wendling4c134df2008-11-24 19:21:46 +00007507}
7508
Dan Gohmandbb121b2010-04-17 15:26:15 +00007509SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersonac9de032009-08-10 22:56:29 +00007510 EVT T = Op.getValueType();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00007511 DebugLoc dl = Op.getDebugLoc();
Andrew Lenharthbd7d3262008-03-04 21:13:33 +00007512 unsigned Reg = 0;
7513 unsigned size = 0;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007514 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands92c43912008-06-06 12:08:01 +00007515 default:
7516 assert(false && "Invalid value type!");
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007517 case MVT::i8: Reg = X86::AL; size = 1; break;
7518 case MVT::i16: Reg = X86::AX; size = 2; break;
7519 case MVT::i32: Reg = X86::EAX; size = 4; break;
7520 case MVT::i64:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007521 assert(Subtarget->is64Bit() && "Node not type legal!");
7522 Reg = X86::RAX; size = 8;
Andrew Lenharth81580822008-03-05 01:15:49 +00007523 break;
Bill Wendlingd3511522008-12-02 01:06:39 +00007524 }
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007525 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), dl, Reg,
Dale Johannesenddb761b2008-09-11 03:12:59 +00007526 Op.getOperand(2), SDValue());
Dan Gohman8181bd12008-07-27 21:46:04 +00007527 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng6617eed2008-09-24 23:26:36 +00007528 Op.getOperand(1),
7529 Op.getOperand(3),
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007530 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng6617eed2008-09-24 23:26:36 +00007531 cpIn.getValue(1) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007532 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007533 SDValue Result = DAG.getNode(X86ISD::LCMPXCHG_DAG, dl, Tys, Ops, 5);
Scott Michel91099d62009-02-17 22:15:04 +00007534 SDValue cpOut =
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007535 DAG.getCopyFromReg(Result.getValue(0), dl, Reg, T, Result.getValue(1));
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00007536 return cpOut;
7537}
7538
Duncan Sands7d9834b2008-12-01 11:39:25 +00007539SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmandbb121b2010-04-17 15:26:15 +00007540 SelectionDAG &DAG) const {
Duncan Sands7d9834b2008-12-01 11:39:25 +00007541 assert(Subtarget->is64Bit() && "Result not type legalized?");
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007542 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands7d9834b2008-12-01 11:39:25 +00007543 SDValue TheChain = Op.getOperand(0);
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +00007544 DebugLoc dl = Op.getDebugLoc();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007545 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007546 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
7547 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands7d9834b2008-12-01 11:39:25 +00007548 rax.getValue(2));
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007549 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
7550 DAG.getConstant(32, MVT::i8));
Duncan Sands7d9834b2008-12-01 11:39:25 +00007551 SDValue Ops[] = {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007552 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands7d9834b2008-12-01 11:39:25 +00007553 rdx.getValue(1)
7554 };
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007555 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesenf160d802008-10-02 18:53:47 +00007556}
7557
Dale Johannesenda2f3542010-05-21 00:52:33 +00007558SDValue X86TargetLowering::LowerBIT_CONVERT(SDValue Op,
7559 SelectionDAG &DAG) const {
7560 EVT SrcVT = Op.getOperand(0).getValueType();
7561 EVT DstVT = Op.getValueType();
7562 assert((Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
7563 Subtarget->hasMMX() && !DisableMMX) &&
7564 "Unexpected custom BIT_CONVERT");
7565 assert((DstVT == MVT::i64 ||
7566 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
7567 "Unexpected custom BIT_CONVERT");
7568 // i64 <=> MMX conversions are Legal.
7569 if (SrcVT==MVT::i64 && DstVT.isVector())
7570 return Op;
7571 if (DstVT==MVT::i64 && SrcVT.isVector())
7572 return Op;
Dale Johannesenb1b0c842010-05-21 18:40:15 +00007573 // MMX <=> MMX conversions are Legal.
7574 if (SrcVT.isVector() && DstVT.isVector())
7575 return Op;
Dale Johannesenda2f3542010-05-21 00:52:33 +00007576 // All other conversions need to be expanded.
7577 return SDValue();
7578}
Dan Gohmandbb121b2010-04-17 15:26:15 +00007579SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen9011d872008-09-29 22:25:26 +00007580 SDNode *Node = Op.getNode();
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007581 DebugLoc dl = Node->getDebugLoc();
Owen Andersonac9de032009-08-10 22:56:29 +00007582 EVT T = Node->getValueType(0);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007583 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Chengef356282009-02-23 09:03:22 +00007584 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007585 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007586 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen9011d872008-09-29 22:25:26 +00007587 Node->getOperand(0),
7588 Node->getOperand(1), negOp,
7589 cast<AtomicSDNode>(Node)->getSrcValue(),
7590 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang078a62d2008-05-05 19:05:59 +00007591}
7592
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007593/// LowerOperation - Provide custom lowering hooks for some operations.
7594///
Dan Gohmandbb121b2010-04-17 15:26:15 +00007595SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007596 switch (Op.getOpcode()) {
Edwin Törökbd448e32009-07-14 16:55:14 +00007597 default: llvm_unreachable("Should not custom lower this!");
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007598 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
7599 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007600 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wanga8ff0dd2010-01-24 00:05:03 +00007601 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007602 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
7603 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
7604 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
7605 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
7606 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
7607 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
7608 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendlingfef06052008-09-16 21:48:12 +00007609 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohman064403e2009-10-30 01:28:02 +00007610 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007611 case ISD::SHL_PARTS:
7612 case ISD::SRA_PARTS:
7613 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
7614 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesena359b8b2008-10-21 20:50:01 +00007615 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007616 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman8c3cb582009-05-23 09:59:16 +00007617 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007618 case ISD::FABS: return LowerFABS(Op, DAG);
7619 case ISD::FNEG: return LowerFNEG(Op, DAG);
7620 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Cheng621216e2007-09-29 00:00:36 +00007621 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman03605a02008-07-17 16:51:19 +00007622 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Cheng621216e2007-09-29 00:00:36 +00007623 case ISD::SELECT: return LowerSELECT(Op, DAG);
7624 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007625 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007626 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman827cb1f2008-05-10 01:26:14 +00007627 case ISD::VAARG: return LowerVAARG(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007628 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
7629 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
7630 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
7631 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
7632 case ISD::FRAME_TO_ARGS_OFFSET:
7633 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
7634 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
7635 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsd8455ca2007-07-27 20:02:49 +00007636 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman819574c2008-01-31 00:41:03 +00007637 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng48679f42007-12-14 02:13:44 +00007638 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
7639 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wang14edb092008-12-18 21:42:19 +00007640 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Bill Wendling7e04be62008-12-09 22:08:41 +00007641 case ISD::SADDO:
7642 case ISD::UADDO:
7643 case ISD::SSUBO:
7644 case ISD::USUBO:
7645 case ISD::SMULO:
7646 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands7d9834b2008-12-01 11:39:25 +00007647 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Dale Johannesenda2f3542010-05-21 00:52:33 +00007648 case ISD::BIT_CONVERT: return LowerBIT_CONVERT(Op, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007649 }
Chris Lattnerdfb947d2007-11-24 07:07:01 +00007650}
7651
Duncan Sands7d9834b2008-12-01 11:39:25 +00007652void X86TargetLowering::
7653ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmandbb121b2010-04-17 15:26:15 +00007654 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersonac9de032009-08-10 22:56:29 +00007655 EVT T = Node->getValueType(0);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007656 DebugLoc dl = Node->getDebugLoc();
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007657 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands7d9834b2008-12-01 11:39:25 +00007658
7659 SDValue Chain = Node->getOperand(0);
7660 SDValue In1 = Node->getOperand(1);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007661 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands7d9834b2008-12-01 11:39:25 +00007662 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007663 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands7d9834b2008-12-01 11:39:25 +00007664 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohman4e3bb1b2009-09-25 20:36:54 +00007665 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007666 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohman4e3bb1b2009-09-25 20:36:54 +00007667 SDValue Result =
7668 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
7669 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands7d9834b2008-12-01 11:39:25 +00007670 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007671 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands7d9834b2008-12-01 11:39:25 +00007672 Results.push_back(Result.getValue(2));
7673}
7674
Duncan Sandsac496a12008-07-04 11:47:58 +00007675/// ReplaceNodeResults - Replace a node with an illegal result type
7676/// with a new node built out of custom code.
Duncan Sands7d9834b2008-12-01 11:39:25 +00007677void X86TargetLowering::ReplaceNodeResults(SDNode *N,
7678 SmallVectorImpl<SDValue>&Results,
Dan Gohmandbb121b2010-04-17 15:26:15 +00007679 SelectionDAG &DAG) const {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007680 DebugLoc dl = N->getDebugLoc();
Chris Lattnerdfb947d2007-11-24 07:07:01 +00007681 switch (N->getOpcode()) {
Duncan Sands8ec7aa72008-10-20 15:56:33 +00007682 default:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007683 assert(false && "Do not know how to custom type legalize this operation!");
7684 return;
7685 case ISD::FP_TO_SINT: {
Eli Friedman8c3cb582009-05-23 09:59:16 +00007686 std::pair<SDValue,SDValue> Vals =
7687 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands7d9834b2008-12-01 11:39:25 +00007688 SDValue FIST = Vals.first, StackSlot = Vals.second;
7689 if (FIST.getNode() != 0) {
Owen Andersonac9de032009-08-10 22:56:29 +00007690 EVT VT = N->getValueType(0);
Duncan Sands7d9834b2008-12-01 11:39:25 +00007691 // Return a load from the stack slot.
David Greene25160362010-02-15 16:53:33 +00007692 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot, NULL, 0,
7693 false, false, 0));
Duncan Sands7d9834b2008-12-01 11:39:25 +00007694 }
7695 return;
7696 }
7697 case ISD::READCYCLECOUNTER: {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007698 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands7d9834b2008-12-01 11:39:25 +00007699 SDValue TheChain = N->getOperand(0);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007700 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007701 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007702 rd.getValue(1));
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007703 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands7d9834b2008-12-01 11:39:25 +00007704 eax.getValue(2));
7705 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
7706 SDValue Ops[] = { eax, edx };
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007707 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands7d9834b2008-12-01 11:39:25 +00007708 Results.push_back(edx.getValue(1));
7709 return;
7710 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007711 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersonac9de032009-08-10 22:56:29 +00007712 EVT T = N->getValueType(0);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007713 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands7d9834b2008-12-01 11:39:25 +00007714 SDValue cpInL, cpInH;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007715 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
7716 DAG.getConstant(0, MVT::i32));
7717 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
7718 DAG.getConstant(1, MVT::i32));
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007719 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
7720 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands7d9834b2008-12-01 11:39:25 +00007721 cpInL.getValue(1));
7722 SDValue swapInL, swapInH;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007723 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
7724 DAG.getConstant(0, MVT::i32));
7725 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
7726 DAG.getConstant(1, MVT::i32));
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007727 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands7d9834b2008-12-01 11:39:25 +00007728 cpInH.getValue(1));
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007729 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands7d9834b2008-12-01 11:39:25 +00007730 swapInL.getValue(1));
7731 SDValue Ops[] = { swapInH.getValue(0),
7732 N->getOperand(1),
7733 swapInH.getValue(1) };
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007734 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00007735 SDValue Result = DAG.getNode(X86ISD::LCMPXCHG8_DAG, dl, Tys, Ops, 3);
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007736 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007737 MVT::i32, Result.getValue(1));
Dale Johannesenbbd9ceb2009-02-04 00:33:20 +00007738 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007739 MVT::i32, cpOutL.getValue(2));
Duncan Sands7d9834b2008-12-01 11:39:25 +00007740 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007741 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands7d9834b2008-12-01 11:39:25 +00007742 Results.push_back(cpOutH.getValue(1));
7743 return;
7744 }
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007745 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007746 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
7747 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007748 case ISD::ATOMIC_LOAD_AND:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007749 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
7750 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007751 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007752 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
7753 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007754 case ISD::ATOMIC_LOAD_OR:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007755 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
7756 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007757 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007758 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
7759 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007760 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007761 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
7762 return;
Dan Gohmanbebba8d2008-12-23 21:37:04 +00007763 case ISD::ATOMIC_SWAP:
Duncan Sands7d9834b2008-12-01 11:39:25 +00007764 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
7765 return;
Chris Lattnerdfb947d2007-11-24 07:07:01 +00007766 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007767}
7768
7769const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
7770 switch (Opcode) {
7771 default: return NULL;
Evan Cheng48679f42007-12-14 02:13:44 +00007772 case X86ISD::BSF: return "X86ISD::BSF";
7773 case X86ISD::BSR: return "X86ISD::BSR";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007774 case X86ISD::SHLD: return "X86ISD::SHLD";
7775 case X86ISD::SHRD: return "X86ISD::SHRD";
7776 case X86ISD::FAND: return "X86ISD::FAND";
7777 case X86ISD::FOR: return "X86ISD::FOR";
7778 case X86ISD::FXOR: return "X86ISD::FXOR";
7779 case X86ISD::FSRL: return "X86ISD::FSRL";
7780 case X86ISD::FILD: return "X86ISD::FILD";
7781 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
7782 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
7783 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
7784 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
7785 case X86ISD::FLD: return "X86ISD::FLD";
7786 case X86ISD::FST: return "X86ISD::FST";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007787 case X86ISD::CALL: return "X86ISD::CALL";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007788 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohman7fe9b7f2008-12-23 22:45:23 +00007789 case X86ISD::BT: return "X86ISD::BT";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007790 case X86ISD::CMP: return "X86ISD::CMP";
7791 case X86ISD::COMI: return "X86ISD::COMI";
7792 case X86ISD::UCOMI: return "X86ISD::UCOMI";
7793 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Cheng834ae6b2009-12-15 00:53:42 +00007794 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007795 case X86ISD::CMOV: return "X86ISD::CMOV";
7796 case X86ISD::BRCOND: return "X86ISD::BRCOND";
7797 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
7798 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
7799 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007800 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
7801 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattnerdc6fc472009-06-27 04:16:01 +00007802 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begemand77e59e2008-02-11 04:19:36 +00007803 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007804 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begemand77e59e2008-02-11 04:19:36 +00007805 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
7806 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007807 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Chris Lattner5fc65c52010-02-23 02:07:48 +00007808 case X86ISD::MMX_PINSRW: return "X86ISD::MMX_PINSRW";
Nate Begeman2c87c422009-02-23 08:49:38 +00007809 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007810 case X86ISD::FMAX: return "X86ISD::FMAX";
7811 case X86ISD::FMIN: return "X86ISD::FMIN";
7812 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
7813 case X86ISD::FRCP: return "X86ISD::FRCP";
7814 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopheree8d3332010-06-03 04:07:48 +00007815 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Rafael Espindolabca99f72009-04-08 21:14:34 +00007816 case X86ISD::SegmentBaseAddress: return "X86ISD::SegmentBaseAddress";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007817 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00007818 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikovfbe230e2007-11-16 01:31:51 +00007819 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng40ee6e52008-05-08 00:57:18 +00007820 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
7821 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesenf160d802008-10-02 18:53:47 +00007822 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
7823 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
7824 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
7825 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
7826 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
7827 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chenge9b9c672008-05-09 21:53:03 +00007828 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
7829 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengdea99362008-05-29 08:22:04 +00007830 case X86ISD::VSHL: return "X86ISD::VSHL";
7831 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman03605a02008-07-17 16:51:19 +00007832 case X86ISD::CMPPD: return "X86ISD::CMPPD";
7833 case X86ISD::CMPPS: return "X86ISD::CMPPS";
7834 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
7835 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
7836 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
7837 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
7838 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
7839 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
7840 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
7841 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingae034ed2008-12-12 00:56:36 +00007842 case X86ISD::ADD: return "X86ISD::ADD";
7843 case X86ISD::SUB: return "X86ISD::SUB";
Bill Wendlingf5399032008-12-12 21:15:41 +00007844 case X86ISD::SMUL: return "X86ISD::SMUL";
7845 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman99a12192009-03-04 19:44:21 +00007846 case X86ISD::INC: return "X86ISD::INC";
7847 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohman12e03292009-09-18 19:59:53 +00007848 case X86ISD::OR: return "X86ISD::OR";
7849 case X86ISD::XOR: return "X86ISD::XOR";
7850 case X86ISD::AND: return "X86ISD::AND";
Evan Chengc3495762009-03-30 21:36:47 +00007851 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher95d79262009-07-29 00:28:05 +00007852 case X86ISD::PTEST: return "X86ISD::PTEST";
Dan Gohman34228bf2009-08-15 01:38:56 +00007853 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Anton Korobeynikov7cd32422010-03-06 19:32:29 +00007854 case X86ISD::MINGW_ALLOCA: return "X86ISD::MINGW_ALLOCA";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007855 }
7856}
7857
7858// isLegalAddressingMode - Return true if the addressing mode represented
7859// by AM is legal for this target, for a load/store of the specified type.
Scott Michel91099d62009-02-17 22:15:04 +00007860bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007861 const Type *Ty) const {
7862 // X86 supports extremely general addressing modes.
Anton Korobeynikovc283e152009-08-05 23:01:26 +00007863 CodeModel::Model M = getTargetMachine().getCodeModel();
Scott Michel91099d62009-02-17 22:15:04 +00007864
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007865 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovc283e152009-08-05 23:01:26 +00007866 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007867 return false;
Scott Michel91099d62009-02-17 22:15:04 +00007868
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007869 if (AM.BaseGV) {
Chris Lattner01e39942009-07-10 07:38:24 +00007870 unsigned GVFlags =
7871 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovc283e152009-08-05 23:01:26 +00007872
Chris Lattner01e39942009-07-10 07:38:24 +00007873 // If a reference to this global requires an extra load, we can't fold it.
7874 if (isGlobalStubReference(GVFlags))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007875 return false;
Anton Korobeynikovc283e152009-08-05 23:01:26 +00007876
Chris Lattner01e39942009-07-10 07:38:24 +00007877 // If BaseGV requires a register for the PIC base, we cannot also have a
7878 // BaseReg specified.
7879 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen64660e92008-12-05 21:47:27 +00007880 return false;
Evan Cheng6a1f3f12007-08-01 23:46:47 +00007881
Anton Korobeynikovc283e152009-08-05 23:01:26 +00007882 // If lower 4G is not available, then we must use rip-relative addressing.
7883 if (Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
7884 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007885 }
Scott Michel91099d62009-02-17 22:15:04 +00007886
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007887 switch (AM.Scale) {
7888 case 0:
7889 case 1:
7890 case 2:
7891 case 4:
7892 case 8:
7893 // These scales always work.
7894 break;
7895 case 3:
7896 case 5:
7897 case 9:
7898 // These scales are formed with basereg+scalereg. Only accept if there is
7899 // no basereg yet.
7900 if (AM.HasBaseReg)
7901 return false;
7902 break;
7903 default: // Other stuff never works.
7904 return false;
7905 }
Scott Michel91099d62009-02-17 22:15:04 +00007906
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007907 return true;
7908}
7909
7910
Evan Cheng27a820a2007-10-26 01:56:11 +00007911bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
Duncan Sandse92dee12010-02-15 16:12:20 +00007912 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng27a820a2007-10-26 01:56:11 +00007913 return false;
Evan Cheng7f152602007-10-29 07:57:50 +00007914 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
7915 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Chengca0e80f2008-03-20 02:18:41 +00007916 if (NumBits1 <= NumBits2)
Evan Cheng7f152602007-10-29 07:57:50 +00007917 return false;
Dan Gohman9e2bdca2010-02-25 03:04:36 +00007918 return true;
Evan Cheng27a820a2007-10-26 01:56:11 +00007919}
7920
Owen Andersonac9de032009-08-10 22:56:29 +00007921bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands92c43912008-06-06 12:08:01 +00007922 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng9decb332007-10-29 19:58:20 +00007923 return false;
Duncan Sands92c43912008-06-06 12:08:01 +00007924 unsigned NumBits1 = VT1.getSizeInBits();
7925 unsigned NumBits2 = VT2.getSizeInBits();
Evan Chengca0e80f2008-03-20 02:18:41 +00007926 if (NumBits1 <= NumBits2)
Evan Cheng9decb332007-10-29 19:58:20 +00007927 return false;
Dan Gohman9e2bdca2010-02-25 03:04:36 +00007928 return true;
Evan Cheng9decb332007-10-29 19:58:20 +00007929}
Evan Cheng27a820a2007-10-26 01:56:11 +00007930
Dan Gohman4cedb1c2009-04-08 00:15:30 +00007931bool X86TargetLowering::isZExtFree(const Type *Ty1, const Type *Ty2) const {
Dan Gohmanb044da32009-04-09 02:06:09 +00007932 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandse92dee12010-02-15 16:12:20 +00007933 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman4cedb1c2009-04-08 00:15:30 +00007934}
7935
Owen Andersonac9de032009-08-10 22:56:29 +00007936bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohmanb044da32009-04-09 02:06:09 +00007937 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007938 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman4cedb1c2009-04-08 00:15:30 +00007939}
7940
Owen Andersonac9de032009-08-10 22:56:29 +00007941bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng2f5d3a52009-05-28 00:35:15 +00007942 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00007943 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng2f5d3a52009-05-28 00:35:15 +00007944}
7945
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007946/// isShuffleMaskLegal - Targets can use this to indicate that they only
7947/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
7948/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
7949/// are assumed to be legal.
7950bool
Eric Christopher3d82bbd2009-08-27 18:07:15 +00007951X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersonac9de032009-08-10 22:56:29 +00007952 EVT VT) const {
Eric Christopher8fa87722010-04-15 01:40:20 +00007953 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman543d2142009-04-27 18:41:29 +00007954 if (VT.getSizeInBits() == 64)
Eric Christopher8fa87722010-04-15 01:40:20 +00007955 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman543d2142009-04-27 18:41:29 +00007956
Nate Begeman080f8e22009-10-19 02:17:23 +00007957 // FIXME: pshufb, blends, shifts.
Nate Begeman543d2142009-04-27 18:41:29 +00007958 return (VT.getVectorNumElements() == 2 ||
7959 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
7960 isMOVLMask(M, VT) ||
7961 isSHUFPMask(M, VT) ||
7962 isPSHUFDMask(M, VT) ||
7963 isPSHUFHWMask(M, VT) ||
7964 isPSHUFLWMask(M, VT) ||
Nate Begeman080f8e22009-10-19 02:17:23 +00007965 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman543d2142009-04-27 18:41:29 +00007966 isUNPCKLMask(M, VT) ||
7967 isUNPCKHMask(M, VT) ||
7968 isUNPCKL_v_undef_Mask(M, VT) ||
7969 isUNPCKH_v_undef_Mask(M, VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007970}
7971
Dan Gohman48d5f062008-04-09 20:09:42 +00007972bool
Nate Begemane8f61cb2009-04-29 05:20:52 +00007973X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersonac9de032009-08-10 22:56:29 +00007974 EVT VT) const {
Nate Begeman543d2142009-04-27 18:41:29 +00007975 unsigned NumElts = VT.getVectorNumElements();
7976 // FIXME: This collection of masks seems suspect.
7977 if (NumElts == 2)
7978 return true;
7979 if (NumElts == 4 && VT.getSizeInBits() == 128) {
7980 return (isMOVLMask(Mask, VT) ||
7981 isCommutedMOVLMask(Mask, VT, true) ||
7982 isSHUFPMask(Mask, VT) ||
7983 isCommutedSHUFPMask(Mask, VT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007984 }
7985 return false;
7986}
7987
7988//===----------------------------------------------------------------------===//
7989// X86 Scheduler Hooks
7990//===----------------------------------------------------------------------===//
7991
Mon P Wang078a62d2008-05-05 19:05:59 +00007992// private utility function
7993MachineBasicBlock *
7994X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
7995 MachineBasicBlock *MBB,
7996 unsigned regOpc,
Andrew Lenharthaf02d592008-06-14 05:48:15 +00007997 unsigned immOpc,
Dale Johannesend20e4452008-08-19 18:47:28 +00007998 unsigned LoadOpc,
7999 unsigned CXchgOpc,
8000 unsigned copyOpc,
8001 unsigned notOpc,
8002 unsigned EAXreg,
8003 TargetRegisterClass *RC,
Dan Gohman96d60922009-02-07 16:15:20 +00008004 bool invSrc) const {
Mon P Wang078a62d2008-05-05 19:05:59 +00008005 // For the atomic bitwise operator, we generate
8006 // thisMBB:
8007 // newMBB:
Mon P Wang318b0372008-05-05 22:56:23 +00008008 // ld t1 = [bitinstr.addr]
8009 // op t2 = t1, [bitinstr.val]
8010 // mov EAX = t1
Mon P Wang078a62d2008-05-05 19:05:59 +00008011 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
8012 // bz newMBB
8013 // fallthrough -->nextMBB
8014 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
8015 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman221a4372008-07-07 23:14:23 +00008016 MachineFunction::iterator MBBIter = MBB;
Mon P Wang078a62d2008-05-05 19:05:59 +00008017 ++MBBIter;
Scott Michel91099d62009-02-17 22:15:04 +00008018
Mon P Wang078a62d2008-05-05 19:05:59 +00008019 /// First build the CFG
8020 MachineFunction *F = MBB->getParent();
8021 MachineBasicBlock *thisMBB = MBB;
Dan Gohman221a4372008-07-07 23:14:23 +00008022 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
8023 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
8024 F->insert(MBBIter, newMBB);
8025 F->insert(MBBIter, nextMBB);
Scott Michel91099d62009-02-17 22:15:04 +00008026
Mon P Wang078a62d2008-05-05 19:05:59 +00008027 // Move all successors to thisMBB to nextMBB
8028 nextMBB->transferSuccessors(thisMBB);
Scott Michel91099d62009-02-17 22:15:04 +00008029
Mon P Wang078a62d2008-05-05 19:05:59 +00008030 // Update thisMBB to fall through to newMBB
8031 thisMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00008032
Mon P Wang078a62d2008-05-05 19:05:59 +00008033 // newMBB jumps to itself and fall through to nextMBB
8034 newMBB->addSuccessor(nextMBB);
8035 newMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00008036
Mon P Wang078a62d2008-05-05 19:05:59 +00008037 // Insert instructions into newMBB based on incoming instruction
Rafael Espindolacfc409e2009-03-27 15:26:30 +00008038 assert(bInstr->getNumOperands() < X86AddrNumOperands + 4 &&
Bill Wendlingc1946742009-05-30 01:09:53 +00008039 "unexpected number of operands");
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008040 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang078a62d2008-05-05 19:05:59 +00008041 MachineOperand& destOper = bInstr->getOperand(0);
Rafael Espindolacfc409e2009-03-27 15:26:30 +00008042 MachineOperand* argOpers[2 + X86AddrNumOperands];
Mon P Wang078a62d2008-05-05 19:05:59 +00008043 int numArgs = bInstr->getNumOperands() - 1;
8044 for (int i=0; i < numArgs; ++i)
8045 argOpers[i] = &bInstr->getOperand(i+1);
8046
8047 // x86 address has 4 operands: base, index, scale, and displacement
Rafael Espindolacfc409e2009-03-27 15:26:30 +00008048 int lastAddrIndx = X86AddrNumOperands - 1; // [0,3]
8049 int valArgIndx = lastAddrIndx + 1;
Scott Michel91099d62009-02-17 22:15:04 +00008050
Dale Johannesend20e4452008-08-19 18:47:28 +00008051 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008052 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang078a62d2008-05-05 19:05:59 +00008053 for (int i=0; i <= lastAddrIndx; ++i)
8054 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00008055
Dale Johannesend20e4452008-08-19 18:47:28 +00008056 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00008057 if (invSrc) {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008058 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00008059 }
Scott Michel91099d62009-02-17 22:15:04 +00008060 else
Andrew Lenharthaf02d592008-06-14 05:48:15 +00008061 tt = t1;
8062
Dale Johannesend20e4452008-08-19 18:47:28 +00008063 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00008064 assert((argOpers[valArgIndx]->isReg() ||
8065 argOpers[valArgIndx]->isImm()) &&
Dan Gohman7f7f3652008-09-13 17:58:21 +00008066 "invalid operand");
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00008067 if (argOpers[valArgIndx]->isReg())
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008068 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang078a62d2008-05-05 19:05:59 +00008069 else
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008070 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00008071 MIB.addReg(tt);
Mon P Wang078a62d2008-05-05 19:05:59 +00008072 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00008073
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008074 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), EAXreg);
Mon P Wang318b0372008-05-05 22:56:23 +00008075 MIB.addReg(t1);
Scott Michel91099d62009-02-17 22:15:04 +00008076
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008077 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang078a62d2008-05-05 19:05:59 +00008078 for (int i=0; i <= lastAddrIndx; ++i)
8079 (*MIB).addOperand(*argOpers[i]);
8080 MIB.addReg(t2);
Mon P Wang50584a62008-07-17 04:54:06 +00008081 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohman4e3bb1b2009-09-25 20:36:54 +00008082 (*MIB).setMemRefs(bInstr->memoperands_begin(),
8083 bInstr->memoperands_end());
Mon P Wang50584a62008-07-17 04:54:06 +00008084
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008085 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), destOper.getReg());
Dale Johannesend20e4452008-08-19 18:47:28 +00008086 MIB.addReg(EAXreg);
Scott Michel91099d62009-02-17 22:15:04 +00008087
Mon P Wang078a62d2008-05-05 19:05:59 +00008088 // insert branch
Chris Lattnerb112c022010-02-11 19:25:55 +00008089 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang078a62d2008-05-05 19:05:59 +00008090
Dan Gohman221a4372008-07-07 23:14:23 +00008091 F->DeleteMachineInstr(bInstr); // The pseudo instruction is gone now.
Mon P Wang078a62d2008-05-05 19:05:59 +00008092 return nextMBB;
8093}
8094
Dale Johannesen44eb5372008-10-03 19:41:08 +00008095// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang078a62d2008-05-05 19:05:59 +00008096MachineBasicBlock *
Dale Johannesenf160d802008-10-02 18:53:47 +00008097X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
8098 MachineBasicBlock *MBB,
8099 unsigned regOpcL,
8100 unsigned regOpcH,
8101 unsigned immOpcL,
8102 unsigned immOpcH,
Dan Gohman96d60922009-02-07 16:15:20 +00008103 bool invSrc) const {
Dale Johannesenf160d802008-10-02 18:53:47 +00008104 // For the atomic bitwise operator, we generate
8105 // thisMBB (instructions are in pairs, except cmpxchg8b)
8106 // ld t1,t2 = [bitinstr.addr]
8107 // newMBB:
8108 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
8109 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen51c58ee2008-10-03 22:25:52 +00008110 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesenf160d802008-10-02 18:53:47 +00008111 // mov ECX, EBX <- t5, t6
8112 // mov EAX, EDX <- t1, t2
8113 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
8114 // mov t3, t4 <- EAX, EDX
8115 // bz newMBB
8116 // result in out1, out2
8117 // fallthrough -->nextMBB
8118
8119 const TargetRegisterClass *RC = X86::GR32RegisterClass;
8120 const unsigned LoadOpc = X86::MOV32rm;
8121 const unsigned copyOpc = X86::MOV32rr;
8122 const unsigned NotOpc = X86::NOT32r;
8123 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
8124 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
8125 MachineFunction::iterator MBBIter = MBB;
8126 ++MBBIter;
Scott Michel91099d62009-02-17 22:15:04 +00008127
Dale Johannesenf160d802008-10-02 18:53:47 +00008128 /// First build the CFG
8129 MachineFunction *F = MBB->getParent();
8130 MachineBasicBlock *thisMBB = MBB;
8131 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
8132 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
8133 F->insert(MBBIter, newMBB);
8134 F->insert(MBBIter, nextMBB);
Scott Michel91099d62009-02-17 22:15:04 +00008135
Dale Johannesenf160d802008-10-02 18:53:47 +00008136 // Move all successors to thisMBB to nextMBB
8137 nextMBB->transferSuccessors(thisMBB);
Scott Michel91099d62009-02-17 22:15:04 +00008138
Dale Johannesenf160d802008-10-02 18:53:47 +00008139 // Update thisMBB to fall through to newMBB
8140 thisMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00008141
Dale Johannesenf160d802008-10-02 18:53:47 +00008142 // newMBB jumps to itself and fall through to nextMBB
8143 newMBB->addSuccessor(nextMBB);
8144 newMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00008145
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008146 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesenf160d802008-10-02 18:53:47 +00008147 // Insert instructions into newMBB based on incoming instruction
8148 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Rafael Espindolacfc409e2009-03-27 15:26:30 +00008149 assert(bInstr->getNumOperands() < X86AddrNumOperands + 14 &&
Bill Wendlingc1946742009-05-30 01:09:53 +00008150 "unexpected number of operands");
Dale Johannesenf160d802008-10-02 18:53:47 +00008151 MachineOperand& dest1Oper = bInstr->getOperand(0);
8152 MachineOperand& dest2Oper = bInstr->getOperand(1);
Rafael Espindolacfc409e2009-03-27 15:26:30 +00008153 MachineOperand* argOpers[2 + X86AddrNumOperands];
Dan Gohmana425ea82010-05-14 21:01:44 +00008154 for (int i=0; i < 2 + X86AddrNumOperands; ++i) {
Dale Johannesenf160d802008-10-02 18:53:47 +00008155 argOpers[i] = &bInstr->getOperand(i+2);
8156
Dan Gohmana425ea82010-05-14 21:01:44 +00008157 // We use some of the operands multiple times, so conservatively just
8158 // clear any kill flags that might be present.
8159 if (argOpers[i]->isReg() && argOpers[i]->isUse())
8160 argOpers[i]->setIsKill(false);
8161 }
8162
Evan Cheng4460e1b2010-01-08 19:14:57 +00008163 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Rafael Espindolacfc409e2009-03-27 15:26:30 +00008164 int lastAddrIndx = X86AddrNumOperands - 1; // [0,3]
Scott Michel91099d62009-02-17 22:15:04 +00008165
Dale Johannesenf160d802008-10-02 18:53:47 +00008166 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008167 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesenf160d802008-10-02 18:53:47 +00008168 for (int i=0; i <= lastAddrIndx; ++i)
8169 (*MIB).addOperand(*argOpers[i]);
8170 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008171 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00008172 // add 4 to displacement.
Rafael Espindolabca99f72009-04-08 21:14:34 +00008173 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesenf160d802008-10-02 18:53:47 +00008174 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00008175 MachineOperand newOp3 = *(argOpers[3]);
8176 if (newOp3.isImm())
8177 newOp3.setImm(newOp3.getImm()+4);
8178 else
8179 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesenf160d802008-10-02 18:53:47 +00008180 (*MIB).addOperand(newOp3);
Rafael Espindolabca99f72009-04-08 21:14:34 +00008181 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesenf160d802008-10-02 18:53:47 +00008182
8183 // t3/4 are defined later, at the bottom of the loop
8184 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
8185 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008186 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesenf160d802008-10-02 18:53:47 +00008187 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008188 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesenf160d802008-10-02 18:53:47 +00008189 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
8190
Evan Chengcdd58c32010-01-08 23:41:50 +00008191 // The subsequent operations should be using the destination registers of
8192 //the PHI instructions.
Scott Michel91099d62009-02-17 22:15:04 +00008193 if (invSrc) {
Evan Chengcdd58c32010-01-08 23:41:50 +00008194 t1 = F->getRegInfo().createVirtualRegister(RC);
8195 t2 = F->getRegInfo().createVirtualRegister(RC);
8196 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
8197 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesenf160d802008-10-02 18:53:47 +00008198 } else {
Evan Chengcdd58c32010-01-08 23:41:50 +00008199 t1 = dest1Oper.getReg();
8200 t2 = dest2Oper.getReg();
Dale Johannesenf160d802008-10-02 18:53:47 +00008201 }
8202
Rafael Espindolacfc409e2009-03-27 15:26:30 +00008203 int valArgIndx = lastAddrIndx + 1;
8204 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendlingc1946742009-05-30 01:09:53 +00008205 argOpers[valArgIndx]->isImm()) &&
Dale Johannesenf160d802008-10-02 18:53:47 +00008206 "invalid operand");
8207 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
8208 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolacfc409e2009-03-27 15:26:30 +00008209 if (argOpers[valArgIndx]->isReg())
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008210 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesenf160d802008-10-02 18:53:47 +00008211 else
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008212 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00008213 if (regOpcL != X86::MOV32rr)
Evan Chengcdd58c32010-01-08 23:41:50 +00008214 MIB.addReg(t1);
Rafael Espindolacfc409e2009-03-27 15:26:30 +00008215 (*MIB).addOperand(*argOpers[valArgIndx]);
8216 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendlingc1946742009-05-30 01:09:53 +00008217 argOpers[valArgIndx]->isReg());
Rafael Espindolacfc409e2009-03-27 15:26:30 +00008218 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendlingc1946742009-05-30 01:09:53 +00008219 argOpers[valArgIndx]->isImm());
Rafael Espindolacfc409e2009-03-27 15:26:30 +00008220 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008221 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesenf160d802008-10-02 18:53:47 +00008222 else
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008223 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00008224 if (regOpcH != X86::MOV32rr)
Evan Chengcdd58c32010-01-08 23:41:50 +00008225 MIB.addReg(t2);
Rafael Espindolacfc409e2009-03-27 15:26:30 +00008226 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesenf160d802008-10-02 18:53:47 +00008227
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008228 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EAX);
Dale Johannesenf160d802008-10-02 18:53:47 +00008229 MIB.addReg(t1);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008230 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EDX);
Dale Johannesenf160d802008-10-02 18:53:47 +00008231 MIB.addReg(t2);
8232
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008233 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EBX);
Dale Johannesenf160d802008-10-02 18:53:47 +00008234 MIB.addReg(t5);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008235 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::ECX);
Dale Johannesenf160d802008-10-02 18:53:47 +00008236 MIB.addReg(t6);
Scott Michel91099d62009-02-17 22:15:04 +00008237
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008238 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesenf160d802008-10-02 18:53:47 +00008239 for (int i=0; i <= lastAddrIndx; ++i)
8240 (*MIB).addOperand(*argOpers[i]);
8241
8242 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohman4e3bb1b2009-09-25 20:36:54 +00008243 (*MIB).setMemRefs(bInstr->memoperands_begin(),
8244 bInstr->memoperands_end());
Dale Johannesenf160d802008-10-02 18:53:47 +00008245
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008246 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), t3);
Dale Johannesenf160d802008-10-02 18:53:47 +00008247 MIB.addReg(X86::EAX);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008248 MIB = BuildMI(newMBB, dl, TII->get(copyOpc), t4);
Dale Johannesenf160d802008-10-02 18:53:47 +00008249 MIB.addReg(X86::EDX);
Scott Michel91099d62009-02-17 22:15:04 +00008250
Dale Johannesenf160d802008-10-02 18:53:47 +00008251 // insert branch
Chris Lattnerb112c022010-02-11 19:25:55 +00008252 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesenf160d802008-10-02 18:53:47 +00008253
8254 F->DeleteMachineInstr(bInstr); // The pseudo instruction is gone now.
8255 return nextMBB;
8256}
8257
8258// private utility function
8259MachineBasicBlock *
Mon P Wang078a62d2008-05-05 19:05:59 +00008260X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
8261 MachineBasicBlock *MBB,
Dan Gohman96d60922009-02-07 16:15:20 +00008262 unsigned cmovOpc) const {
Mon P Wang078a62d2008-05-05 19:05:59 +00008263 // For the atomic min/max operator, we generate
8264 // thisMBB:
8265 // newMBB:
Mon P Wang318b0372008-05-05 22:56:23 +00008266 // ld t1 = [min/max.addr]
Scott Michel91099d62009-02-17 22:15:04 +00008267 // mov t2 = [min/max.val]
Mon P Wang078a62d2008-05-05 19:05:59 +00008268 // cmp t1, t2
8269 // cmov[cond] t2 = t1
Mon P Wang318b0372008-05-05 22:56:23 +00008270 // mov EAX = t1
Mon P Wang078a62d2008-05-05 19:05:59 +00008271 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
8272 // bz newMBB
8273 // fallthrough -->nextMBB
8274 //
8275 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
8276 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman221a4372008-07-07 23:14:23 +00008277 MachineFunction::iterator MBBIter = MBB;
Mon P Wang078a62d2008-05-05 19:05:59 +00008278 ++MBBIter;
Scott Michel91099d62009-02-17 22:15:04 +00008279
Mon P Wang078a62d2008-05-05 19:05:59 +00008280 /// First build the CFG
8281 MachineFunction *F = MBB->getParent();
8282 MachineBasicBlock *thisMBB = MBB;
Dan Gohman221a4372008-07-07 23:14:23 +00008283 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
8284 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
8285 F->insert(MBBIter, newMBB);
8286 F->insert(MBBIter, nextMBB);
Scott Michel91099d62009-02-17 22:15:04 +00008287
Dan Gohman34228bf2009-08-15 01:38:56 +00008288 // Move all successors of thisMBB to nextMBB
Mon P Wang078a62d2008-05-05 19:05:59 +00008289 nextMBB->transferSuccessors(thisMBB);
Scott Michel91099d62009-02-17 22:15:04 +00008290
Mon P Wang078a62d2008-05-05 19:05:59 +00008291 // Update thisMBB to fall through to newMBB
8292 thisMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00008293
Mon P Wang078a62d2008-05-05 19:05:59 +00008294 // newMBB jumps to newMBB and fall through to nextMBB
8295 newMBB->addSuccessor(nextMBB);
8296 newMBB->addSuccessor(newMBB);
Scott Michel91099d62009-02-17 22:15:04 +00008297
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008298 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang078a62d2008-05-05 19:05:59 +00008299 // Insert instructions into newMBB based on incoming instruction
Rafael Espindolacfc409e2009-03-27 15:26:30 +00008300 assert(mInstr->getNumOperands() < X86AddrNumOperands + 4 &&
Bill Wendlingc1946742009-05-30 01:09:53 +00008301 "unexpected number of operands");
Mon P Wang078a62d2008-05-05 19:05:59 +00008302 MachineOperand& destOper = mInstr->getOperand(0);
Rafael Espindolacfc409e2009-03-27 15:26:30 +00008303 MachineOperand* argOpers[2 + X86AddrNumOperands];
Mon P Wang078a62d2008-05-05 19:05:59 +00008304 int numArgs = mInstr->getNumOperands() - 1;
8305 for (int i=0; i < numArgs; ++i)
8306 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michel91099d62009-02-17 22:15:04 +00008307
Mon P Wang078a62d2008-05-05 19:05:59 +00008308 // x86 address has 4 operands: base, index, scale, and displacement
Rafael Espindolacfc409e2009-03-27 15:26:30 +00008309 int lastAddrIndx = X86AddrNumOperands - 1; // [0,3]
8310 int valArgIndx = lastAddrIndx + 1;
Scott Michel91099d62009-02-17 22:15:04 +00008311
Mon P Wang318b0372008-05-05 22:56:23 +00008312 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008313 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang078a62d2008-05-05 19:05:59 +00008314 for (int i=0; i <= lastAddrIndx; ++i)
8315 (*MIB).addOperand(*argOpers[i]);
Mon P Wang318b0372008-05-05 22:56:23 +00008316
Mon P Wang078a62d2008-05-05 19:05:59 +00008317 // We only support register and immediate values
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00008318 assert((argOpers[valArgIndx]->isReg() ||
8319 argOpers[valArgIndx]->isImm()) &&
Dan Gohman7f7f3652008-09-13 17:58:21 +00008320 "invalid operand");
Scott Michel91099d62009-02-17 22:15:04 +00008321
8322 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00008323 if (argOpers[valArgIndx]->isReg())
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008324 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Scott Michel91099d62009-02-17 22:15:04 +00008325 else
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008326 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang078a62d2008-05-05 19:05:59 +00008327 (*MIB).addOperand(*argOpers[valArgIndx]);
8328
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008329 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), X86::EAX);
Mon P Wang318b0372008-05-05 22:56:23 +00008330 MIB.addReg(t1);
8331
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008332 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang078a62d2008-05-05 19:05:59 +00008333 MIB.addReg(t1);
8334 MIB.addReg(t2);
8335
8336 // Generate movc
8337 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008338 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang078a62d2008-05-05 19:05:59 +00008339 MIB.addReg(t2);
8340 MIB.addReg(t1);
8341
8342 // Cmp and exchange if none has modified the memory location
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008343 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang078a62d2008-05-05 19:05:59 +00008344 for (int i=0; i <= lastAddrIndx; ++i)
8345 (*MIB).addOperand(*argOpers[i]);
8346 MIB.addReg(t3);
Mon P Wang50584a62008-07-17 04:54:06 +00008347 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohman4e3bb1b2009-09-25 20:36:54 +00008348 (*MIB).setMemRefs(mInstr->memoperands_begin(),
8349 mInstr->memoperands_end());
Scott Michel91099d62009-02-17 22:15:04 +00008350
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008351 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), destOper.getReg());
Mon P Wang078a62d2008-05-05 19:05:59 +00008352 MIB.addReg(X86::EAX);
Scott Michel91099d62009-02-17 22:15:04 +00008353
Mon P Wang078a62d2008-05-05 19:05:59 +00008354 // insert branch
Chris Lattnerb112c022010-02-11 19:25:55 +00008355 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang078a62d2008-05-05 19:05:59 +00008356
Dan Gohman221a4372008-07-07 23:14:23 +00008357 F->DeleteMachineInstr(mInstr); // The pseudo instruction is gone now.
Mon P Wang078a62d2008-05-05 19:05:59 +00008358 return nextMBB;
8359}
8360
Eric Christopher20391ca62009-08-27 18:08:16 +00008361// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
8362// all of this code can be replaced with that in the .td file.
Dan Gohman34228bf2009-08-15 01:38:56 +00008363MachineBasicBlock *
Eric Christopher22a39402009-08-18 22:50:32 +00008364X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbar3be44e62009-09-20 02:20:51 +00008365 unsigned numArgs, bool memArg) const {
Eric Christopher22a39402009-08-18 22:50:32 +00008366
8367 MachineFunction *F = BB->getParent();
8368 DebugLoc dl = MI->getDebugLoc();
8369 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
8370
8371 unsigned Opc;
Evan Cheng5f3a5402009-09-19 09:51:03 +00008372 if (memArg)
8373 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
8374 else
8375 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
Eric Christopher22a39402009-08-18 22:50:32 +00008376
8377 MachineInstrBuilder MIB = BuildMI(BB, dl, TII->get(Opc));
8378
8379 for (unsigned i = 0; i < numArgs; ++i) {
8380 MachineOperand &Op = MI->getOperand(i+1);
8381
8382 if (!(Op.isReg() && Op.isImplicit()))
8383 MIB.addOperand(Op);
8384 }
8385
8386 BuildMI(BB, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
8387 .addReg(X86::XMM0);
8388
8389 F->DeleteMachineInstr(MI);
8390
8391 return BB;
8392}
8393
8394MachineBasicBlock *
Dan Gohman34228bf2009-08-15 01:38:56 +00008395X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
8396 MachineInstr *MI,
8397 MachineBasicBlock *MBB) const {
8398 // Emit code to save XMM registers to the stack. The ABI says that the
8399 // number of registers to save is given in %al, so it's theoretically
8400 // possible to do an indirect jump trick to avoid saving all of them,
8401 // however this code takes a simpler approach and just executes all
8402 // of the stores if %al is non-zero. It's less code, and it's probably
8403 // easier on the hardware branch predictor, and stores aren't all that
8404 // expensive anyway.
8405
8406 // Create the new basic blocks. One block contains all the XMM stores,
8407 // and one block is the final destination regardless of whether any
8408 // stores were performed.
8409 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
8410 MachineFunction *F = MBB->getParent();
8411 MachineFunction::iterator MBBIter = MBB;
8412 ++MBBIter;
8413 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
8414 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
8415 F->insert(MBBIter, XMMSaveMBB);
8416 F->insert(MBBIter, EndMBB);
8417
8418 // Set up the CFG.
8419 // Move any original successors of MBB to the end block.
8420 EndMBB->transferSuccessors(MBB);
8421 // The original block will now fall through to the XMM save block.
8422 MBB->addSuccessor(XMMSaveMBB);
8423 // The XMMSaveMBB will fall through to the end block.
8424 XMMSaveMBB->addSuccessor(EndMBB);
8425
8426 // Now add the instructions.
8427 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
8428 DebugLoc DL = MI->getDebugLoc();
8429
8430 unsigned CountReg = MI->getOperand(0).getReg();
8431 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
8432 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
8433
8434 if (!Subtarget->isTargetWin64()) {
8435 // If %al is 0, branch around the XMM save block.
8436 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerb112c022010-02-11 19:25:55 +00008437 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohman34228bf2009-08-15 01:38:56 +00008438 MBB->addSuccessor(EndMBB);
8439 }
8440
8441 // In the XMM save block, save all the XMM argument registers.
8442 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
8443 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohman4e3bb1b2009-09-25 20:36:54 +00008444 MachineMemOperand *MMO =
Evan Cheng174e2cf2009-10-18 18:16:27 +00008445 F->getMachineMemOperand(
8446 PseudoSourceValue::getFixedStack(RegSaveFrameIndex),
8447 MachineMemOperand::MOStore, Offset,
8448 /*Size=*/16, /*Align=*/16);
Dan Gohman34228bf2009-08-15 01:38:56 +00008449 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
8450 .addFrameIndex(RegSaveFrameIndex)
8451 .addImm(/*Scale=*/1)
8452 .addReg(/*IndexReg=*/0)
8453 .addImm(/*Disp=*/Offset)
8454 .addReg(/*Segment=*/0)
8455 .addReg(MI->getOperand(i).getReg())
Dan Gohman4e3bb1b2009-09-25 20:36:54 +00008456 .addMemOperand(MMO);
Dan Gohman34228bf2009-08-15 01:38:56 +00008457 }
8458
8459 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
8460
8461 return EndMBB;
8462}
Mon P Wang078a62d2008-05-05 19:05:59 +00008463
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008464MachineBasicBlock *
Chris Lattner84a67202009-09-02 05:57:00 +00008465X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmane9198cc2010-05-01 00:01:06 +00008466 MachineBasicBlock *BB) const {
Chris Lattner84a67202009-09-02 05:57:00 +00008467 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
8468 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbar3be44e62009-09-20 02:20:51 +00008469
Chris Lattner84a67202009-09-02 05:57:00 +00008470 // To "insert" a SELECT_CC instruction, we actually have to insert the
8471 // diamond control-flow pattern. The incoming instruction knows the
8472 // destination vreg to set, the condition code register to branch on, the
8473 // true/false values to select between, and a branch opcode to use.
8474 const BasicBlock *LLVM_BB = BB->getBasicBlock();
8475 MachineFunction::iterator It = BB;
8476 ++It;
Daniel Dunbar3be44e62009-09-20 02:20:51 +00008477
Chris Lattner84a67202009-09-02 05:57:00 +00008478 // thisMBB:
8479 // ...
8480 // TrueVal = ...
8481 // cmpTY ccX, r1, r2
8482 // bCC copy1MBB
8483 // fallthrough --> copy0MBB
8484 MachineBasicBlock *thisMBB = BB;
8485 MachineFunction *F = BB->getParent();
8486 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
8487 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
8488 unsigned Opc =
8489 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
Bill Wendling4a244bb2010-06-25 20:48:10 +00008490
Chris Lattner84a67202009-09-02 05:57:00 +00008491 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
8492 F->insert(It, copy0MBB);
8493 F->insert(It, sinkMBB);
Bill Wendling4a244bb2010-06-25 20:48:10 +00008494
Evan Cheng5f3a5402009-09-19 09:51:03 +00008495 // Update machine-CFG edges by first adding all successors of the current
Chris Lattner84a67202009-09-02 05:57:00 +00008496 // block to the new block which will contain the Phi node for the select.
Daniel Dunbar3be44e62009-09-20 02:20:51 +00008497 for (MachineBasicBlock::succ_iterator I = BB->succ_begin(),
Dan Gohmane9198cc2010-05-01 00:01:06 +00008498 E = BB->succ_end(); I != E; ++I)
Evan Cheng5f3a5402009-09-19 09:51:03 +00008499 sinkMBB->addSuccessor(*I);
Bill Wendling4a244bb2010-06-25 20:48:10 +00008500
Evan Cheng5f3a5402009-09-19 09:51:03 +00008501 // Next, remove all successors of the current block, and add the true
8502 // and fallthrough blocks as its successors.
8503 while (!BB->succ_empty())
8504 BB->removeSuccessor(BB->succ_begin());
Bill Wendling4a244bb2010-06-25 20:48:10 +00008505
Chris Lattner84a67202009-09-02 05:57:00 +00008506 // Add the true and fallthrough blocks as its successors.
8507 BB->addSuccessor(copy0MBB);
8508 BB->addSuccessor(sinkMBB);
Daniel Dunbar3be44e62009-09-20 02:20:51 +00008509
Bill Wendling4a244bb2010-06-25 20:48:10 +00008510 // If the EFLAGS register isn't dead in the terminator, then claim that it's
8511 // live into the sink and copy blocks.
8512 const MachineFunction *MF = BB->getParent();
8513 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
8514 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
8515 const MachineInstr *Term = BB->getFirstTerminator();
8516
8517 for (unsigned I = 0, E = Term->getNumOperands(); I != E; ++I) {
8518 const MachineOperand &MO = Term->getOperand(I);
8519 if (!MO.isReg() || MO.isKill() || MO.isDead()) continue;
8520 unsigned Reg = MO.getReg();
8521 if (Reg != X86::EFLAGS) continue;
8522 copy0MBB->addLiveIn(Reg);
8523 sinkMBB->addLiveIn(Reg);
8524 }
8525
Chris Lattner84a67202009-09-02 05:57:00 +00008526 // copy0MBB:
8527 // %FalseValue = ...
8528 // # fallthrough to sinkMBB
Dan Gohmandd83c0a2010-04-30 20:14:26 +00008529 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbar3be44e62009-09-20 02:20:51 +00008530
Chris Lattner84a67202009-09-02 05:57:00 +00008531 // sinkMBB:
8532 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
8533 // ...
Dan Gohmandd83c0a2010-04-30 20:14:26 +00008534 BuildMI(sinkMBB, DL, TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner84a67202009-09-02 05:57:00 +00008535 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
8536 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
8537
8538 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Dan Gohmandd83c0a2010-04-30 20:14:26 +00008539 return sinkMBB;
Chris Lattner84a67202009-09-02 05:57:00 +00008540}
8541
Anton Korobeynikov7cd32422010-03-06 19:32:29 +00008542MachineBasicBlock *
8543X86TargetLowering::EmitLoweredMingwAlloca(MachineInstr *MI,
Dan Gohmane9198cc2010-05-01 00:01:06 +00008544 MachineBasicBlock *BB) const {
Anton Korobeynikov7cd32422010-03-06 19:32:29 +00008545 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
8546 DebugLoc DL = MI->getDebugLoc();
8547 MachineFunction *F = BB->getParent();
8548
8549 // The lowering is pretty easy: we're just emitting the call to _alloca. The
8550 // non-trivial part is impdef of ESP.
8551 // FIXME: The code should be tweaked as soon as we'll try to do codegen for
8552 // mingw-w64.
8553
8554 BuildMI(BB, DL, TII->get(X86::CALLpcrel32))
8555 .addExternalSymbol("_alloca")
8556 .addReg(X86::EAX, RegState::Implicit)
8557 .addReg(X86::ESP, RegState::Implicit)
8558 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
8559 .addReg(X86::ESP, RegState::Define | RegState::Implicit);
8560
8561 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
8562 return BB;
8563}
Chris Lattner84a67202009-09-02 05:57:00 +00008564
8565MachineBasicBlock *
Eric Christopheree8d3332010-06-03 04:07:48 +00008566X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
8567 MachineBasicBlock *BB) const {
8568 // This is pretty easy. We're taking the value that we received from
8569 // our load from the relocation, sticking it in either RDI (x86-64)
8570 // or EAX and doing an indirect call. The return value will then
8571 // be in the normal return register.
Eric Christopher01958a72010-06-08 22:04:25 +00008572 const X86InstrInfo *TII
8573 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopheree8d3332010-06-03 04:07:48 +00008574 DebugLoc DL = MI->getDebugLoc();
8575 MachineFunction *F = BB->getParent();
8576
Eric Christopher01958a72010-06-08 22:04:25 +00008577 assert(MI->getOperand(3).isGlobal() && "This should be a global");
8578
Eric Christopheree8d3332010-06-03 04:07:48 +00008579 if (Subtarget->is64Bit()) {
Eric Christopher01958a72010-06-08 22:04:25 +00008580 MachineInstrBuilder MIB = BuildMI(BB, DL, TII->get(X86::MOV64rm), X86::RDI)
8581 .addReg(X86::RIP)
8582 .addImm(0).addReg(0)
8583 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
8584 MI->getOperand(3).getTargetFlags())
8585 .addReg(0);
Eric Christopheree8d3332010-06-03 04:07:48 +00008586 MIB = BuildMI(BB, DL, TII->get(X86::CALL64m));
8587 addDirectMem(MIB, X86::RDI).addReg(0);
Eric Christophere399fcb2010-06-15 23:08:42 +00008588 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
8589 MachineInstrBuilder MIB = BuildMI(BB, DL, TII->get(X86::MOV32rm), X86::EAX)
8590 .addReg(0)
8591 .addImm(0).addReg(0)
8592 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
8593 MI->getOperand(3).getTargetFlags())
8594 .addReg(0);
8595 MIB = BuildMI(BB, DL, TII->get(X86::CALL32m));
8596 addDirectMem(MIB, X86::EAX).addReg(0);
Eric Christopheree8d3332010-06-03 04:07:48 +00008597 } else {
Eric Christopher01958a72010-06-08 22:04:25 +00008598 MachineInstrBuilder MIB = BuildMI(BB, DL, TII->get(X86::MOV32rm), X86::EAX)
8599 .addReg(TII->getGlobalBaseReg(F))
8600 .addImm(0).addReg(0)
8601 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
8602 MI->getOperand(3).getTargetFlags())
8603 .addReg(0);
Eric Christopheree8d3332010-06-03 04:07:48 +00008604 MIB = BuildMI(BB, DL, TII->get(X86::CALL32m));
8605 addDirectMem(MIB, X86::EAX).addReg(0);
8606 }
8607
8608 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
8609 return BB;
8610}
8611
8612MachineBasicBlock *
Evan Chenge637db12008-01-30 18:18:23 +00008613X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmane9198cc2010-05-01 00:01:06 +00008614 MachineBasicBlock *BB) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008615 switch (MI->getOpcode()) {
8616 default: assert(false && "Unexpected instr type to insert");
Anton Korobeynikov7cd32422010-03-06 19:32:29 +00008617 case X86::MINGW_ALLOCA:
Dan Gohmane9198cc2010-05-01 00:01:06 +00008618 return EmitLoweredMingwAlloca(MI, BB);
Eric Christopheree8d3332010-06-03 04:07:48 +00008619 case X86::TLSCall_32:
8620 case X86::TLSCall_64:
8621 return EmitLoweredTLSCall(MI, BB);
Dan Gohman29b998f2009-08-27 00:14:12 +00008622 case X86::CMOV_GR8:
Mon P Wang83edba52008-12-12 01:25:51 +00008623 case X86::CMOV_V1I64:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008624 case X86::CMOV_FR32:
8625 case X86::CMOV_FR64:
8626 case X86::CMOV_V4F32:
8627 case X86::CMOV_V2F64:
Chris Lattner84a67202009-09-02 05:57:00 +00008628 case X86::CMOV_V2I64:
Chris Lattner8d76aeb2010-03-14 18:31:44 +00008629 case X86::CMOV_GR16:
8630 case X86::CMOV_GR32:
8631 case X86::CMOV_RFP32:
8632 case X86::CMOV_RFP64:
8633 case X86::CMOV_RFP80:
Dan Gohmane9198cc2010-05-01 00:01:06 +00008634 return EmitLoweredSelect(MI, BB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008635
8636 case X86::FP32_TO_INT16_IN_MEM:
8637 case X86::FP32_TO_INT32_IN_MEM:
8638 case X86::FP32_TO_INT64_IN_MEM:
8639 case X86::FP64_TO_INT16_IN_MEM:
8640 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesen6d0e36a2007-08-07 01:17:37 +00008641 case X86::FP64_TO_INT64_IN_MEM:
8642 case X86::FP80_TO_INT16_IN_MEM:
8643 case X86::FP80_TO_INT32_IN_MEM:
8644 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner84a67202009-09-02 05:57:00 +00008645 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
8646 DebugLoc DL = MI->getDebugLoc();
8647
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008648 // Change the floating point control register to use "round towards zero"
8649 // mode when truncating to an integer value.
8650 MachineFunction *F = BB->getParent();
David Greene6424ab92009-11-12 20:49:22 +00008651 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Chris Lattner84a67202009-09-02 05:57:00 +00008652 addFrameReference(BuildMI(BB, DL, TII->get(X86::FNSTCW16m)), CWFrameIdx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008653
8654 // Load the old value of the high byte of the control word...
8655 unsigned OldCW =
Chris Lattner1b989192007-12-31 04:13:23 +00008656 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Chris Lattner84a67202009-09-02 05:57:00 +00008657 addFrameReference(BuildMI(BB, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008658 CWFrameIdx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008659
8660 // Set the high part to be round to zero...
Chris Lattner84a67202009-09-02 05:57:00 +00008661 addFrameReference(BuildMI(BB, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008662 .addImm(0xC7F);
8663
8664 // Reload the modified control word now...
Chris Lattner84a67202009-09-02 05:57:00 +00008665 addFrameReference(BuildMI(BB, DL, TII->get(X86::FLDCW16m)), CWFrameIdx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008666
8667 // Restore the memory image of control word to original value
Chris Lattner84a67202009-09-02 05:57:00 +00008668 addFrameReference(BuildMI(BB, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008669 .addReg(OldCW);
8670
8671 // Get the X86 opcode to use.
8672 unsigned Opc;
8673 switch (MI->getOpcode()) {
Edwin Törökbd448e32009-07-14 16:55:14 +00008674 default: llvm_unreachable("illegal opcode!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008675 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
8676 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
8677 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
8678 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
8679 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
8680 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesen6d0e36a2007-08-07 01:17:37 +00008681 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
8682 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
8683 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008684 }
8685
8686 X86AddressMode AM;
8687 MachineOperand &Op = MI->getOperand(0);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00008688 if (Op.isReg()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008689 AM.BaseType = X86AddressMode::RegBase;
8690 AM.Base.Reg = Op.getReg();
8691 } else {
8692 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner6017d482007-12-30 23:10:15 +00008693 AM.Base.FrameIndex = Op.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008694 }
8695 Op = MI->getOperand(1);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00008696 if (Op.isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008697 AM.Scale = Op.getImm();
8698 Op = MI->getOperand(2);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00008699 if (Op.isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008700 AM.IndexReg = Op.getImm();
8701 Op = MI->getOperand(3);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00008702 if (Op.isGlobal()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008703 AM.GV = Op.getGlobal();
8704 } else {
8705 AM.Disp = Op.getImm();
8706 }
Chris Lattner84a67202009-09-02 05:57:00 +00008707 addFullAddress(BuildMI(BB, DL, TII->get(Opc)), AM)
Rafael Espindolafee9c0f2009-04-08 08:09:33 +00008708 .addReg(MI->getOperand(X86AddrNumOperands).getReg());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008709
8710 // Reload the original control word now.
Chris Lattner84a67202009-09-02 05:57:00 +00008711 addFrameReference(BuildMI(BB, DL, TII->get(X86::FLDCW16m)), CWFrameIdx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008712
Dan Gohman221a4372008-07-07 23:14:23 +00008713 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008714 return BB;
8715 }
Eric Christopher22a39402009-08-18 22:50:32 +00008716 // String/text processing lowering.
8717 case X86::PCMPISTRM128REG:
8718 return EmitPCMP(MI, BB, 3, false /* in-mem */);
8719 case X86::PCMPISTRM128MEM:
8720 return EmitPCMP(MI, BB, 3, true /* in-mem */);
8721 case X86::PCMPESTRM128REG:
8722 return EmitPCMP(MI, BB, 5, false /* in mem */);
8723 case X86::PCMPESTRM128MEM:
8724 return EmitPCMP(MI, BB, 5, true /* in mem */);
8725
8726 // Atomic Lowering.
Mon P Wang078a62d2008-05-05 19:05:59 +00008727 case X86::ATOMAND32:
8728 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michel91099d62009-02-17 22:15:04 +00008729 X86::AND32ri, X86::MOV32rm,
Dale Johannesend20e4452008-08-19 18:47:28 +00008730 X86::LCMPXCHG32, X86::MOV32rr,
8731 X86::NOT32r, X86::EAX,
8732 X86::GR32RegisterClass);
Mon P Wang078a62d2008-05-05 19:05:59 +00008733 case X86::ATOMOR32:
Scott Michel91099d62009-02-17 22:15:04 +00008734 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
8735 X86::OR32ri, X86::MOV32rm,
Dale Johannesend20e4452008-08-19 18:47:28 +00008736 X86::LCMPXCHG32, X86::MOV32rr,
8737 X86::NOT32r, X86::EAX,
8738 X86::GR32RegisterClass);
Mon P Wang078a62d2008-05-05 19:05:59 +00008739 case X86::ATOMXOR32:
8740 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michel91099d62009-02-17 22:15:04 +00008741 X86::XOR32ri, X86::MOV32rm,
Dale Johannesend20e4452008-08-19 18:47:28 +00008742 X86::LCMPXCHG32, X86::MOV32rr,
8743 X86::NOT32r, X86::EAX,
8744 X86::GR32RegisterClass);
Andrew Lenharthaf02d592008-06-14 05:48:15 +00008745 case X86::ATOMNAND32:
8746 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesend20e4452008-08-19 18:47:28 +00008747 X86::AND32ri, X86::MOV32rm,
8748 X86::LCMPXCHG32, X86::MOV32rr,
8749 X86::NOT32r, X86::EAX,
8750 X86::GR32RegisterClass, true);
Mon P Wang078a62d2008-05-05 19:05:59 +00008751 case X86::ATOMMIN32:
8752 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
8753 case X86::ATOMMAX32:
8754 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
8755 case X86::ATOMUMIN32:
8756 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
8757 case X86::ATOMUMAX32:
8758 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesend20e4452008-08-19 18:47:28 +00008759
8760 case X86::ATOMAND16:
8761 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
8762 X86::AND16ri, X86::MOV16rm,
8763 X86::LCMPXCHG16, X86::MOV16rr,
8764 X86::NOT16r, X86::AX,
8765 X86::GR16RegisterClass);
8766 case X86::ATOMOR16:
Scott Michel91099d62009-02-17 22:15:04 +00008767 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesend20e4452008-08-19 18:47:28 +00008768 X86::OR16ri, X86::MOV16rm,
8769 X86::LCMPXCHG16, X86::MOV16rr,
8770 X86::NOT16r, X86::AX,
8771 X86::GR16RegisterClass);
8772 case X86::ATOMXOR16:
8773 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
8774 X86::XOR16ri, X86::MOV16rm,
8775 X86::LCMPXCHG16, X86::MOV16rr,
8776 X86::NOT16r, X86::AX,
8777 X86::GR16RegisterClass);
8778 case X86::ATOMNAND16:
8779 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
8780 X86::AND16ri, X86::MOV16rm,
8781 X86::LCMPXCHG16, X86::MOV16rr,
8782 X86::NOT16r, X86::AX,
8783 X86::GR16RegisterClass, true);
8784 case X86::ATOMMIN16:
8785 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
8786 case X86::ATOMMAX16:
8787 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
8788 case X86::ATOMUMIN16:
8789 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
8790 case X86::ATOMUMAX16:
8791 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
8792
8793 case X86::ATOMAND8:
8794 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
8795 X86::AND8ri, X86::MOV8rm,
8796 X86::LCMPXCHG8, X86::MOV8rr,
8797 X86::NOT8r, X86::AL,
8798 X86::GR8RegisterClass);
8799 case X86::ATOMOR8:
Scott Michel91099d62009-02-17 22:15:04 +00008800 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesend20e4452008-08-19 18:47:28 +00008801 X86::OR8ri, X86::MOV8rm,
8802 X86::LCMPXCHG8, X86::MOV8rr,
8803 X86::NOT8r, X86::AL,
8804 X86::GR8RegisterClass);
8805 case X86::ATOMXOR8:
8806 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
8807 X86::XOR8ri, X86::MOV8rm,
8808 X86::LCMPXCHG8, X86::MOV8rr,
8809 X86::NOT8r, X86::AL,
8810 X86::GR8RegisterClass);
8811 case X86::ATOMNAND8:
8812 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
8813 X86::AND8ri, X86::MOV8rm,
8814 X86::LCMPXCHG8, X86::MOV8rr,
8815 X86::NOT8r, X86::AL,
8816 X86::GR8RegisterClass, true);
8817 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesenf160d802008-10-02 18:53:47 +00008818 // This group is for 64-bit host.
Dale Johannesen6b60eca2008-08-20 00:48:50 +00008819 case X86::ATOMAND64:
8820 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michel91099d62009-02-17 22:15:04 +00008821 X86::AND64ri32, X86::MOV64rm,
Dale Johannesen6b60eca2008-08-20 00:48:50 +00008822 X86::LCMPXCHG64, X86::MOV64rr,
8823 X86::NOT64r, X86::RAX,
8824 X86::GR64RegisterClass);
8825 case X86::ATOMOR64:
Scott Michel91099d62009-02-17 22:15:04 +00008826 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
8827 X86::OR64ri32, X86::MOV64rm,
Dale Johannesen6b60eca2008-08-20 00:48:50 +00008828 X86::LCMPXCHG64, X86::MOV64rr,
8829 X86::NOT64r, X86::RAX,
8830 X86::GR64RegisterClass);
8831 case X86::ATOMXOR64:
8832 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michel91099d62009-02-17 22:15:04 +00008833 X86::XOR64ri32, X86::MOV64rm,
Dale Johannesen6b60eca2008-08-20 00:48:50 +00008834 X86::LCMPXCHG64, X86::MOV64rr,
8835 X86::NOT64r, X86::RAX,
8836 X86::GR64RegisterClass);
8837 case X86::ATOMNAND64:
8838 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
8839 X86::AND64ri32, X86::MOV64rm,
8840 X86::LCMPXCHG64, X86::MOV64rr,
8841 X86::NOT64r, X86::RAX,
8842 X86::GR64RegisterClass, true);
8843 case X86::ATOMMIN64:
8844 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
8845 case X86::ATOMMAX64:
8846 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
8847 case X86::ATOMUMIN64:
8848 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
8849 case X86::ATOMUMAX64:
8850 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesenf160d802008-10-02 18:53:47 +00008851
8852 // This group does 64-bit operations on a 32-bit host.
8853 case X86::ATOMAND6432:
Scott Michel91099d62009-02-17 22:15:04 +00008854 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00008855 X86::AND32rr, X86::AND32rr,
8856 X86::AND32ri, X86::AND32ri,
8857 false);
8858 case X86::ATOMOR6432:
Scott Michel91099d62009-02-17 22:15:04 +00008859 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00008860 X86::OR32rr, X86::OR32rr,
8861 X86::OR32ri, X86::OR32ri,
8862 false);
8863 case X86::ATOMXOR6432:
Scott Michel91099d62009-02-17 22:15:04 +00008864 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00008865 X86::XOR32rr, X86::XOR32rr,
8866 X86::XOR32ri, X86::XOR32ri,
8867 false);
8868 case X86::ATOMNAND6432:
Scott Michel91099d62009-02-17 22:15:04 +00008869 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00008870 X86::AND32rr, X86::AND32rr,
8871 X86::AND32ri, X86::AND32ri,
8872 true);
Dale Johannesenf160d802008-10-02 18:53:47 +00008873 case X86::ATOMADD6432:
Scott Michel91099d62009-02-17 22:15:04 +00008874 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00008875 X86::ADD32rr, X86::ADC32rr,
8876 X86::ADD32ri, X86::ADC32ri,
8877 false);
Dale Johannesenf160d802008-10-02 18:53:47 +00008878 case X86::ATOMSUB6432:
Scott Michel91099d62009-02-17 22:15:04 +00008879 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesenf160d802008-10-02 18:53:47 +00008880 X86::SUB32rr, X86::SBB32rr,
8881 X86::SUB32ri, X86::SBB32ri,
8882 false);
Dale Johannesen51c58ee2008-10-03 22:25:52 +00008883 case X86::ATOMSWAP6432:
Scott Michel91099d62009-02-17 22:15:04 +00008884 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen51c58ee2008-10-03 22:25:52 +00008885 X86::MOV32rr, X86::MOV32rr,
8886 X86::MOV32ri, X86::MOV32ri,
8887 false);
Dan Gohman34228bf2009-08-15 01:38:56 +00008888 case X86::VASTART_SAVE_XMM_REGS:
8889 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008890 }
8891}
8892
8893//===----------------------------------------------------------------------===//
8894// X86 Optimization Hooks
8895//===----------------------------------------------------------------------===//
8896
Dan Gohman8181bd12008-07-27 21:46:04 +00008897void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohmand0dfc772008-02-13 22:28:48 +00008898 const APInt &Mask,
Dan Gohman229fa052008-02-13 00:35:47 +00008899 APInt &KnownZero,
8900 APInt &KnownOne,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008901 const SelectionDAG &DAG,
8902 unsigned Depth) const {
8903 unsigned Opc = Op.getOpcode();
8904 assert((Opc >= ISD::BUILTIN_OP_END ||
8905 Opc == ISD::INTRINSIC_WO_CHAIN ||
8906 Opc == ISD::INTRINSIC_W_CHAIN ||
8907 Opc == ISD::INTRINSIC_VOID) &&
8908 "Should use MaskedValueIsZero if you don't know whether Op"
8909 " is a target node!");
8910
Dan Gohman1d79e432008-02-13 23:07:24 +00008911 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008912 switch (Opc) {
8913 default: break;
Evan Cheng8e9b21c2009-02-02 09:15:04 +00008914 case X86ISD::ADD:
8915 case X86ISD::SUB:
8916 case X86ISD::SMUL:
8917 case X86ISD::UMUL:
Dan Gohman99a12192009-03-04 19:44:21 +00008918 case X86ISD::INC:
8919 case X86ISD::DEC:
Dan Gohman12e03292009-09-18 19:59:53 +00008920 case X86ISD::OR:
8921 case X86ISD::XOR:
8922 case X86ISD::AND:
Evan Cheng8e9b21c2009-02-02 09:15:04 +00008923 // These nodes' second result is a boolean.
8924 if (Op.getResNo() == 0)
8925 break;
8926 // Fallthrough
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008927 case X86ISD::SETCC:
Dan Gohman229fa052008-02-13 00:35:47 +00008928 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
8929 Mask.getBitWidth() - 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008930 break;
8931 }
8932}
8933
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008934/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengef7be082008-05-12 19:56:52 +00008935/// node is a GlobalAddress + offset.
8936bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman36c56d02010-04-15 01:51:59 +00008937 const GlobalValue* &GA,
8938 int64_t &Offset) const {
Evan Chengef7be082008-05-12 19:56:52 +00008939 if (N->getOpcode() == X86ISD::Wrapper) {
8940 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008941 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman36322c72008-10-18 02:06:02 +00008942 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008943 return true;
8944 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008945 }
Evan Chengef7be082008-05-12 19:56:52 +00008946 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008947}
8948
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008949/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
8950/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
8951/// if the load addresses are consecutive, non-overlapping, and in the right
Nate Begeman1aa900a2010-03-24 20:49:50 +00008952/// order.
Dan Gohman8181bd12008-07-27 21:46:04 +00008953static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Nate Begeman543d2142009-04-27 18:41:29 +00008954 const TargetLowering &TLI) {
Dale Johannesen0db52dd2009-02-03 20:21:25 +00008955 DebugLoc dl = N->getDebugLoc();
Owen Andersonac9de032009-08-10 22:56:29 +00008956 EVT VT = N->getValueType(0);
Nate Begeman543d2142009-04-27 18:41:29 +00008957 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
Mon P Wang6e30ad02009-04-03 02:43:30 +00008958
Eli Friedmane6bb1e52009-06-07 06:52:44 +00008959 if (VT.getSizeInBits() != 128)
8960 return SDValue();
8961
Nate Begeman1aa900a2010-03-24 20:49:50 +00008962 SmallVector<SDValue, 16> Elts;
8963 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
8964 Elts.push_back(DAG.getShuffleScalarElt(SVN, i));
8965
8966 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michel91099d62009-02-17 22:15:04 +00008967}
Evan Chenge9b9c672008-05-09 21:53:03 +00008968
Dan Gohmanb115d052010-03-15 23:23:03 +00008969/// PerformShuffleCombine - Detect vector gather/scatter index generation
8970/// and convert it from being a bunch of shuffles and extracts to a simple
8971/// store and scalar loads to extract the elements.
8972static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
8973 const TargetLowering &TLI) {
8974 SDValue InputVector = N->getOperand(0);
8975
8976 // Only operate on vectors of 4 elements, where the alternative shuffling
8977 // gets to be more expensive.
8978 if (InputVector.getValueType() != MVT::v4i32)
8979 return SDValue();
8980
8981 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
8982 // single use which is a sign-extend or zero-extend, and all elements are
8983 // used.
8984 SmallVector<SDNode *, 4> Uses;
8985 unsigned ExtractedElements = 0;
8986 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
8987 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
8988 if (UI.getUse().getResNo() != InputVector.getResNo())
8989 return SDValue();
8990
8991 SDNode *Extract = *UI;
8992 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
8993 return SDValue();
8994
8995 if (Extract->getValueType(0) != MVT::i32)
8996 return SDValue();
8997 if (!Extract->hasOneUse())
8998 return SDValue();
8999 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
9000 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
9001 return SDValue();
9002 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
9003 return SDValue();
9004
9005 // Record which element was extracted.
9006 ExtractedElements |=
9007 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
9008
9009 Uses.push_back(Extract);
9010 }
9011
9012 // If not all the elements were used, this may not be worthwhile.
9013 if (ExtractedElements != 15)
9014 return SDValue();
9015
9016 // Ok, we've now decided to do the transformation.
9017 DebugLoc dl = InputVector.getDebugLoc();
9018
9019 // Store the value to a temporary stack slot.
9020 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
9021 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr, NULL, 0,
9022 false, false, 0);
9023
9024 // Replace each use (extract) with a load of the appropriate element.
9025 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
9026 UE = Uses.end(); UI != UE; ++UI) {
9027 SDNode *Extract = *UI;
9028
9029 // Compute the element's address.
9030 SDValue Idx = Extract->getOperand(1);
9031 unsigned EltSize =
9032 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
9033 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
9034 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
9035
9036 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), OffsetVal, StackPtr);
9037
9038 // Load the scalar.
9039 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch, ScalarAddr,
9040 NULL, 0, false, false, 0);
9041
9042 // Replace the exact with the load.
9043 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
9044 }
9045
9046 // The replacement was made in place; don't return anything.
9047 return SDValue();
9048}
9049
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009050/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00009051static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner472f1d52009-03-11 05:48:52 +00009052 const X86Subtarget *Subtarget) {
9053 DebugLoc DL = N->getDebugLoc();
Dan Gohman8181bd12008-07-27 21:46:04 +00009054 SDValue Cond = N->getOperand(0);
Chris Lattner472f1d52009-03-11 05:48:52 +00009055 // Get the LHS/RHS of the select.
9056 SDValue LHS = N->getOperand(1);
9057 SDValue RHS = N->getOperand(2);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009058
Dan Gohman19488552009-09-21 18:03:22 +00009059 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohmandaa74bd2010-02-22 04:03:39 +00009060 // instructions match the semantics of the common C idiom x<y?x:y but not
9061 // x<=y?x:y, because of how they handle negative zero (which can be
9062 // ignored in unsafe-math mode).
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009063 if (Subtarget->hasSSE2() &&
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009064 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner472f1d52009-03-11 05:48:52 +00009065 Cond.getOpcode() == ISD::SETCC) {
9066 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009067
Chris Lattner472f1d52009-03-11 05:48:52 +00009068 unsigned Opcode = 0;
Dan Gohman19488552009-09-21 18:03:22 +00009069 // Check for x CC y ? x : y.
Dan Gohmane8cc39f2010-02-24 06:52:40 +00009070 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
9071 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner472f1d52009-03-11 05:48:52 +00009072 switch (CC) {
9073 default: break;
Dan Gohman19488552009-09-21 18:03:22 +00009074 case ISD::SETULT:
Dan Gohmane8cc39f2010-02-24 06:52:40 +00009075 // Converting this to a min would handle NaNs incorrectly, and swapping
9076 // the operands would cause it to handle comparisons between positive
9077 // and negative zero incorrectly.
9078 if (!FiniteOnlyFPMath() &&
9079 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))) {
9080 if (!UnsafeFPMath &&
9081 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
9082 break;
9083 std::swap(LHS, RHS);
9084 }
Dan Gohman19488552009-09-21 18:03:22 +00009085 Opcode = X86ISD::FMIN;
9086 break;
9087 case ISD::SETOLE:
Dan Gohmane8cc39f2010-02-24 06:52:40 +00009088 // Converting this to a min would handle comparisons between positive
9089 // and negative zero incorrectly.
9090 if (!UnsafeFPMath &&
9091 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
9092 break;
Dan Gohman19488552009-09-21 18:03:22 +00009093 Opcode = X86ISD::FMIN;
9094 break;
Chris Lattner472f1d52009-03-11 05:48:52 +00009095 case ISD::SETULE:
Dan Gohmane8cc39f2010-02-24 06:52:40 +00009096 // Converting this to a min would handle both negative zeros and NaNs
9097 // incorrectly, but we can swap the operands to fix both.
9098 std::swap(LHS, RHS);
Dan Gohman19488552009-09-21 18:03:22 +00009099 case ISD::SETOLT:
Chris Lattner472f1d52009-03-11 05:48:52 +00009100 case ISD::SETLT:
Dan Gohman19488552009-09-21 18:03:22 +00009101 case ISD::SETLE:
Chris Lattner472f1d52009-03-11 05:48:52 +00009102 Opcode = X86ISD::FMIN;
9103 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009104
Dan Gohman19488552009-09-21 18:03:22 +00009105 case ISD::SETOGE:
Dan Gohmane8cc39f2010-02-24 06:52:40 +00009106 // Converting this to a max would handle comparisons between positive
9107 // and negative zero incorrectly.
9108 if (!UnsafeFPMath &&
9109 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(LHS))
9110 break;
Dan Gohman19488552009-09-21 18:03:22 +00009111 Opcode = X86ISD::FMAX;
9112 break;
Chris Lattner472f1d52009-03-11 05:48:52 +00009113 case ISD::SETUGT:
Dan Gohmane8cc39f2010-02-24 06:52:40 +00009114 // Converting this to a max would handle NaNs incorrectly, and swapping
9115 // the operands would cause it to handle comparisons between positive
9116 // and negative zero incorrectly.
9117 if (!FiniteOnlyFPMath() &&
9118 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))) {
9119 if (!UnsafeFPMath &&
9120 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
9121 break;
9122 std::swap(LHS, RHS);
9123 }
Dan Gohman19488552009-09-21 18:03:22 +00009124 Opcode = X86ISD::FMAX;
9125 break;
9126 case ISD::SETUGE:
Dan Gohmane8cc39f2010-02-24 06:52:40 +00009127 // Converting this to a max would handle both negative zeros and NaNs
9128 // incorrectly, but we can swap the operands to fix both.
9129 std::swap(LHS, RHS);
Dan Gohman19488552009-09-21 18:03:22 +00009130 case ISD::SETOGT:
Chris Lattner472f1d52009-03-11 05:48:52 +00009131 case ISD::SETGT:
Chris Lattner472f1d52009-03-11 05:48:52 +00009132 case ISD::SETGE:
9133 Opcode = X86ISD::FMAX;
9134 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009135 }
Dan Gohman19488552009-09-21 18:03:22 +00009136 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8cc39f2010-02-24 06:52:40 +00009137 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
9138 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner472f1d52009-03-11 05:48:52 +00009139 switch (CC) {
9140 default: break;
Dan Gohman19488552009-09-21 18:03:22 +00009141 case ISD::SETOGE:
Dan Gohmane8cc39f2010-02-24 06:52:40 +00009142 // Converting this to a min would handle comparisons between positive
9143 // and negative zero incorrectly, and swapping the operands would
9144 // cause it to handle NaNs incorrectly.
9145 if (!UnsafeFPMath &&
9146 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
9147 if (!FiniteOnlyFPMath() &&
9148 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
9149 break;
9150 std::swap(LHS, RHS);
9151 }
Dan Gohman19488552009-09-21 18:03:22 +00009152 Opcode = X86ISD::FMIN;
Dan Gohman41b3f4a2009-09-03 20:34:31 +00009153 break;
Dan Gohman19488552009-09-21 18:03:22 +00009154 case ISD::SETUGT:
Dan Gohmane8cc39f2010-02-24 06:52:40 +00009155 // Converting this to a min would handle NaNs incorrectly.
9156 if (!UnsafeFPMath &&
9157 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
9158 break;
Dan Gohman19488552009-09-21 18:03:22 +00009159 Opcode = X86ISD::FMIN;
9160 break;
9161 case ISD::SETUGE:
Dan Gohmane8cc39f2010-02-24 06:52:40 +00009162 // Converting this to a min would handle both negative zeros and NaNs
9163 // incorrectly, but we can swap the operands to fix both.
9164 std::swap(LHS, RHS);
Dan Gohman19488552009-09-21 18:03:22 +00009165 case ISD::SETOGT:
Chris Lattner472f1d52009-03-11 05:48:52 +00009166 case ISD::SETGT:
Chris Lattner472f1d52009-03-11 05:48:52 +00009167 case ISD::SETGE:
9168 Opcode = X86ISD::FMIN;
9169 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009170
Dan Gohman19488552009-09-21 18:03:22 +00009171 case ISD::SETULT:
Dan Gohmane8cc39f2010-02-24 06:52:40 +00009172 // Converting this to a max would handle NaNs incorrectly.
9173 if (!FiniteOnlyFPMath() &&
9174 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
9175 break;
Dan Gohman19488552009-09-21 18:03:22 +00009176 Opcode = X86ISD::FMAX;
Dan Gohman41b3f4a2009-09-03 20:34:31 +00009177 break;
Dan Gohman19488552009-09-21 18:03:22 +00009178 case ISD::SETOLE:
Dan Gohmane8cc39f2010-02-24 06:52:40 +00009179 // Converting this to a max would handle comparisons between positive
9180 // and negative zero incorrectly, and swapping the operands would
9181 // cause it to handle NaNs incorrectly.
9182 if (!UnsafeFPMath &&
9183 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
9184 if (!FiniteOnlyFPMath() &&
9185 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
9186 break;
9187 std::swap(LHS, RHS);
9188 }
Dan Gohman19488552009-09-21 18:03:22 +00009189 Opcode = X86ISD::FMAX;
9190 break;
9191 case ISD::SETULE:
Dan Gohmane8cc39f2010-02-24 06:52:40 +00009192 // Converting this to a max would handle both negative zeros and NaNs
9193 // incorrectly, but we can swap the operands to fix both.
9194 std::swap(LHS, RHS);
Dan Gohman19488552009-09-21 18:03:22 +00009195 case ISD::SETOLT:
Chris Lattner472f1d52009-03-11 05:48:52 +00009196 case ISD::SETLT:
Dan Gohman19488552009-09-21 18:03:22 +00009197 case ISD::SETLE:
Chris Lattner472f1d52009-03-11 05:48:52 +00009198 Opcode = X86ISD::FMAX;
9199 break;
9200 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009201 }
9202
Chris Lattner472f1d52009-03-11 05:48:52 +00009203 if (Opcode)
9204 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009205 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009206
Chris Lattnere4577dc2009-03-12 06:52:53 +00009207 // If this is a select between two integer constants, try to do some
9208 // optimizations.
Chris Lattnera054e842009-03-13 05:53:31 +00009209 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
9210 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnere4577dc2009-03-12 06:52:53 +00009211 // Don't do this for crazy integer types.
9212 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
9213 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnera054e842009-03-13 05:53:31 +00009214 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnere4577dc2009-03-12 06:52:53 +00009215 bool NeedsCondInvert = false;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009216
Chris Lattnera054e842009-03-13 05:53:31 +00009217 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnere4577dc2009-03-12 06:52:53 +00009218 // Efficiently invertible.
9219 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
9220 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
9221 isa<ConstantSDNode>(Cond.getOperand(1))))) {
9222 NeedsCondInvert = true;
Chris Lattnera054e842009-03-13 05:53:31 +00009223 std::swap(TrueC, FalseC);
Chris Lattnere4577dc2009-03-12 06:52:53 +00009224 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009225
Chris Lattnere4577dc2009-03-12 06:52:53 +00009226 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnera054e842009-03-13 05:53:31 +00009227 if (FalseC->getAPIntValue() == 0 &&
9228 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnere4577dc2009-03-12 06:52:53 +00009229 if (NeedsCondInvert) // Invert the condition if needed.
9230 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
9231 DAG.getConstant(1, Cond.getValueType()));
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009232
Chris Lattnere4577dc2009-03-12 06:52:53 +00009233 // Zero extend the condition if needed.
9234 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009235
Chris Lattnera054e842009-03-13 05:53:31 +00009236 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnere4577dc2009-03-12 06:52:53 +00009237 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009238 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnere4577dc2009-03-12 06:52:53 +00009239 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009240
Chris Lattner938d6652009-03-13 05:22:11 +00009241 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnera054e842009-03-13 05:53:31 +00009242 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner938d6652009-03-13 05:22:11 +00009243 if (NeedsCondInvert) // Invert the condition if needed.
9244 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
9245 DAG.getConstant(1, Cond.getValueType()));
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009246
Chris Lattner938d6652009-03-13 05:22:11 +00009247 // Zero extend the condition if needed.
Chris Lattnera054e842009-03-13 05:53:31 +00009248 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
9249 FalseC->getValueType(0), Cond);
Chris Lattner938d6652009-03-13 05:22:11 +00009250 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnera054e842009-03-13 05:53:31 +00009251 SDValue(FalseC, 0));
Chris Lattner938d6652009-03-13 05:22:11 +00009252 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009253
Chris Lattnera054e842009-03-13 05:53:31 +00009254 // Optimize cases that will turn into an LEA instruction. This requires
9255 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009256 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnera054e842009-03-13 05:53:31 +00009257 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009258 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009259
Chris Lattnera054e842009-03-13 05:53:31 +00009260 bool isFastMultiplier = false;
9261 if (Diff < 10) {
9262 switch ((unsigned char)Diff) {
9263 default: break;
9264 case 1: // result = add base, cond
9265 case 2: // result = lea base( , cond*2)
9266 case 3: // result = lea base(cond, cond*2)
9267 case 4: // result = lea base( , cond*4)
9268 case 5: // result = lea base(cond, cond*4)
9269 case 8: // result = lea base( , cond*8)
9270 case 9: // result = lea base(cond, cond*8)
9271 isFastMultiplier = true;
9272 break;
9273 }
9274 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009275
Chris Lattnera054e842009-03-13 05:53:31 +00009276 if (isFastMultiplier) {
9277 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
9278 if (NeedsCondInvert) // Invert the condition if needed.
9279 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
9280 DAG.getConstant(1, Cond.getValueType()));
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009281
Chris Lattnera054e842009-03-13 05:53:31 +00009282 // Zero extend the condition if needed.
9283 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
9284 Cond);
9285 // Scale the condition by the difference.
9286 if (Diff != 1)
9287 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
9288 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009289
Chris Lattnera054e842009-03-13 05:53:31 +00009290 // Add the base if non-zero.
9291 if (FalseC->getAPIntValue() != 0)
9292 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
9293 SDValue(FalseC, 0));
9294 return Cond;
9295 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009296 }
Chris Lattnere4577dc2009-03-12 06:52:53 +00009297 }
9298 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009299
Dan Gohman8181bd12008-07-27 21:46:04 +00009300 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009301}
9302
Chris Lattnere4577dc2009-03-12 06:52:53 +00009303/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
9304static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
9305 TargetLowering::DAGCombinerInfo &DCI) {
9306 DebugLoc DL = N->getDebugLoc();
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009307
Chris Lattnere4577dc2009-03-12 06:52:53 +00009308 // If the flag operand isn't dead, don't touch this CMOV.
9309 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
9310 return SDValue();
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009311
Chris Lattnere4577dc2009-03-12 06:52:53 +00009312 // If this is a select between two integer constants, try to do some
9313 // optimizations. Note that the operands are ordered the opposite of SELECT
9314 // operands.
9315 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
9316 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
9317 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
9318 // larger than FalseC (the false value).
9319 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009320
Chris Lattnere4577dc2009-03-12 06:52:53 +00009321 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
9322 CC = X86::GetOppositeBranchCondition(CC);
9323 std::swap(TrueC, FalseC);
9324 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009325
Chris Lattnere4577dc2009-03-12 06:52:53 +00009326 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnera054e842009-03-13 05:53:31 +00009327 // This is efficient for any integer data type (including i8/i16) and
9328 // shift amount.
Chris Lattnere4577dc2009-03-12 06:52:53 +00009329 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
9330 SDValue Cond = N->getOperand(3);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009331 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
9332 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009333
Chris Lattnere4577dc2009-03-12 06:52:53 +00009334 // Zero extend the condition if needed.
9335 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009336
Chris Lattnere4577dc2009-03-12 06:52:53 +00009337 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
9338 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009339 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnere4577dc2009-03-12 06:52:53 +00009340 if (N->getNumValues() == 2) // Dead flag value?
9341 return DCI.CombineTo(N, Cond, SDValue());
9342 return Cond;
9343 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009344
Chris Lattnera054e842009-03-13 05:53:31 +00009345 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
9346 // for any integer data type, including i8/i16.
Chris Lattner938d6652009-03-13 05:22:11 +00009347 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
9348 SDValue Cond = N->getOperand(3);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009349 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
9350 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009351
Chris Lattner938d6652009-03-13 05:22:11 +00009352 // Zero extend the condition if needed.
Chris Lattnera054e842009-03-13 05:53:31 +00009353 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
9354 FalseC->getValueType(0), Cond);
Chris Lattner938d6652009-03-13 05:22:11 +00009355 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
9356 SDValue(FalseC, 0));
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009357
Chris Lattner938d6652009-03-13 05:22:11 +00009358 if (N->getNumValues() == 2) // Dead flag value?
9359 return DCI.CombineTo(N, Cond, SDValue());
9360 return Cond;
9361 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009362
Chris Lattnera054e842009-03-13 05:53:31 +00009363 // Optimize cases that will turn into an LEA instruction. This requires
9364 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009365 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnera054e842009-03-13 05:53:31 +00009366 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009367 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009368
Chris Lattnera054e842009-03-13 05:53:31 +00009369 bool isFastMultiplier = false;
9370 if (Diff < 10) {
9371 switch ((unsigned char)Diff) {
9372 default: break;
9373 case 1: // result = add base, cond
9374 case 2: // result = lea base( , cond*2)
9375 case 3: // result = lea base(cond, cond*2)
9376 case 4: // result = lea base( , cond*4)
9377 case 5: // result = lea base(cond, cond*4)
9378 case 8: // result = lea base( , cond*8)
9379 case 9: // result = lea base(cond, cond*8)
9380 isFastMultiplier = true;
9381 break;
9382 }
9383 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009384
Chris Lattnera054e842009-03-13 05:53:31 +00009385 if (isFastMultiplier) {
9386 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
9387 SDValue Cond = N->getOperand(3);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009388 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
9389 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnera054e842009-03-13 05:53:31 +00009390 // Zero extend the condition if needed.
9391 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
9392 Cond);
9393 // Scale the condition by the difference.
9394 if (Diff != 1)
9395 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
9396 DAG.getConstant(Diff, Cond.getValueType()));
9397
9398 // Add the base if non-zero.
9399 if (FalseC->getAPIntValue() != 0)
9400 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
9401 SDValue(FalseC, 0));
9402 if (N->getNumValues() == 2) // Dead flag value?
9403 return DCI.CombineTo(N, Cond, SDValue());
9404 return Cond;
9405 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009406 }
Chris Lattnere4577dc2009-03-12 06:52:53 +00009407 }
9408 }
9409 return SDValue();
9410}
9411
9412
Evan Cheng04ecee12009-03-28 05:57:29 +00009413/// PerformMulCombine - Optimize a single multiply with constant into two
9414/// in order to implement it with two cheaper instructions, e.g.
9415/// LEA + SHL, LEA + LEA.
9416static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
9417 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng04ecee12009-03-28 05:57:29 +00009418 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
9419 return SDValue();
9420
Owen Andersonac9de032009-08-10 22:56:29 +00009421 EVT VT = N->getValueType(0);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009422 if (VT != MVT::i64)
Evan Cheng04ecee12009-03-28 05:57:29 +00009423 return SDValue();
9424
9425 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
9426 if (!C)
9427 return SDValue();
9428 uint64_t MulAmt = C->getZExtValue();
9429 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
9430 return SDValue();
9431
9432 uint64_t MulAmt1 = 0;
9433 uint64_t MulAmt2 = 0;
9434 if ((MulAmt % 9) == 0) {
9435 MulAmt1 = 9;
9436 MulAmt2 = MulAmt / 9;
9437 } else if ((MulAmt % 5) == 0) {
9438 MulAmt1 = 5;
9439 MulAmt2 = MulAmt / 5;
9440 } else if ((MulAmt % 3) == 0) {
9441 MulAmt1 = 3;
9442 MulAmt2 = MulAmt / 3;
9443 }
9444 if (MulAmt2 &&
9445 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
9446 DebugLoc DL = N->getDebugLoc();
9447
9448 if (isPowerOf2_64(MulAmt2) &&
9449 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
9450 // If second multiplifer is pow2, issue it first. We want the multiply by
9451 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
9452 // is an add.
9453 std::swap(MulAmt1, MulAmt2);
9454
9455 SDValue NewMul;
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009456 if (isPowerOf2_64(MulAmt1))
Evan Cheng04ecee12009-03-28 05:57:29 +00009457 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009458 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng04ecee12009-03-28 05:57:29 +00009459 else
Evan Chengc3495762009-03-30 21:36:47 +00009460 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng04ecee12009-03-28 05:57:29 +00009461 DAG.getConstant(MulAmt1, VT));
9462
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009463 if (isPowerOf2_64(MulAmt2))
Evan Cheng04ecee12009-03-28 05:57:29 +00009464 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009465 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009466 else
Evan Chengc3495762009-03-30 21:36:47 +00009467 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng04ecee12009-03-28 05:57:29 +00009468 DAG.getConstant(MulAmt2, VT));
9469
9470 // Do not add new nodes to DAG combiner worklist.
9471 DCI.CombineTo(N, NewMul, false);
9472 }
9473 return SDValue();
9474}
9475
Evan Cheng834ae6b2009-12-15 00:53:42 +00009476static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
9477 SDValue N0 = N->getOperand(0);
9478 SDValue N1 = N->getOperand(1);
9479 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
9480 EVT VT = N0.getValueType();
9481
9482 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
9483 // since the result of setcc_c is all zero's or all ones.
9484 if (N1C && N0.getOpcode() == ISD::AND &&
9485 N0.getOperand(1).getOpcode() == ISD::Constant) {
9486 SDValue N00 = N0.getOperand(0);
9487 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
9488 ((N00.getOpcode() == ISD::ANY_EXTEND ||
9489 N00.getOpcode() == ISD::ZERO_EXTEND) &&
9490 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
9491 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
9492 APInt ShAmt = N1C->getAPIntValue();
9493 Mask = Mask.shl(ShAmt);
9494 if (Mask != 0)
9495 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
9496 N00, DAG.getConstant(Mask, VT));
9497 }
9498 }
9499
9500 return SDValue();
9501}
Evan Cheng04ecee12009-03-28 05:57:29 +00009502
sampo025b75c2009-01-26 00:52:55 +00009503/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
9504/// when possible.
9505static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
9506 const X86Subtarget *Subtarget) {
Evan Cheng834ae6b2009-12-15 00:53:42 +00009507 EVT VT = N->getValueType(0);
9508 if (!VT.isVector() && VT.isInteger() &&
9509 N->getOpcode() == ISD::SHL)
9510 return PerformSHLCombine(N, DAG);
9511
sampo025b75c2009-01-26 00:52:55 +00009512 // On X86 with SSE2 support, we can transform this to a vector shift if
9513 // all elements are shifted by the same amount. We can't do this in legalize
9514 // because the a constant vector is typically transformed to a constant pool
9515 // so we have no knowledge of the shift amount.
sampo087d53c2009-01-26 03:15:31 +00009516 if (!Subtarget->hasSSE2())
9517 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00009518
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009519 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
sampo087d53c2009-01-26 03:15:31 +00009520 return SDValue();
Scott Michel91099d62009-02-17 22:15:04 +00009521
Mon P Wanga91e9642009-01-28 08:12:05 +00009522 SDValue ShAmtOp = N->getOperand(1);
Owen Andersonac9de032009-08-10 22:56:29 +00009523 EVT EltVT = VT.getVectorElementType();
Chris Lattner472f1d52009-03-11 05:48:52 +00009524 DebugLoc DL = N->getDebugLoc();
Mon P Wang04c767e2009-09-03 19:56:25 +00009525 SDValue BaseShAmt = SDValue();
Mon P Wanga91e9642009-01-28 08:12:05 +00009526 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
9527 unsigned NumElts = VT.getVectorNumElements();
9528 unsigned i = 0;
9529 for (; i != NumElts; ++i) {
9530 SDValue Arg = ShAmtOp.getOperand(i);
9531 if (Arg.getOpcode() == ISD::UNDEF) continue;
9532 BaseShAmt = Arg;
9533 break;
9534 }
9535 for (; i != NumElts; ++i) {
9536 SDValue Arg = ShAmtOp.getOperand(i);
9537 if (Arg.getOpcode() == ISD::UNDEF) continue;
9538 if (Arg != BaseShAmt) {
9539 return SDValue();
9540 }
9541 }
9542 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman543d2142009-04-27 18:41:29 +00009543 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wang04c767e2009-09-03 19:56:25 +00009544 SDValue InVec = ShAmtOp.getOperand(0);
9545 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
9546 unsigned NumElts = InVec.getValueType().getVectorNumElements();
9547 unsigned i = 0;
9548 for (; i != NumElts; ++i) {
9549 SDValue Arg = InVec.getOperand(i);
9550 if (Arg.getOpcode() == ISD::UNDEF) continue;
9551 BaseShAmt = Arg;
9552 break;
9553 }
9554 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
9555 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Cheng97ffc6e2010-02-16 21:09:44 +00009556 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wang04c767e2009-09-03 19:56:25 +00009557 if (C->getZExtValue() == SplatIdx)
9558 BaseShAmt = InVec.getOperand(1);
9559 }
9560 }
9561 if (BaseShAmt.getNode() == 0)
9562 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
9563 DAG.getIntPtrConstant(0));
Mon P Wanga91e9642009-01-28 08:12:05 +00009564 } else
sampo087d53c2009-01-26 03:15:31 +00009565 return SDValue();
sampo025b75c2009-01-26 00:52:55 +00009566
Mon P Wang04c767e2009-09-03 19:56:25 +00009567 // The shift amount is an i32.
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009568 if (EltVT.bitsGT(MVT::i32))
9569 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
9570 else if (EltVT.bitsLT(MVT::i32))
Mon P Wang04c767e2009-09-03 19:56:25 +00009571 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
sampo025b75c2009-01-26 00:52:55 +00009572
sampo087d53c2009-01-26 03:15:31 +00009573 // The shift amount is identical so we can do a vector shift.
9574 SDValue ValOp = N->getOperand(0);
9575 switch (N->getOpcode()) {
9576 default:
Edwin Törökbd448e32009-07-14 16:55:14 +00009577 llvm_unreachable("Unknown shift opcode!");
sampo087d53c2009-01-26 03:15:31 +00009578 break;
9579 case ISD::SHL:
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009580 if (VT == MVT::v2i64)
Chris Lattner472f1d52009-03-11 05:48:52 +00009581 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009582 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
sampo025b75c2009-01-26 00:52:55 +00009583 ValOp, BaseShAmt);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009584 if (VT == MVT::v4i32)
Chris Lattner472f1d52009-03-11 05:48:52 +00009585 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009586 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
sampo025b75c2009-01-26 00:52:55 +00009587 ValOp, BaseShAmt);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009588 if (VT == MVT::v8i16)
Chris Lattner472f1d52009-03-11 05:48:52 +00009589 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009590 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
sampo025b75c2009-01-26 00:52:55 +00009591 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00009592 break;
9593 case ISD::SRA:
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009594 if (VT == MVT::v4i32)
Chris Lattner472f1d52009-03-11 05:48:52 +00009595 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009596 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
sampo025b75c2009-01-26 00:52:55 +00009597 ValOp, BaseShAmt);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009598 if (VT == MVT::v8i16)
Chris Lattner472f1d52009-03-11 05:48:52 +00009599 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009600 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
sampo025b75c2009-01-26 00:52:55 +00009601 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00009602 break;
9603 case ISD::SRL:
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009604 if (VT == MVT::v2i64)
Chris Lattner472f1d52009-03-11 05:48:52 +00009605 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009606 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
sampo025b75c2009-01-26 00:52:55 +00009607 ValOp, BaseShAmt);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009608 if (VT == MVT::v4i32)
Chris Lattner472f1d52009-03-11 05:48:52 +00009609 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009610 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
sampo025b75c2009-01-26 00:52:55 +00009611 ValOp, BaseShAmt);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009612 if (VT == MVT::v8i16)
Chris Lattner472f1d52009-03-11 05:48:52 +00009613 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009614 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
sampo025b75c2009-01-26 00:52:55 +00009615 ValOp, BaseShAmt);
sampo087d53c2009-01-26 03:15:31 +00009616 break;
sampo025b75c2009-01-26 00:52:55 +00009617 }
9618 return SDValue();
9619}
9620
Evan Cheng10957b82010-01-04 21:22:48 +00009621static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng6ea28f42010-04-28 01:18:01 +00009622 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng10957b82010-01-04 21:22:48 +00009623 const X86Subtarget *Subtarget) {
Evan Cheng82ba2d42010-04-28 02:25:18 +00009624 if (DCI.isBeforeLegalizeOps())
Evan Cheng6ea28f42010-04-28 01:18:01 +00009625 return SDValue();
9626
Evan Cheng10957b82010-01-04 21:22:48 +00009627 EVT VT = N->getValueType(0);
Evan Cheng6ea28f42010-04-28 01:18:01 +00009628 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
Evan Cheng10957b82010-01-04 21:22:48 +00009629 return SDValue();
9630
9631 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
9632 SDValue N0 = N->getOperand(0);
9633 SDValue N1 = N->getOperand(1);
9634 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
9635 std::swap(N0, N1);
9636 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
9637 return SDValue();
Evan Cheng6ea28f42010-04-28 01:18:01 +00009638 if (!N0.hasOneUse() || !N1.hasOneUse())
9639 return SDValue();
Evan Cheng10957b82010-01-04 21:22:48 +00009640
9641 SDValue ShAmt0 = N0.getOperand(1);
9642 if (ShAmt0.getValueType() != MVT::i8)
9643 return SDValue();
9644 SDValue ShAmt1 = N1.getOperand(1);
9645 if (ShAmt1.getValueType() != MVT::i8)
9646 return SDValue();
9647 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
9648 ShAmt0 = ShAmt0.getOperand(0);
9649 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
9650 ShAmt1 = ShAmt1.getOperand(0);
9651
9652 DebugLoc DL = N->getDebugLoc();
9653 unsigned Opc = X86ISD::SHLD;
9654 SDValue Op0 = N0.getOperand(0);
9655 SDValue Op1 = N1.getOperand(0);
9656 if (ShAmt0.getOpcode() == ISD::SUB) {
9657 Opc = X86ISD::SHRD;
9658 std::swap(Op0, Op1);
9659 std::swap(ShAmt0, ShAmt1);
9660 }
9661
Evan Cheng6ea28f42010-04-28 01:18:01 +00009662 unsigned Bits = VT.getSizeInBits();
Evan Cheng10957b82010-01-04 21:22:48 +00009663 if (ShAmt1.getOpcode() == ISD::SUB) {
9664 SDValue Sum = ShAmt1.getOperand(0);
9665 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman50fbd4f2010-06-24 14:30:44 +00009666 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
9667 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
9668 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
9669 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng10957b82010-01-04 21:22:48 +00009670 return DAG.getNode(Opc, DL, VT,
9671 Op0, Op1,
9672 DAG.getNode(ISD::TRUNCATE, DL,
9673 MVT::i8, ShAmt0));
9674 }
9675 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
9676 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
9677 if (ShAmt0C &&
Evan Cheng6ea28f42010-04-28 01:18:01 +00009678 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng10957b82010-01-04 21:22:48 +00009679 return DAG.getNode(Opc, DL, VT,
9680 N0.getOperand(0), N1.getOperand(0),
9681 DAG.getNode(ISD::TRUNCATE, DL,
9682 MVT::i8, ShAmt0));
9683 }
9684
9685 return SDValue();
9686}
9687
Chris Lattnerce84ae42008-02-22 02:09:43 +00009688/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00009689static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Chengc944c5d2009-03-12 05:59:15 +00009690 const X86Subtarget *Subtarget) {
Chris Lattnerce84ae42008-02-22 02:09:43 +00009691 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
9692 // the FP state in cases where an emms may be missing.
Dale Johannesend112b802008-02-25 19:20:14 +00009693 // A preferable solution to the general problem is to figure out the right
9694 // places to insert EMMS. This qualifies as a quick hack.
Evan Chengc944c5d2009-03-12 05:59:15 +00009695
9696 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng40ee6e52008-05-08 00:57:18 +00009697 StoreSDNode *St = cast<StoreSDNode>(N);
Owen Andersonac9de032009-08-10 22:56:29 +00009698 EVT VT = St->getValue().getValueType();
Evan Chengc944c5d2009-03-12 05:59:15 +00009699 if (VT.getSizeInBits() != 64)
9700 return SDValue();
9701
Devang Patelc386c842009-06-05 21:57:13 +00009702 const Function *F = DAG.getMachineFunction().getFunction();
9703 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009704 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patelc386c842009-06-05 21:57:13 +00009705 && Subtarget->hasSSE2();
Evan Chengc944c5d2009-03-12 05:59:15 +00009706 if ((VT.isVector() ||
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009707 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesend112b802008-02-25 19:20:14 +00009708 isa<LoadSDNode>(St->getValue()) &&
9709 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
9710 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greif1c80d112008-08-28 21:40:38 +00009711 SDNode* LdVal = St->getValue().getNode();
Dale Johannesend112b802008-02-25 19:20:14 +00009712 LoadSDNode *Ld = 0;
9713 int TokenFactorIndex = -1;
Dan Gohman8181bd12008-07-27 21:46:04 +00009714 SmallVector<SDValue, 8> Ops;
Gabor Greif1c80d112008-08-28 21:40:38 +00009715 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesend112b802008-02-25 19:20:14 +00009716 // Must be a store of a load. We currently handle two cases: the load
9717 // is a direct child, and it's under an intervening TokenFactor. It is
9718 // possible to dig deeper under nested TokenFactors.
Dale Johannesen49151bc2008-02-25 22:29:22 +00009719 if (ChainVal == LdVal)
Dale Johannesend112b802008-02-25 19:20:14 +00009720 Ld = cast<LoadSDNode>(St->getChain());
9721 else if (St->getValue().hasOneUse() &&
9722 ChainVal->getOpcode() == ISD::TokenFactor) {
9723 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greif1c80d112008-08-28 21:40:38 +00009724 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesend112b802008-02-25 19:20:14 +00009725 TokenFactorIndex = i;
9726 Ld = cast<LoadSDNode>(St->getValue());
9727 } else
9728 Ops.push_back(ChainVal->getOperand(i));
9729 }
9730 }
Dale Johannesend112b802008-02-25 19:20:14 +00009731
Evan Chengc944c5d2009-03-12 05:59:15 +00009732 if (!Ld || !ISD::isNormalLoad(Ld))
9733 return SDValue();
Dale Johannesend112b802008-02-25 19:20:14 +00009734
Evan Chengc944c5d2009-03-12 05:59:15 +00009735 // If this is not the MMX case, i.e. we are just turning i64 load/store
9736 // into f64 load/store, avoid the transformation if there are multiple
9737 // uses of the loaded value.
9738 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
9739 return SDValue();
Dale Johannesend112b802008-02-25 19:20:14 +00009740
Evan Chengc944c5d2009-03-12 05:59:15 +00009741 DebugLoc LdDL = Ld->getDebugLoc();
9742 DebugLoc StDL = N->getDebugLoc();
9743 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
9744 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
9745 // pair instead.
9746 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009747 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Evan Chengc944c5d2009-03-12 05:59:15 +00009748 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(),
9749 Ld->getBasePtr(), Ld->getSrcValue(),
9750 Ld->getSrcValueOffset(), Ld->isVolatile(),
David Greene25160362010-02-15 16:53:33 +00009751 Ld->isNonTemporal(), Ld->getAlignment());
Evan Chengc944c5d2009-03-12 05:59:15 +00009752 SDValue NewChain = NewLd.getValue(1);
Dale Johannesend112b802008-02-25 19:20:14 +00009753 if (TokenFactorIndex != -1) {
Evan Chengc944c5d2009-03-12 05:59:15 +00009754 Ops.push_back(NewChain);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009755 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesend112b802008-02-25 19:20:14 +00009756 Ops.size());
9757 }
Evan Chengc944c5d2009-03-12 05:59:15 +00009758 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattnerce84ae42008-02-22 02:09:43 +00009759 St->getSrcValue(), St->getSrcValueOffset(),
David Greene25160362010-02-15 16:53:33 +00009760 St->isVolatile(), St->isNonTemporal(),
9761 St->getAlignment());
Chris Lattnerce84ae42008-02-22 02:09:43 +00009762 }
Evan Chengc944c5d2009-03-12 05:59:15 +00009763
9764 // Otherwise, lower to two pairs of 32-bit loads / stores.
9765 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009766 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
9767 DAG.getConstant(4, MVT::i32));
Evan Chengc944c5d2009-03-12 05:59:15 +00009768
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009769 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Evan Chengc944c5d2009-03-12 05:59:15 +00009770 Ld->getSrcValue(), Ld->getSrcValueOffset(),
David Greene25160362010-02-15 16:53:33 +00009771 Ld->isVolatile(), Ld->isNonTemporal(),
9772 Ld->getAlignment());
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009773 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Evan Chengc944c5d2009-03-12 05:59:15 +00009774 Ld->getSrcValue(), Ld->getSrcValueOffset()+4,
David Greene25160362010-02-15 16:53:33 +00009775 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Chengc944c5d2009-03-12 05:59:15 +00009776 MinAlign(Ld->getAlignment(), 4));
9777
9778 SDValue NewChain = LoLd.getValue(1);
9779 if (TokenFactorIndex != -1) {
9780 Ops.push_back(LoLd);
9781 Ops.push_back(HiLd);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009782 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Chengc944c5d2009-03-12 05:59:15 +00009783 Ops.size());
9784 }
9785
9786 LoAddr = St->getBasePtr();
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009787 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
9788 DAG.getConstant(4, MVT::i32));
Evan Chengc944c5d2009-03-12 05:59:15 +00009789
9790 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
9791 St->getSrcValue(), St->getSrcValueOffset(),
David Greene25160362010-02-15 16:53:33 +00009792 St->isVolatile(), St->isNonTemporal(),
9793 St->getAlignment());
Evan Chengc944c5d2009-03-12 05:59:15 +00009794 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
9795 St->getSrcValue(),
9796 St->getSrcValueOffset() + 4,
9797 St->isVolatile(),
David Greene25160362010-02-15 16:53:33 +00009798 St->isNonTemporal(),
Evan Chengc944c5d2009-03-12 05:59:15 +00009799 MinAlign(St->getAlignment(), 4));
Owen Anderson36e3a6e2009-08-11 20:47:22 +00009800 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattnerce84ae42008-02-22 02:09:43 +00009801 }
Dan Gohman8181bd12008-07-27 21:46:04 +00009802 return SDValue();
Chris Lattnerce84ae42008-02-22 02:09:43 +00009803}
9804
Chris Lattner470d5dc2008-01-25 06:14:17 +00009805/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
9806/// X86ISD::FXOR nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00009807static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner470d5dc2008-01-25 06:14:17 +00009808 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
9809 // F[X]OR(0.0, x) -> x
9810 // F[X]OR(x, 0.0) -> x
Chris Lattnerf82998f2008-01-25 05:46:26 +00009811 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
9812 if (C->getValueAPF().isPosZero())
9813 return N->getOperand(1);
9814 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
9815 if (C->getValueAPF().isPosZero())
9816 return N->getOperand(0);
Dan Gohman8181bd12008-07-27 21:46:04 +00009817 return SDValue();
Chris Lattnerf82998f2008-01-25 05:46:26 +00009818}
9819
9820/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +00009821static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattnerf82998f2008-01-25 05:46:26 +00009822 // FAND(0.0, x) -> 0.0
9823 // FAND(x, 0.0) -> 0.0
9824 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
9825 if (C->getValueAPF().isPosZero())
9826 return N->getOperand(0);
9827 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
9828 if (C->getValueAPF().isPosZero())
9829 return N->getOperand(1);
Dan Gohman8181bd12008-07-27 21:46:04 +00009830 return SDValue();
Chris Lattnerf82998f2008-01-25 05:46:26 +00009831}
9832
Dan Gohman22cefb02009-01-29 01:59:02 +00009833static SDValue PerformBTCombine(SDNode *N,
9834 SelectionDAG &DAG,
9835 TargetLowering::DAGCombinerInfo &DCI) {
9836 // BT ignores high bits in the bit index operand.
9837 SDValue Op1 = N->getOperand(1);
9838 if (Op1.hasOneUse()) {
9839 unsigned BitWidth = Op1.getValueSizeInBits();
9840 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
9841 APInt KnownZero, KnownOne;
Evan Cheng3cbcbbb2010-04-17 06:13:15 +00009842 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
9843 !DCI.isBeforeLegalizeOps());
Dan Gohmandbb121b2010-04-17 15:26:15 +00009844 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohman22cefb02009-01-29 01:59:02 +00009845 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
9846 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
9847 DCI.CommitTargetLoweringOpt(TLO);
9848 }
9849 return SDValue();
9850}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009851
Eli Friedmane6bb1e52009-06-07 06:52:44 +00009852static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
9853 SDValue Op = N->getOperand(0);
9854 if (Op.getOpcode() == ISD::BIT_CONVERT)
9855 Op = Op.getOperand(0);
Owen Andersonac9de032009-08-10 22:56:29 +00009856 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedmane6bb1e52009-06-07 06:52:44 +00009857 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopher3d82bbd2009-08-27 18:07:15 +00009858 VT.getVectorElementType().getSizeInBits() ==
Eli Friedmane6bb1e52009-06-07 06:52:44 +00009859 OpVT.getVectorElementType().getSizeInBits()) {
9860 return DAG.getNode(ISD::BIT_CONVERT, N->getDebugLoc(), VT, Op);
9861 }
9862 return SDValue();
9863}
9864
Evan Chengedeb1692009-12-16 00:53:11 +00009865static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
9866 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
9867 // (and (i32 x86isd::setcc_carry), 1)
9868 // This eliminates the zext. This transformation is necessary because
9869 // ISD::SETCC is always legalized to i8.
9870 DebugLoc dl = N->getDebugLoc();
9871 SDValue N0 = N->getOperand(0);
9872 EVT VT = N->getValueType(0);
9873 if (N0.getOpcode() == ISD::AND &&
9874 N0.hasOneUse() &&
9875 N0.getOperand(0).hasOneUse()) {
9876 SDValue N00 = N0.getOperand(0);
9877 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
9878 return SDValue();
9879 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
9880 if (!C || C->getZExtValue() != 1)
9881 return SDValue();
9882 return DAG.getNode(ISD::AND, dl, VT,
9883 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
9884 N00.getOperand(0), N00.getOperand(1)),
9885 DAG.getConstant(1, VT));
9886 }
9887
9888 return SDValue();
9889}
9890
Dan Gohman8181bd12008-07-27 21:46:04 +00009891SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng62370f32008-11-05 06:03:38 +00009892 DAGCombinerInfo &DCI) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009893 SelectionDAG &DAG = DCI.DAG;
9894 switch (N->getOpcode()) {
9895 default: break;
Evan Chengef7be082008-05-12 19:56:52 +00009896 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this);
Dan Gohmanb115d052010-03-15 23:23:03 +00009897 case ISD::EXTRACT_VECTOR_ELT:
9898 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattnerf82998f2008-01-25 05:46:26 +00009899 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnere4577dc2009-03-12 06:52:53 +00009900 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Evan Cheng04ecee12009-03-28 05:57:29 +00009901 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
sampo025b75c2009-01-26 00:52:55 +00009902 case ISD::SHL:
9903 case ISD::SRA:
9904 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Evan Cheng6ea28f42010-04-28 01:18:01 +00009905 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng40ee6e52008-05-08 00:57:18 +00009906 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner470d5dc2008-01-25 06:14:17 +00009907 case X86ISD::FXOR:
Chris Lattnerf82998f2008-01-25 05:46:26 +00009908 case X86ISD::FOR: return PerformFORCombine(N, DAG);
9909 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohman22cefb02009-01-29 01:59:02 +00009910 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedmane6bb1e52009-06-07 06:52:44 +00009911 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Chengedeb1692009-12-16 00:53:11 +00009912 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009913 }
9914
Dan Gohman8181bd12008-07-27 21:46:04 +00009915 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009916}
9917
Evan Cheng3cbcbbb2010-04-17 06:13:15 +00009918/// isTypeDesirableForOp - Return true if the target has native support for
9919/// the specified value type and it is 'desirable' to use the type for the
9920/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
9921/// instruction encodings are longer and some i16 instructions are slow.
9922bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
9923 if (!isTypeLegal(VT))
9924 return false;
Evan Chengab625302010-04-28 08:30:49 +00009925 if (VT != MVT::i16)
Evan Cheng3cbcbbb2010-04-17 06:13:15 +00009926 return true;
9927
9928 switch (Opc) {
9929 default:
9930 return true;
Evan Cheng1f79d432010-04-19 19:29:22 +00009931 case ISD::LOAD:
9932 case ISD::SIGN_EXTEND:
9933 case ISD::ZERO_EXTEND:
9934 case ISD::ANY_EXTEND:
Evan Cheng3cbcbbb2010-04-17 06:13:15 +00009935 case ISD::SHL:
Evan Cheng3cbcbbb2010-04-17 06:13:15 +00009936 case ISD::SRL:
9937 case ISD::SUB:
9938 case ISD::ADD:
9939 case ISD::MUL:
9940 case ISD::AND:
9941 case ISD::OR:
9942 case ISD::XOR:
9943 return false;
9944 }
9945}
9946
Evan Chenga827dc92010-04-24 04:44:57 +00009947static bool MayFoldLoad(SDValue Op) {
9948 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
9949}
9950
9951static bool MayFoldIntoStore(SDValue Op) {
9952 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
9953}
9954
Evan Cheng3cbcbbb2010-04-17 06:13:15 +00009955/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Chengc4f94da2010-04-16 06:14:10 +00009956/// beneficial for dag combiner to promote the specified node. If true, it
9957/// should return the desired promotion type by reference.
Evan Cheng3cbcbbb2010-04-17 06:13:15 +00009958bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Chengc4f94da2010-04-16 06:14:10 +00009959 EVT VT = Op.getValueType();
9960 if (VT != MVT::i16)
9961 return false;
9962
Evan Cheng1f79d432010-04-19 19:29:22 +00009963 bool Promote = false;
9964 bool Commute = false;
Evan Chengc4f94da2010-04-16 06:14:10 +00009965 switch (Op.getOpcode()) {
Evan Cheng1f79d432010-04-19 19:29:22 +00009966 default: break;
9967 case ISD::LOAD: {
9968 LoadSDNode *LD = cast<LoadSDNode>(Op);
9969 // If the non-extending load has a single use and it's not live out, then it
9970 // might be folded.
Evan Chengab625302010-04-28 08:30:49 +00009971 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
9972 Op.hasOneUse()*/) {
9973 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9974 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
9975 // The only case where we'd want to promote LOAD (rather then it being
9976 // promoted as an operand is when it's only use is liveout.
9977 if (UI->getOpcode() != ISD::CopyToReg)
9978 return false;
9979 }
9980 }
Evan Cheng1f79d432010-04-19 19:29:22 +00009981 Promote = true;
9982 break;
9983 }
9984 case ISD::SIGN_EXTEND:
9985 case ISD::ZERO_EXTEND:
9986 case ISD::ANY_EXTEND:
9987 Promote = true;
9988 break;
Evan Cheng3cbcbbb2010-04-17 06:13:15 +00009989 case ISD::SHL:
Evan Chengab625302010-04-28 08:30:49 +00009990 case ISD::SRL: {
Evan Cheng3cbcbbb2010-04-17 06:13:15 +00009991 SDValue N0 = Op.getOperand(0);
9992 // Look out for (store (shl (load), x)).
Evan Chenga827dc92010-04-24 04:44:57 +00009993 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Cheng3cbcbbb2010-04-17 06:13:15 +00009994 return false;
Evan Cheng1f79d432010-04-19 19:29:22 +00009995 Promote = true;
Evan Cheng3cbcbbb2010-04-17 06:13:15 +00009996 break;
9997 }
Evan Chengc4f94da2010-04-16 06:14:10 +00009998 case ISD::ADD:
9999 case ISD::MUL:
10000 case ISD::AND:
10001 case ISD::OR:
Evan Cheng1f79d432010-04-19 19:29:22 +000010002 case ISD::XOR:
10003 Commute = true;
10004 // fallthrough
10005 case ISD::SUB: {
Evan Chengc4f94da2010-04-16 06:14:10 +000010006 SDValue N0 = Op.getOperand(0);
10007 SDValue N1 = Op.getOperand(1);
Evan Chenga827dc92010-04-24 04:44:57 +000010008 if (!Commute && MayFoldLoad(N1))
Evan Chengc4f94da2010-04-16 06:14:10 +000010009 return false;
10010 // Avoid disabling potential load folding opportunities.
Evan Chenga827dc92010-04-24 04:44:57 +000010011 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Chengc4f94da2010-04-16 06:14:10 +000010012 return false;
Evan Chenga827dc92010-04-24 04:44:57 +000010013 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Chengc4f94da2010-04-16 06:14:10 +000010014 return false;
Evan Cheng1f79d432010-04-19 19:29:22 +000010015 Promote = true;
Evan Chengc4f94da2010-04-16 06:14:10 +000010016 }
10017 }
10018
10019 PVT = MVT::i32;
Evan Cheng1f79d432010-04-19 19:29:22 +000010020 return Promote;
Evan Chengc4f94da2010-04-16 06:14:10 +000010021}
10022
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010023//===----------------------------------------------------------------------===//
10024// X86 Inline Assembly Support
10025//===----------------------------------------------------------------------===//
10026
Chris Lattner7fce21c2009-07-20 17:51:36 +000010027static bool LowerToBSwap(CallInst *CI) {
10028 // FIXME: this should verify that we are targetting a 486 or better. If not,
10029 // we will turn this bswap into something that will be lowered to logical ops
10030 // instead of emitting the bswap asm. For now, we don't support 486 or lower
10031 // so don't worry about this.
Eric Christopher3d82bbd2009-08-27 18:07:15 +000010032
Chris Lattner7fce21c2009-07-20 17:51:36 +000010033 // Verify this is a simple bswap.
Gabor Greifeeee7c72010-06-30 13:03:37 +000010034 if (CI->getNumArgOperands() != 1 ||
Gabor Greifd58d8052010-06-26 11:51:52 +000010035 CI->getType() != CI->getArgOperand(0)->getType() ||
Duncan Sandse92dee12010-02-15 16:12:20 +000010036 !CI->getType()->isIntegerTy())
Chris Lattner7fce21c2009-07-20 17:51:36 +000010037 return false;
Eric Christopher3d82bbd2009-08-27 18:07:15 +000010038
Chris Lattner7fce21c2009-07-20 17:51:36 +000010039 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
10040 if (!Ty || Ty->getBitWidth() % 16 != 0)
10041 return false;
Eric Christopher3d82bbd2009-08-27 18:07:15 +000010042
Chris Lattner7fce21c2009-07-20 17:51:36 +000010043 // Okay, we can do this xform, do so now.
10044 const Type *Tys[] = { Ty };
10045 Module *M = CI->getParent()->getParent()->getParent();
10046 Constant *Int = Intrinsic::getDeclaration(M, Intrinsic::bswap, Tys, 1);
Eric Christopher3d82bbd2009-08-27 18:07:15 +000010047
Gabor Greifd58d8052010-06-26 11:51:52 +000010048 Value *Op = CI->getArgOperand(0);
Chris Lattner7fce21c2009-07-20 17:51:36 +000010049 Op = CallInst::Create(Int, Op, CI->getName(), CI);
Eric Christopher3d82bbd2009-08-27 18:07:15 +000010050
Chris Lattner7fce21c2009-07-20 17:51:36 +000010051 CI->replaceAllUsesWith(Op);
10052 CI->eraseFromParent();
10053 return true;
10054}
10055
10056bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
10057 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
10058 std::vector<InlineAsm::ConstraintInfo> Constraints = IA->ParseConstraints();
10059
10060 std::string AsmStr = IA->getAsmString();
10061
10062 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramer3601d1b2010-01-11 18:03:24 +000010063 SmallVector<StringRef, 4> AsmPieces;
Chris Lattner7fce21c2009-07-20 17:51:36 +000010064 SplitString(AsmStr, AsmPieces, "\n"); // ; as separator?
10065
10066 switch (AsmPieces.size()) {
10067 default: return false;
10068 case 1:
10069 AsmStr = AsmPieces[0];
10070 AsmPieces.clear();
10071 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
10072
10073 // bswap $0
10074 if (AsmPieces.size() == 2 &&
10075 (AsmPieces[0] == "bswap" ||
10076 AsmPieces[0] == "bswapq" ||
10077 AsmPieces[0] == "bswapl") &&
10078 (AsmPieces[1] == "$0" ||
10079 AsmPieces[1] == "${0:q}")) {
10080 // No need to check constraints, nothing other than the equivalent of
10081 // "=r,0" would be valid here.
10082 return LowerToBSwap(CI);
10083 }
10084 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandse92dee12010-02-15 16:12:20 +000010085 if (CI->getType()->isIntegerTy(16) &&
Chris Lattner7fce21c2009-07-20 17:51:36 +000010086 AsmPieces.size() == 3 &&
Dan Gohman4bf40df2010-03-04 19:58:08 +000010087 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattner7fce21c2009-07-20 17:51:36 +000010088 AsmPieces[1] == "$$8," &&
10089 AsmPieces[2] == "${0:w}" &&
Dan Gohman4bf40df2010-03-04 19:58:08 +000010090 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
10091 AsmPieces.clear();
Benjamin Kramer73753f12010-03-12 13:54:59 +000010092 const std::string &Constraints = IA->getConstraintString();
10093 SplitString(StringRef(Constraints).substr(5), AsmPieces, ",");
Dan Gohman4bf40df2010-03-04 19:58:08 +000010094 std::sort(AsmPieces.begin(), AsmPieces.end());
10095 if (AsmPieces.size() == 4 &&
10096 AsmPieces[0] == "~{cc}" &&
10097 AsmPieces[1] == "~{dirflag}" &&
10098 AsmPieces[2] == "~{flags}" &&
10099 AsmPieces[3] == "~{fpsr}") {
10100 return LowerToBSwap(CI);
10101 }
Chris Lattner7fce21c2009-07-20 17:51:36 +000010102 }
10103 break;
10104 case 3:
Duncan Sandse92dee12010-02-15 16:12:20 +000010105 if (CI->getType()->isIntegerTy(64) &&
Owen Anderson35b47072009-08-13 21:58:54 +000010106 Constraints.size() >= 2 &&
Chris Lattner7fce21c2009-07-20 17:51:36 +000010107 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
10108 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
10109 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
Benjamin Kramer3601d1b2010-01-11 18:03:24 +000010110 SmallVector<StringRef, 4> Words;
Chris Lattner7fce21c2009-07-20 17:51:36 +000010111 SplitString(AsmPieces[0], Words, " \t");
10112 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
10113 Words.clear();
10114 SplitString(AsmPieces[1], Words, " \t");
10115 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
10116 Words.clear();
10117 SplitString(AsmPieces[2], Words, " \t,");
10118 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
10119 Words[2] == "%edx") {
10120 return LowerToBSwap(CI);
10121 }
10122 }
10123 }
10124 }
10125 break;
10126 }
10127 return false;
10128}
10129
10130
10131
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010132/// getConstraintType - Given a constraint letter, return the type of
10133/// constraint it is for this target.
10134X86TargetLowering::ConstraintType
10135X86TargetLowering::getConstraintType(const std::string &Constraint) const {
10136 if (Constraint.size() == 1) {
10137 switch (Constraint[0]) {
10138 case 'A':
Dale Johannesen73920c02008-11-13 21:52:36 +000010139 return C_Register;
Chris Lattner267805f2008-03-11 19:06:29 +000010140 case 'f':
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010141 case 'r':
10142 case 'R':
10143 case 'l':
10144 case 'q':
10145 case 'Q':
10146 case 'x':
Dale Johannesen9ab553f2008-04-01 00:57:48 +000010147 case 'y':
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010148 case 'Y':
10149 return C_RegisterClass;
Dale Johannesenf190a032009-02-12 20:58:09 +000010150 case 'e':
10151 case 'Z':
10152 return C_Other;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010153 default:
10154 break;
10155 }
10156 }
10157 return TargetLowering::getConstraintType(Constraint);
10158}
10159
Dale Johannesene99fc902008-01-29 02:21:21 +000010160/// LowerXConstraint - try to replace an X constraint, which matches anything,
10161/// with another that has more specific requirements based on the type of the
10162/// corresponding operand.
Chris Lattnereca405c2008-04-26 23:02:14 +000010163const char *X86TargetLowering::
Owen Andersonac9de032009-08-10 22:56:29 +000010164LowerXConstraint(EVT ConstraintVT) const {
Chris Lattnereca405c2008-04-26 23:02:14 +000010165 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
10166 // 'f' like normal targets.
Duncan Sands92c43912008-06-06 12:08:01 +000010167 if (ConstraintVT.isFloatingPoint()) {
Dale Johannesene99fc902008-01-29 02:21:21 +000010168 if (Subtarget->hasSSE2())
Chris Lattnereca405c2008-04-26 23:02:14 +000010169 return "Y";
10170 if (Subtarget->hasSSE1())
10171 return "x";
10172 }
Scott Michel91099d62009-02-17 22:15:04 +000010173
Chris Lattnereca405c2008-04-26 23:02:14 +000010174 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesene99fc902008-01-29 02:21:21 +000010175}
10176
Chris Lattnera531abc2007-08-25 00:47:38 +000010177/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
10178/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman8181bd12008-07-27 21:46:04 +000010179void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattnera531abc2007-08-25 00:47:38 +000010180 char Constraint,
Dan Gohman8181bd12008-07-27 21:46:04 +000010181 std::vector<SDValue>&Ops,
Chris Lattnereca405c2008-04-26 23:02:14 +000010182 SelectionDAG &DAG) const {
Dan Gohman8181bd12008-07-27 21:46:04 +000010183 SDValue Result(0, 0);
Scott Michel91099d62009-02-17 22:15:04 +000010184
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010185 switch (Constraint) {
10186 default: break;
10187 case 'I':
10188 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +000010189 if (C->getZExtValue() <= 31) {
10190 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattnera531abc2007-08-25 00:47:38 +000010191 break;
10192 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010193 }
Chris Lattnera531abc2007-08-25 00:47:38 +000010194 return;
Evan Cheng4fb2c0f2008-09-22 23:57:37 +000010195 case 'J':
10196 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattnerb84a1ac2009-06-15 04:39:05 +000010197 if (C->getZExtValue() <= 63) {
Chris Lattner6552d0c2009-06-15 04:01:39 +000010198 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
10199 break;
10200 }
10201 }
10202 return;
10203 case 'K':
10204 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattnerb84a1ac2009-06-15 04:39:05 +000010205 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng4fb2c0f2008-09-22 23:57:37 +000010206 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
10207 break;
10208 }
10209 }
10210 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010211 case 'N':
10212 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +000010213 if (C->getZExtValue() <= 255) {
10214 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattnera531abc2007-08-25 00:47:38 +000010215 break;
10216 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010217 }
Chris Lattnera531abc2007-08-25 00:47:38 +000010218 return;
Dale Johannesenf190a032009-02-12 20:58:09 +000010219 case 'e': {
10220 // 32-bit signed value
10221 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman1c3b8d62010-06-18 14:01:07 +000010222 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
10223 C->getSExtValue())) {
Dale Johannesenf190a032009-02-12 20:58:09 +000010224 // Widen to 64 bits here to get it sign extended.
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010225 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesenf190a032009-02-12 20:58:09 +000010226 break;
10227 }
10228 // FIXME gcc accepts some relocatable values here too, but only in certain
10229 // memory models; it's complicated.
10230 }
10231 return;
10232 }
10233 case 'Z': {
10234 // 32-bit unsigned value
10235 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman1c3b8d62010-06-18 14:01:07 +000010236 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
10237 C->getZExtValue())) {
Dale Johannesenf190a032009-02-12 20:58:09 +000010238 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
10239 break;
10240 }
10241 }
10242 // FIXME gcc accepts some relocatable values here too, but only in certain
10243 // memory models; it's complicated.
10244 return;
10245 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010246 case 'i': {
10247 // Literal immediates are always ok.
Chris Lattnera531abc2007-08-25 00:47:38 +000010248 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesenf190a032009-02-12 20:58:09 +000010249 // Widen to 64 bits here to get it sign extended.
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010250 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattnera531abc2007-08-25 00:47:38 +000010251 break;
10252 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010253
Dale Johannesend2199ac2010-06-24 20:14:51 +000010254 // In any sort of PIC mode addresses need to be computed at runtime by
10255 // adding in a register or some sort of table lookup. These can't
10256 // be used as immediates.
10257 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC() ||
10258 Subtarget->isPICStyleRIPRel())
10259 return;
10260
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010261 // If we are in non-pic codegen mode, we allow the address of a global (with
10262 // an optional displacement) to be used with 'i'.
Chris Lattnerd73ba7f2009-05-08 18:23:14 +000010263 GlobalAddressSDNode *GA = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010264 int64_t Offset = 0;
Scott Michel91099d62009-02-17 22:15:04 +000010265
Chris Lattnerd73ba7f2009-05-08 18:23:14 +000010266 // Match either (GA), (GA+C), (GA+C1+C2), etc.
10267 while (1) {
10268 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
10269 Offset += GA->getOffset();
10270 break;
10271 } else if (Op.getOpcode() == ISD::ADD) {
10272 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
10273 Offset += C->getZExtValue();
10274 Op = Op.getOperand(0);
10275 continue;
10276 }
10277 } else if (Op.getOpcode() == ISD::SUB) {
10278 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
10279 Offset += -C->getZExtValue();
10280 Op = Op.getOperand(0);
10281 continue;
10282 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010283 }
Dale Johannesen69976cf2009-07-07 00:18:49 +000010284
Chris Lattnerd73ba7f2009-05-08 18:23:14 +000010285 // Otherwise, this isn't something we can handle, reject it.
10286 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010287 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +000010288
Dan Gohman36c56d02010-04-15 01:51:59 +000010289 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen69976cf2009-07-07 00:18:49 +000010290 // If we require an extra load to get this address, as in PIC mode, we
10291 // can't accept it.
Chris Lattner054532c2009-07-10 07:34:39 +000010292 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
10293 getTargetMachine())))
Dale Johannesen69976cf2009-07-07 00:18:49 +000010294 return;
Scott Michel91099d62009-02-17 22:15:04 +000010295
Dale Johannesena7ba9cd2010-06-25 21:55:36 +000010296 Result = DAG.getTargetGlobalAddress(GV, GA->getValueType(0), Offset);
Chris Lattnerd73ba7f2009-05-08 18:23:14 +000010297 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010298 }
10299 }
Scott Michel91099d62009-02-17 22:15:04 +000010300
Gabor Greif1c80d112008-08-28 21:40:38 +000010301 if (Result.getNode()) {
Chris Lattnera531abc2007-08-25 00:47:38 +000010302 Ops.push_back(Result);
10303 return;
10304 }
Dale Johannesena7ba9cd2010-06-25 21:55:36 +000010305 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010306}
10307
10308std::vector<unsigned> X86TargetLowering::
10309getRegClassForInlineAsmConstraint(const std::string &Constraint,
Owen Andersonac9de032009-08-10 22:56:29 +000010310 EVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010311 if (Constraint.size() == 1) {
10312 // FIXME: not handling fp-stack yet!
10313 switch (Constraint[0]) { // GCC X86 Constraint Letters
10314 default: break; // Unknown constraint letter
Evan Chengf8993d42009-07-17 22:13:25 +000010315 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
10316 if (Subtarget->is64Bit()) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010317 if (VT == MVT::i32)
Evan Chengf8993d42009-07-17 22:13:25 +000010318 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX,
10319 X86::ESI, X86::EDI, X86::R8D, X86::R9D,
10320 X86::R10D,X86::R11D,X86::R12D,
10321 X86::R13D,X86::R14D,X86::R15D,
10322 X86::EBP, X86::ESP, 0);
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010323 else if (VT == MVT::i16)
Evan Chengf8993d42009-07-17 22:13:25 +000010324 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX,
10325 X86::SI, X86::DI, X86::R8W,X86::R9W,
10326 X86::R10W,X86::R11W,X86::R12W,
10327 X86::R13W,X86::R14W,X86::R15W,
10328 X86::BP, X86::SP, 0);
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010329 else if (VT == MVT::i8)
Evan Chengf8993d42009-07-17 22:13:25 +000010330 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL,
10331 X86::SIL, X86::DIL, X86::R8B,X86::R9B,
10332 X86::R10B,X86::R11B,X86::R12B,
10333 X86::R13B,X86::R14B,X86::R15B,
10334 X86::BPL, X86::SPL, 0);
10335
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010336 else if (VT == MVT::i64)
Evan Chengf8993d42009-07-17 22:13:25 +000010337 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX,
10338 X86::RSI, X86::RDI, X86::R8, X86::R9,
10339 X86::R10, X86::R11, X86::R12,
10340 X86::R13, X86::R14, X86::R15,
10341 X86::RBP, X86::RSP, 0);
10342
10343 break;
10344 }
Eric Christopher3d82bbd2009-08-27 18:07:15 +000010345 // 32-bit fallthrough
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010346 case 'Q': // Q_REGS
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010347 if (VT == MVT::i32)
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010348 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010349 else if (VT == MVT::i16)
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010350 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010351 else if (VT == MVT::i8)
Evan Chengf85c10f2007-08-13 23:27:11 +000010352 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010353 else if (VT == MVT::i64)
Chris Lattner35032592007-11-04 06:51:12 +000010354 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
10355 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010356 }
10357 }
10358
10359 return std::vector<unsigned>();
10360}
10361
10362std::pair<unsigned, const TargetRegisterClass*>
10363X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersonac9de032009-08-10 22:56:29 +000010364 EVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010365 // First, see if this is a constraint that directly corresponds to an LLVM
10366 // register class.
10367 if (Constraint.size() == 1) {
10368 // GCC Constraint Letters
10369 switch (Constraint[0]) {
10370 default: break;
10371 case 'r': // GENERAL_REGS
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010372 case 'l': // INDEX_REGS
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010373 if (VT == MVT::i8)
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010374 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010375 if (VT == MVT::i16)
Chris Lattnerbbfea052008-10-17 18:15:05 +000010376 return std::make_pair(0U, X86::GR16RegisterClass);
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010377 if (VT == MVT::i32 || !Subtarget->is64Bit())
Scott Michel91099d62009-02-17 22:15:04 +000010378 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattnerbbfea052008-10-17 18:15:05 +000010379 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen1bf03f72009-10-07 22:47:20 +000010380 case 'R': // LEGACY_REGS
10381 if (VT == MVT::i8)
10382 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
10383 if (VT == MVT::i16)
10384 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
10385 if (VT == MVT::i32 || !Subtarget->is64Bit())
10386 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
10387 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattner267805f2008-03-11 19:06:29 +000010388 case 'f': // FP Stack registers.
10389 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
10390 // value to the correct fpstack register class.
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010391 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattner267805f2008-03-11 19:06:29 +000010392 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010393 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattner267805f2008-03-11 19:06:29 +000010394 return std::make_pair(0U, X86::RFP64RegisterClass);
10395 return std::make_pair(0U, X86::RFP80RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010396 case 'y': // MMX_REGS if MMX allowed.
10397 if (!Subtarget->hasMMX()) break;
10398 return std::make_pair(0U, X86::VR64RegisterClass);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010399 case 'Y': // SSE_REGS if SSE2 allowed
10400 if (!Subtarget->hasSSE2()) break;
10401 // FALL THROUGH.
10402 case 'x': // SSE_REGS if SSE1 allowed
10403 if (!Subtarget->hasSSE1()) break;
Duncan Sands92c43912008-06-06 12:08:01 +000010404
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010405 switch (VT.getSimpleVT().SimpleTy) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010406 default: break;
10407 // Scalar SSE types.
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010408 case MVT::f32:
10409 case MVT::i32:
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010410 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010411 case MVT::f64:
10412 case MVT::i64:
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010413 return std::make_pair(0U, X86::FR64RegisterClass);
10414 // Vector types.
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010415 case MVT::v16i8:
10416 case MVT::v8i16:
10417 case MVT::v4i32:
10418 case MVT::v2i64:
10419 case MVT::v4f32:
10420 case MVT::v2f64:
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010421 return std::make_pair(0U, X86::VR128RegisterClass);
10422 }
10423 break;
10424 }
10425 }
Scott Michel91099d62009-02-17 22:15:04 +000010426
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010427 // Use the default implementation in TargetLowering to convert the register
10428 // constraint into a member of a register class.
10429 std::pair<unsigned, const TargetRegisterClass*> Res;
10430 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
10431
10432 // Not found as a standard register?
10433 if (Res.second == 0) {
Chris Lattner1063d242009-09-13 22:41:48 +000010434 // Map st(0) -> st(7) -> ST0
10435 if (Constraint.size() == 7 && Constraint[0] == '{' &&
10436 tolower(Constraint[1]) == 's' &&
10437 tolower(Constraint[2]) == 't' &&
10438 Constraint[3] == '(' &&
10439 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
10440 Constraint[5] == ')' &&
10441 Constraint[6] == '}') {
Daniel Dunbar3be44e62009-09-20 02:20:51 +000010442
Chris Lattner1063d242009-09-13 22:41:48 +000010443 Res.first = X86::ST0+Constraint[4]-'0';
10444 Res.second = X86::RFP80RegisterClass;
10445 return Res;
10446 }
Daniel Dunbar3be44e62009-09-20 02:20:51 +000010447
Chris Lattner1063d242009-09-13 22:41:48 +000010448 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramerea862b02009-11-12 20:36:59 +000010449 if (StringRef("{st}").equals_lower(Constraint)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010450 Res.first = X86::ST0;
Chris Lattner3cfe51b2007-09-24 05:27:37 +000010451 Res.second = X86::RFP80RegisterClass;
Chris Lattner1063d242009-09-13 22:41:48 +000010452 return Res;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010453 }
Chris Lattner1063d242009-09-13 22:41:48 +000010454
10455 // flags -> EFLAGS
Benjamin Kramerea862b02009-11-12 20:36:59 +000010456 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner1063d242009-09-13 22:41:48 +000010457 Res.first = X86::EFLAGS;
10458 Res.second = X86::CCRRegisterClass;
10459 return Res;
10460 }
Daniel Dunbar3be44e62009-09-20 02:20:51 +000010461
Dale Johannesen73920c02008-11-13 21:52:36 +000010462 // 'A' means EAX + EDX.
10463 if (Constraint == "A") {
10464 Res.first = X86::EAX;
Dan Gohmanb4439d02009-07-30 17:02:08 +000010465 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner1063d242009-09-13 22:41:48 +000010466 return Res;
Dale Johannesen73920c02008-11-13 21:52:36 +000010467 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010468 return Res;
10469 }
10470
10471 // Otherwise, check to see if this is a register class of the wrong value
10472 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
10473 // turn into {ax},{dx}.
10474 if (Res.second->hasType(VT))
10475 return Res; // Correct type already, nothing to do.
10476
10477 // All of the single-register GCC register classes map their values onto
10478 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
10479 // really want an 8-bit or 32-bit register, map to the appropriate register
10480 // class and return the appropriate register.
Chris Lattnere9d7f792008-08-26 06:19:02 +000010481 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010482 if (VT == MVT::i8) {
Chris Lattnere9d7f792008-08-26 06:19:02 +000010483 unsigned DestReg = 0;
10484 switch (Res.first) {
10485 default: break;
10486 case X86::AX: DestReg = X86::AL; break;
10487 case X86::DX: DestReg = X86::DL; break;
10488 case X86::CX: DestReg = X86::CL; break;
10489 case X86::BX: DestReg = X86::BL; break;
10490 }
10491 if (DestReg) {
10492 Res.first = DestReg;
Duncan Sands553fb412009-04-21 09:44:39 +000010493 Res.second = X86::GR8RegisterClass;
Chris Lattnere9d7f792008-08-26 06:19:02 +000010494 }
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010495 } else if (VT == MVT::i32) {
Chris Lattnere9d7f792008-08-26 06:19:02 +000010496 unsigned DestReg = 0;
10497 switch (Res.first) {
10498 default: break;
10499 case X86::AX: DestReg = X86::EAX; break;
10500 case X86::DX: DestReg = X86::EDX; break;
10501 case X86::CX: DestReg = X86::ECX; break;
10502 case X86::BX: DestReg = X86::EBX; break;
10503 case X86::SI: DestReg = X86::ESI; break;
10504 case X86::DI: DestReg = X86::EDI; break;
10505 case X86::BP: DestReg = X86::EBP; break;
10506 case X86::SP: DestReg = X86::ESP; break;
10507 }
10508 if (DestReg) {
10509 Res.first = DestReg;
Duncan Sands553fb412009-04-21 09:44:39 +000010510 Res.second = X86::GR32RegisterClass;
Chris Lattnere9d7f792008-08-26 06:19:02 +000010511 }
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010512 } else if (VT == MVT::i64) {
Chris Lattnere9d7f792008-08-26 06:19:02 +000010513 unsigned DestReg = 0;
10514 switch (Res.first) {
10515 default: break;
10516 case X86::AX: DestReg = X86::RAX; break;
10517 case X86::DX: DestReg = X86::RDX; break;
10518 case X86::CX: DestReg = X86::RCX; break;
10519 case X86::BX: DestReg = X86::RBX; break;
10520 case X86::SI: DestReg = X86::RSI; break;
10521 case X86::DI: DestReg = X86::RDI; break;
10522 case X86::BP: DestReg = X86::RBP; break;
10523 case X86::SP: DestReg = X86::RSP; break;
10524 }
10525 if (DestReg) {
10526 Res.first = DestReg;
Duncan Sands553fb412009-04-21 09:44:39 +000010527 Res.second = X86::GR64RegisterClass;
Chris Lattnere9d7f792008-08-26 06:19:02 +000010528 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010529 }
Chris Lattnere9d7f792008-08-26 06:19:02 +000010530 } else if (Res.second == X86::FR32RegisterClass ||
10531 Res.second == X86::FR64RegisterClass ||
10532 Res.second == X86::VR128RegisterClass) {
10533 // Handle references to XMM physical registers that got mapped into the
10534 // wrong class. This can happen with constraints like {xmm0} where the
10535 // target independent register mapper will just pick the first match it can
10536 // find, ignoring the required type.
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010537 if (VT == MVT::f32)
Chris Lattnere9d7f792008-08-26 06:19:02 +000010538 Res.second = X86::FR32RegisterClass;
Owen Anderson36e3a6e2009-08-11 20:47:22 +000010539 else if (VT == MVT::f64)
Chris Lattnere9d7f792008-08-26 06:19:02 +000010540 Res.second = X86::FR64RegisterClass;
10541 else if (X86::VR128RegisterClass->hasType(VT))
10542 Res.second = X86::VR128RegisterClass;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010543 }
10544
10545 return Res;
10546}