Arnold Schwaighofer | 92226dd | 2007-10-12 21:53:12 +0000 | [diff] [blame] | 1 | //===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===// |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines the interfaces that X86 uses to lower LLVM code into a |
| 11 | // selection DAG. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Evan Cheng | b171245 | 2010-01-27 06:25:16 +0000 | [diff] [blame] | 15 | #define DEBUG_TYPE "x86-isel" |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 16 | #include "X86.h" |
Evan Cheng | 0cc3945 | 2006-01-16 21:21:29 +0000 | [diff] [blame] | 17 | #include "X86InstrBuilder.h" |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 18 | #include "X86ISelLowering.h" |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 19 | #include "X86ShuffleDecode.h" |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 20 | #include "X86TargetMachine.h" |
Chris Lattner | 8c6ed05 | 2009-09-16 01:46:41 +0000 | [diff] [blame] | 21 | #include "X86TargetObjectFile.h" |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 22 | #include "llvm/CallingConv.h" |
Evan Cheng | 223547a | 2006-01-31 22:28:30 +0000 | [diff] [blame] | 23 | #include "llvm/Constants.h" |
Evan Cheng | 347d5f7 | 2006-04-28 21:29:37 +0000 | [diff] [blame] | 24 | #include "llvm/DerivedTypes.h" |
Chris Lattner | b903bed | 2009-06-26 21:20:29 +0000 | [diff] [blame] | 25 | #include "llvm/GlobalAlias.h" |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 26 | #include "llvm/GlobalVariable.h" |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 27 | #include "llvm/Function.h" |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 28 | #include "llvm/Instructions.h" |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 29 | #include "llvm/Intrinsics.h" |
Owen Anderson | a90b3dc | 2009-07-15 21:51:10 +0000 | [diff] [blame] | 30 | #include "llvm/LLVMContext.h" |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Evan Cheng | 4a46080 | 2006-01-11 00:33:36 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/MachineFunction.h" |
| 33 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Chris Lattner | 5e1df8d | 2010-01-25 23:38:14 +0000 | [diff] [blame] | 34 | #include "llvm/CodeGen/MachineJumpTableInfo.h" |
Evan Cheng | a844bde | 2008-02-02 04:07:54 +0000 | [diff] [blame] | 35 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 36 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 37 | #include "llvm/CodeGen/PseudoSourceValue.h" |
Chris Lattner | 589c6f6 | 2010-01-26 06:28:43 +0000 | [diff] [blame] | 38 | #include "llvm/MC/MCAsmInfo.h" |
Chris Lattner | c64daab | 2010-01-26 05:02:42 +0000 | [diff] [blame] | 39 | #include "llvm/MC/MCContext.h" |
Daniel Dunbar | 4e815f8 | 2010-03-15 23:51:06 +0000 | [diff] [blame] | 40 | #include "llvm/MC/MCExpr.h" |
Chris Lattner | c64daab | 2010-01-26 05:02:42 +0000 | [diff] [blame] | 41 | #include "llvm/MC/MCSymbol.h" |
Chris Lattner | c64daab | 2010-01-26 05:02:42 +0000 | [diff] [blame] | 42 | #include "llvm/ADT/BitVector.h" |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 43 | #include "llvm/ADT/SmallSet.h" |
Evan Cheng | b171245 | 2010-01-27 06:25:16 +0000 | [diff] [blame] | 44 | #include "llvm/ADT/Statistic.h" |
Chris Lattner | 1a60aa7 | 2006-10-31 19:42:44 +0000 | [diff] [blame] | 45 | #include "llvm/ADT/StringExtras.h" |
Chris Lattner | c64daab | 2010-01-26 05:02:42 +0000 | [diff] [blame] | 46 | #include "llvm/ADT/VectorExtras.h" |
Mon P Wang | 3c81d35 | 2008-11-23 04:37:22 +0000 | [diff] [blame] | 47 | #include "llvm/Support/CommandLine.h" |
Chris Lattner | c64daab | 2010-01-26 05:02:42 +0000 | [diff] [blame] | 48 | #include "llvm/Support/Debug.h" |
Bill Wendling | ec041eb | 2010-03-12 19:20:40 +0000 | [diff] [blame] | 49 | #include "llvm/Support/Dwarf.h" |
Chris Lattner | c64daab | 2010-01-26 05:02:42 +0000 | [diff] [blame] | 50 | #include "llvm/Support/ErrorHandling.h" |
| 51 | #include "llvm/Support/MathExtras.h" |
Torok Edwin | dac237e | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 52 | #include "llvm/Support/raw_ostream.h" |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 53 | using namespace llvm; |
Bill Wendling | ec041eb | 2010-03-12 19:20:40 +0000 | [diff] [blame] | 54 | using namespace dwarf; |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 55 | |
Evan Cheng | b171245 | 2010-01-27 06:25:16 +0000 | [diff] [blame] | 56 | STATISTIC(NumTailCalls, "Number of tail calls"); |
| 57 | |
Mon P Wang | 3c81d35 | 2008-11-23 04:37:22 +0000 | [diff] [blame] | 58 | static cl::opt<bool> |
Mon P Wang | 9f22a4a | 2008-11-24 02:10:43 +0000 | [diff] [blame] | 59 | DisableMMX("disable-mmx", cl::Hidden, cl::desc("Disable use of MMX")); |
Mon P Wang | 3c81d35 | 2008-11-23 04:37:22 +0000 | [diff] [blame] | 60 | |
Evan Cheng | 10e8642 | 2008-04-25 19:11:04 +0000 | [diff] [blame] | 61 | // Forward declarations. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 62 | static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1, |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 63 | SDValue V2); |
Evan Cheng | 10e8642 | 2008-04-25 19:11:04 +0000 | [diff] [blame] | 64 | |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 65 | static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) { |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 66 | |
Eric Christopher | 62f35a2 | 2010-07-05 19:26:33 +0000 | [diff] [blame] | 67 | bool is64Bit = TM.getSubtarget<X86Subtarget>().is64Bit(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 68 | |
Eric Christopher | 62f35a2 | 2010-07-05 19:26:33 +0000 | [diff] [blame] | 69 | if (TM.getSubtarget<X86Subtarget>().isTargetDarwin()) { |
| 70 | if (is64Bit) return new X8664_MachoTargetObjectFile(); |
Anton Korobeynikov | 293d592 | 2010-02-21 20:28:15 +0000 | [diff] [blame] | 71 | return new TargetLoweringObjectFileMachO(); |
Eric Christopher | 62f35a2 | 2010-07-05 19:26:33 +0000 | [diff] [blame] | 72 | } else if (TM.getSubtarget<X86Subtarget>().isTargetELF() ){ |
| 73 | if (is64Bit) return new X8664_ELFTargetObjectFile(TM); |
Anton Korobeynikov | 9184b25 | 2010-02-15 22:35:59 +0000 | [diff] [blame] | 74 | return new X8632_ELFTargetObjectFile(TM); |
Eric Christopher | 62f35a2 | 2010-07-05 19:26:33 +0000 | [diff] [blame] | 75 | } else if (TM.getSubtarget<X86Subtarget>().isTargetCOFF()) { |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 76 | return new TargetLoweringObjectFileCOFF(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 77 | } |
Eric Christopher | 62f35a2 | 2010-07-05 19:26:33 +0000 | [diff] [blame] | 78 | llvm_unreachable("unknown subtarget type"); |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 79 | } |
| 80 | |
Dan Gohman | c9f5f3f | 2008-05-14 01:58:56 +0000 | [diff] [blame] | 81 | X86TargetLowering::X86TargetLowering(X86TargetMachine &TM) |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 82 | : TargetLowering(TM, createTLOF(TM)) { |
Evan Cheng | 559806f | 2006-01-27 08:10:46 +0000 | [diff] [blame] | 83 | Subtarget = &TM.getSubtarget<X86Subtarget>(); |
Dale Johannesen | f1fc3a8 | 2007-09-23 14:52:20 +0000 | [diff] [blame] | 84 | X86ScalarSSEf64 = Subtarget->hasSSE2(); |
| 85 | X86ScalarSSEf32 = Subtarget->hasSSE1(); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 86 | X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP; |
Anton Korobeynikov | bff66b0 | 2008-09-09 18:22:57 +0000 | [diff] [blame] | 87 | |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 88 | RegInfo = TM.getRegisterInfo(); |
Anton Korobeynikov | bff66b0 | 2008-09-09 18:22:57 +0000 | [diff] [blame] | 89 | TD = getTargetData(); |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 90 | |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 91 | // Set up the TargetLowering object. |
| 92 | |
| 93 | // X86 is weird, it always uses i8 for shift amounts and setcc results. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 94 | setShiftAmountType(MVT::i8); |
Duncan Sands | 0322808 | 2008-11-23 15:47:28 +0000 | [diff] [blame] | 95 | setBooleanContents(ZeroOrOneBooleanContent); |
Evan Cheng | 211ffa1 | 2010-05-19 20:19:50 +0000 | [diff] [blame] | 96 | setSchedulingPreference(Sched::RegPressure); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 97 | setStackPointerRegisterToSaveRestore(X86StackPtr); |
Evan Cheng | 714554d | 2006-03-16 21:47:42 +0000 | [diff] [blame] | 98 | |
Michael J. Spencer | 92bf38c | 2010-10-10 23:11:06 +0000 | [diff] [blame] | 99 | if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) { |
Michael J. Spencer | 1802a9f | 2010-10-10 22:04:34 +0000 | [diff] [blame] | 100 | // Setup Windows compiler runtime calls. |
| 101 | setLibcallName(RTLIB::SDIV_I64, "_alldiv"); |
Michael J. Spencer | 335b806 | 2010-10-11 05:29:15 +0000 | [diff] [blame] | 102 | setLibcallName(RTLIB::UDIV_I64, "_aulldiv"); |
| 103 | setLibcallName(RTLIB::FPTOUINT_F64_I64, "_ftol2"); |
Michael J. Spencer | 94f7eeb | 2010-10-19 07:32:52 +0000 | [diff] [blame] | 104 | setLibcallName(RTLIB::FPTOUINT_F32_I64, "_ftol2"); |
Michael J. Spencer | 1802a9f | 2010-10-10 22:04:34 +0000 | [diff] [blame] | 105 | setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall); |
Michael J. Spencer | 335b806 | 2010-10-11 05:29:15 +0000 | [diff] [blame] | 106 | setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall); |
Michael J. Spencer | 6dad10e | 2010-10-27 18:52:38 +0000 | [diff] [blame] | 107 | setLibcallCallingConv(RTLIB::FPTOUINT_F64_I64, CallingConv::C); |
| 108 | setLibcallCallingConv(RTLIB::FPTOUINT_F32_I64, CallingConv::C); |
Michael J. Spencer | 1802a9f | 2010-10-10 22:04:34 +0000 | [diff] [blame] | 109 | } |
| 110 | |
Anton Korobeynikov | d27a258 | 2006-12-10 23:12:42 +0000 | [diff] [blame] | 111 | if (Subtarget->isTargetDarwin()) { |
Evan Cheng | df57fa0 | 2006-03-17 20:31:41 +0000 | [diff] [blame] | 112 | // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp. |
Anton Korobeynikov | d27a258 | 2006-12-10 23:12:42 +0000 | [diff] [blame] | 113 | setUseUnderscoreSetJmp(false); |
| 114 | setUseUnderscoreLongJmp(false); |
Anton Korobeynikov | 317848f | 2007-01-03 11:43:14 +0000 | [diff] [blame] | 115 | } else if (Subtarget->isTargetMingw()) { |
Anton Korobeynikov | d27a258 | 2006-12-10 23:12:42 +0000 | [diff] [blame] | 116 | // MS runtime is weird: it exports _setjmp, but longjmp! |
| 117 | setUseUnderscoreSetJmp(true); |
| 118 | setUseUnderscoreLongJmp(false); |
| 119 | } else { |
| 120 | setUseUnderscoreSetJmp(true); |
| 121 | setUseUnderscoreLongJmp(true); |
| 122 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 123 | |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 124 | // Set up the register classes. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 125 | addRegisterClass(MVT::i8, X86::GR8RegisterClass); |
Dan Gohman | 71edb24 | 2010-04-30 18:30:26 +0000 | [diff] [blame] | 126 | addRegisterClass(MVT::i16, X86::GR16RegisterClass); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 127 | addRegisterClass(MVT::i32, X86::GR32RegisterClass); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 128 | if (Subtarget->is64Bit()) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 129 | addRegisterClass(MVT::i64, X86::GR64RegisterClass); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 130 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 131 | setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote); |
Evan Cheng | c548428 | 2006-10-04 00:56:09 +0000 | [diff] [blame] | 132 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 133 | // We don't accept any truncstore of integer registers. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 134 | setTruncStoreAction(MVT::i64, MVT::i32, Expand); |
Dan Gohman | 71edb24 | 2010-04-30 18:30:26 +0000 | [diff] [blame] | 135 | setTruncStoreAction(MVT::i64, MVT::i16, Expand); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 136 | setTruncStoreAction(MVT::i64, MVT::i8 , Expand); |
Dan Gohman | 71edb24 | 2010-04-30 18:30:26 +0000 | [diff] [blame] | 137 | setTruncStoreAction(MVT::i32, MVT::i16, Expand); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 138 | setTruncStoreAction(MVT::i32, MVT::i8 , Expand); |
| 139 | setTruncStoreAction(MVT::i16, MVT::i8, Expand); |
Evan Cheng | 7f04268 | 2008-10-15 02:05:31 +0000 | [diff] [blame] | 140 | |
| 141 | // SETOEQ and SETUNE require checking two conditions. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 142 | setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand); |
| 143 | setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand); |
| 144 | setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand); |
| 145 | setCondCodeAction(ISD::SETUNE, MVT::f32, Expand); |
| 146 | setCondCodeAction(ISD::SETUNE, MVT::f64, Expand); |
| 147 | setCondCodeAction(ISD::SETUNE, MVT::f80, Expand); |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 148 | |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 149 | // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this |
| 150 | // operation. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 151 | setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote); |
| 152 | setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote); |
| 153 | setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote); |
Evan Cheng | 6892f28 | 2006-01-17 02:32:49 +0000 | [diff] [blame] | 154 | |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 155 | if (Subtarget->is64Bit()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 156 | setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote); |
| 157 | setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand); |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 158 | } else if (!UseSoftFloat) { |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 159 | // We have an algorithm for SSE2->double, and we turn this into a |
| 160 | // 64-bit FILD followed by conditional FADD for other targets. |
| 161 | setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom); |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 162 | // We have an algorithm for SSE2, and we turn this into a 64-bit |
| 163 | // FILD for other targets. |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 164 | setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 165 | } |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 166 | |
| 167 | // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have |
| 168 | // this operation. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 169 | setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote); |
| 170 | setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote); |
Bill Wendling | 105be5a | 2009-03-13 08:41:47 +0000 | [diff] [blame] | 171 | |
Devang Patel | 6a78489 | 2009-06-05 18:48:29 +0000 | [diff] [blame] | 172 | if (!UseSoftFloat) { |
Bill Wendling | 105be5a | 2009-03-13 08:41:47 +0000 | [diff] [blame] | 173 | // SSE has no i16 to fp conversion, only i32 |
| 174 | if (X86ScalarSSEf32) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 175 | setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote); |
Bill Wendling | 105be5a | 2009-03-13 08:41:47 +0000 | [diff] [blame] | 176 | // f32 and f64 cases are Legal, f80 case is not |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 177 | setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom); |
Bill Wendling | 105be5a | 2009-03-13 08:41:47 +0000 | [diff] [blame] | 178 | } else { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 179 | setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom); |
| 180 | setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom); |
Bill Wendling | 105be5a | 2009-03-13 08:41:47 +0000 | [diff] [blame] | 181 | } |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 182 | } else { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 183 | setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote); |
| 184 | setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Promote); |
Evan Cheng | 5298bcc | 2006-02-17 07:01:52 +0000 | [diff] [blame] | 185 | } |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 186 | |
Dale Johannesen | 73328d1 | 2007-09-19 23:55:34 +0000 | [diff] [blame] | 187 | // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64 |
| 188 | // are Legal, f80 is custom lowered. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 189 | setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom); |
| 190 | setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom); |
Evan Cheng | 6dab053 | 2006-01-30 08:02:57 +0000 | [diff] [blame] | 191 | |
Evan Cheng | 02568ff | 2006-01-30 22:13:22 +0000 | [diff] [blame] | 192 | // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have |
| 193 | // this operation. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 194 | setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote); |
| 195 | setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote); |
Evan Cheng | 02568ff | 2006-01-30 22:13:22 +0000 | [diff] [blame] | 196 | |
Dale Johannesen | f1fc3a8 | 2007-09-23 14:52:20 +0000 | [diff] [blame] | 197 | if (X86ScalarSSEf32) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 198 | setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote); |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 199 | // f32 and f64 cases are Legal, f80 case is not |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 200 | setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom); |
Evan Cheng | 02568ff | 2006-01-30 22:13:22 +0000 | [diff] [blame] | 201 | } else { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 202 | setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom); |
| 203 | setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 204 | } |
| 205 | |
| 206 | // Handle FP_TO_UINT by promoting the destination to a larger signed |
| 207 | // conversion. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 208 | setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote); |
| 209 | setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote); |
| 210 | setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 211 | |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 212 | if (Subtarget->is64Bit()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 213 | setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand); |
| 214 | setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote); |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 215 | } else if (!UseSoftFloat) { |
Dale Johannesen | f1fc3a8 | 2007-09-23 14:52:20 +0000 | [diff] [blame] | 216 | if (X86ScalarSSEf32 && !Subtarget->hasSSE3()) |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 217 | // Expand FP_TO_UINT into a select. |
| 218 | // FIXME: We would like to use a Custom expander here eventually to do |
| 219 | // the optimal thing for SSE vs. the default expansion in the legalizer. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 220 | setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 221 | else |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 222 | // With SSE3 we can use fisttpll to convert to a signed i64; without |
| 223 | // SSE, we're stuck with a fistpll. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 224 | setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Custom); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 225 | } |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 226 | |
Chris Lattner | 399610a | 2006-12-05 18:22:22 +0000 | [diff] [blame] | 227 | // TODO: when we have SSE, these could be more efficient, by using movd/movq. |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 228 | if (!X86ScalarSSEf64) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 229 | setOperationAction(ISD::BIT_CONVERT , MVT::f32 , Expand); |
| 230 | setOperationAction(ISD::BIT_CONVERT , MVT::i32 , Expand); |
Dale Johannesen | e39859a | 2010-05-21 18:40:15 +0000 | [diff] [blame] | 231 | if (Subtarget->is64Bit()) { |
Dale Johannesen | 7d07b48 | 2010-05-21 00:52:33 +0000 | [diff] [blame] | 232 | setOperationAction(ISD::BIT_CONVERT , MVT::f64 , Expand); |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 233 | // Without SSE, i64->f64 goes through memory. |
| 234 | setOperationAction(ISD::BIT_CONVERT , MVT::i64 , Expand); |
Dale Johannesen | 7d07b48 | 2010-05-21 00:52:33 +0000 | [diff] [blame] | 235 | } |
Chris Lattner | f3597a1 | 2006-12-05 18:45:06 +0000 | [diff] [blame] | 236 | } |
Chris Lattner | 21f6685 | 2005-12-23 05:15:23 +0000 | [diff] [blame] | 237 | |
Dan Gohman | b00ee21 | 2008-02-18 19:34:53 +0000 | [diff] [blame] | 238 | // Scalar integer divide and remainder are lowered to use operations that |
| 239 | // produce two results, to match the available instructions. This exposes |
| 240 | // the two-result form to trivial CSE, which is able to combine x/y and x%y |
| 241 | // into a single instruction. |
| 242 | // |
| 243 | // Scalar integer multiply-high is also lowered to use two-result |
| 244 | // operations, to match the available instructions. However, plain multiply |
| 245 | // (low) operations are left as Legal, as there are single-result |
| 246 | // instructions for this in x86. Using the two-result multiply instructions |
| 247 | // when both high and low results are needed must be arranged by dagcombine. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 248 | setOperationAction(ISD::MULHS , MVT::i8 , Expand); |
| 249 | setOperationAction(ISD::MULHU , MVT::i8 , Expand); |
| 250 | setOperationAction(ISD::SDIV , MVT::i8 , Expand); |
| 251 | setOperationAction(ISD::UDIV , MVT::i8 , Expand); |
| 252 | setOperationAction(ISD::SREM , MVT::i8 , Expand); |
| 253 | setOperationAction(ISD::UREM , MVT::i8 , Expand); |
| 254 | setOperationAction(ISD::MULHS , MVT::i16 , Expand); |
| 255 | setOperationAction(ISD::MULHU , MVT::i16 , Expand); |
| 256 | setOperationAction(ISD::SDIV , MVT::i16 , Expand); |
| 257 | setOperationAction(ISD::UDIV , MVT::i16 , Expand); |
| 258 | setOperationAction(ISD::SREM , MVT::i16 , Expand); |
| 259 | setOperationAction(ISD::UREM , MVT::i16 , Expand); |
| 260 | setOperationAction(ISD::MULHS , MVT::i32 , Expand); |
| 261 | setOperationAction(ISD::MULHU , MVT::i32 , Expand); |
| 262 | setOperationAction(ISD::SDIV , MVT::i32 , Expand); |
| 263 | setOperationAction(ISD::UDIV , MVT::i32 , Expand); |
| 264 | setOperationAction(ISD::SREM , MVT::i32 , Expand); |
| 265 | setOperationAction(ISD::UREM , MVT::i32 , Expand); |
| 266 | setOperationAction(ISD::MULHS , MVT::i64 , Expand); |
| 267 | setOperationAction(ISD::MULHU , MVT::i64 , Expand); |
| 268 | setOperationAction(ISD::SDIV , MVT::i64 , Expand); |
| 269 | setOperationAction(ISD::UDIV , MVT::i64 , Expand); |
| 270 | setOperationAction(ISD::SREM , MVT::i64 , Expand); |
| 271 | setOperationAction(ISD::UREM , MVT::i64 , Expand); |
Dan Gohman | a37c9f7 | 2007-09-25 18:23:27 +0000 | [diff] [blame] | 272 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 273 | setOperationAction(ISD::BR_JT , MVT::Other, Expand); |
| 274 | setOperationAction(ISD::BRCOND , MVT::Other, Custom); |
| 275 | setOperationAction(ISD::BR_CC , MVT::Other, Expand); |
| 276 | setOperationAction(ISD::SELECT_CC , MVT::Other, Expand); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 277 | if (Subtarget->is64Bit()) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 278 | setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal); |
| 279 | setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal); |
| 280 | setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal); |
| 281 | setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand); |
| 282 | setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand); |
| 283 | setOperationAction(ISD::FREM , MVT::f32 , Expand); |
| 284 | setOperationAction(ISD::FREM , MVT::f64 , Expand); |
| 285 | setOperationAction(ISD::FREM , MVT::f80 , Expand); |
| 286 | setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 287 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 288 | setOperationAction(ISD::CTPOP , MVT::i8 , Expand); |
| 289 | setOperationAction(ISD::CTTZ , MVT::i8 , Custom); |
| 290 | setOperationAction(ISD::CTLZ , MVT::i8 , Custom); |
| 291 | setOperationAction(ISD::CTPOP , MVT::i16 , Expand); |
Dan Gohman | 71edb24 | 2010-04-30 18:30:26 +0000 | [diff] [blame] | 292 | setOperationAction(ISD::CTTZ , MVT::i16 , Custom); |
| 293 | setOperationAction(ISD::CTLZ , MVT::i16 , Custom); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 294 | setOperationAction(ISD::CTPOP , MVT::i32 , Expand); |
| 295 | setOperationAction(ISD::CTTZ , MVT::i32 , Custom); |
| 296 | setOperationAction(ISD::CTLZ , MVT::i32 , Custom); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 297 | if (Subtarget->is64Bit()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 298 | setOperationAction(ISD::CTPOP , MVT::i64 , Expand); |
| 299 | setOperationAction(ISD::CTTZ , MVT::i64 , Custom); |
| 300 | setOperationAction(ISD::CTLZ , MVT::i64 , Custom); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 301 | } |
| 302 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 303 | setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom); |
| 304 | setOperationAction(ISD::BSWAP , MVT::i16 , Expand); |
Nate Begeman | 35ef913 | 2006-01-11 21:21:00 +0000 | [diff] [blame] | 305 | |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 306 | // These should be promoted to a larger select which is supported. |
Dan Gohman | cbbea0f | 2009-08-27 00:14:12 +0000 | [diff] [blame] | 307 | setOperationAction(ISD::SELECT , MVT::i1 , Promote); |
Nate Begeman | 4c5dcf5 | 2006-02-17 00:03:04 +0000 | [diff] [blame] | 308 | // X86 wants to expand cmov itself. |
Dan Gohman | cbbea0f | 2009-08-27 00:14:12 +0000 | [diff] [blame] | 309 | setOperationAction(ISD::SELECT , MVT::i8 , Custom); |
Dan Gohman | 71edb24 | 2010-04-30 18:30:26 +0000 | [diff] [blame] | 310 | setOperationAction(ISD::SELECT , MVT::i16 , Custom); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 311 | setOperationAction(ISD::SELECT , MVT::i32 , Custom); |
| 312 | setOperationAction(ISD::SELECT , MVT::f32 , Custom); |
| 313 | setOperationAction(ISD::SELECT , MVT::f64 , Custom); |
| 314 | setOperationAction(ISD::SELECT , MVT::f80 , Custom); |
| 315 | setOperationAction(ISD::SETCC , MVT::i8 , Custom); |
Dan Gohman | 71edb24 | 2010-04-30 18:30:26 +0000 | [diff] [blame] | 316 | setOperationAction(ISD::SETCC , MVT::i16 , Custom); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 317 | setOperationAction(ISD::SETCC , MVT::i32 , Custom); |
| 318 | setOperationAction(ISD::SETCC , MVT::f32 , Custom); |
| 319 | setOperationAction(ISD::SETCC , MVT::f64 , Custom); |
| 320 | setOperationAction(ISD::SETCC , MVT::f80 , Custom); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 321 | if (Subtarget->is64Bit()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 322 | setOperationAction(ISD::SELECT , MVT::i64 , Custom); |
| 323 | setOperationAction(ISD::SETCC , MVT::i64 , Custom); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 324 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 325 | setOperationAction(ISD::EH_RETURN , MVT::Other, Custom); |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 326 | |
Nate Begeman | 4c5dcf5 | 2006-02-17 00:03:04 +0000 | [diff] [blame] | 327 | // Darwin ABI issue. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 328 | setOperationAction(ISD::ConstantPool , MVT::i32 , Custom); |
| 329 | setOperationAction(ISD::JumpTable , MVT::i32 , Custom); |
| 330 | setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom); |
| 331 | setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom); |
Anton Korobeynikov | 6625eff | 2008-05-04 21:36:32 +0000 | [diff] [blame] | 332 | if (Subtarget->is64Bit()) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 333 | setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom); |
| 334 | setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom); |
Dan Gohman | f705adb | 2009-10-30 01:28:02 +0000 | [diff] [blame] | 335 | setOperationAction(ISD::BlockAddress , MVT::i32 , Custom); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 336 | if (Subtarget->is64Bit()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 337 | setOperationAction(ISD::ConstantPool , MVT::i64 , Custom); |
| 338 | setOperationAction(ISD::JumpTable , MVT::i64 , Custom); |
| 339 | setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom); |
| 340 | setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom); |
Dan Gohman | f705adb | 2009-10-30 01:28:02 +0000 | [diff] [blame] | 341 | setOperationAction(ISD::BlockAddress , MVT::i64 , Custom); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 342 | } |
Nate Begeman | 4c5dcf5 | 2006-02-17 00:03:04 +0000 | [diff] [blame] | 343 | // 64-bit addm sub, shl, sra, srl (iff 32-bit x86) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 344 | setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom); |
| 345 | setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom); |
| 346 | setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom); |
Dan Gohman | 4c1fa61 | 2008-03-03 22:22:09 +0000 | [diff] [blame] | 347 | if (Subtarget->is64Bit()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 348 | setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom); |
| 349 | setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom); |
| 350 | setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom); |
Dan Gohman | 4c1fa61 | 2008-03-03 22:22:09 +0000 | [diff] [blame] | 351 | } |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 352 | |
Evan Cheng | d2cde68 | 2008-03-10 19:38:10 +0000 | [diff] [blame] | 353 | if (Subtarget->hasSSE1()) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 354 | setOperationAction(ISD::PREFETCH , MVT::Other, Legal); |
Evan Cheng | 27b7db5 | 2008-03-08 00:58:38 +0000 | [diff] [blame] | 355 | |
Eric Christopher | 9a9d275 | 2010-07-22 02:48:34 +0000 | [diff] [blame] | 356 | // We may not have a libcall for MEMBARRIER so we should lower this. |
| 357 | setOperationAction(ISD::MEMBARRIER , MVT::Other, Custom); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 358 | |
Jim Grosbach | f1ab49e | 2010-06-23 16:25:07 +0000 | [diff] [blame] | 359 | // On X86 and X86-64, atomic operations are lowered to locked instructions. |
| 360 | // Locked instructions, in turn, have implicit fence semantics (all memory |
| 361 | // operations are flushed before issuing the locked instruction, and they |
| 362 | // are not buffered), so we can fold away the common pattern of |
| 363 | // fence-atomic-fence. |
| 364 | setShouldFoldAtomicFences(true); |
Andrew Lenharth | d497d9f | 2008-02-16 14:46:26 +0000 | [diff] [blame] | 365 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 366 | // Expand certain atomics |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 367 | setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i8, Custom); |
| 368 | setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i16, Custom); |
| 369 | setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Custom); |
| 370 | setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i64, Custom); |
Bill Wendling | 5bf1b4e | 2008-08-20 00:28:16 +0000 | [diff] [blame] | 371 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 372 | setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i8, Custom); |
| 373 | setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i16, Custom); |
| 374 | setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Custom); |
| 375 | setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom); |
Andrew Lenharth | d497d9f | 2008-02-16 14:46:26 +0000 | [diff] [blame] | 376 | |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 377 | if (!Subtarget->is64Bit()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 378 | setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom); |
| 379 | setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom); |
| 380 | setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom); |
| 381 | setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom); |
| 382 | setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom); |
| 383 | setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom); |
| 384 | setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 385 | } |
| 386 | |
Evan Cheng | 3c992d2 | 2006-03-07 02:02:57 +0000 | [diff] [blame] | 387 | // FIXME - use subtarget debug flags |
Anton Korobeynikov | ab4022f | 2006-10-31 08:31:24 +0000 | [diff] [blame] | 388 | if (!Subtarget->isTargetDarwin() && |
| 389 | !Subtarget->isTargetELF() && |
Dan Gohman | 4406604 | 2008-07-01 00:05:16 +0000 | [diff] [blame] | 390 | !Subtarget->isTargetCygMing()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 391 | setOperationAction(ISD::EH_LABEL, MVT::Other, Expand); |
Dan Gohman | 4406604 | 2008-07-01 00:05:16 +0000 | [diff] [blame] | 392 | } |
Chris Lattner | f73bae1 | 2005-11-29 06:16:21 +0000 | [diff] [blame] | 393 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 394 | setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand); |
| 395 | setOperationAction(ISD::EHSELECTION, MVT::i64, Expand); |
| 396 | setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand); |
| 397 | setOperationAction(ISD::EHSELECTION, MVT::i32, Expand); |
Anton Korobeynikov | ce3b465 | 2007-05-02 19:53:33 +0000 | [diff] [blame] | 398 | if (Subtarget->is64Bit()) { |
Anton Korobeynikov | ce3b465 | 2007-05-02 19:53:33 +0000 | [diff] [blame] | 399 | setExceptionPointerRegister(X86::RAX); |
| 400 | setExceptionSelectorRegister(X86::RDX); |
| 401 | } else { |
| 402 | setExceptionPointerRegister(X86::EAX); |
| 403 | setExceptionSelectorRegister(X86::EDX); |
| 404 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 405 | setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom); |
| 406 | setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom); |
Anton Korobeynikov | 260a6b8 | 2008-09-08 21:12:11 +0000 | [diff] [blame] | 407 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 408 | setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 409 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 410 | setOperationAction(ISD::TRAP, MVT::Other, Legal); |
Anton Korobeynikov | 66fac79 | 2008-01-15 07:02:33 +0000 | [diff] [blame] | 411 | |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 412 | // VASTART needs to be custom lowered to use the VarArgsFrameIndex |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 413 | setOperationAction(ISD::VASTART , MVT::Other, Custom); |
| 414 | setOperationAction(ISD::VAEND , MVT::Other, Expand); |
Dan Gohman | 9018e83 | 2008-05-10 01:26:14 +0000 | [diff] [blame] | 415 | if (Subtarget->is64Bit()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 416 | setOperationAction(ISD::VAARG , MVT::Other, Custom); |
| 417 | setOperationAction(ISD::VACOPY , MVT::Other, Custom); |
Dan Gohman | 9018e83 | 2008-05-10 01:26:14 +0000 | [diff] [blame] | 418 | } else { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 419 | setOperationAction(ISD::VAARG , MVT::Other, Expand); |
| 420 | setOperationAction(ISD::VACOPY , MVT::Other, Expand); |
Dan Gohman | 9018e83 | 2008-05-10 01:26:14 +0000 | [diff] [blame] | 421 | } |
Evan Cheng | ae64219 | 2007-03-02 23:16:35 +0000 | [diff] [blame] | 422 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 423 | setOperationAction(ISD::STACKSAVE, MVT::Other, Expand); |
| 424 | setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 425 | if (Subtarget->is64Bit()) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 426 | setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand); |
Michael J. Spencer | e9c253e | 2010-10-21 01:41:01 +0000 | [diff] [blame] | 427 | if (Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 428 | setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom); |
Anton Korobeynikov | 57fc00d | 2007-04-17 09:20:00 +0000 | [diff] [blame] | 429 | else |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 430 | setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand); |
Chris Lattner | b99329e | 2006-01-13 02:42:53 +0000 | [diff] [blame] | 431 | |
Evan Cheng | c7ce29b | 2009-02-13 22:36:38 +0000 | [diff] [blame] | 432 | if (!UseSoftFloat && X86ScalarSSEf64) { |
Dale Johannesen | f1fc3a8 | 2007-09-23 14:52:20 +0000 | [diff] [blame] | 433 | // f32 and f64 use SSE. |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 434 | // Set up the FP register classes. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 435 | addRegisterClass(MVT::f32, X86::FR32RegisterClass); |
| 436 | addRegisterClass(MVT::f64, X86::FR64RegisterClass); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 437 | |
Evan Cheng | 223547a | 2006-01-31 22:28:30 +0000 | [diff] [blame] | 438 | // Use ANDPD to simulate FABS. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 439 | setOperationAction(ISD::FABS , MVT::f64, Custom); |
| 440 | setOperationAction(ISD::FABS , MVT::f32, Custom); |
Evan Cheng | 223547a | 2006-01-31 22:28:30 +0000 | [diff] [blame] | 441 | |
| 442 | // Use XORP to simulate FNEG. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 443 | setOperationAction(ISD::FNEG , MVT::f64, Custom); |
| 444 | setOperationAction(ISD::FNEG , MVT::f32, Custom); |
Evan Cheng | 223547a | 2006-01-31 22:28:30 +0000 | [diff] [blame] | 445 | |
Evan Cheng | 68c47cb | 2007-01-05 07:55:56 +0000 | [diff] [blame] | 446 | // Use ANDPD and ORPD to simulate FCOPYSIGN. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 447 | setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom); |
| 448 | setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom); |
Evan Cheng | 68c47cb | 2007-01-05 07:55:56 +0000 | [diff] [blame] | 449 | |
Evan Cheng | d25e9e8 | 2006-02-02 00:28:23 +0000 | [diff] [blame] | 450 | // We don't support sin/cos/fmod |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 451 | setOperationAction(ISD::FSIN , MVT::f64, Expand); |
| 452 | setOperationAction(ISD::FCOS , MVT::f64, Expand); |
| 453 | setOperationAction(ISD::FSIN , MVT::f32, Expand); |
| 454 | setOperationAction(ISD::FCOS , MVT::f32, Expand); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 455 | |
Chris Lattner | a54aa94 | 2006-01-29 06:26:08 +0000 | [diff] [blame] | 456 | // Expand FP immediates into loads from the stack, except for the special |
| 457 | // cases we handle. |
Dale Johannesen | f1fc3a8 | 2007-09-23 14:52:20 +0000 | [diff] [blame] | 458 | addLegalFPImmediate(APFloat(+0.0)); // xorpd |
| 459 | addLegalFPImmediate(APFloat(+0.0f)); // xorps |
Evan Cheng | c7ce29b | 2009-02-13 22:36:38 +0000 | [diff] [blame] | 460 | } else if (!UseSoftFloat && X86ScalarSSEf32) { |
Dale Johannesen | f1fc3a8 | 2007-09-23 14:52:20 +0000 | [diff] [blame] | 461 | // Use SSE for f32, x87 for f64. |
| 462 | // Set up the FP register classes. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 463 | addRegisterClass(MVT::f32, X86::FR32RegisterClass); |
| 464 | addRegisterClass(MVT::f64, X86::RFP64RegisterClass); |
Dale Johannesen | f1fc3a8 | 2007-09-23 14:52:20 +0000 | [diff] [blame] | 465 | |
| 466 | // Use ANDPS to simulate FABS. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 467 | setOperationAction(ISD::FABS , MVT::f32, Custom); |
Dale Johannesen | f1fc3a8 | 2007-09-23 14:52:20 +0000 | [diff] [blame] | 468 | |
| 469 | // Use XORP to simulate FNEG. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 470 | setOperationAction(ISD::FNEG , MVT::f32, Custom); |
Dale Johannesen | f1fc3a8 | 2007-09-23 14:52:20 +0000 | [diff] [blame] | 471 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 472 | setOperationAction(ISD::UNDEF, MVT::f64, Expand); |
Dale Johannesen | f1fc3a8 | 2007-09-23 14:52:20 +0000 | [diff] [blame] | 473 | |
| 474 | // Use ANDPS and ORPS to simulate FCOPYSIGN. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 475 | setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand); |
| 476 | setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom); |
Dale Johannesen | f1fc3a8 | 2007-09-23 14:52:20 +0000 | [diff] [blame] | 477 | |
| 478 | // We don't support sin/cos/fmod |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 479 | setOperationAction(ISD::FSIN , MVT::f32, Expand); |
| 480 | setOperationAction(ISD::FCOS , MVT::f32, Expand); |
Dale Johannesen | f1fc3a8 | 2007-09-23 14:52:20 +0000 | [diff] [blame] | 481 | |
Nate Begeman | e179584 | 2008-02-14 08:57:00 +0000 | [diff] [blame] | 482 | // Special cases we handle for FP constants. |
Dale Johannesen | f1fc3a8 | 2007-09-23 14:52:20 +0000 | [diff] [blame] | 483 | addLegalFPImmediate(APFloat(+0.0f)); // xorps |
| 484 | addLegalFPImmediate(APFloat(+0.0)); // FLD0 |
| 485 | addLegalFPImmediate(APFloat(+1.0)); // FLD1 |
| 486 | addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS |
| 487 | addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS |
| 488 | |
Dale Johannesen | f1fc3a8 | 2007-09-23 14:52:20 +0000 | [diff] [blame] | 489 | if (!UnsafeFPMath) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 490 | setOperationAction(ISD::FSIN , MVT::f64 , Expand); |
| 491 | setOperationAction(ISD::FCOS , MVT::f64 , Expand); |
Dale Johannesen | f1fc3a8 | 2007-09-23 14:52:20 +0000 | [diff] [blame] | 492 | } |
Evan Cheng | c7ce29b | 2009-02-13 22:36:38 +0000 | [diff] [blame] | 493 | } else if (!UseSoftFloat) { |
Dale Johannesen | f1fc3a8 | 2007-09-23 14:52:20 +0000 | [diff] [blame] | 494 | // f32 and f64 in x87. |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 495 | // Set up the FP register classes. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 496 | addRegisterClass(MVT::f64, X86::RFP64RegisterClass); |
| 497 | addRegisterClass(MVT::f32, X86::RFP32RegisterClass); |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 498 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 499 | setOperationAction(ISD::UNDEF, MVT::f64, Expand); |
| 500 | setOperationAction(ISD::UNDEF, MVT::f32, Expand); |
| 501 | setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand); |
| 502 | setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand); |
Dale Johannesen | 5411a39 | 2007-08-09 01:04:01 +0000 | [diff] [blame] | 503 | |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 504 | if (!UnsafeFPMath) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 505 | setOperationAction(ISD::FSIN , MVT::f64 , Expand); |
| 506 | setOperationAction(ISD::FCOS , MVT::f64 , Expand); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 507 | } |
Dale Johannesen | f04afdb | 2007-08-30 00:23:21 +0000 | [diff] [blame] | 508 | addLegalFPImmediate(APFloat(+0.0)); // FLD0 |
| 509 | addLegalFPImmediate(APFloat(+1.0)); // FLD1 |
| 510 | addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS |
| 511 | addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS |
Dale Johannesen | f1fc3a8 | 2007-09-23 14:52:20 +0000 | [diff] [blame] | 512 | addLegalFPImmediate(APFloat(+0.0f)); // FLD0 |
| 513 | addLegalFPImmediate(APFloat(+1.0f)); // FLD1 |
| 514 | addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS |
| 515 | addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 516 | } |
Evan Cheng | 470a6ad | 2006-02-22 02:26:30 +0000 | [diff] [blame] | 517 | |
Dale Johannesen | 59a5873 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 518 | // Long double always uses X87. |
Evan Cheng | 9272253 | 2009-03-26 23:06:32 +0000 | [diff] [blame] | 519 | if (!UseSoftFloat) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 520 | addRegisterClass(MVT::f80, X86::RFP80RegisterClass); |
| 521 | setOperationAction(ISD::UNDEF, MVT::f80, Expand); |
| 522 | setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand); |
Evan Cheng | c7ce29b | 2009-02-13 22:36:38 +0000 | [diff] [blame] | 523 | { |
| 524 | bool ignored; |
| 525 | APFloat TmpFlt(+0.0); |
| 526 | TmpFlt.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven, |
| 527 | &ignored); |
| 528 | addLegalFPImmediate(TmpFlt); // FLD0 |
| 529 | TmpFlt.changeSign(); |
| 530 | addLegalFPImmediate(TmpFlt); // FLD0/FCHS |
| 531 | APFloat TmpFlt2(+1.0); |
| 532 | TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven, |
| 533 | &ignored); |
| 534 | addLegalFPImmediate(TmpFlt2); // FLD1 |
| 535 | TmpFlt2.changeSign(); |
| 536 | addLegalFPImmediate(TmpFlt2); // FLD1/FCHS |
| 537 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 538 | |
Evan Cheng | c7ce29b | 2009-02-13 22:36:38 +0000 | [diff] [blame] | 539 | if (!UnsafeFPMath) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 540 | setOperationAction(ISD::FSIN , MVT::f80 , Expand); |
| 541 | setOperationAction(ISD::FCOS , MVT::f80 , Expand); |
Evan Cheng | c7ce29b | 2009-02-13 22:36:38 +0000 | [diff] [blame] | 542 | } |
Dale Johannesen | 2f42901 | 2007-09-26 21:10:55 +0000 | [diff] [blame] | 543 | } |
Dale Johannesen | 59a5873 | 2007-08-05 18:49:15 +0000 | [diff] [blame] | 544 | |
Dan Gohman | f96e4de | 2007-10-11 23:21:31 +0000 | [diff] [blame] | 545 | // Always use a library call for pow. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 546 | setOperationAction(ISD::FPOW , MVT::f32 , Expand); |
| 547 | setOperationAction(ISD::FPOW , MVT::f64 , Expand); |
| 548 | setOperationAction(ISD::FPOW , MVT::f80 , Expand); |
Dan Gohman | f96e4de | 2007-10-11 23:21:31 +0000 | [diff] [blame] | 549 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 550 | setOperationAction(ISD::FLOG, MVT::f80, Expand); |
| 551 | setOperationAction(ISD::FLOG2, MVT::f80, Expand); |
| 552 | setOperationAction(ISD::FLOG10, MVT::f80, Expand); |
| 553 | setOperationAction(ISD::FEXP, MVT::f80, Expand); |
| 554 | setOperationAction(ISD::FEXP2, MVT::f80, Expand); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 555 | |
Mon P Wang | f007a8b | 2008-11-06 05:31:54 +0000 | [diff] [blame] | 556 | // First set operation action for all vector types to either promote |
Mon P Wang | 0c39719 | 2008-10-30 08:01:45 +0000 | [diff] [blame] | 557 | // (for widening) or expand (for scalarization). Then we will selectively |
| 558 | // turn on ones that can be effectively codegen'd. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 559 | for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE; |
| 560 | VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) { |
| 561 | setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand); |
| 562 | setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand); |
| 563 | setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand); |
| 564 | setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand); |
| 565 | setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand); |
| 566 | setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand); |
| 567 | setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand); |
| 568 | setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand); |
| 569 | setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand); |
| 570 | setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand); |
| 571 | setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand); |
| 572 | setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand); |
| 573 | setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand); |
| 574 | setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand); |
| 575 | setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand); |
| 576 | setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand); |
| 577 | setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand); |
| 578 | setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand); |
| 579 | setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand); |
| 580 | setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand); |
| 581 | setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand); |
| 582 | setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand); |
| 583 | setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand); |
| 584 | setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand); |
| 585 | setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand); |
| 586 | setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand); |
| 587 | setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand); |
| 588 | setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand); |
| 589 | setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand); |
| 590 | setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand); |
| 591 | setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand); |
| 592 | setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand); |
| 593 | setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand); |
| 594 | setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand); |
| 595 | setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand); |
| 596 | setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand); |
| 597 | setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand); |
| 598 | setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand); |
| 599 | setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand); |
| 600 | setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand); |
| 601 | setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand); |
| 602 | setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand); |
| 603 | setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand); |
| 604 | setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand); |
| 605 | setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand); |
| 606 | setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand); |
| 607 | setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand); |
| 608 | setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand); |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 609 | setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand); |
Dan Gohman | 2e141d7 | 2009-12-14 23:40:38 +0000 | [diff] [blame] | 610 | setOperationAction(ISD::TRUNCATE, (MVT::SimpleValueType)VT, Expand); |
| 611 | setOperationAction(ISD::SIGN_EXTEND, (MVT::SimpleValueType)VT, Expand); |
| 612 | setOperationAction(ISD::ZERO_EXTEND, (MVT::SimpleValueType)VT, Expand); |
| 613 | setOperationAction(ISD::ANY_EXTEND, (MVT::SimpleValueType)VT, Expand); |
| 614 | for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE; |
| 615 | InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT) |
| 616 | setTruncStoreAction((MVT::SimpleValueType)VT, |
| 617 | (MVT::SimpleValueType)InnerVT, Expand); |
| 618 | setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand); |
| 619 | setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand); |
| 620 | setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand); |
Evan Cheng | d30bf01 | 2006-03-01 01:11:20 +0000 | [diff] [blame] | 621 | } |
| 622 | |
Evan Cheng | c7ce29b | 2009-02-13 22:36:38 +0000 | [diff] [blame] | 623 | // FIXME: In order to prevent SSE instructions being expanded to MMX ones |
| 624 | // with -msoft-float, disable use of MMX as well. |
Evan Cheng | 9272253 | 2009-03-26 23:06:32 +0000 | [diff] [blame] | 625 | if (!UseSoftFloat && !DisableMMX && Subtarget->hasMMX()) { |
Dale Johannesen | e93d99c | 2010-10-20 21:32:10 +0000 | [diff] [blame] | 626 | addRegisterClass(MVT::x86mmx, X86::VR64RegisterClass); |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 627 | // No operations on x86mmx supported, everything uses intrinsics. |
Evan Cheng | 470a6ad | 2006-02-22 02:26:30 +0000 | [diff] [blame] | 628 | } |
| 629 | |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 630 | // MMX-sized vectors (other than x86mmx) are expected to be expanded |
| 631 | // into smaller operations. |
| 632 | setOperationAction(ISD::MULHS, MVT::v8i8, Expand); |
| 633 | setOperationAction(ISD::MULHS, MVT::v4i16, Expand); |
| 634 | setOperationAction(ISD::MULHS, MVT::v2i32, Expand); |
| 635 | setOperationAction(ISD::MULHS, MVT::v1i64, Expand); |
| 636 | setOperationAction(ISD::AND, MVT::v8i8, Expand); |
| 637 | setOperationAction(ISD::AND, MVT::v4i16, Expand); |
| 638 | setOperationAction(ISD::AND, MVT::v2i32, Expand); |
| 639 | setOperationAction(ISD::AND, MVT::v1i64, Expand); |
| 640 | setOperationAction(ISD::OR, MVT::v8i8, Expand); |
| 641 | setOperationAction(ISD::OR, MVT::v4i16, Expand); |
| 642 | setOperationAction(ISD::OR, MVT::v2i32, Expand); |
| 643 | setOperationAction(ISD::OR, MVT::v1i64, Expand); |
| 644 | setOperationAction(ISD::XOR, MVT::v8i8, Expand); |
| 645 | setOperationAction(ISD::XOR, MVT::v4i16, Expand); |
| 646 | setOperationAction(ISD::XOR, MVT::v2i32, Expand); |
| 647 | setOperationAction(ISD::XOR, MVT::v1i64, Expand); |
| 648 | setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand); |
| 649 | setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand); |
| 650 | setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand); |
| 651 | setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand); |
| 652 | setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand); |
| 653 | setOperationAction(ISD::SELECT, MVT::v8i8, Expand); |
| 654 | setOperationAction(ISD::SELECT, MVT::v4i16, Expand); |
| 655 | setOperationAction(ISD::SELECT, MVT::v2i32, Expand); |
| 656 | setOperationAction(ISD::SELECT, MVT::v1i64, Expand); |
| 657 | setOperationAction(ISD::BIT_CONVERT, MVT::v8i8, Expand); |
| 658 | setOperationAction(ISD::BIT_CONVERT, MVT::v4i16, Expand); |
| 659 | setOperationAction(ISD::BIT_CONVERT, MVT::v2i32, Expand); |
| 660 | setOperationAction(ISD::BIT_CONVERT, MVT::v1i64, Expand); |
| 661 | |
Evan Cheng | 9272253 | 2009-03-26 23:06:32 +0000 | [diff] [blame] | 662 | if (!UseSoftFloat && Subtarget->hasSSE1()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 663 | addRegisterClass(MVT::v4f32, X86::VR128RegisterClass); |
Evan Cheng | 470a6ad | 2006-02-22 02:26:30 +0000 | [diff] [blame] | 664 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 665 | setOperationAction(ISD::FADD, MVT::v4f32, Legal); |
| 666 | setOperationAction(ISD::FSUB, MVT::v4f32, Legal); |
| 667 | setOperationAction(ISD::FMUL, MVT::v4f32, Legal); |
| 668 | setOperationAction(ISD::FDIV, MVT::v4f32, Legal); |
| 669 | setOperationAction(ISD::FSQRT, MVT::v4f32, Legal); |
| 670 | setOperationAction(ISD::FNEG, MVT::v4f32, Custom); |
| 671 | setOperationAction(ISD::LOAD, MVT::v4f32, Legal); |
| 672 | setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom); |
| 673 | setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom); |
| 674 | setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom); |
| 675 | setOperationAction(ISD::SELECT, MVT::v4f32, Custom); |
| 676 | setOperationAction(ISD::VSETCC, MVT::v4f32, Custom); |
Evan Cheng | 470a6ad | 2006-02-22 02:26:30 +0000 | [diff] [blame] | 677 | } |
| 678 | |
Evan Cheng | 9272253 | 2009-03-26 23:06:32 +0000 | [diff] [blame] | 679 | if (!UseSoftFloat && Subtarget->hasSSE2()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 680 | addRegisterClass(MVT::v2f64, X86::VR128RegisterClass); |
Evan Cheng | c7ce29b | 2009-02-13 22:36:38 +0000 | [diff] [blame] | 681 | |
Bill Wendling | f9abd7e | 2009-03-11 22:30:01 +0000 | [diff] [blame] | 682 | // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM |
| 683 | // registers cannot be used even for integer operations. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 684 | addRegisterClass(MVT::v16i8, X86::VR128RegisterClass); |
| 685 | addRegisterClass(MVT::v8i16, X86::VR128RegisterClass); |
| 686 | addRegisterClass(MVT::v4i32, X86::VR128RegisterClass); |
| 687 | addRegisterClass(MVT::v2i64, X86::VR128RegisterClass); |
Evan Cheng | 470a6ad | 2006-02-22 02:26:30 +0000 | [diff] [blame] | 688 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 689 | setOperationAction(ISD::ADD, MVT::v16i8, Legal); |
| 690 | setOperationAction(ISD::ADD, MVT::v8i16, Legal); |
| 691 | setOperationAction(ISD::ADD, MVT::v4i32, Legal); |
| 692 | setOperationAction(ISD::ADD, MVT::v2i64, Legal); |
| 693 | setOperationAction(ISD::MUL, MVT::v2i64, Custom); |
| 694 | setOperationAction(ISD::SUB, MVT::v16i8, Legal); |
| 695 | setOperationAction(ISD::SUB, MVT::v8i16, Legal); |
| 696 | setOperationAction(ISD::SUB, MVT::v4i32, Legal); |
| 697 | setOperationAction(ISD::SUB, MVT::v2i64, Legal); |
| 698 | setOperationAction(ISD::MUL, MVT::v8i16, Legal); |
| 699 | setOperationAction(ISD::FADD, MVT::v2f64, Legal); |
| 700 | setOperationAction(ISD::FSUB, MVT::v2f64, Legal); |
| 701 | setOperationAction(ISD::FMUL, MVT::v2f64, Legal); |
| 702 | setOperationAction(ISD::FDIV, MVT::v2f64, Legal); |
| 703 | setOperationAction(ISD::FSQRT, MVT::v2f64, Legal); |
| 704 | setOperationAction(ISD::FNEG, MVT::v2f64, Custom); |
Evan Cheng | 2c3ae37 | 2006-04-12 21:21:57 +0000 | [diff] [blame] | 705 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 706 | setOperationAction(ISD::VSETCC, MVT::v2f64, Custom); |
| 707 | setOperationAction(ISD::VSETCC, MVT::v16i8, Custom); |
| 708 | setOperationAction(ISD::VSETCC, MVT::v8i16, Custom); |
| 709 | setOperationAction(ISD::VSETCC, MVT::v4i32, Custom); |
Nate Begeman | c2616e4 | 2008-05-12 20:34:32 +0000 | [diff] [blame] | 710 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 711 | setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom); |
| 712 | setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom); |
| 713 | setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom); |
| 714 | setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom); |
| 715 | setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom); |
Evan Cheng | f7c378e | 2006-04-10 07:23:14 +0000 | [diff] [blame] | 716 | |
Mon P Wang | eb38ebf | 2010-01-24 00:05:03 +0000 | [diff] [blame] | 717 | setOperationAction(ISD::CONCAT_VECTORS, MVT::v2f64, Custom); |
| 718 | setOperationAction(ISD::CONCAT_VECTORS, MVT::v2i64, Custom); |
| 719 | setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i8, Custom); |
| 720 | setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i16, Custom); |
| 721 | setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom); |
| 722 | |
Evan Cheng | 2c3ae37 | 2006-04-12 21:21:57 +0000 | [diff] [blame] | 723 | // Custom lower build_vector, vector_shuffle, and extract_vector_elt. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 724 | for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) { |
| 725 | EVT VT = (MVT::SimpleValueType)i; |
Nate Begeman | 844e0f9 | 2007-12-11 01:41:33 +0000 | [diff] [blame] | 726 | // Do not attempt to custom lower non-power-of-2 vectors |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 727 | if (!isPowerOf2_32(VT.getVectorNumElements())) |
Nate Begeman | 844e0f9 | 2007-12-11 01:41:33 +0000 | [diff] [blame] | 728 | continue; |
David Greene | 9b9838d | 2009-06-29 16:47:10 +0000 | [diff] [blame] | 729 | // Do not attempt to custom lower non-128-bit vectors |
| 730 | if (!VT.is128BitVector()) |
| 731 | continue; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 732 | setOperationAction(ISD::BUILD_VECTOR, |
| 733 | VT.getSimpleVT().SimpleTy, Custom); |
| 734 | setOperationAction(ISD::VECTOR_SHUFFLE, |
| 735 | VT.getSimpleVT().SimpleTy, Custom); |
| 736 | setOperationAction(ISD::EXTRACT_VECTOR_ELT, |
| 737 | VT.getSimpleVT().SimpleTy, Custom); |
Evan Cheng | 2c3ae37 | 2006-04-12 21:21:57 +0000 | [diff] [blame] | 738 | } |
Bill Wendling | f9abd7e | 2009-03-11 22:30:01 +0000 | [diff] [blame] | 739 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 740 | setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom); |
| 741 | setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom); |
| 742 | setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom); |
| 743 | setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom); |
| 744 | setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom); |
| 745 | setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom); |
Bill Wendling | f9abd7e | 2009-03-11 22:30:01 +0000 | [diff] [blame] | 746 | |
Nate Begeman | cdd1eec | 2008-02-12 22:51:28 +0000 | [diff] [blame] | 747 | if (Subtarget->is64Bit()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 748 | setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom); |
| 749 | setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom); |
Nate Begeman | cdd1eec | 2008-02-12 22:51:28 +0000 | [diff] [blame] | 750 | } |
Evan Cheng | 2c3ae37 | 2006-04-12 21:21:57 +0000 | [diff] [blame] | 751 | |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 752 | // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 753 | for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) { |
| 754 | MVT::SimpleValueType SVT = (MVT::SimpleValueType)i; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 755 | EVT VT = SVT; |
David Greene | 9b9838d | 2009-06-29 16:47:10 +0000 | [diff] [blame] | 756 | |
| 757 | // Do not attempt to promote non-128-bit vectors |
Chris Lattner | 32b4b5a | 2010-07-05 05:53:14 +0000 | [diff] [blame] | 758 | if (!VT.is128BitVector()) |
David Greene | 9b9838d | 2009-06-29 16:47:10 +0000 | [diff] [blame] | 759 | continue; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 760 | |
Owen Anderson | d6662ad | 2009-08-10 20:46:15 +0000 | [diff] [blame] | 761 | setOperationAction(ISD::AND, SVT, Promote); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 762 | AddPromotedToType (ISD::AND, SVT, MVT::v2i64); |
Owen Anderson | d6662ad | 2009-08-10 20:46:15 +0000 | [diff] [blame] | 763 | setOperationAction(ISD::OR, SVT, Promote); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 764 | AddPromotedToType (ISD::OR, SVT, MVT::v2i64); |
Owen Anderson | d6662ad | 2009-08-10 20:46:15 +0000 | [diff] [blame] | 765 | setOperationAction(ISD::XOR, SVT, Promote); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 766 | AddPromotedToType (ISD::XOR, SVT, MVT::v2i64); |
Owen Anderson | d6662ad | 2009-08-10 20:46:15 +0000 | [diff] [blame] | 767 | setOperationAction(ISD::LOAD, SVT, Promote); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 768 | AddPromotedToType (ISD::LOAD, SVT, MVT::v2i64); |
Owen Anderson | d6662ad | 2009-08-10 20:46:15 +0000 | [diff] [blame] | 769 | setOperationAction(ISD::SELECT, SVT, Promote); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 770 | AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64); |
Evan Cheng | f7c378e | 2006-04-10 07:23:14 +0000 | [diff] [blame] | 771 | } |
Evan Cheng | 2c3ae37 | 2006-04-12 21:21:57 +0000 | [diff] [blame] | 772 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 773 | setTruncStoreAction(MVT::f64, MVT::f32, Expand); |
Chris Lattner | d43d00c | 2008-01-24 08:07:48 +0000 | [diff] [blame] | 774 | |
Evan Cheng | 2c3ae37 | 2006-04-12 21:21:57 +0000 | [diff] [blame] | 775 | // Custom lower v2i64 and v2f64 selects. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 776 | setOperationAction(ISD::LOAD, MVT::v2f64, Legal); |
| 777 | setOperationAction(ISD::LOAD, MVT::v2i64, Legal); |
| 778 | setOperationAction(ISD::SELECT, MVT::v2f64, Custom); |
| 779 | setOperationAction(ISD::SELECT, MVT::v2i64, Custom); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 780 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 781 | setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal); |
| 782 | setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal); |
Evan Cheng | 470a6ad | 2006-02-22 02:26:30 +0000 | [diff] [blame] | 783 | } |
Evan Cheng | c7ce29b | 2009-02-13 22:36:38 +0000 | [diff] [blame] | 784 | |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 785 | if (Subtarget->hasSSE41()) { |
Dale Johannesen | 54feef2 | 2010-05-27 20:12:41 +0000 | [diff] [blame] | 786 | setOperationAction(ISD::FFLOOR, MVT::f32, Legal); |
| 787 | setOperationAction(ISD::FCEIL, MVT::f32, Legal); |
| 788 | setOperationAction(ISD::FTRUNC, MVT::f32, Legal); |
| 789 | setOperationAction(ISD::FRINT, MVT::f32, Legal); |
| 790 | setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal); |
| 791 | setOperationAction(ISD::FFLOOR, MVT::f64, Legal); |
| 792 | setOperationAction(ISD::FCEIL, MVT::f64, Legal); |
| 793 | setOperationAction(ISD::FTRUNC, MVT::f64, Legal); |
| 794 | setOperationAction(ISD::FRINT, MVT::f64, Legal); |
| 795 | setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal); |
| 796 | |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 797 | // FIXME: Do we need to handle scalar-to-vector here? |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 798 | setOperationAction(ISD::MUL, MVT::v4i32, Legal); |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 799 | |
Nate Begeman | bdcb5af | 2010-07-27 22:37:06 +0000 | [diff] [blame] | 800 | // Can turn SHL into an integer multiply. |
| 801 | setOperationAction(ISD::SHL, MVT::v4i32, Custom); |
Nate Begeman | 5140921 | 2010-07-28 00:21:48 +0000 | [diff] [blame] | 802 | setOperationAction(ISD::SHL, MVT::v16i8, Custom); |
Nate Begeman | bdcb5af | 2010-07-27 22:37:06 +0000 | [diff] [blame] | 803 | |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 804 | // i8 and i16 vectors are custom , because the source register and source |
| 805 | // source memory operand types are not the same width. f32 vectors are |
| 806 | // custom since the immediate controlling the insert encodes additional |
| 807 | // information. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 808 | setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom); |
| 809 | setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom); |
| 810 | setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom); |
| 811 | setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom); |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 812 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 813 | setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom); |
| 814 | setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom); |
| 815 | setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom); |
| 816 | setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom); |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 817 | |
| 818 | if (Subtarget->is64Bit()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 819 | setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal); |
| 820 | setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal); |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 821 | } |
| 822 | } |
Evan Cheng | 470a6ad | 2006-02-22 02:26:30 +0000 | [diff] [blame] | 823 | |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 824 | if (Subtarget->hasSSE42()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 825 | setOperationAction(ISD::VSETCC, MVT::v2i64, Custom); |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 826 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 827 | |
David Greene | 9b9838d | 2009-06-29 16:47:10 +0000 | [diff] [blame] | 828 | if (!UseSoftFloat && Subtarget->hasAVX()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 829 | addRegisterClass(MVT::v8f32, X86::VR256RegisterClass); |
| 830 | addRegisterClass(MVT::v4f64, X86::VR256RegisterClass); |
| 831 | addRegisterClass(MVT::v8i32, X86::VR256RegisterClass); |
| 832 | addRegisterClass(MVT::v4i64, X86::VR256RegisterClass); |
Bruno Cardoso Lopes | 405f11b | 2010-08-10 01:43:16 +0000 | [diff] [blame] | 833 | addRegisterClass(MVT::v32i8, X86::VR256RegisterClass); |
David Greene | d94c101 | 2009-06-29 22:50:51 +0000 | [diff] [blame] | 834 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 835 | setOperationAction(ISD::LOAD, MVT::v8f32, Legal); |
| 836 | setOperationAction(ISD::LOAD, MVT::v8i32, Legal); |
| 837 | setOperationAction(ISD::LOAD, MVT::v4f64, Legal); |
| 838 | setOperationAction(ISD::LOAD, MVT::v4i64, Legal); |
| 839 | setOperationAction(ISD::FADD, MVT::v8f32, Legal); |
| 840 | setOperationAction(ISD::FSUB, MVT::v8f32, Legal); |
| 841 | setOperationAction(ISD::FMUL, MVT::v8f32, Legal); |
| 842 | setOperationAction(ISD::FDIV, MVT::v8f32, Legal); |
| 843 | setOperationAction(ISD::FSQRT, MVT::v8f32, Legal); |
| 844 | setOperationAction(ISD::FNEG, MVT::v8f32, Custom); |
Bruno Cardoso Lopes | 8c05a85 | 2010-08-12 02:06:36 +0000 | [diff] [blame] | 845 | setOperationAction(ISD::BUILD_VECTOR, MVT::v8f32, Custom); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 846 | //setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8f32, Custom); |
| 847 | //setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8f32, Custom); |
| 848 | //setOperationAction(ISD::SELECT, MVT::v8f32, Custom); |
| 849 | //setOperationAction(ISD::VSETCC, MVT::v8f32, Custom); |
David Greene | 9b9838d | 2009-06-29 16:47:10 +0000 | [diff] [blame] | 850 | |
| 851 | // Operations to consider commented out -v16i16 v32i8 |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 852 | //setOperationAction(ISD::ADD, MVT::v16i16, Legal); |
| 853 | setOperationAction(ISD::ADD, MVT::v8i32, Custom); |
| 854 | setOperationAction(ISD::ADD, MVT::v4i64, Custom); |
| 855 | //setOperationAction(ISD::SUB, MVT::v32i8, Legal); |
| 856 | //setOperationAction(ISD::SUB, MVT::v16i16, Legal); |
| 857 | setOperationAction(ISD::SUB, MVT::v8i32, Custom); |
| 858 | setOperationAction(ISD::SUB, MVT::v4i64, Custom); |
| 859 | //setOperationAction(ISD::MUL, MVT::v16i16, Legal); |
| 860 | setOperationAction(ISD::FADD, MVT::v4f64, Legal); |
| 861 | setOperationAction(ISD::FSUB, MVT::v4f64, Legal); |
| 862 | setOperationAction(ISD::FMUL, MVT::v4f64, Legal); |
| 863 | setOperationAction(ISD::FDIV, MVT::v4f64, Legal); |
| 864 | setOperationAction(ISD::FSQRT, MVT::v4f64, Legal); |
| 865 | setOperationAction(ISD::FNEG, MVT::v4f64, Custom); |
David Greene | 9b9838d | 2009-06-29 16:47:10 +0000 | [diff] [blame] | 866 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 867 | setOperationAction(ISD::VSETCC, MVT::v4f64, Custom); |
| 868 | // setOperationAction(ISD::VSETCC, MVT::v32i8, Custom); |
| 869 | // setOperationAction(ISD::VSETCC, MVT::v16i16, Custom); |
| 870 | setOperationAction(ISD::VSETCC, MVT::v8i32, Custom); |
David Greene | 9b9838d | 2009-06-29 16:47:10 +0000 | [diff] [blame] | 871 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 872 | // setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v32i8, Custom); |
| 873 | // setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i16, Custom); |
| 874 | // setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i16, Custom); |
| 875 | setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i32, Custom); |
| 876 | setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8f32, Custom); |
David Greene | 9b9838d | 2009-06-29 16:47:10 +0000 | [diff] [blame] | 877 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 878 | setOperationAction(ISD::BUILD_VECTOR, MVT::v4f64, Custom); |
| 879 | setOperationAction(ISD::BUILD_VECTOR, MVT::v4i64, Custom); |
| 880 | setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f64, Custom); |
| 881 | setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i64, Custom); |
| 882 | setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f64, Custom); |
| 883 | setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f64, Custom); |
David Greene | 9b9838d | 2009-06-29 16:47:10 +0000 | [diff] [blame] | 884 | |
| 885 | #if 0 |
| 886 | // Not sure we want to do this since there are no 256-bit integer |
| 887 | // operations in AVX |
| 888 | |
| 889 | // Custom lower build_vector, vector_shuffle, and extract_vector_elt. |
| 890 | // This includes 256-bit vectors |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 891 | for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v4i64; ++i) { |
| 892 | EVT VT = (MVT::SimpleValueType)i; |
David Greene | 9b9838d | 2009-06-29 16:47:10 +0000 | [diff] [blame] | 893 | |
| 894 | // Do not attempt to custom lower non-power-of-2 vectors |
| 895 | if (!isPowerOf2_32(VT.getVectorNumElements())) |
| 896 | continue; |
| 897 | |
| 898 | setOperationAction(ISD::BUILD_VECTOR, VT, Custom); |
| 899 | setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom); |
| 900 | setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom); |
| 901 | } |
| 902 | |
| 903 | if (Subtarget->is64Bit()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 904 | setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i64, Custom); |
| 905 | setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i64, Custom); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 906 | } |
David Greene | 9b9838d | 2009-06-29 16:47:10 +0000 | [diff] [blame] | 907 | #endif |
| 908 | |
| 909 | #if 0 |
| 910 | // Not sure we want to do this since there are no 256-bit integer |
| 911 | // operations in AVX |
| 912 | |
| 913 | // Promote v32i8, v16i16, v8i32 load, select, and, or, xor to v4i64. |
| 914 | // Including 256-bit vectors |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 915 | for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v4i64; i++) { |
| 916 | EVT VT = (MVT::SimpleValueType)i; |
David Greene | 9b9838d | 2009-06-29 16:47:10 +0000 | [diff] [blame] | 917 | |
| 918 | if (!VT.is256BitVector()) { |
| 919 | continue; |
| 920 | } |
| 921 | setOperationAction(ISD::AND, VT, Promote); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 922 | AddPromotedToType (ISD::AND, VT, MVT::v4i64); |
David Greene | 9b9838d | 2009-06-29 16:47:10 +0000 | [diff] [blame] | 923 | setOperationAction(ISD::OR, VT, Promote); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 924 | AddPromotedToType (ISD::OR, VT, MVT::v4i64); |
David Greene | 9b9838d | 2009-06-29 16:47:10 +0000 | [diff] [blame] | 925 | setOperationAction(ISD::XOR, VT, Promote); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 926 | AddPromotedToType (ISD::XOR, VT, MVT::v4i64); |
David Greene | 9b9838d | 2009-06-29 16:47:10 +0000 | [diff] [blame] | 927 | setOperationAction(ISD::LOAD, VT, Promote); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 928 | AddPromotedToType (ISD::LOAD, VT, MVT::v4i64); |
David Greene | 9b9838d | 2009-06-29 16:47:10 +0000 | [diff] [blame] | 929 | setOperationAction(ISD::SELECT, VT, Promote); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 930 | AddPromotedToType (ISD::SELECT, VT, MVT::v4i64); |
David Greene | 9b9838d | 2009-06-29 16:47:10 +0000 | [diff] [blame] | 931 | } |
| 932 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 933 | setTruncStoreAction(MVT::f64, MVT::f32, Expand); |
David Greene | 9b9838d | 2009-06-29 16:47:10 +0000 | [diff] [blame] | 934 | #endif |
| 935 | } |
| 936 | |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 937 | // We want to custom lower some of our intrinsics. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 938 | setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom); |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 939 | |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 940 | // Add/Sub/Mul with overflow operations are custom lowered. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 941 | setOperationAction(ISD::SADDO, MVT::i32, Custom); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 942 | setOperationAction(ISD::UADDO, MVT::i32, Custom); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 943 | setOperationAction(ISD::SSUBO, MVT::i32, Custom); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 944 | setOperationAction(ISD::USUBO, MVT::i32, Custom); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 945 | setOperationAction(ISD::SMULO, MVT::i32, Custom); |
Dan Gohman | 71c62a2 | 2010-06-02 19:13:40 +0000 | [diff] [blame] | 946 | |
Eli Friedman | 962f549 | 2010-06-02 19:35:46 +0000 | [diff] [blame] | 947 | // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't |
| 948 | // handle type legalization for these operations here. |
Dan Gohman | 71c62a2 | 2010-06-02 19:13:40 +0000 | [diff] [blame] | 949 | // |
Eli Friedman | 962f549 | 2010-06-02 19:35:46 +0000 | [diff] [blame] | 950 | // FIXME: We really should do custom legalization for addition and |
| 951 | // subtraction on x86-32 once PR3203 is fixed. We really can't do much better |
| 952 | // than generic legalization for 64-bit multiplication-with-overflow, though. |
Eli Friedman | a993f0a | 2010-06-02 00:27:18 +0000 | [diff] [blame] | 953 | if (Subtarget->is64Bit()) { |
| 954 | setOperationAction(ISD::SADDO, MVT::i64, Custom); |
| 955 | setOperationAction(ISD::UADDO, MVT::i64, Custom); |
| 956 | setOperationAction(ISD::SSUBO, MVT::i64, Custom); |
| 957 | setOperationAction(ISD::USUBO, MVT::i64, Custom); |
| 958 | setOperationAction(ISD::SMULO, MVT::i64, Custom); |
| 959 | } |
Bill Wendling | 41ea7e7 | 2008-11-24 19:21:46 +0000 | [diff] [blame] | 960 | |
Evan Cheng | d54f2d5 | 2009-03-31 19:38:51 +0000 | [diff] [blame] | 961 | if (!Subtarget->is64Bit()) { |
| 962 | // These libcalls are not available in 32-bit. |
| 963 | setLibcallName(RTLIB::SHL_I128, 0); |
| 964 | setLibcallName(RTLIB::SRL_I128, 0); |
| 965 | setLibcallName(RTLIB::SRA_I128, 0); |
| 966 | } |
| 967 | |
Evan Cheng | 206ee9d | 2006-07-07 08:33:52 +0000 | [diff] [blame] | 968 | // We have target-specific dag combine patterns for the following nodes: |
| 969 | setTargetDAGCombine(ISD::VECTOR_SHUFFLE); |
Dan Gohman | 1bbf72b | 2010-03-15 23:23:03 +0000 | [diff] [blame] | 970 | setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT); |
Evan Cheng | d880b97 | 2008-05-09 21:53:03 +0000 | [diff] [blame] | 971 | setTargetDAGCombine(ISD::BUILD_VECTOR); |
Chris Lattner | 83e6c99 | 2006-10-04 06:57:07 +0000 | [diff] [blame] | 972 | setTargetDAGCombine(ISD::SELECT); |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 973 | setTargetDAGCombine(ISD::SHL); |
| 974 | setTargetDAGCombine(ISD::SRA); |
| 975 | setTargetDAGCombine(ISD::SRL); |
Evan Cheng | 760d194 | 2010-01-04 21:22:48 +0000 | [diff] [blame] | 976 | setTargetDAGCombine(ISD::OR); |
Chris Lattner | 149a4e5 | 2008-02-22 02:09:43 +0000 | [diff] [blame] | 977 | setTargetDAGCombine(ISD::STORE); |
Evan Cheng | 2e489c4 | 2009-12-16 00:53:11 +0000 | [diff] [blame] | 978 | setTargetDAGCombine(ISD::ZERO_EXTEND); |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 979 | if (Subtarget->is64Bit()) |
| 980 | setTargetDAGCombine(ISD::MUL); |
Evan Cheng | 206ee9d | 2006-07-07 08:33:52 +0000 | [diff] [blame] | 981 | |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 982 | computeRegisterProperties(); |
| 983 | |
Evan Cheng | 87ed716 | 2006-02-14 08:25:08 +0000 | [diff] [blame] | 984 | // FIXME: These should be based on subtarget info. Plus, the values should |
| 985 | // be smaller when we are in optimizing for size mode. |
Dan Gohman | 87060f5 | 2008-06-30 21:00:56 +0000 | [diff] [blame] | 986 | maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 987 | maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores |
Dan Gohman | 87060f5 | 2008-06-30 21:00:56 +0000 | [diff] [blame] | 988 | maxStoresPerMemmove = 3; // For @llvm.memmove -> sequence of stores |
Evan Cheng | fb8075d | 2008-02-28 00:43:03 +0000 | [diff] [blame] | 989 | setPrefLoopAlignment(16); |
Evan Cheng | 6ebf7bc | 2009-05-13 21:42:09 +0000 | [diff] [blame] | 990 | benefitFromCodePlacementOpt = true; |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 991 | } |
| 992 | |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 993 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 994 | MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const { |
| 995 | return MVT::i8; |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 996 | } |
| 997 | |
| 998 | |
Evan Cheng | 2928650 | 2008-01-23 23:17:41 +0000 | [diff] [blame] | 999 | /// getMaxByValAlign - Helper for getByValTypeAlignment to determine |
| 1000 | /// the desired ByVal argument alignment. |
| 1001 | static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) { |
| 1002 | if (MaxAlign == 16) |
| 1003 | return; |
| 1004 | if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) { |
| 1005 | if (VTy->getBitWidth() == 128) |
| 1006 | MaxAlign = 16; |
Evan Cheng | 2928650 | 2008-01-23 23:17:41 +0000 | [diff] [blame] | 1007 | } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) { |
| 1008 | unsigned EltAlign = 0; |
| 1009 | getMaxByValAlign(ATy->getElementType(), EltAlign); |
| 1010 | if (EltAlign > MaxAlign) |
| 1011 | MaxAlign = EltAlign; |
| 1012 | } else if (const StructType *STy = dyn_cast<StructType>(Ty)) { |
| 1013 | for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) { |
| 1014 | unsigned EltAlign = 0; |
| 1015 | getMaxByValAlign(STy->getElementType(i), EltAlign); |
| 1016 | if (EltAlign > MaxAlign) |
| 1017 | MaxAlign = EltAlign; |
| 1018 | if (MaxAlign == 16) |
| 1019 | break; |
| 1020 | } |
| 1021 | } |
| 1022 | return; |
| 1023 | } |
| 1024 | |
| 1025 | /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate |
| 1026 | /// function arguments in the caller parameter area. For X86, aggregates |
Dale Johannesen | 0c19187 | 2008-02-08 19:48:20 +0000 | [diff] [blame] | 1027 | /// that contain SSE vectors are placed at 16-byte boundaries while the rest |
| 1028 | /// are at 4-byte boundaries. |
Evan Cheng | 2928650 | 2008-01-23 23:17:41 +0000 | [diff] [blame] | 1029 | unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const { |
Evan Cheng | 1887c1c | 2008-08-21 21:00:15 +0000 | [diff] [blame] | 1030 | if (Subtarget->is64Bit()) { |
| 1031 | // Max of 8 and alignment of type. |
Anton Korobeynikov | bff66b0 | 2008-09-09 18:22:57 +0000 | [diff] [blame] | 1032 | unsigned TyAlign = TD->getABITypeAlignment(Ty); |
Evan Cheng | 1887c1c | 2008-08-21 21:00:15 +0000 | [diff] [blame] | 1033 | if (TyAlign > 8) |
| 1034 | return TyAlign; |
| 1035 | return 8; |
| 1036 | } |
| 1037 | |
Evan Cheng | 2928650 | 2008-01-23 23:17:41 +0000 | [diff] [blame] | 1038 | unsigned Align = 4; |
Dale Johannesen | 0c19187 | 2008-02-08 19:48:20 +0000 | [diff] [blame] | 1039 | if (Subtarget->hasSSE1()) |
| 1040 | getMaxByValAlign(Ty, Align); |
Evan Cheng | 2928650 | 2008-01-23 23:17:41 +0000 | [diff] [blame] | 1041 | return Align; |
| 1042 | } |
Chris Lattner | 2b02a44 | 2007-02-25 08:29:00 +0000 | [diff] [blame] | 1043 | |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 1044 | /// getOptimalMemOpType - Returns the target specific optimal type for load |
Evan Cheng | c3b0c34 | 2010-04-08 07:37:57 +0000 | [diff] [blame] | 1045 | /// and store operations as a result of memset, memcpy, and memmove |
| 1046 | /// lowering. If DstAlign is zero that means it's safe to destination |
| 1047 | /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it |
| 1048 | /// means there isn't a need to check it against alignment requirement, |
| 1049 | /// probably because the source does not need to be loaded. If |
| 1050 | /// 'NonScalarIntSafe' is true, that means it's safe to return a |
| 1051 | /// non-scalar-integer type, e.g. empty string source, constant, or loaded |
| 1052 | /// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is |
| 1053 | /// constant so it does not need to be loaded. |
Dan Gohman | 37f32ee | 2010-04-16 20:11:05 +0000 | [diff] [blame] | 1054 | /// It returns EVT::Other if the type should be determined using generic |
| 1055 | /// target-independent logic. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1056 | EVT |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 1057 | X86TargetLowering::getOptimalMemOpType(uint64_t Size, |
| 1058 | unsigned DstAlign, unsigned SrcAlign, |
Evan Cheng | f28f8bc | 2010-04-02 19:36:14 +0000 | [diff] [blame] | 1059 | bool NonScalarIntSafe, |
Evan Cheng | c3b0c34 | 2010-04-08 07:37:57 +0000 | [diff] [blame] | 1060 | bool MemcpyStrSrc, |
Dan Gohman | 37f32ee | 2010-04-16 20:11:05 +0000 | [diff] [blame] | 1061 | MachineFunction &MF) const { |
Chris Lattner | 4002a1b | 2008-10-28 05:49:35 +0000 | [diff] [blame] | 1062 | // FIXME: This turns off use of xmm stores for memset/memcpy on targets like |
| 1063 | // linux. This is because the stack realignment code can't handle certain |
| 1064 | // cases like PR2962. This should be removed when PR2962 is fixed. |
Dan Gohman | 37f32ee | 2010-04-16 20:11:05 +0000 | [diff] [blame] | 1065 | const Function *F = MF.getFunction(); |
Evan Cheng | f28f8bc | 2010-04-02 19:36:14 +0000 | [diff] [blame] | 1066 | if (NonScalarIntSafe && |
| 1067 | !F->hasFnAttr(Attribute::NoImplicitFloat)) { |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 1068 | if (Size >= 16 && |
| 1069 | (Subtarget->isUnalignedMemAccessFast() || |
Chandler Carruth | ae1d41c | 2010-04-02 01:31:24 +0000 | [diff] [blame] | 1070 | ((DstAlign == 0 || DstAlign >= 16) && |
| 1071 | (SrcAlign == 0 || SrcAlign >= 16))) && |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 1072 | Subtarget->getStackAlignment() >= 16) { |
| 1073 | if (Subtarget->hasSSE2()) |
| 1074 | return MVT::v4i32; |
Evan Cheng | f28f8bc | 2010-04-02 19:36:14 +0000 | [diff] [blame] | 1075 | if (Subtarget->hasSSE1()) |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 1076 | return MVT::v4f32; |
Evan Cheng | c3b0c34 | 2010-04-08 07:37:57 +0000 | [diff] [blame] | 1077 | } else if (!MemcpyStrSrc && Size >= 8 && |
Evan Cheng | 3ea9755 | 2010-04-01 20:27:45 +0000 | [diff] [blame] | 1078 | !Subtarget->is64Bit() && |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 1079 | Subtarget->getStackAlignment() >= 8 && |
Evan Cheng | c3b0c34 | 2010-04-08 07:37:57 +0000 | [diff] [blame] | 1080 | Subtarget->hasSSE2()) { |
| 1081 | // Do not use f64 to lower memcpy if source is string constant. It's |
| 1082 | // better to use i32 to avoid the loads. |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 1083 | return MVT::f64; |
Evan Cheng | c3b0c34 | 2010-04-08 07:37:57 +0000 | [diff] [blame] | 1084 | } |
Chris Lattner | 4002a1b | 2008-10-28 05:49:35 +0000 | [diff] [blame] | 1085 | } |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 1086 | if (Subtarget->is64Bit() && Size >= 8) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1087 | return MVT::i64; |
| 1088 | return MVT::i32; |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 1089 | } |
| 1090 | |
Chris Lattner | 5e1df8d | 2010-01-25 23:38:14 +0000 | [diff] [blame] | 1091 | /// getJumpTableEncoding - Return the entry encoding for a jump table in the |
| 1092 | /// current function. The returned value is a member of the |
| 1093 | /// MachineJumpTableInfo::JTEntryKind enum. |
| 1094 | unsigned X86TargetLowering::getJumpTableEncoding() const { |
| 1095 | // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF |
| 1096 | // symbol. |
| 1097 | if (getTargetMachine().getRelocationModel() == Reloc::PIC_ && |
| 1098 | Subtarget->isPICStyleGOT()) |
Chris Lattner | c64daab | 2010-01-26 05:02:42 +0000 | [diff] [blame] | 1099 | return MachineJumpTableInfo::EK_Custom32; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 1100 | |
Chris Lattner | 5e1df8d | 2010-01-25 23:38:14 +0000 | [diff] [blame] | 1101 | // Otherwise, use the normal jump table encoding heuristics. |
| 1102 | return TargetLowering::getJumpTableEncoding(); |
| 1103 | } |
| 1104 | |
Chris Lattner | c64daab | 2010-01-26 05:02:42 +0000 | [diff] [blame] | 1105 | const MCExpr * |
| 1106 | X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI, |
| 1107 | const MachineBasicBlock *MBB, |
| 1108 | unsigned uid,MCContext &Ctx) const{ |
| 1109 | assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ && |
| 1110 | Subtarget->isPICStyleGOT()); |
| 1111 | // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF |
| 1112 | // entries. |
Daniel Dunbar | 4e815f8 | 2010-03-15 23:51:06 +0000 | [diff] [blame] | 1113 | return MCSymbolRefExpr::Create(MBB->getSymbol(), |
| 1114 | MCSymbolRefExpr::VK_GOTOFF, Ctx); |
Chris Lattner | c64daab | 2010-01-26 05:02:42 +0000 | [diff] [blame] | 1115 | } |
| 1116 | |
Evan Cheng | cc41586 | 2007-11-09 01:32:10 +0000 | [diff] [blame] | 1117 | /// getPICJumpTableRelocaBase - Returns relocation base for the given PIC |
| 1118 | /// jumptable. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1119 | SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table, |
Chris Lattner | 589c6f6 | 2010-01-26 06:28:43 +0000 | [diff] [blame] | 1120 | SelectionDAG &DAG) const { |
Chris Lattner | e4df756 | 2009-07-09 03:15:51 +0000 | [diff] [blame] | 1121 | if (!Subtarget->is64Bit()) |
Dale Johannesen | b300d2a | 2009-02-07 00:55:49 +0000 | [diff] [blame] | 1122 | // This doesn't have DebugLoc associated with it, but is not really the |
| 1123 | // same as a Register. |
Chris Lattner | c7f3ace | 2010-04-02 20:16:16 +0000 | [diff] [blame] | 1124 | return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy()); |
Evan Cheng | cc41586 | 2007-11-09 01:32:10 +0000 | [diff] [blame] | 1125 | return Table; |
| 1126 | } |
| 1127 | |
Chris Lattner | 589c6f6 | 2010-01-26 06:28:43 +0000 | [diff] [blame] | 1128 | /// getPICJumpTableRelocBaseExpr - This returns the relocation base for the |
| 1129 | /// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an |
| 1130 | /// MCExpr. |
| 1131 | const MCExpr *X86TargetLowering:: |
| 1132 | getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI, |
| 1133 | MCContext &Ctx) const { |
| 1134 | // X86-64 uses RIP relative addressing based on the jump table label. |
| 1135 | if (Subtarget->isPICStyleRIPRel()) |
| 1136 | return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx); |
| 1137 | |
| 1138 | // Otherwise, the reference is relative to the PIC base. |
Chris Lattner | 142b531 | 2010-11-14 22:48:15 +0000 | [diff] [blame] | 1139 | return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx); |
Chris Lattner | 589c6f6 | 2010-01-26 06:28:43 +0000 | [diff] [blame] | 1140 | } |
| 1141 | |
Bill Wendling | b4202b8 | 2009-07-01 18:50:55 +0000 | [diff] [blame] | 1142 | /// getFunctionAlignment - Return the Log2 alignment of this function. |
Bill Wendling | 20c568f | 2009-06-30 22:38:32 +0000 | [diff] [blame] | 1143 | unsigned X86TargetLowering::getFunctionAlignment(const Function *F) const { |
Dan Gohman | 25103a2 | 2009-08-18 00:20:06 +0000 | [diff] [blame] | 1144 | return F->hasFnAttr(Attribute::OptimizeForSize) ? 0 : 4; |
Bill Wendling | 20c568f | 2009-06-30 22:38:32 +0000 | [diff] [blame] | 1145 | } |
| 1146 | |
Evan Cheng | dee8101 | 2010-07-26 21:50:05 +0000 | [diff] [blame] | 1147 | std::pair<const TargetRegisterClass*, uint8_t> |
| 1148 | X86TargetLowering::findRepresentativeClass(EVT VT) const{ |
| 1149 | const TargetRegisterClass *RRC = 0; |
| 1150 | uint8_t Cost = 1; |
| 1151 | switch (VT.getSimpleVT().SimpleTy) { |
| 1152 | default: |
| 1153 | return TargetLowering::findRepresentativeClass(VT); |
| 1154 | case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64: |
| 1155 | RRC = (Subtarget->is64Bit() |
| 1156 | ? X86::GR64RegisterClass : X86::GR32RegisterClass); |
| 1157 | break; |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 1158 | case MVT::x86mmx: |
Evan Cheng | dee8101 | 2010-07-26 21:50:05 +0000 | [diff] [blame] | 1159 | RRC = X86::VR64RegisterClass; |
| 1160 | break; |
| 1161 | case MVT::f32: case MVT::f64: |
| 1162 | case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64: |
| 1163 | case MVT::v4f32: case MVT::v2f64: |
| 1164 | case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32: |
| 1165 | case MVT::v4f64: |
| 1166 | RRC = X86::VR128RegisterClass; |
| 1167 | break; |
| 1168 | } |
| 1169 | return std::make_pair(RRC, Cost); |
| 1170 | } |
| 1171 | |
Evan Cheng | 70017e4 | 2010-07-24 00:39:05 +0000 | [diff] [blame] | 1172 | unsigned |
| 1173 | X86TargetLowering::getRegPressureLimit(const TargetRegisterClass *RC, |
| 1174 | MachineFunction &MF) const { |
| 1175 | unsigned FPDiff = RegInfo->hasFP(MF) ? 1 : 0; |
| 1176 | switch (RC->getID()) { |
| 1177 | default: |
| 1178 | return 0; |
| 1179 | case X86::GR32RegClassID: |
| 1180 | return 4 - FPDiff; |
| 1181 | case X86::GR64RegClassID: |
| 1182 | return 8 - FPDiff; |
| 1183 | case X86::VR128RegClassID: |
| 1184 | return Subtarget->is64Bit() ? 10 : 4; |
| 1185 | case X86::VR64RegClassID: |
| 1186 | return 4; |
| 1187 | } |
| 1188 | } |
| 1189 | |
Eric Christopher | f7a0c7b | 2010-07-06 05:18:56 +0000 | [diff] [blame] | 1190 | bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace, |
| 1191 | unsigned &Offset) const { |
| 1192 | if (!Subtarget->isTargetLinux()) |
| 1193 | return false; |
| 1194 | |
| 1195 | if (Subtarget->is64Bit()) { |
| 1196 | // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs: |
| 1197 | Offset = 0x28; |
| 1198 | if (getTargetMachine().getCodeModel() == CodeModel::Kernel) |
| 1199 | AddressSpace = 256; |
| 1200 | else |
| 1201 | AddressSpace = 257; |
| 1202 | } else { |
| 1203 | // %gs:0x14 on i386 |
| 1204 | Offset = 0x14; |
| 1205 | AddressSpace = 256; |
| 1206 | } |
| 1207 | return true; |
| 1208 | } |
| 1209 | |
| 1210 | |
Chris Lattner | 2b02a44 | 2007-02-25 08:29:00 +0000 | [diff] [blame] | 1211 | //===----------------------------------------------------------------------===// |
| 1212 | // Return Value Calling Convention Implementation |
| 1213 | //===----------------------------------------------------------------------===// |
| 1214 | |
Chris Lattner | 59ed56b | 2007-02-28 04:55:35 +0000 | [diff] [blame] | 1215 | #include "X86GenCallingConv.inc" |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 1216 | |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 1217 | bool |
Kenneth Uildriks | b4997ae | 2009-11-07 02:11:54 +0000 | [diff] [blame] | 1218 | X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv, bool isVarArg, |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1219 | const SmallVectorImpl<ISD::OutputArg> &Outs, |
Dan Gohman | c9af33c | 2010-07-06 22:19:37 +0000 | [diff] [blame] | 1220 | LLVMContext &Context) const { |
Kenneth Uildriks | b4997ae | 2009-11-07 02:11:54 +0000 | [diff] [blame] | 1221 | SmallVector<CCValAssign, 16> RVLocs; |
| 1222 | CCState CCInfo(CallConv, isVarArg, getTargetMachine(), |
Dan Gohman | c9af33c | 2010-07-06 22:19:37 +0000 | [diff] [blame] | 1223 | RVLocs, Context); |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1224 | return CCInfo.CheckReturn(Outs, RetCC_X86); |
Kenneth Uildriks | b4997ae | 2009-11-07 02:11:54 +0000 | [diff] [blame] | 1225 | } |
| 1226 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1227 | SDValue |
| 1228 | X86TargetLowering::LowerReturn(SDValue Chain, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 1229 | CallingConv::ID CallConv, bool isVarArg, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1230 | const SmallVectorImpl<ISD::OutputArg> &Outs, |
Dan Gohman | c940365 | 2010-07-07 15:54:55 +0000 | [diff] [blame] | 1231 | const SmallVectorImpl<SDValue> &OutVals, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 1232 | DebugLoc dl, SelectionDAG &DAG) const { |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 1233 | MachineFunction &MF = DAG.getMachineFunction(); |
| 1234 | X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1235 | |
Chris Lattner | 9774c91 | 2007-02-27 05:28:59 +0000 | [diff] [blame] | 1236 | SmallVector<CCValAssign, 16> RVLocs; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1237 | CCState CCInfo(CallConv, isVarArg, getTargetMachine(), |
| 1238 | RVLocs, *DAG.getContext()); |
| 1239 | CCInfo.AnalyzeReturn(Outs, RetCC_X86); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1240 | |
Evan Cheng | dcea163 | 2010-02-04 02:40:39 +0000 | [diff] [blame] | 1241 | // Add the regs to the liveout set for the function. |
| 1242 | MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo(); |
| 1243 | for (unsigned i = 0; i != RVLocs.size(); ++i) |
| 1244 | if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg())) |
| 1245 | MRI.addLiveOut(RVLocs[i].getLocReg()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1246 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1247 | SDValue Flag; |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 1248 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1249 | SmallVector<SDValue, 6> RetOps; |
Chris Lattner | 447ff68 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1250 | RetOps.push_back(Chain); // Operand #0 = Chain (updated below) |
| 1251 | // Operand #1 = Bytes To Pop |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 1252 | RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(), |
| 1253 | MVT::i16)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1254 | |
Chris Lattner | 2a9bdd7 | 2007-02-25 09:12:39 +0000 | [diff] [blame] | 1255 | // Copy the result values into the output registers. |
Chris Lattner | 8e6da15 | 2008-03-10 21:08:41 +0000 | [diff] [blame] | 1256 | for (unsigned i = 0; i != RVLocs.size(); ++i) { |
| 1257 | CCValAssign &VA = RVLocs[i]; |
| 1258 | assert(VA.isRegLoc() && "Can only return in registers!"); |
Dan Gohman | c940365 | 2010-07-07 15:54:55 +0000 | [diff] [blame] | 1259 | SDValue ValToCopy = OutVals[i]; |
Dale Johannesen | c76d23f | 2010-07-23 00:30:35 +0000 | [diff] [blame] | 1260 | EVT ValVT = ValToCopy.getValueType(); |
| 1261 | |
Dale Johannesen | c451051 | 2010-09-24 19:05:48 +0000 | [diff] [blame] | 1262 | // If this is x86-64, and we disabled SSE, we can't return FP values, |
| 1263 | // or SSE or MMX vectors. |
| 1264 | if ((ValVT == MVT::f32 || ValVT == MVT::f64 || |
| 1265 | VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) && |
| 1266 | (Subtarget->is64Bit() && !Subtarget->hasSSE1())) { |
Dale Johannesen | c76d23f | 2010-07-23 00:30:35 +0000 | [diff] [blame] | 1267 | report_fatal_error("SSE register return with SSE disabled"); |
| 1268 | } |
| 1269 | // Likewise we can't return F64 values with SSE1 only. gcc does so, but |
| 1270 | // llvm-gcc has never done it right and no one has noticed, so this |
| 1271 | // should be OK for now. |
| 1272 | if (ValVT == MVT::f64 && |
Chris Lattner | 8306968 | 2010-08-26 05:51:22 +0000 | [diff] [blame] | 1273 | (Subtarget->is64Bit() && !Subtarget->hasSSE2())) |
Dale Johannesen | c76d23f | 2010-07-23 00:30:35 +0000 | [diff] [blame] | 1274 | report_fatal_error("SSE2 register return with SSE2 disabled"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1275 | |
Chris Lattner | 447ff68 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1276 | // Returns in ST0/ST1 are handled specially: these are pushed as operands to |
| 1277 | // the RET instruction and handled by the FP Stackifier. |
Dan Gohman | 37eed79 | 2009-02-04 17:28:58 +0000 | [diff] [blame] | 1278 | if (VA.getLocReg() == X86::ST0 || |
| 1279 | VA.getLocReg() == X86::ST1) { |
Chris Lattner | 447ff68 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1280 | // If this is a copy from an xmm register to ST(0), use an FPExtend to |
| 1281 | // change the value to the FP stack register class. |
Dan Gohman | 37eed79 | 2009-02-04 17:28:58 +0000 | [diff] [blame] | 1282 | if (isScalarFPTypeInSSEReg(VA.getValVT())) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1283 | ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy); |
Chris Lattner | 447ff68 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1284 | RetOps.push_back(ValToCopy); |
| 1285 | // Don't emit a copytoreg. |
| 1286 | continue; |
| 1287 | } |
Dale Johannesen | a68f901 | 2008-06-24 22:01:44 +0000 | [diff] [blame] | 1288 | |
Evan Cheng | 242b38b | 2009-02-23 09:03:22 +0000 | [diff] [blame] | 1289 | // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64 |
| 1290 | // which is returned in RAX / RDX. |
Evan Cheng | 6140a8b | 2009-02-22 08:05:12 +0000 | [diff] [blame] | 1291 | if (Subtarget->is64Bit()) { |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 1292 | if (ValVT == MVT::x86mmx) { |
Chris Lattner | 97a2a56 | 2010-08-26 05:24:29 +0000 | [diff] [blame] | 1293 | if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) { |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 1294 | ValToCopy = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, ValToCopy); |
Eric Christopher | 90eb402 | 2010-07-22 00:26:08 +0000 | [diff] [blame] | 1295 | ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, |
| 1296 | ValToCopy); |
Chris Lattner | 97a2a56 | 2010-08-26 05:24:29 +0000 | [diff] [blame] | 1297 | // If we don't have SSE2 available, convert to v4f32 so the generated |
| 1298 | // register is legal. |
| 1299 | if (!Subtarget->hasSSE2()) |
| 1300 | ValToCopy = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32,ValToCopy); |
| 1301 | } |
Evan Cheng | 242b38b | 2009-02-23 09:03:22 +0000 | [diff] [blame] | 1302 | } |
Evan Cheng | 6140a8b | 2009-02-22 08:05:12 +0000 | [diff] [blame] | 1303 | } |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 1304 | |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 1305 | Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag); |
Chris Lattner | 2a9bdd7 | 2007-02-25 09:12:39 +0000 | [diff] [blame] | 1306 | Flag = Chain.getValue(1); |
| 1307 | } |
Dan Gohman | 61a9213 | 2008-04-21 23:59:07 +0000 | [diff] [blame] | 1308 | |
| 1309 | // The x86-64 ABI for returning structs by value requires that we copy |
| 1310 | // the sret argument into %rax for the return. We saved the argument into |
| 1311 | // a virtual register in the entry block, so now we copy the value out |
| 1312 | // and into %rax. |
| 1313 | if (Subtarget->is64Bit() && |
| 1314 | DAG.getMachineFunction().getFunction()->hasStructRetAttr()) { |
| 1315 | MachineFunction &MF = DAG.getMachineFunction(); |
| 1316 | X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>(); |
| 1317 | unsigned Reg = FuncInfo->getSRetReturnReg(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 1318 | assert(Reg && |
Zhongxing Xu | c2798a1 | 2010-05-26 08:10:02 +0000 | [diff] [blame] | 1319 | "SRetReturnReg should have been set in LowerFormalArguments()."); |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 1320 | SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy()); |
Dan Gohman | 61a9213 | 2008-04-21 23:59:07 +0000 | [diff] [blame] | 1321 | |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 1322 | Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag); |
Dan Gohman | 61a9213 | 2008-04-21 23:59:07 +0000 | [diff] [blame] | 1323 | Flag = Chain.getValue(1); |
Dan Gohman | 0032681 | 2009-10-12 16:36:12 +0000 | [diff] [blame] | 1324 | |
| 1325 | // RAX now acts like a return value. |
Evan Cheng | dcea163 | 2010-02-04 02:40:39 +0000 | [diff] [blame] | 1326 | MRI.addLiveOut(X86::RAX); |
Dan Gohman | 61a9213 | 2008-04-21 23:59:07 +0000 | [diff] [blame] | 1327 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1328 | |
Chris Lattner | 447ff68 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1329 | RetOps[0] = Chain; // Update chain. |
| 1330 | |
| 1331 | // Add the flag if we have it. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1332 | if (Flag.getNode()) |
Chris Lattner | 447ff68 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1333 | RetOps.push_back(Flag); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1334 | |
| 1335 | return DAG.getNode(X86ISD::RET_FLAG, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1336 | MVT::Other, &RetOps[0], RetOps.size()); |
Chris Lattner | 2a9bdd7 | 2007-02-25 09:12:39 +0000 | [diff] [blame] | 1337 | } |
| 1338 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1339 | /// LowerCallResult - Lower the result values of a call into the |
| 1340 | /// appropriate copies out of appropriate physical registers. |
| 1341 | /// |
| 1342 | SDValue |
| 1343 | X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 1344 | CallingConv::ID CallConv, bool isVarArg, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1345 | const SmallVectorImpl<ISD::InputArg> &Ins, |
| 1346 | DebugLoc dl, SelectionDAG &DAG, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 1347 | SmallVectorImpl<SDValue> &InVals) const { |
Chris Lattner | 2a9bdd7 | 2007-02-25 09:12:39 +0000 | [diff] [blame] | 1348 | |
Chris Lattner | e32bbf6 | 2007-02-28 07:09:55 +0000 | [diff] [blame] | 1349 | // Assign locations to each value returned by this call. |
Chris Lattner | 9774c91 | 2007-02-27 05:28:59 +0000 | [diff] [blame] | 1350 | SmallVector<CCValAssign, 16> RVLocs; |
Torok Edwin | 3f142c3 | 2009-02-01 18:15:56 +0000 | [diff] [blame] | 1351 | bool Is64Bit = Subtarget->is64Bit(); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1352 | CCState CCInfo(CallConv, isVarArg, getTargetMachine(), |
Owen Anderson | e922c02 | 2009-07-22 00:24:57 +0000 | [diff] [blame] | 1353 | RVLocs, *DAG.getContext()); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1354 | CCInfo.AnalyzeCallResult(Ins, RetCC_X86); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1355 | |
Chris Lattner | 3085e15 | 2007-02-25 08:59:22 +0000 | [diff] [blame] | 1356 | // Copy all of the result registers out of their specified physreg. |
Chris Lattner | 8e6da15 | 2008-03-10 21:08:41 +0000 | [diff] [blame] | 1357 | for (unsigned i = 0; i != RVLocs.size(); ++i) { |
Dan Gohman | 37eed79 | 2009-02-04 17:28:58 +0000 | [diff] [blame] | 1358 | CCValAssign &VA = RVLocs[i]; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1359 | EVT CopyVT = VA.getValVT(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1360 | |
Torok Edwin | 3f142c3 | 2009-02-01 18:15:56 +0000 | [diff] [blame] | 1361 | // If this is x86-64, and we disabled SSE, we can't return FP values |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1362 | if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) && |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1363 | ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) { |
Chris Lattner | 75361b6 | 2010-04-07 22:58:41 +0000 | [diff] [blame] | 1364 | report_fatal_error("SSE register return with SSE disabled"); |
Torok Edwin | 3f142c3 | 2009-02-01 18:15:56 +0000 | [diff] [blame] | 1365 | } |
| 1366 | |
Evan Cheng | 79fb3b4 | 2009-02-20 20:43:02 +0000 | [diff] [blame] | 1367 | SDValue Val; |
Jakob Stoklund Olesen | d737fca | 2010-07-10 04:04:25 +0000 | [diff] [blame] | 1368 | |
| 1369 | // If this is a call to a function that returns an fp value on the floating |
| 1370 | // point stack, we must guarantee the the value is popped from the stack, so |
| 1371 | // a CopyFromReg is not good enough - the copy instruction may be eliminated |
| 1372 | // if the return value is not used. We use the FpGET_ST0 instructions |
| 1373 | // instead. |
| 1374 | if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) { |
| 1375 | // If we prefer to use the value in xmm registers, copy it out as f80 and |
| 1376 | // use a truncate to move it from fp stack reg to xmm reg. |
| 1377 | if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80; |
| 1378 | bool isST0 = VA.getLocReg() == X86::ST0; |
| 1379 | unsigned Opc = 0; |
| 1380 | if (CopyVT == MVT::f32) Opc = isST0 ? X86::FpGET_ST0_32:X86::FpGET_ST1_32; |
| 1381 | if (CopyVT == MVT::f64) Opc = isST0 ? X86::FpGET_ST0_64:X86::FpGET_ST1_64; |
| 1382 | if (CopyVT == MVT::f80) Opc = isST0 ? X86::FpGET_ST0_80:X86::FpGET_ST1_80; |
| 1383 | SDValue Ops[] = { Chain, InFlag }; |
| 1384 | Chain = SDValue(DAG.getMachineNode(Opc, dl, CopyVT, MVT::Other, MVT::Flag, |
| 1385 | Ops, 2), 1); |
| 1386 | Val = Chain.getValue(0); |
| 1387 | |
| 1388 | // Round the f80 to the right size, which also moves it to the appropriate |
| 1389 | // xmm register. |
| 1390 | if (CopyVT != VA.getValVT()) |
| 1391 | Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val, |
| 1392 | // This truncation won't change the value. |
| 1393 | DAG.getIntPtrConstant(1)); |
| 1394 | } else if (Is64Bit && CopyVT.isVector() && CopyVT.getSizeInBits() == 64) { |
Evan Cheng | 242b38b | 2009-02-23 09:03:22 +0000 | [diff] [blame] | 1395 | // For x86-64, MMX values are returned in XMM0 / XMM1 except for v1i64. |
| 1396 | if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) { |
| 1397 | Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1398 | MVT::v2i64, InFlag).getValue(1); |
Evan Cheng | 242b38b | 2009-02-23 09:03:22 +0000 | [diff] [blame] | 1399 | Val = Chain.getValue(0); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1400 | Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64, |
| 1401 | Val, DAG.getConstant(0, MVT::i64)); |
Evan Cheng | 242b38b | 2009-02-23 09:03:22 +0000 | [diff] [blame] | 1402 | } else { |
| 1403 | Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1404 | MVT::i64, InFlag).getValue(1); |
Evan Cheng | 242b38b | 2009-02-23 09:03:22 +0000 | [diff] [blame] | 1405 | Val = Chain.getValue(0); |
| 1406 | } |
Evan Cheng | 79fb3b4 | 2009-02-20 20:43:02 +0000 | [diff] [blame] | 1407 | Val = DAG.getNode(ISD::BIT_CONVERT, dl, CopyVT, Val); |
| 1408 | } else { |
| 1409 | Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), |
| 1410 | CopyVT, InFlag).getValue(1); |
| 1411 | Val = Chain.getValue(0); |
| 1412 | } |
Chris Lattner | 8e6da15 | 2008-03-10 21:08:41 +0000 | [diff] [blame] | 1413 | InFlag = Chain.getValue(2); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1414 | InVals.push_back(Val); |
Chris Lattner | 3085e15 | 2007-02-25 08:59:22 +0000 | [diff] [blame] | 1415 | } |
Duncan Sands | 4bdcb61 | 2008-07-02 17:40:58 +0000 | [diff] [blame] | 1416 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1417 | return Chain; |
Chris Lattner | 2b02a44 | 2007-02-25 08:29:00 +0000 | [diff] [blame] | 1418 | } |
| 1419 | |
| 1420 | |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 1421 | //===----------------------------------------------------------------------===// |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 1422 | // C & StdCall & Fast Calling Convention implementation |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 1423 | //===----------------------------------------------------------------------===// |
Anton Korobeynikov | b10308e | 2007-01-28 13:31:35 +0000 | [diff] [blame] | 1424 | // StdCall calling convention seems to be standard for many Windows' API |
| 1425 | // routines and around. It differs from C calling convention just a little: |
| 1426 | // callee should clean up the stack, not caller. Symbols should be also |
| 1427 | // decorated in some fancy way :) It doesn't support any vector arguments. |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 1428 | // For info on fast calling convention see Fast Calling Convention (tail call) |
| 1429 | // implementation LowerX86_32FastCCCallTo. |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 1430 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1431 | /// CallIsStructReturn - Determines whether a call uses struct return |
Arnold Schwaighofer | 16a3e52 | 2008-02-26 17:50:59 +0000 | [diff] [blame] | 1432 | /// semantics. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1433 | static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) { |
| 1434 | if (Outs.empty()) |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1435 | return false; |
Duncan Sands | 276dcbd | 2008-03-21 09:14:45 +0000 | [diff] [blame] | 1436 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1437 | return Outs[0].Flags.isSRet(); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1438 | } |
| 1439 | |
Dan Gohman | 7e77b0f | 2009-08-01 19:14:37 +0000 | [diff] [blame] | 1440 | /// ArgsAreStructReturn - Determines whether a function uses struct |
Arnold Schwaighofer | 16a3e52 | 2008-02-26 17:50:59 +0000 | [diff] [blame] | 1441 | /// return semantics. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1442 | static bool |
| 1443 | ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) { |
| 1444 | if (Ins.empty()) |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1445 | return false; |
Duncan Sands | 276dcbd | 2008-03-21 09:14:45 +0000 | [diff] [blame] | 1446 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1447 | return Ins[0].Flags.isSRet(); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1448 | } |
| 1449 | |
Arnold Schwaighofer | 16a3e52 | 2008-02-26 17:50:59 +0000 | [diff] [blame] | 1450 | /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified |
| 1451 | /// by "Src" to address "Dst" with size and alignment information specified by |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 1452 | /// the specific parameter attribute. The copy will be passed as a byval |
| 1453 | /// function parameter. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1454 | static SDValue |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1455 | CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain, |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 1456 | ISD::ArgFlagsTy Flags, SelectionDAG &DAG, |
| 1457 | DebugLoc dl) { |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 1458 | SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 1459 | |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 1460 | return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(), |
Mon P Wang | 20adc9d | 2010-04-04 03:10:48 +0000 | [diff] [blame] | 1461 | /*isVolatile*/false, /*AlwaysInline=*/true, |
Chris Lattner | fc448ff | 2010-09-21 18:51:21 +0000 | [diff] [blame] | 1462 | MachinePointerInfo(), MachinePointerInfo()); |
Arnold Schwaighofer | c8ab8cd | 2008-01-11 16:49:42 +0000 | [diff] [blame] | 1463 | } |
| 1464 | |
Chris Lattner | 2968943 | 2010-03-11 00:22:57 +0000 | [diff] [blame] | 1465 | /// IsTailCallConvention - Return true if the calling convention is one that |
| 1466 | /// supports tail call optimization. |
| 1467 | static bool IsTailCallConvention(CallingConv::ID CC) { |
| 1468 | return (CC == CallingConv::Fast || CC == CallingConv::GHC); |
| 1469 | } |
| 1470 | |
Evan Cheng | 0c439eb | 2010-01-27 00:07:07 +0000 | [diff] [blame] | 1471 | /// FuncIsMadeTailCallSafe - Return true if the function is being made into |
| 1472 | /// a tailcall target by changing its ABI. |
| 1473 | static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) { |
Chris Lattner | 2968943 | 2010-03-11 00:22:57 +0000 | [diff] [blame] | 1474 | return GuaranteedTailCallOpt && IsTailCallConvention(CC); |
Evan Cheng | 0c439eb | 2010-01-27 00:07:07 +0000 | [diff] [blame] | 1475 | } |
| 1476 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1477 | SDValue |
| 1478 | X86TargetLowering::LowerMemArgument(SDValue Chain, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 1479 | CallingConv::ID CallConv, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1480 | const SmallVectorImpl<ISD::InputArg> &Ins, |
| 1481 | DebugLoc dl, SelectionDAG &DAG, |
| 1482 | const CCValAssign &VA, |
| 1483 | MachineFrameInfo *MFI, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 1484 | unsigned i) const { |
Rafael Espindola | 7effac5 | 2007-09-14 15:48:13 +0000 | [diff] [blame] | 1485 | // Create the nodes corresponding to a load from this parameter slot. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1486 | ISD::ArgFlagsTy Flags = Ins[i].Flags; |
Evan Cheng | 0c439eb | 2010-01-27 00:07:07 +0000 | [diff] [blame] | 1487 | bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv); |
Duncan Sands | 276dcbd | 2008-03-21 09:14:45 +0000 | [diff] [blame] | 1488 | bool isImmutable = !AlwaysUseMutable && !Flags.isByVal(); |
Anton Korobeynikov | 2247276 | 2009-08-14 18:19:10 +0000 | [diff] [blame] | 1489 | EVT ValVT; |
| 1490 | |
| 1491 | // If value is passed by pointer we have address passed instead of the value |
| 1492 | // itself. |
| 1493 | if (VA.getLocInfo() == CCValAssign::Indirect) |
| 1494 | ValVT = VA.getLocVT(); |
| 1495 | else |
| 1496 | ValVT = VA.getValVT(); |
Evan Cheng | e70bb59 | 2008-01-10 02:24:25 +0000 | [diff] [blame] | 1497 | |
Arnold Schwaighofer | 865c681 | 2008-02-26 09:19:59 +0000 | [diff] [blame] | 1498 | // FIXME: For now, all byval parameter objects are marked mutable. This can be |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1499 | // changed with more analysis. |
Arnold Schwaighofer | 865c681 | 2008-02-26 09:19:59 +0000 | [diff] [blame] | 1500 | // In case of tail call optimization mark all arguments mutable. Since they |
| 1501 | // could be overwritten by lowering of arguments in case of a tail call. |
Evan Cheng | 90567c3 | 2010-02-02 23:58:13 +0000 | [diff] [blame] | 1502 | if (Flags.isByVal()) { |
| 1503 | int FI = MFI->CreateFixedObject(Flags.getByValSize(), |
Evan Cheng | ed2ae13 | 2010-07-03 00:40:23 +0000 | [diff] [blame] | 1504 | VA.getLocMemOffset(), isImmutable); |
Evan Cheng | 90567c3 | 2010-02-02 23:58:13 +0000 | [diff] [blame] | 1505 | return DAG.getFrameIndex(FI, getPointerTy()); |
| 1506 | } else { |
| 1507 | int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8, |
Evan Cheng | ed2ae13 | 2010-07-03 00:40:23 +0000 | [diff] [blame] | 1508 | VA.getLocMemOffset(), isImmutable); |
Evan Cheng | 90567c3 | 2010-02-02 23:58:13 +0000 | [diff] [blame] | 1509 | SDValue FIN = DAG.getFrameIndex(FI, getPointerTy()); |
| 1510 | return DAG.getLoad(ValVT, dl, Chain, FIN, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 1511 | MachinePointerInfo::getFixedStack(FI), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 1512 | false, false, 0); |
Evan Cheng | 90567c3 | 2010-02-02 23:58:13 +0000 | [diff] [blame] | 1513 | } |
Rafael Espindola | 7effac5 | 2007-09-14 15:48:13 +0000 | [diff] [blame] | 1514 | } |
| 1515 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1516 | SDValue |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1517 | X86TargetLowering::LowerFormalArguments(SDValue Chain, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 1518 | CallingConv::ID CallConv, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1519 | bool isVarArg, |
| 1520 | const SmallVectorImpl<ISD::InputArg> &Ins, |
| 1521 | DebugLoc dl, |
| 1522 | SelectionDAG &DAG, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 1523 | SmallVectorImpl<SDValue> &InVals) |
| 1524 | const { |
Evan Cheng | 1bc7804 | 2006-04-26 01:20:17 +0000 | [diff] [blame] | 1525 | MachineFunction &MF = DAG.getMachineFunction(); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1526 | X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1527 | |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1528 | const Function* Fn = MF.getFunction(); |
| 1529 | if (Fn->hasExternalLinkage() && |
| 1530 | Subtarget->isTargetCygMing() && |
| 1531 | Fn->getName() == "main") |
| 1532 | FuncInfo->setForceFramePointer(true); |
| 1533 | |
Evan Cheng | 1bc7804 | 2006-04-26 01:20:17 +0000 | [diff] [blame] | 1534 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1535 | bool Is64Bit = Subtarget->is64Bit(); |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1536 | bool IsWin64 = Subtarget->isTargetWin64(); |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 1537 | |
Chris Lattner | 2968943 | 2010-03-11 00:22:57 +0000 | [diff] [blame] | 1538 | assert(!(isVarArg && IsTailCallConvention(CallConv)) && |
| 1539 | "Var args not supported with calling convention fastcc or ghc"); |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 1540 | |
Chris Lattner | 638402b | 2007-02-28 07:00:42 +0000 | [diff] [blame] | 1541 | // Assign locations to all of the incoming arguments. |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1542 | SmallVector<CCValAssign, 16> ArgLocs; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1543 | CCState CCInfo(CallConv, isVarArg, getTargetMachine(), |
| 1544 | ArgLocs, *DAG.getContext()); |
Duncan Sands | 4590766 | 2010-10-31 13:21:44 +0000 | [diff] [blame] | 1545 | CCInfo.AnalyzeFormalArguments(Ins, CC_X86); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1546 | |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1547 | unsigned LastVal = ~0U; |
Anton Korobeynikov | 4ab1553 | 2009-08-03 08:13:56 +0000 | [diff] [blame] | 1548 | SDValue ArgValue; |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1549 | for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { |
| 1550 | CCValAssign &VA = ArgLocs[i]; |
| 1551 | // TODO: If an arg is passed in two places (e.g. reg and stack), skip later |
| 1552 | // places. |
| 1553 | assert(VA.getValNo() != LastVal && |
| 1554 | "Don't support value assigned to multiple locs yet"); |
| 1555 | LastVal = VA.getValNo(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1556 | |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1557 | if (VA.isRegLoc()) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1558 | EVT RegVT = VA.getLocVT(); |
Devang Patel | 8a84e44 | 2009-01-05 17:31:22 +0000 | [diff] [blame] | 1559 | TargetRegisterClass *RC = NULL; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1560 | if (RegVT == MVT::i32) |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1561 | RC = X86::GR32RegisterClass; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1562 | else if (Is64Bit && RegVT == MVT::i64) |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1563 | RC = X86::GR64RegisterClass; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1564 | else if (RegVT == MVT::f32) |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1565 | RC = X86::FR32RegisterClass; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1566 | else if (RegVT == MVT::f64) |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1567 | RC = X86::FR64RegisterClass; |
Bruno Cardoso Lopes | ac09835 | 2010-08-05 23:35:51 +0000 | [diff] [blame] | 1568 | else if (RegVT.isVector() && RegVT.getSizeInBits() == 256) |
| 1569 | RC = X86::VR256RegisterClass; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1570 | else if (RegVT.isVector() && RegVT.getSizeInBits() == 128) |
Evan Cheng | ee472b1 | 2008-04-25 07:56:45 +0000 | [diff] [blame] | 1571 | RC = X86::VR128RegisterClass; |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 1572 | else if (RegVT == MVT::x86mmx) |
Anton Korobeynikov | 80cb8aa | 2009-08-03 08:13:24 +0000 | [diff] [blame] | 1573 | RC = X86::VR64RegisterClass; |
| 1574 | else |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1575 | llvm_unreachable("Unknown argument type!"); |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 1576 | |
Dan Gohman | 7e77b0f | 2009-08-01 19:14:37 +0000 | [diff] [blame] | 1577 | unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1578 | ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1579 | |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1580 | // If this is an 8 or 16-bit value, it is really passed promoted to 32 |
| 1581 | // bits. Insert an assert[sz]ext to capture this, then truncate to the |
| 1582 | // right size. |
| 1583 | if (VA.getLocInfo() == CCValAssign::SExt) |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 1584 | ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue, |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1585 | DAG.getValueType(VA.getValVT())); |
| 1586 | else if (VA.getLocInfo() == CCValAssign::ZExt) |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 1587 | ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue, |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1588 | DAG.getValueType(VA.getValVT())); |
Anton Korobeynikov | 80cb8aa | 2009-08-03 08:13:24 +0000 | [diff] [blame] | 1589 | else if (VA.getLocInfo() == CCValAssign::BCvt) |
Anton Korobeynikov | 6dde14b | 2009-08-03 08:14:14 +0000 | [diff] [blame] | 1590 | ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getValVT(), ArgValue); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1591 | |
Anton Korobeynikov | 4ab1553 | 2009-08-03 08:13:56 +0000 | [diff] [blame] | 1592 | if (VA.isExtInLoc()) { |
Anton Korobeynikov | 80cb8aa | 2009-08-03 08:13:24 +0000 | [diff] [blame] | 1593 | // Handle MMX values passed in XMM regs. |
| 1594 | if (RegVT.isVector()) { |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 1595 | ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), |
| 1596 | ArgValue); |
Anton Korobeynikov | 80cb8aa | 2009-08-03 08:13:24 +0000 | [diff] [blame] | 1597 | } else |
| 1598 | ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue); |
Evan Cheng | 44c0fd1 | 2008-04-25 20:13:28 +0000 | [diff] [blame] | 1599 | } |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1600 | } else { |
| 1601 | assert(VA.isMemLoc()); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1602 | ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i); |
Evan Cheng | 1bc7804 | 2006-04-26 01:20:17 +0000 | [diff] [blame] | 1603 | } |
Anton Korobeynikov | 4ab1553 | 2009-08-03 08:13:56 +0000 | [diff] [blame] | 1604 | |
| 1605 | // If value is passed via pointer - do a load. |
| 1606 | if (VA.getLocInfo() == CCValAssign::Indirect) |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 1607 | ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue, |
| 1608 | MachinePointerInfo(), false, false, 0); |
Anton Korobeynikov | 4ab1553 | 2009-08-03 08:13:56 +0000 | [diff] [blame] | 1609 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1610 | InVals.push_back(ArgValue); |
Evan Cheng | 1bc7804 | 2006-04-26 01:20:17 +0000 | [diff] [blame] | 1611 | } |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 1612 | |
Dan Gohman | 61a9213 | 2008-04-21 23:59:07 +0000 | [diff] [blame] | 1613 | // The x86-64 ABI for returning structs by value requires that we copy |
| 1614 | // the sret argument into %rax for the return. Save the argument into |
| 1615 | // a virtual register so that we can access it from the return points. |
Dan Gohman | 7e77b0f | 2009-08-01 19:14:37 +0000 | [diff] [blame] | 1616 | if (Is64Bit && MF.getFunction()->hasStructRetAttr()) { |
Dan Gohman | 61a9213 | 2008-04-21 23:59:07 +0000 | [diff] [blame] | 1617 | X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>(); |
| 1618 | unsigned Reg = FuncInfo->getSRetReturnReg(); |
| 1619 | if (!Reg) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1620 | Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64)); |
Dan Gohman | 61a9213 | 2008-04-21 23:59:07 +0000 | [diff] [blame] | 1621 | FuncInfo->setSRetReturnReg(Reg); |
| 1622 | } |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1623 | SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1624 | Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain); |
Dan Gohman | 61a9213 | 2008-04-21 23:59:07 +0000 | [diff] [blame] | 1625 | } |
| 1626 | |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1627 | unsigned StackSize = CCInfo.getNextStackOffset(); |
Evan Cheng | 0c439eb | 2010-01-27 00:07:07 +0000 | [diff] [blame] | 1628 | // Align stack specially for tail calls. |
| 1629 | if (FuncIsMadeTailCallSafe(CallConv)) |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 1630 | StackSize = GetAlignedArgumentStackSize(StackSize, DAG); |
Evan Cheng | 25caf63 | 2006-05-23 21:06:34 +0000 | [diff] [blame] | 1631 | |
Evan Cheng | 1bc7804 | 2006-04-26 01:20:17 +0000 | [diff] [blame] | 1632 | // If the function takes variable number of arguments, make a frame index for |
| 1633 | // the start of the first vararg value... for expansion of llvm.va_start. |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 1634 | if (isVarArg) { |
Anton Korobeynikov | e7beda1 | 2010-10-03 22:52:07 +0000 | [diff] [blame] | 1635 | if (!IsWin64 && (Is64Bit || (CallConv != CallingConv::X86_FastCall && |
| 1636 | CallConv != CallingConv::X86_ThisCall))) { |
Jakob Stoklund Olesen | b2eeed7 | 2010-07-29 17:42:27 +0000 | [diff] [blame] | 1637 | FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true)); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1638 | } |
| 1639 | if (Is64Bit) { |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1640 | unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0; |
| 1641 | |
| 1642 | // FIXME: We should really autogenerate these arrays |
| 1643 | static const unsigned GPR64ArgRegsWin64[] = { |
| 1644 | X86::RCX, X86::RDX, X86::R8, X86::R9 |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1645 | }; |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1646 | static const unsigned GPR64ArgRegs64Bit[] = { |
| 1647 | X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9 |
| 1648 | }; |
| 1649 | static const unsigned XMMArgRegs64Bit[] = { |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1650 | X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3, |
| 1651 | X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7 |
| 1652 | }; |
Anton Korobeynikov | e7beda1 | 2010-10-03 22:52:07 +0000 | [diff] [blame] | 1653 | const unsigned *GPR64ArgRegs; |
| 1654 | unsigned NumXMMRegs = 0; |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1655 | |
| 1656 | if (IsWin64) { |
Anton Korobeynikov | e7beda1 | 2010-10-03 22:52:07 +0000 | [diff] [blame] | 1657 | // The XMM registers which might contain var arg parameters are shadowed |
| 1658 | // in their paired GPR. So we only need to save the GPR to their home |
| 1659 | // slots. |
| 1660 | TotalNumIntRegs = 4; |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1661 | GPR64ArgRegs = GPR64ArgRegsWin64; |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1662 | } else { |
| 1663 | TotalNumIntRegs = 6; TotalNumXMMRegs = 8; |
| 1664 | GPR64ArgRegs = GPR64ArgRegs64Bit; |
Anton Korobeynikov | e7beda1 | 2010-10-03 22:52:07 +0000 | [diff] [blame] | 1665 | |
| 1666 | NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs); |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1667 | } |
| 1668 | unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs, |
| 1669 | TotalNumIntRegs); |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1670 | |
Devang Patel | 578efa9 | 2009-06-05 21:57:13 +0000 | [diff] [blame] | 1671 | bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat); |
Evan Cheng | c7ce29b | 2009-02-13 22:36:38 +0000 | [diff] [blame] | 1672 | assert(!(NumXMMRegs && !Subtarget->hasSSE1()) && |
Torok Edwin | 3f142c3 | 2009-02-01 18:15:56 +0000 | [diff] [blame] | 1673 | "SSE register cannot be used when SSE is disabled!"); |
Devang Patel | 578efa9 | 2009-06-05 21:57:13 +0000 | [diff] [blame] | 1674 | assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) && |
Evan Cheng | c7ce29b | 2009-02-13 22:36:38 +0000 | [diff] [blame] | 1675 | "SSE register cannot be used when SSE is disabled!"); |
Devang Patel | 578efa9 | 2009-06-05 21:57:13 +0000 | [diff] [blame] | 1676 | if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasSSE1()) |
Torok Edwin | 3f142c3 | 2009-02-01 18:15:56 +0000 | [diff] [blame] | 1677 | // Kernel mode asks for SSE to be disabled, so don't push them |
| 1678 | // on the stack. |
| 1679 | TotalNumXMMRegs = 0; |
Bill Wendling | f9abd7e | 2009-03-11 22:30:01 +0000 | [diff] [blame] | 1680 | |
Anton Korobeynikov | e7beda1 | 2010-10-03 22:52:07 +0000 | [diff] [blame] | 1681 | if (IsWin64) { |
Cameron Esfahani | ec37b00 | 2010-10-08 19:24:18 +0000 | [diff] [blame] | 1682 | const TargetFrameInfo &TFI = *getTargetMachine().getFrameInfo(); |
| 1683 | // Get to the caller-allocated home save location. Add 8 to account |
| 1684 | // for the return address. |
| 1685 | int HomeOffset = TFI.getOffsetOfLocalArea() + 8; |
Anton Korobeynikov | e7beda1 | 2010-10-03 22:52:07 +0000 | [diff] [blame] | 1686 | FuncInfo->setRegSaveFrameIndex( |
Cameron Esfahani | ec37b00 | 2010-10-08 19:24:18 +0000 | [diff] [blame] | 1687 | MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false)); |
Anton Korobeynikov | e7beda1 | 2010-10-03 22:52:07 +0000 | [diff] [blame] | 1688 | FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex()); |
| 1689 | } else { |
| 1690 | // For X86-64, if there are vararg parameters that are passed via |
| 1691 | // registers, then we must store them to their spots on the stack so they |
| 1692 | // may be loaded by deferencing the result of va_next. |
| 1693 | FuncInfo->setVarArgsGPOffset(NumIntRegs * 8); |
| 1694 | FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16); |
| 1695 | FuncInfo->setRegSaveFrameIndex( |
| 1696 | MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16, |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 1697 | false)); |
Anton Korobeynikov | e7beda1 | 2010-10-03 22:52:07 +0000 | [diff] [blame] | 1698 | } |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1699 | |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1700 | // Store the integer parameter registers. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1701 | SmallVector<SDValue, 8> MemOps; |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 1702 | SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(), |
| 1703 | getPointerTy()); |
| 1704 | unsigned Offset = FuncInfo->getVarArgsGPOffset(); |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1705 | for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) { |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 1706 | SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN, |
| 1707 | DAG.getIntPtrConstant(Offset)); |
Bob Wilson | 998e125 | 2009-04-20 18:36:57 +0000 | [diff] [blame] | 1708 | unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs], |
| 1709 | X86::GR64RegisterClass); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1710 | SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1711 | SDValue Store = |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 1712 | DAG.getStore(Val.getValue(1), dl, Val, FIN, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 1713 | MachinePointerInfo::getFixedStack( |
| 1714 | FuncInfo->getRegSaveFrameIndex(), Offset), |
| 1715 | false, false, 0); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1716 | MemOps.push_back(Store); |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 1717 | Offset += 8; |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1718 | } |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1719 | |
Dan Gohman | face41a | 2009-08-16 21:24:25 +0000 | [diff] [blame] | 1720 | if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) { |
| 1721 | // Now store the XMM (fp + vector) parameter registers. |
| 1722 | SmallVector<SDValue, 11> SaveXMMOps; |
| 1723 | SaveXMMOps.push_back(Chain); |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 1724 | |
Dan Gohman | face41a | 2009-08-16 21:24:25 +0000 | [diff] [blame] | 1725 | unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass); |
| 1726 | SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8); |
| 1727 | SaveXMMOps.push_back(ALVal); |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 1728 | |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 1729 | SaveXMMOps.push_back(DAG.getIntPtrConstant( |
| 1730 | FuncInfo->getRegSaveFrameIndex())); |
| 1731 | SaveXMMOps.push_back(DAG.getIntPtrConstant( |
| 1732 | FuncInfo->getVarArgsFPOffset())); |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 1733 | |
Dan Gohman | face41a | 2009-08-16 21:24:25 +0000 | [diff] [blame] | 1734 | for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) { |
Anton Korobeynikov | e7beda1 | 2010-10-03 22:52:07 +0000 | [diff] [blame] | 1735 | unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs], |
Dan Gohman | face41a | 2009-08-16 21:24:25 +0000 | [diff] [blame] | 1736 | X86::VR128RegisterClass); |
| 1737 | SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32); |
| 1738 | SaveXMMOps.push_back(Val); |
| 1739 | } |
| 1740 | MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl, |
| 1741 | MVT::Other, |
| 1742 | &SaveXMMOps[0], SaveXMMOps.size())); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1743 | } |
Dan Gohman | face41a | 2009-08-16 21:24:25 +0000 | [diff] [blame] | 1744 | |
| 1745 | if (!MemOps.empty()) |
| 1746 | Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, |
| 1747 | &MemOps[0], MemOps.size()); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1748 | } |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 1749 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1750 | |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1751 | // Some CCs need callee pop. |
Dan Gohman | 4d3d6e1 | 2010-05-27 18:43:40 +0000 | [diff] [blame] | 1752 | if (Subtarget->IsCalleePop(isVarArg, CallConv)) { |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 1753 | FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything. |
Anton Korobeynikov | b10308e | 2007-01-28 13:31:35 +0000 | [diff] [blame] | 1754 | } else { |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 1755 | FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing. |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1756 | // If this is an sret function, the return should pop the hidden pointer. |
Chris Lattner | 2968943 | 2010-03-11 00:22:57 +0000 | [diff] [blame] | 1757 | if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins)) |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 1758 | FuncInfo->setBytesToPopOnReturn(4); |
Anton Korobeynikov | b10308e | 2007-01-28 13:31:35 +0000 | [diff] [blame] | 1759 | } |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 1760 | |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1761 | if (!Is64Bit) { |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 1762 | // RegSaveFrameIndex is X86-64 only. |
| 1763 | FuncInfo->setRegSaveFrameIndex(0xAAAAAAA); |
Anton Korobeynikov | ded05e3 | 2010-05-16 09:08:45 +0000 | [diff] [blame] | 1764 | if (CallConv == CallingConv::X86_FastCall || |
| 1765 | CallConv == CallingConv::X86_ThisCall) |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 1766 | // fastcc functions can't have varargs. |
| 1767 | FuncInfo->setVarArgsFrameIndex(0xAAAAAAA); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1768 | } |
Evan Cheng | 25caf63 | 2006-05-23 21:06:34 +0000 | [diff] [blame] | 1769 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1770 | return Chain; |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 1771 | } |
| 1772 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1773 | SDValue |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1774 | X86TargetLowering::LowerMemOpCallTo(SDValue Chain, |
| 1775 | SDValue StackPtr, SDValue Arg, |
| 1776 | DebugLoc dl, SelectionDAG &DAG, |
Evan Cheng | dffbd83 | 2008-01-10 00:09:10 +0000 | [diff] [blame] | 1777 | const CCValAssign &VA, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 1778 | ISD::ArgFlagsTy Flags) const { |
Anton Korobeynikov | c7c62bb | 2010-09-02 22:31:32 +0000 | [diff] [blame] | 1779 | const unsigned FirstStackArgOffset = (Subtarget->isTargetWin64() ? 32 : 0); |
| 1780 | unsigned LocMemOffset = FirstStackArgOffset + VA.getLocMemOffset(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1781 | SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 1782 | PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff); |
Chris Lattner | fc448ff | 2010-09-21 18:51:21 +0000 | [diff] [blame] | 1783 | if (Flags.isByVal()) |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 1784 | return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl); |
Chris Lattner | fc448ff | 2010-09-21 18:51:21 +0000 | [diff] [blame] | 1785 | |
| 1786 | return DAG.getStore(Chain, dl, Arg, PtrOff, |
| 1787 | MachinePointerInfo::getStack(LocMemOffset), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 1788 | false, false, 0); |
Evan Cheng | dffbd83 | 2008-01-10 00:09:10 +0000 | [diff] [blame] | 1789 | } |
| 1790 | |
Bill Wendling | 64e8732 | 2009-01-16 19:25:27 +0000 | [diff] [blame] | 1791 | /// EmitTailCallLoadRetAddr - Emit a load of return address if tail call |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 1792 | /// optimization is performed and it is required. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1793 | SDValue |
| 1794 | X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG, |
Evan Cheng | ddc419c | 2010-01-26 19:04:47 +0000 | [diff] [blame] | 1795 | SDValue &OutRetAddr, SDValue Chain, |
| 1796 | bool IsTailCall, bool Is64Bit, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 1797 | int FPDiff, DebugLoc dl) const { |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 1798 | // Adjust the Return address stack slot. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1799 | EVT VT = getPointerTy(); |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 1800 | OutRetAddr = getReturnAddressFrameIndex(DAG); |
Bill Wendling | 64e8732 | 2009-01-16 19:25:27 +0000 | [diff] [blame] | 1801 | |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 1802 | // Load the "old" Return address. |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 1803 | OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(), |
| 1804 | false, false, 0); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1805 | return SDValue(OutRetAddr.getNode(), 1); |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 1806 | } |
| 1807 | |
| 1808 | /// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call |
| 1809 | /// optimization is performed and it is required (FPDiff!=0). |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1810 | static SDValue |
| 1811 | EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1812 | SDValue Chain, SDValue RetAddrFrIdx, |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 1813 | bool Is64Bit, int FPDiff, DebugLoc dl) { |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 1814 | // Store the return address to the appropriate stack slot. |
| 1815 | if (!FPDiff) return Chain; |
| 1816 | // Calculate the new stack slot for the return address. |
| 1817 | int SlotSize = Is64Bit ? 8 : 4; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1818 | int NewReturnAddrFI = |
Evan Cheng | ed2ae13 | 2010-07-03 00:40:23 +0000 | [diff] [blame] | 1819 | MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1820 | EVT VT = Is64Bit ? MVT::i64 : MVT::i32; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1821 | SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1822 | Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 1823 | MachinePointerInfo::getFixedStack(NewReturnAddrFI), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 1824 | false, false, 0); |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 1825 | return Chain; |
| 1826 | } |
| 1827 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1828 | SDValue |
Evan Cheng | 022d9e1 | 2010-02-02 23:55:14 +0000 | [diff] [blame] | 1829 | X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 1830 | CallingConv::ID CallConv, bool isVarArg, |
Evan Cheng | 0c439eb | 2010-01-27 00:07:07 +0000 | [diff] [blame] | 1831 | bool &isTailCall, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1832 | const SmallVectorImpl<ISD::OutputArg> &Outs, |
Dan Gohman | c940365 | 2010-07-07 15:54:55 +0000 | [diff] [blame] | 1833 | const SmallVectorImpl<SDValue> &OutVals, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1834 | const SmallVectorImpl<ISD::InputArg> &Ins, |
| 1835 | DebugLoc dl, SelectionDAG &DAG, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 1836 | SmallVectorImpl<SDValue> &InVals) const { |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1837 | MachineFunction &MF = DAG.getMachineFunction(); |
| 1838 | bool Is64Bit = Subtarget->is64Bit(); |
| 1839 | bool IsStructRet = CallIsStructReturn(Outs); |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 1840 | bool IsSibcall = false; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1841 | |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 1842 | if (isTailCall) { |
Evan Cheng | 0c439eb | 2010-01-27 00:07:07 +0000 | [diff] [blame] | 1843 | // Check if it's really possible to do a tail call. |
Evan Cheng | a375d47 | 2010-03-15 18:54:48 +0000 | [diff] [blame] | 1844 | isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv, |
| 1845 | isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(), |
Dan Gohman | c940365 | 2010-07-07 15:54:55 +0000 | [diff] [blame] | 1846 | Outs, OutVals, Ins, DAG); |
Evan Cheng | f22f9b3 | 2010-02-06 03:28:46 +0000 | [diff] [blame] | 1847 | |
| 1848 | // Sibcalls are automatically detected tailcalls which do not require |
| 1849 | // ABI changes. |
Dan Gohman | 1797ed5 | 2010-02-08 20:27:50 +0000 | [diff] [blame] | 1850 | if (!GuaranteedTailCallOpt && isTailCall) |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 1851 | IsSibcall = true; |
Evan Cheng | f22f9b3 | 2010-02-06 03:28:46 +0000 | [diff] [blame] | 1852 | |
| 1853 | if (isTailCall) |
| 1854 | ++NumTailCalls; |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 1855 | } |
Evan Cheng | 0c439eb | 2010-01-27 00:07:07 +0000 | [diff] [blame] | 1856 | |
Chris Lattner | 2968943 | 2010-03-11 00:22:57 +0000 | [diff] [blame] | 1857 | assert(!(isVarArg && IsTailCallConvention(CallConv)) && |
| 1858 | "Var args not supported with calling convention fastcc or ghc"); |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 1859 | |
Chris Lattner | 638402b | 2007-02-28 07:00:42 +0000 | [diff] [blame] | 1860 | // Analyze operands of the call, assigning locations to each operand. |
Chris Lattner | 423c5f4 | 2007-02-28 05:31:48 +0000 | [diff] [blame] | 1861 | SmallVector<CCValAssign, 16> ArgLocs; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1862 | CCState CCInfo(CallConv, isVarArg, getTargetMachine(), |
| 1863 | ArgLocs, *DAG.getContext()); |
Duncan Sands | 4590766 | 2010-10-31 13:21:44 +0000 | [diff] [blame] | 1864 | CCInfo.AnalyzeCallOperands(Outs, CC_X86); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1865 | |
Chris Lattner | 423c5f4 | 2007-02-28 05:31:48 +0000 | [diff] [blame] | 1866 | // Get a count of how many bytes are to be pushed on the stack. |
| 1867 | unsigned NumBytes = CCInfo.getNextStackOffset(); |
Evan Cheng | f22f9b3 | 2010-02-06 03:28:46 +0000 | [diff] [blame] | 1868 | if (IsSibcall) |
Evan Cheng | b2c9290 | 2010-02-02 02:22:50 +0000 | [diff] [blame] | 1869 | // This is a sibcall. The memory operands are available in caller's |
| 1870 | // own caller's stack. |
| 1871 | NumBytes = 0; |
Chris Lattner | 2968943 | 2010-03-11 00:22:57 +0000 | [diff] [blame] | 1872 | else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv)) |
Evan Cheng | f22f9b3 | 2010-02-06 03:28:46 +0000 | [diff] [blame] | 1873 | NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 1874 | |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1875 | int FPDiff = 0; |
Evan Cheng | f22f9b3 | 2010-02-06 03:28:46 +0000 | [diff] [blame] | 1876 | if (isTailCall && !IsSibcall) { |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1877 | // Lower arguments at fp - stackoffset + fpdiff. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1878 | unsigned NumBytesCallerPushed = |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1879 | MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn(); |
| 1880 | FPDiff = NumBytesCallerPushed - NumBytes; |
| 1881 | |
| 1882 | // Set the delta of movement of the returnaddr stackslot. |
| 1883 | // But only set if delta is greater than previous delta. |
| 1884 | if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta())) |
| 1885 | MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff); |
| 1886 | } |
| 1887 | |
Evan Cheng | f22f9b3 | 2010-02-06 03:28:46 +0000 | [diff] [blame] | 1888 | if (!IsSibcall) |
| 1889 | Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true)); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 1890 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1891 | SDValue RetAddrFrIdx; |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 1892 | // Load return adress for tail calls. |
Evan Cheng | f22f9b3 | 2010-02-06 03:28:46 +0000 | [diff] [blame] | 1893 | if (isTailCall && FPDiff) |
| 1894 | Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall, |
| 1895 | Is64Bit, FPDiff, dl); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1896 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1897 | SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass; |
| 1898 | SmallVector<SDValue, 8> MemOpChains; |
| 1899 | SDValue StackPtr; |
Chris Lattner | 423c5f4 | 2007-02-28 05:31:48 +0000 | [diff] [blame] | 1900 | |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 1901 | // Walk the register/memloc assignments, inserting copies/loads. In the case |
| 1902 | // of tail call optimization arguments are handle later. |
Chris Lattner | 423c5f4 | 2007-02-28 05:31:48 +0000 | [diff] [blame] | 1903 | for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { |
| 1904 | CCValAssign &VA = ArgLocs[i]; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1905 | EVT RegVT = VA.getLocVT(); |
Dan Gohman | c940365 | 2010-07-07 15:54:55 +0000 | [diff] [blame] | 1906 | SDValue Arg = OutVals[i]; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1907 | ISD::ArgFlagsTy Flags = Outs[i].Flags; |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 1908 | bool isByVal = Flags.isByVal(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1909 | |
Chris Lattner | 423c5f4 | 2007-02-28 05:31:48 +0000 | [diff] [blame] | 1910 | // Promote the value if needed. |
| 1911 | switch (VA.getLocInfo()) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1912 | default: llvm_unreachable("Unknown loc info!"); |
Chris Lattner | 423c5f4 | 2007-02-28 05:31:48 +0000 | [diff] [blame] | 1913 | case CCValAssign::Full: break; |
| 1914 | case CCValAssign::SExt: |
Anton Korobeynikov | 80cb8aa | 2009-08-03 08:13:24 +0000 | [diff] [blame] | 1915 | Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg); |
Chris Lattner | 423c5f4 | 2007-02-28 05:31:48 +0000 | [diff] [blame] | 1916 | break; |
| 1917 | case CCValAssign::ZExt: |
Anton Korobeynikov | 80cb8aa | 2009-08-03 08:13:24 +0000 | [diff] [blame] | 1918 | Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg); |
Chris Lattner | 423c5f4 | 2007-02-28 05:31:48 +0000 | [diff] [blame] | 1919 | break; |
| 1920 | case CCValAssign::AExt: |
Anton Korobeynikov | 80cb8aa | 2009-08-03 08:13:24 +0000 | [diff] [blame] | 1921 | if (RegVT.isVector() && RegVT.getSizeInBits() == 128) { |
| 1922 | // Special case: passing MMX values in XMM registers. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1923 | Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg); |
| 1924 | Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg); |
| 1925 | Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg); |
Anton Korobeynikov | 80cb8aa | 2009-08-03 08:13:24 +0000 | [diff] [blame] | 1926 | } else |
| 1927 | Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg); |
| 1928 | break; |
| 1929 | case CCValAssign::BCvt: |
| 1930 | Arg = DAG.getNode(ISD::BIT_CONVERT, dl, RegVT, Arg); |
Chris Lattner | 423c5f4 | 2007-02-28 05:31:48 +0000 | [diff] [blame] | 1931 | break; |
Anton Korobeynikov | 4ab1553 | 2009-08-03 08:13:56 +0000 | [diff] [blame] | 1932 | case CCValAssign::Indirect: { |
| 1933 | // Store the argument. |
| 1934 | SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT()); |
Evan Cheng | ff89dcb | 2009-10-18 18:16:27 +0000 | [diff] [blame] | 1935 | int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex(); |
Anton Korobeynikov | 4ab1553 | 2009-08-03 08:13:56 +0000 | [diff] [blame] | 1936 | Chain = DAG.getStore(Chain, dl, Arg, SpillSlot, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 1937 | MachinePointerInfo::getFixedStack(FI), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 1938 | false, false, 0); |
Anton Korobeynikov | 4ab1553 | 2009-08-03 08:13:56 +0000 | [diff] [blame] | 1939 | Arg = SpillSlot; |
| 1940 | break; |
| 1941 | } |
Evan Cheng | 6b5783d | 2006-05-25 18:56:34 +0000 | [diff] [blame] | 1942 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1943 | |
Chris Lattner | 423c5f4 | 2007-02-28 05:31:48 +0000 | [diff] [blame] | 1944 | if (VA.isRegLoc()) { |
| 1945 | RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg)); |
Anton Korobeynikov | c52bedb | 2010-08-27 14:43:06 +0000 | [diff] [blame] | 1946 | if (isVarArg && Subtarget->isTargetWin64()) { |
| 1947 | // Win64 ABI requires argument XMM reg to be copied to the corresponding |
| 1948 | // shadow reg if callee is a varargs function. |
| 1949 | unsigned ShadowReg = 0; |
| 1950 | switch (VA.getLocReg()) { |
| 1951 | case X86::XMM0: ShadowReg = X86::RCX; break; |
| 1952 | case X86::XMM1: ShadowReg = X86::RDX; break; |
| 1953 | case X86::XMM2: ShadowReg = X86::R8; break; |
| 1954 | case X86::XMM3: ShadowReg = X86::R9; break; |
| 1955 | } |
| 1956 | if (ShadowReg) |
| 1957 | RegsToPass.push_back(std::make_pair(ShadowReg, Arg)); |
| 1958 | } |
Evan Cheng | f22f9b3 | 2010-02-06 03:28:46 +0000 | [diff] [blame] | 1959 | } else if (!IsSibcall && (!isTailCall || isByVal)) { |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 1960 | assert(VA.isMemLoc()); |
| 1961 | if (StackPtr.getNode() == 0) |
| 1962 | StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy()); |
| 1963 | MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg, |
| 1964 | dl, DAG, VA, Flags)); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 1965 | } |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 1966 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1967 | |
Evan Cheng | 32fe103 | 2006-05-25 00:59:30 +0000 | [diff] [blame] | 1968 | if (!MemOpChains.empty()) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1969 | Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 1970 | &MemOpChains[0], MemOpChains.size()); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 1971 | |
Evan Cheng | 347d5f7 | 2006-04-28 21:29:37 +0000 | [diff] [blame] | 1972 | // Build a sequence of copy-to-reg nodes chained together with token chain |
| 1973 | // and flag operands which copy the outgoing args into registers. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1974 | SDValue InFlag; |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 1975 | // Tail call byval lowering might overwrite argument registers so in case of |
| 1976 | // tail call optimization the copies to registers are lowered later. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1977 | if (!isTailCall) |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 1978 | for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1979 | Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first, |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 1980 | RegsToPass[i].second, InFlag); |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 1981 | InFlag = Chain.getValue(1); |
| 1982 | } |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1983 | |
Chris Lattner | 88e1fd5 | 2009-07-09 04:24:46 +0000 | [diff] [blame] | 1984 | if (Subtarget->isPICStyleGOT()) { |
Chris Lattner | b133a0a | 2009-07-09 02:55:47 +0000 | [diff] [blame] | 1985 | // ELF / PIC requires GOT in the EBX register before function calls via PLT |
| 1986 | // GOT pointer. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1987 | if (!isTailCall) { |
Chris Lattner | b133a0a | 2009-07-09 02:55:47 +0000 | [diff] [blame] | 1988 | Chain = DAG.getCopyToReg(Chain, dl, X86::EBX, |
| 1989 | DAG.getNode(X86ISD::GlobalBaseReg, |
Chris Lattner | c7f3ace | 2010-04-02 20:16:16 +0000 | [diff] [blame] | 1990 | DebugLoc(), getPointerTy()), |
Chris Lattner | b133a0a | 2009-07-09 02:55:47 +0000 | [diff] [blame] | 1991 | InFlag); |
| 1992 | InFlag = Chain.getValue(1); |
| 1993 | } else { |
| 1994 | // If we are tail calling and generating PIC/GOT style code load the |
| 1995 | // address of the callee into ECX. The value in ecx is used as target of |
| 1996 | // the tail jump. This is done to circumvent the ebx/callee-saved problem |
| 1997 | // for tail calls on PIC/GOT architectures. Normally we would just put the |
| 1998 | // address of GOT into ebx and then call target@PLT. But for tail calls |
| 1999 | // ebx would be restored (since ebx is callee saved) before jumping to the |
| 2000 | // target@PLT. |
| 2001 | |
| 2002 | // Note: The actual moving to ECX is done further down. |
| 2003 | GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee); |
| 2004 | if (G && !G->getGlobal()->hasHiddenVisibility() && |
| 2005 | !G->getGlobal()->hasProtectedVisibility()) |
| 2006 | Callee = LowerGlobalAddress(Callee, DAG); |
| 2007 | else if (isa<ExternalSymbolSDNode>(Callee)) |
Chris Lattner | 15a380a | 2009-07-09 04:39:06 +0000 | [diff] [blame] | 2008 | Callee = LowerExternalSymbol(Callee, DAG); |
Chris Lattner | b133a0a | 2009-07-09 02:55:47 +0000 | [diff] [blame] | 2009 | } |
Anton Korobeynikov | 7f70559 | 2007-01-12 19:20:47 +0000 | [diff] [blame] | 2010 | } |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 2011 | |
Nate Begeman | c8ea673 | 2010-07-21 20:49:52 +0000 | [diff] [blame] | 2012 | if (Is64Bit && isVarArg && !Subtarget->isTargetWin64()) { |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2013 | // From AMD64 ABI document: |
| 2014 | // For calls that may call functions that use varargs or stdargs |
| 2015 | // (prototype-less calls or calls to functions containing ellipsis (...) in |
| 2016 | // the declaration) %al is used as hidden argument to specify the number |
| 2017 | // of SSE registers used. The contents of %al do not need to match exactly |
| 2018 | // the number of registers, but must be an ubound on the number of SSE |
| 2019 | // registers used and is in the range 0 - 8 inclusive. |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 2020 | |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2021 | // Count the number of XMM registers allocated. |
| 2022 | static const unsigned XMMArgRegs[] = { |
| 2023 | X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3, |
| 2024 | X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7 |
| 2025 | }; |
| 2026 | unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2027 | assert((Subtarget->hasSSE1() || !NumXMMRegs) |
Torok Edwin | 3f142c3 | 2009-02-01 18:15:56 +0000 | [diff] [blame] | 2028 | && "SSE registers cannot be used when SSE is disabled"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2029 | |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 2030 | Chain = DAG.getCopyToReg(Chain, dl, X86::AL, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2031 | DAG.getConstant(NumXMMRegs, MVT::i8), InFlag); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2032 | InFlag = Chain.getValue(1); |
| 2033 | } |
| 2034 | |
Arnold Schwaighofer | 865c681 | 2008-02-26 09:19:59 +0000 | [diff] [blame] | 2035 | |
Arnold Schwaighofer | c8ab8cd | 2008-01-11 16:49:42 +0000 | [diff] [blame] | 2036 | // For tail calls lower the arguments to the 'real' stack slot. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2037 | if (isTailCall) { |
| 2038 | // Force all the incoming stack arguments to be loaded from the stack |
| 2039 | // before any new outgoing arguments are stored to the stack, because the |
| 2040 | // outgoing stack slots may alias the incoming argument stack slots, and |
| 2041 | // the alias isn't otherwise explicit. This is slightly more conservative |
| 2042 | // than necessary, because it means that each store effectively depends |
| 2043 | // on every argument instead of just those arguments it would clobber. |
| 2044 | SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain); |
| 2045 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2046 | SmallVector<SDValue, 8> MemOpChains2; |
| 2047 | SDValue FIN; |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2048 | int FI = 0; |
Arnold Schwaighofer | 865c681 | 2008-02-26 09:19:59 +0000 | [diff] [blame] | 2049 | // Do not flag preceeding copytoreg stuff together with the following stuff. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2050 | InFlag = SDValue(); |
Dan Gohman | 1797ed5 | 2010-02-08 20:27:50 +0000 | [diff] [blame] | 2051 | if (GuaranteedTailCallOpt) { |
Evan Cheng | b2c9290 | 2010-02-02 02:22:50 +0000 | [diff] [blame] | 2052 | for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { |
| 2053 | CCValAssign &VA = ArgLocs[i]; |
| 2054 | if (VA.isRegLoc()) |
| 2055 | continue; |
Arnold Schwaighofer | c8ab8cd | 2008-01-11 16:49:42 +0000 | [diff] [blame] | 2056 | assert(VA.isMemLoc()); |
Dan Gohman | c940365 | 2010-07-07 15:54:55 +0000 | [diff] [blame] | 2057 | SDValue Arg = OutVals[i]; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2058 | ISD::ArgFlagsTy Flags = Outs[i].Flags; |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2059 | // Create frame index. |
| 2060 | int32_t Offset = VA.getLocMemOffset()+FPDiff; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2061 | uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8; |
Evan Cheng | ed2ae13 | 2010-07-03 00:40:23 +0000 | [diff] [blame] | 2062 | FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true); |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 2063 | FIN = DAG.getFrameIndex(FI, getPointerTy()); |
Arnold Schwaighofer | c8ab8cd | 2008-01-11 16:49:42 +0000 | [diff] [blame] | 2064 | |
Duncan Sands | 276dcbd | 2008-03-21 09:14:45 +0000 | [diff] [blame] | 2065 | if (Flags.isByVal()) { |
Evan Cheng | 8e5712b | 2008-01-12 01:08:07 +0000 | [diff] [blame] | 2066 | // Copy relative to framepointer. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2067 | SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset()); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2068 | if (StackPtr.getNode() == 0) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2069 | StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 2070 | getPointerTy()); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 2071 | Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source); |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 2072 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2073 | MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN, |
| 2074 | ArgChain, |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 2075 | Flags, DAG, dl)); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2076 | } else { |
Evan Cheng | 8e5712b | 2008-01-12 01:08:07 +0000 | [diff] [blame] | 2077 | // Store relative to framepointer. |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 2078 | MemOpChains2.push_back( |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2079 | DAG.getStore(ArgChain, dl, Arg, FIN, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 2080 | MachinePointerInfo::getFixedStack(FI), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 2081 | false, false, 0)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2082 | } |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2083 | } |
| 2084 | } |
| 2085 | |
| 2086 | if (!MemOpChains2.empty()) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2087 | Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, |
Arnold Schwaighofer | 719eb02 | 2008-01-11 14:34:56 +0000 | [diff] [blame] | 2088 | &MemOpChains2[0], MemOpChains2.size()); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2089 | |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 2090 | // Copy arguments to their registers. |
| 2091 | for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2092 | Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first, |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 2093 | RegsToPass[i].second, InFlag); |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 2094 | InFlag = Chain.getValue(1); |
| 2095 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2096 | InFlag =SDValue(); |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 2097 | |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2098 | // Store the return address to the appropriate stack slot. |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 2099 | Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit, |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 2100 | FPDiff, dl); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2101 | } |
| 2102 | |
Jeffrey Yasskin | d1ba06b | 2009-11-16 22:41:33 +0000 | [diff] [blame] | 2103 | if (getTargetMachine().getCodeModel() == CodeModel::Large) { |
| 2104 | assert(Is64Bit && "Large code model is only legal in 64-bit mode."); |
| 2105 | // In the 64-bit large code model, we have to make all calls |
| 2106 | // through a register, since the call instruction's 32-bit |
| 2107 | // pc-relative offset may not be large enough to hold the whole |
| 2108 | // address. |
| 2109 | } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) { |
Jeffrey Yasskin | d1ba06b | 2009-11-16 22:41:33 +0000 | [diff] [blame] | 2110 | // If the callee is a GlobalAddress node (quite common, every direct call |
| 2111 | // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack |
| 2112 | // it. |
| 2113 | |
Anton Korobeynikov | 2b2bc68 | 2006-12-22 22:29:05 +0000 | [diff] [blame] | 2114 | // We should use extra load for direct calls to dllimported functions in |
| 2115 | // non-JIT mode. |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 2116 | const GlobalValue *GV = G->getGlobal(); |
Chris Lattner | 754b765 | 2009-07-10 05:48:03 +0000 | [diff] [blame] | 2117 | if (!GV->hasDLLImportLinkage()) { |
Chris Lattner | 48a7d02 | 2009-07-09 05:02:21 +0000 | [diff] [blame] | 2118 | unsigned char OpFlags = 0; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2119 | |
Chris Lattner | 48a7d02 | 2009-07-09 05:02:21 +0000 | [diff] [blame] | 2120 | // On ELF targets, in both X86-64 and X86-32 mode, direct calls to |
| 2121 | // external symbols most go through the PLT in PIC mode. If the symbol |
| 2122 | // has hidden or protected visibility, or if it is static or local, then |
| 2123 | // we don't need to use the PLT - we can directly call it. |
| 2124 | if (Subtarget->isTargetELF() && |
| 2125 | getTargetMachine().getRelocationModel() == Reloc::PIC_ && |
Chris Lattner | 74e726e | 2009-07-09 05:27:35 +0000 | [diff] [blame] | 2126 | GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) { |
Chris Lattner | 48a7d02 | 2009-07-09 05:02:21 +0000 | [diff] [blame] | 2127 | OpFlags = X86II::MO_PLT; |
Chris Lattner | 3b67e9b | 2009-07-10 20:47:30 +0000 | [diff] [blame] | 2128 | } else if (Subtarget->isPICStyleStubAny() && |
Chris Lattner | 8094578 | 2010-09-27 06:34:01 +0000 | [diff] [blame] | 2129 | (GV->isDeclaration() || GV->isWeakForLinker()) && |
| 2130 | Subtarget->getDarwinVers() < 9) { |
Chris Lattner | 74e726e | 2009-07-09 05:27:35 +0000 | [diff] [blame] | 2131 | // PC-relative references to external symbols should go through $stub, |
| 2132 | // unless we're building with the leopard linker or later, which |
| 2133 | // automatically synthesizes these stubs. |
| 2134 | OpFlags = X86II::MO_DARWIN_STUB; |
| 2135 | } |
Chris Lattner | 48a7d02 | 2009-07-09 05:02:21 +0000 | [diff] [blame] | 2136 | |
Devang Patel | 0d881da | 2010-07-06 22:08:15 +0000 | [diff] [blame] | 2137 | Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), |
Chris Lattner | 48a7d02 | 2009-07-09 05:02:21 +0000 | [diff] [blame] | 2138 | G->getOffset(), OpFlags); |
| 2139 | } |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 2140 | } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) { |
Chris Lattner | 48a7d02 | 2009-07-09 05:02:21 +0000 | [diff] [blame] | 2141 | unsigned char OpFlags = 0; |
| 2142 | |
| 2143 | // On ELF targets, in either X86-64 or X86-32 mode, direct calls to external |
| 2144 | // symbols should go through the PLT. |
| 2145 | if (Subtarget->isTargetELF() && |
Chris Lattner | 74e726e | 2009-07-09 05:27:35 +0000 | [diff] [blame] | 2146 | getTargetMachine().getRelocationModel() == Reloc::PIC_) { |
Chris Lattner | 48a7d02 | 2009-07-09 05:02:21 +0000 | [diff] [blame] | 2147 | OpFlags = X86II::MO_PLT; |
Chris Lattner | 3b67e9b | 2009-07-10 20:47:30 +0000 | [diff] [blame] | 2148 | } else if (Subtarget->isPICStyleStubAny() && |
Chris Lattner | 8094578 | 2010-09-27 06:34:01 +0000 | [diff] [blame] | 2149 | Subtarget->getDarwinVers() < 9) { |
Chris Lattner | 74e726e | 2009-07-09 05:27:35 +0000 | [diff] [blame] | 2150 | // PC-relative references to external symbols should go through $stub, |
| 2151 | // unless we're building with the leopard linker or later, which |
| 2152 | // automatically synthesizes these stubs. |
| 2153 | OpFlags = X86II::MO_DARWIN_STUB; |
| 2154 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2155 | |
Chris Lattner | 48a7d02 | 2009-07-09 05:02:21 +0000 | [diff] [blame] | 2156 | Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(), |
| 2157 | OpFlags); |
Jeffrey Yasskin | d1ba06b | 2009-11-16 22:41:33 +0000 | [diff] [blame] | 2158 | } |
| 2159 | |
Chris Lattner | d96d072 | 2007-02-25 06:40:16 +0000 | [diff] [blame] | 2160 | // Returns a chain & a flag for retval copy to use. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2161 | SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2162 | SmallVector<SDValue, 8> Ops; |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2163 | |
Evan Cheng | f22f9b3 | 2010-02-06 03:28:46 +0000 | [diff] [blame] | 2164 | if (!IsSibcall && isTailCall) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2165 | Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true), |
| 2166 | DAG.getIntPtrConstant(0, true), InFlag); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2167 | InFlag = Chain.getValue(1); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2168 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2169 | |
Nate Begeman | 4c5dcf5 | 2006-02-17 00:03:04 +0000 | [diff] [blame] | 2170 | Ops.push_back(Chain); |
| 2171 | Ops.push_back(Callee); |
Evan Cheng | b69d113 | 2006-06-14 18:17:40 +0000 | [diff] [blame] | 2172 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2173 | if (isTailCall) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2174 | Ops.push_back(DAG.getConstant(FPDiff, MVT::i32)); |
Evan Cheng | f468471 | 2007-02-21 21:18:14 +0000 | [diff] [blame] | 2175 | |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2176 | // Add argument registers to the end of the list so that they are known live |
| 2177 | // into the call. |
Evan Cheng | 9b44944 | 2008-01-07 23:08:23 +0000 | [diff] [blame] | 2178 | for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) |
| 2179 | Ops.push_back(DAG.getRegister(RegsToPass[i].first, |
| 2180 | RegsToPass[i].second.getValueType())); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2181 | |
Evan Cheng | 586ccac | 2008-03-18 23:36:35 +0000 | [diff] [blame] | 2182 | // Add an implicit use GOT pointer in EBX. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2183 | if (!isTailCall && Subtarget->isPICStyleGOT()) |
Evan Cheng | 586ccac | 2008-03-18 23:36:35 +0000 | [diff] [blame] | 2184 | Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy())); |
| 2185 | |
Anton Korobeynikov | 3a1e54a | 2010-08-17 21:06:07 +0000 | [diff] [blame] | 2186 | // Add an implicit use of AL for non-Windows x86 64-bit vararg functions. |
| 2187 | if (Is64Bit && isVarArg && !Subtarget->isTargetWin64()) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2188 | Ops.push_back(DAG.getRegister(X86::AL, MVT::i8)); |
Evan Cheng | 586ccac | 2008-03-18 23:36:35 +0000 | [diff] [blame] | 2189 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2190 | if (InFlag.getNode()) |
Evan Cheng | 347d5f7 | 2006-04-28 21:29:37 +0000 | [diff] [blame] | 2191 | Ops.push_back(InFlag); |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 2192 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2193 | if (isTailCall) { |
Dale Johannesen | 88004c2 | 2010-06-05 00:30:45 +0000 | [diff] [blame] | 2194 | // We used to do: |
| 2195 | //// If this is the first return lowered for this function, add the regs |
| 2196 | //// to the liveout set for the function. |
| 2197 | // This isn't right, although it's probably harmless on x86; liveouts |
| 2198 | // should be computed from returns not tail calls. Consider a void |
| 2199 | // function making a tail call to a function returning int. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2200 | return DAG.getNode(X86ISD::TC_RETURN, dl, |
| 2201 | NodeTys, &Ops[0], Ops.size()); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2202 | } |
| 2203 | |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 2204 | Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size()); |
Evan Cheng | 347d5f7 | 2006-04-28 21:29:37 +0000 | [diff] [blame] | 2205 | InFlag = Chain.getValue(1); |
Evan Cheng | d90eb7f | 2006-01-05 00:27:02 +0000 | [diff] [blame] | 2206 | |
Chris Lattner | 2d29709 | 2006-05-23 18:50:38 +0000 | [diff] [blame] | 2207 | // Create the CALLSEQ_END node. |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2208 | unsigned NumBytesForCalleeToPush; |
Dan Gohman | 4d3d6e1 | 2010-05-27 18:43:40 +0000 | [diff] [blame] | 2209 | if (Subtarget->IsCalleePop(isVarArg, CallConv)) |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2210 | NumBytesForCalleeToPush = NumBytes; // Callee pops everything |
Chris Lattner | 2968943 | 2010-03-11 00:22:57 +0000 | [diff] [blame] | 2211 | else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet) |
Dan Gohman | f451cb8 | 2010-02-10 16:03:48 +0000 | [diff] [blame] | 2212 | // If this is a call to a struct-return function, the callee |
Anton Korobeynikov | b10308e | 2007-01-28 13:31:35 +0000 | [diff] [blame] | 2213 | // pops the hidden struct pointer, so we have to push it back. |
| 2214 | // This is common for Darwin/X86, Linux & Mingw32 targets. |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 2215 | NumBytesForCalleeToPush = 4; |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2216 | else |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 2217 | NumBytesForCalleeToPush = 0; // Callee pops nothing. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2218 | |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 2219 | // Returns a flag for retval copy to use. |
Evan Cheng | f22f9b3 | 2010-02-06 03:28:46 +0000 | [diff] [blame] | 2220 | if (!IsSibcall) { |
| 2221 | Chain = DAG.getCALLSEQ_END(Chain, |
| 2222 | DAG.getIntPtrConstant(NumBytes, true), |
| 2223 | DAG.getIntPtrConstant(NumBytesForCalleeToPush, |
| 2224 | true), |
| 2225 | InFlag); |
| 2226 | InFlag = Chain.getValue(1); |
| 2227 | } |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 2228 | |
Chris Lattner | 3085e15 | 2007-02-25 08:59:22 +0000 | [diff] [blame] | 2229 | // Handle result values, copying them out of physregs into vregs that we |
| 2230 | // return. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2231 | return LowerCallResult(Chain, InFlag, CallConv, isVarArg, |
| 2232 | Ins, dl, DAG, InVals); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 2233 | } |
| 2234 | |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 2235 | |
| 2236 | //===----------------------------------------------------------------------===// |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 2237 | // Fast Calling Convention (tail call) implementation |
| 2238 | //===----------------------------------------------------------------------===// |
| 2239 | |
| 2240 | // Like std call, callee cleans arguments, convention except that ECX is |
| 2241 | // reserved for storing the tail called function address. Only 2 registers are |
| 2242 | // free for argument passing (inreg). Tail call optimization is performed |
| 2243 | // provided: |
| 2244 | // * tailcallopt is enabled |
| 2245 | // * caller/callee are fastcc |
Arnold Schwaighofer | a2a4b47 | 2008-02-26 10:21:54 +0000 | [diff] [blame] | 2246 | // On X86_64 architecture with GOT-style position independent code only local |
| 2247 | // (within module) calls are supported at the moment. |
Arnold Schwaighofer | 48abc5c | 2007-10-12 21:30:57 +0000 | [diff] [blame] | 2248 | // To keep the stack aligned according to platform abi the function |
| 2249 | // GetAlignedArgumentStackSize ensures that argument delta is always multiples |
| 2250 | // of stack alignment. (Dynamic linkers need this - darwin's dyld for example) |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 2251 | // If a tail called function callee has more arguments than the caller the |
| 2252 | // caller needs to make sure that there is room to move the RETADDR to. This is |
Arnold Schwaighofer | 48abc5c | 2007-10-12 21:30:57 +0000 | [diff] [blame] | 2253 | // achieved by reserving an area the size of the argument delta right after the |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 2254 | // original REtADDR, but before the saved framepointer or the spilled registers |
| 2255 | // e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4) |
| 2256 | // stack layout: |
| 2257 | // arg1 |
| 2258 | // arg2 |
| 2259 | // RETADDR |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2260 | // [ new RETADDR |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 2261 | // move area ] |
| 2262 | // (possible EBP) |
| 2263 | // ESI |
| 2264 | // EDI |
| 2265 | // local1 .. |
| 2266 | |
| 2267 | /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned |
| 2268 | /// for a 16 byte align requirement. |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 2269 | unsigned |
| 2270 | X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize, |
| 2271 | SelectionDAG& DAG) const { |
Evan Cheng | e9ac9e6 | 2008-09-07 09:07:23 +0000 | [diff] [blame] | 2272 | MachineFunction &MF = DAG.getMachineFunction(); |
| 2273 | const TargetMachine &TM = MF.getTarget(); |
| 2274 | const TargetFrameInfo &TFI = *TM.getFrameInfo(); |
| 2275 | unsigned StackAlignment = TFI.getStackAlignment(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2276 | uint64_t AlignMask = StackAlignment - 1; |
Evan Cheng | e9ac9e6 | 2008-09-07 09:07:23 +0000 | [diff] [blame] | 2277 | int64_t Offset = StackSize; |
Anton Korobeynikov | bff66b0 | 2008-09-09 18:22:57 +0000 | [diff] [blame] | 2278 | uint64_t SlotSize = TD->getPointerSize(); |
Evan Cheng | e9ac9e6 | 2008-09-07 09:07:23 +0000 | [diff] [blame] | 2279 | if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) { |
| 2280 | // Number smaller than 12 so just add the difference. |
| 2281 | Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask)); |
| 2282 | } else { |
| 2283 | // Mask out lower bits, add stackalignment once plus the 12 bytes. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2284 | Offset = ((~AlignMask) & Offset) + StackAlignment + |
Evan Cheng | e9ac9e6 | 2008-09-07 09:07:23 +0000 | [diff] [blame] | 2285 | (StackAlignment-SlotSize); |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 2286 | } |
Evan Cheng | e9ac9e6 | 2008-09-07 09:07:23 +0000 | [diff] [blame] | 2287 | return Offset; |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 2288 | } |
| 2289 | |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 2290 | /// MatchingStackOffset - Return true if the given stack call argument is |
| 2291 | /// already available in the same position (relatively) of the caller's |
| 2292 | /// incoming argument stack. |
| 2293 | static |
| 2294 | bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags, |
| 2295 | MachineFrameInfo *MFI, const MachineRegisterInfo *MRI, |
| 2296 | const X86InstrInfo *TII) { |
Evan Cheng | 4cae133 | 2010-03-05 08:38:04 +0000 | [diff] [blame] | 2297 | unsigned Bytes = Arg.getValueType().getSizeInBits() / 8; |
| 2298 | int FI = INT_MAX; |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 2299 | if (Arg.getOpcode() == ISD::CopyFromReg) { |
| 2300 | unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg(); |
| 2301 | if (!VR || TargetRegisterInfo::isPhysicalRegister(VR)) |
| 2302 | return false; |
| 2303 | MachineInstr *Def = MRI->getVRegDef(VR); |
| 2304 | if (!Def) |
| 2305 | return false; |
| 2306 | if (!Flags.isByVal()) { |
| 2307 | if (!TII->isLoadFromStackSlot(Def, FI)) |
| 2308 | return false; |
| 2309 | } else { |
| 2310 | unsigned Opcode = Def->getOpcode(); |
| 2311 | if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) && |
| 2312 | Def->getOperand(1).isFI()) { |
| 2313 | FI = Def->getOperand(1).getIndex(); |
Evan Cheng | 4cae133 | 2010-03-05 08:38:04 +0000 | [diff] [blame] | 2314 | Bytes = Flags.getByValSize(); |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 2315 | } else |
| 2316 | return false; |
| 2317 | } |
Evan Cheng | 4cae133 | 2010-03-05 08:38:04 +0000 | [diff] [blame] | 2318 | } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) { |
| 2319 | if (Flags.isByVal()) |
| 2320 | // ByVal argument is passed in as a pointer but it's now being |
Evan Cheng | 1071849 | 2010-03-05 19:55:55 +0000 | [diff] [blame] | 2321 | // dereferenced. e.g. |
Evan Cheng | 4cae133 | 2010-03-05 08:38:04 +0000 | [diff] [blame] | 2322 | // define @foo(%struct.X* %A) { |
| 2323 | // tail call @bar(%struct.X* byval %A) |
| 2324 | // } |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 2325 | return false; |
| 2326 | SDValue Ptr = Ld->getBasePtr(); |
| 2327 | FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr); |
| 2328 | if (!FINode) |
| 2329 | return false; |
| 2330 | FI = FINode->getIndex(); |
Evan Cheng | 4cae133 | 2010-03-05 08:38:04 +0000 | [diff] [blame] | 2331 | } else |
| 2332 | return false; |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 2333 | |
Evan Cheng | 4cae133 | 2010-03-05 08:38:04 +0000 | [diff] [blame] | 2334 | assert(FI != INT_MAX); |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 2335 | if (!MFI->isFixedObjectIndex(FI)) |
| 2336 | return false; |
Evan Cheng | 4cae133 | 2010-03-05 08:38:04 +0000 | [diff] [blame] | 2337 | return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI); |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 2338 | } |
| 2339 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2340 | /// IsEligibleForTailCallOptimization - Check whether the call is eligible |
| 2341 | /// for tail call optimization. Targets which want to do tail call |
| 2342 | /// optimization should implement this function. |
| 2343 | bool |
| 2344 | X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 2345 | CallingConv::ID CalleeCC, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2346 | bool isVarArg, |
Evan Cheng | a375d47 | 2010-03-15 18:54:48 +0000 | [diff] [blame] | 2347 | bool isCalleeStructRet, |
| 2348 | bool isCallerStructRet, |
Evan Cheng | b171245 | 2010-01-27 06:25:16 +0000 | [diff] [blame] | 2349 | const SmallVectorImpl<ISD::OutputArg> &Outs, |
Dan Gohman | c940365 | 2010-07-07 15:54:55 +0000 | [diff] [blame] | 2350 | const SmallVectorImpl<SDValue> &OutVals, |
Evan Cheng | b171245 | 2010-01-27 06:25:16 +0000 | [diff] [blame] | 2351 | const SmallVectorImpl<ISD::InputArg> &Ins, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2352 | SelectionDAG& DAG) const { |
Chris Lattner | 2968943 | 2010-03-11 00:22:57 +0000 | [diff] [blame] | 2353 | if (!IsTailCallConvention(CalleeCC) && |
Evan Cheng | b171245 | 2010-01-27 06:25:16 +0000 | [diff] [blame] | 2354 | CalleeCC != CallingConv::C) |
| 2355 | return false; |
| 2356 | |
Evan Cheng | 7096ae4 | 2010-01-29 06:45:59 +0000 | [diff] [blame] | 2357 | // If -tailcallopt is specified, make fastcc functions tail-callable. |
Evan Cheng | 2c12cb4 | 2010-03-26 16:26:03 +0000 | [diff] [blame] | 2358 | const MachineFunction &MF = DAG.getMachineFunction(); |
Evan Cheng | 7096ae4 | 2010-01-29 06:45:59 +0000 | [diff] [blame] | 2359 | const Function *CallerF = DAG.getMachineFunction().getFunction(); |
Evan Cheng | 1361796 | 2010-04-30 01:12:32 +0000 | [diff] [blame] | 2360 | CallingConv::ID CallerCC = CallerF->getCallingConv(); |
| 2361 | bool CCMatch = CallerCC == CalleeCC; |
| 2362 | |
Dan Gohman | 1797ed5 | 2010-02-08 20:27:50 +0000 | [diff] [blame] | 2363 | if (GuaranteedTailCallOpt) { |
Evan Cheng | 1361796 | 2010-04-30 01:12:32 +0000 | [diff] [blame] | 2364 | if (IsTailCallConvention(CalleeCC) && CCMatch) |
Evan Cheng | 843bd69 | 2010-01-31 06:44:49 +0000 | [diff] [blame] | 2365 | return true; |
| 2366 | return false; |
| 2367 | } |
| 2368 | |
Dale Johannesen | 2f05cc0 | 2010-05-28 23:24:28 +0000 | [diff] [blame] | 2369 | // Look for obvious safe cases to perform tail call optimization that do not |
| 2370 | // require ABI changes. This is what gcc calls sibcall. |
Evan Cheng | b2c9290 | 2010-02-02 02:22:50 +0000 | [diff] [blame] | 2371 | |
Evan Cheng | 2c12cb4 | 2010-03-26 16:26:03 +0000 | [diff] [blame] | 2372 | // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to |
| 2373 | // emit a special epilogue. |
| 2374 | if (RegInfo->needsStackRealignment(MF)) |
| 2375 | return false; |
| 2376 | |
Eric Christopher | 90eb402 | 2010-07-22 00:26:08 +0000 | [diff] [blame] | 2377 | // Do not sibcall optimize vararg calls unless the call site is not passing |
| 2378 | // any arguments. |
Evan Cheng | 3c262ee | 2010-03-26 02:13:13 +0000 | [diff] [blame] | 2379 | if (isVarArg && !Outs.empty()) |
Evan Cheng | 843bd69 | 2010-01-31 06:44:49 +0000 | [diff] [blame] | 2380 | return false; |
| 2381 | |
Evan Cheng | a375d47 | 2010-03-15 18:54:48 +0000 | [diff] [blame] | 2382 | // Also avoid sibcall optimization if either caller or callee uses struct |
| 2383 | // return semantics. |
| 2384 | if (isCalleeStructRet || isCallerStructRet) |
| 2385 | return false; |
| 2386 | |
Evan Cheng | f5b9d6c | 2010-03-20 02:58:15 +0000 | [diff] [blame] | 2387 | // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack. |
| 2388 | // Therefore if it's not used by the call it is not safe to optimize this into |
| 2389 | // a sibcall. |
| 2390 | bool Unused = false; |
| 2391 | for (unsigned i = 0, e = Ins.size(); i != e; ++i) { |
| 2392 | if (!Ins[i].Used) { |
| 2393 | Unused = true; |
| 2394 | break; |
| 2395 | } |
| 2396 | } |
| 2397 | if (Unused) { |
| 2398 | SmallVector<CCValAssign, 16> RVLocs; |
| 2399 | CCState CCInfo(CalleeCC, false, getTargetMachine(), |
| 2400 | RVLocs, *DAG.getContext()); |
| 2401 | CCInfo.AnalyzeCallResult(Ins, RetCC_X86); |
Evan Cheng | 1361796 | 2010-04-30 01:12:32 +0000 | [diff] [blame] | 2402 | for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) { |
Evan Cheng | f5b9d6c | 2010-03-20 02:58:15 +0000 | [diff] [blame] | 2403 | CCValAssign &VA = RVLocs[i]; |
| 2404 | if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) |
| 2405 | return false; |
| 2406 | } |
| 2407 | } |
| 2408 | |
Evan Cheng | 1361796 | 2010-04-30 01:12:32 +0000 | [diff] [blame] | 2409 | // If the calling conventions do not match, then we'd better make sure the |
| 2410 | // results are returned in the same way as what the caller expects. |
| 2411 | if (!CCMatch) { |
| 2412 | SmallVector<CCValAssign, 16> RVLocs1; |
| 2413 | CCState CCInfo1(CalleeCC, false, getTargetMachine(), |
| 2414 | RVLocs1, *DAG.getContext()); |
| 2415 | CCInfo1.AnalyzeCallResult(Ins, RetCC_X86); |
| 2416 | |
| 2417 | SmallVector<CCValAssign, 16> RVLocs2; |
| 2418 | CCState CCInfo2(CallerCC, false, getTargetMachine(), |
| 2419 | RVLocs2, *DAG.getContext()); |
| 2420 | CCInfo2.AnalyzeCallResult(Ins, RetCC_X86); |
| 2421 | |
| 2422 | if (RVLocs1.size() != RVLocs2.size()) |
| 2423 | return false; |
| 2424 | for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) { |
| 2425 | if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc()) |
| 2426 | return false; |
| 2427 | if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo()) |
| 2428 | return false; |
| 2429 | if (RVLocs1[i].isRegLoc()) { |
| 2430 | if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg()) |
| 2431 | return false; |
| 2432 | } else { |
| 2433 | if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset()) |
| 2434 | return false; |
| 2435 | } |
| 2436 | } |
| 2437 | } |
| 2438 | |
Evan Cheng | a6bff98 | 2010-01-30 01:22:00 +0000 | [diff] [blame] | 2439 | // If the callee takes no arguments then go on to check the results of the |
| 2440 | // call. |
| 2441 | if (!Outs.empty()) { |
| 2442 | // Check if stack adjustment is needed. For now, do not do this if any |
| 2443 | // argument is passed on the stack. |
| 2444 | SmallVector<CCValAssign, 16> ArgLocs; |
| 2445 | CCState CCInfo(CalleeCC, isVarArg, getTargetMachine(), |
| 2446 | ArgLocs, *DAG.getContext()); |
Duncan Sands | 4590766 | 2010-10-31 13:21:44 +0000 | [diff] [blame] | 2447 | CCInfo.AnalyzeCallOperands(Outs, CC_X86); |
Evan Cheng | b2c9290 | 2010-02-02 02:22:50 +0000 | [diff] [blame] | 2448 | if (CCInfo.getNextStackOffset()) { |
| 2449 | MachineFunction &MF = DAG.getMachineFunction(); |
| 2450 | if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn()) |
| 2451 | return false; |
| 2452 | if (Subtarget->isTargetWin64()) |
| 2453 | // Win64 ABI has additional complications. |
| 2454 | return false; |
| 2455 | |
| 2456 | // Check if the arguments are already laid out in the right way as |
| 2457 | // the caller's fixed stack objects. |
| 2458 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 2459 | const MachineRegisterInfo *MRI = &MF.getRegInfo(); |
| 2460 | const X86InstrInfo *TII = |
| 2461 | ((X86TargetMachine&)getTargetMachine()).getInstrInfo(); |
Evan Cheng | b2c9290 | 2010-02-02 02:22:50 +0000 | [diff] [blame] | 2462 | for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { |
| 2463 | CCValAssign &VA = ArgLocs[i]; |
Dan Gohman | c940365 | 2010-07-07 15:54:55 +0000 | [diff] [blame] | 2464 | SDValue Arg = OutVals[i]; |
Evan Cheng | b2c9290 | 2010-02-02 02:22:50 +0000 | [diff] [blame] | 2465 | ISD::ArgFlagsTy Flags = Outs[i].Flags; |
Evan Cheng | b2c9290 | 2010-02-02 02:22:50 +0000 | [diff] [blame] | 2466 | if (VA.getLocInfo() == CCValAssign::Indirect) |
| 2467 | return false; |
| 2468 | if (!VA.isRegLoc()) { |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 2469 | if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags, |
| 2470 | MFI, MRI, TII)) |
Evan Cheng | b2c9290 | 2010-02-02 02:22:50 +0000 | [diff] [blame] | 2471 | return false; |
| 2472 | } |
| 2473 | } |
| 2474 | } |
Evan Cheng | 9c04467 | 2010-05-29 01:35:22 +0000 | [diff] [blame] | 2475 | |
| 2476 | // If the tailcall address may be in a register, then make sure it's |
| 2477 | // possible to register allocate for it. In 32-bit, the call address can |
| 2478 | // only target EAX, EDX, or ECX since the tail call must be scheduled after |
Evan Cheng | dedd974 | 2010-07-14 06:44:01 +0000 | [diff] [blame] | 2479 | // callee-saved registers are restored. These happen to be the same |
| 2480 | // registers used to pass 'inreg' arguments so watch out for those. |
| 2481 | if (!Subtarget->is64Bit() && |
| 2482 | !isa<GlobalAddressSDNode>(Callee) && |
Evan Cheng | 9c04467 | 2010-05-29 01:35:22 +0000 | [diff] [blame] | 2483 | !isa<ExternalSymbolSDNode>(Callee)) { |
Evan Cheng | 9c04467 | 2010-05-29 01:35:22 +0000 | [diff] [blame] | 2484 | unsigned NumInRegs = 0; |
| 2485 | for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { |
| 2486 | CCValAssign &VA = ArgLocs[i]; |
Evan Cheng | dedd974 | 2010-07-14 06:44:01 +0000 | [diff] [blame] | 2487 | if (!VA.isRegLoc()) |
| 2488 | continue; |
| 2489 | unsigned Reg = VA.getLocReg(); |
| 2490 | switch (Reg) { |
| 2491 | default: break; |
| 2492 | case X86::EAX: case X86::EDX: case X86::ECX: |
| 2493 | if (++NumInRegs == 3) |
Evan Cheng | 9c04467 | 2010-05-29 01:35:22 +0000 | [diff] [blame] | 2494 | return false; |
Evan Cheng | dedd974 | 2010-07-14 06:44:01 +0000 | [diff] [blame] | 2495 | break; |
Evan Cheng | 9c04467 | 2010-05-29 01:35:22 +0000 | [diff] [blame] | 2496 | } |
| 2497 | } |
| 2498 | } |
Evan Cheng | a6bff98 | 2010-01-30 01:22:00 +0000 | [diff] [blame] | 2499 | } |
Evan Cheng | b171245 | 2010-01-27 06:25:16 +0000 | [diff] [blame] | 2500 | |
Dale Johannesen | d155d7e | 2010-10-25 22:17:05 +0000 | [diff] [blame] | 2501 | // An stdcall caller is expected to clean up its arguments; the callee |
Dale Johannesen | 0e03456 | 2010-11-12 00:43:18 +0000 | [diff] [blame] | 2502 | // isn't going to do that. |
Dale Johannesen | d155d7e | 2010-10-25 22:17:05 +0000 | [diff] [blame] | 2503 | if (!CCMatch && CallerCC==CallingConv::X86_StdCall) |
| 2504 | return false; |
| 2505 | |
Evan Cheng | 86809cc | 2010-02-03 03:28:02 +0000 | [diff] [blame] | 2506 | return true; |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 2507 | } |
| 2508 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 2509 | FastISel * |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 2510 | X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const { |
| 2511 | return X86::createFastISel(funcInfo); |
Dan Gohman | d9f3c48 | 2008-08-19 21:32:53 +0000 | [diff] [blame] | 2512 | } |
| 2513 | |
| 2514 | |
Chris Lattner | fcf1a3d | 2007-02-28 06:10:12 +0000 | [diff] [blame] | 2515 | //===----------------------------------------------------------------------===// |
| 2516 | // Other Lowering Hooks |
| 2517 | //===----------------------------------------------------------------------===// |
| 2518 | |
Bruno Cardoso Lopes | e654b56 | 2010-09-01 00:51:36 +0000 | [diff] [blame] | 2519 | static bool MayFoldLoad(SDValue Op) { |
| 2520 | return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode()); |
| 2521 | } |
| 2522 | |
| 2523 | static bool MayFoldIntoStore(SDValue Op) { |
| 2524 | return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin()); |
| 2525 | } |
| 2526 | |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 2527 | static bool isTargetShuffle(unsigned Opcode) { |
| 2528 | switch(Opcode) { |
| 2529 | default: return false; |
| 2530 | case X86ISD::PSHUFD: |
| 2531 | case X86ISD::PSHUFHW: |
| 2532 | case X86ISD::PSHUFLW: |
| 2533 | case X86ISD::SHUFPD: |
Bruno Cardoso Lopes | aace0f2 | 2010-09-04 02:36:07 +0000 | [diff] [blame] | 2534 | case X86ISD::PALIGN: |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 2535 | case X86ISD::SHUFPS: |
| 2536 | case X86ISD::MOVLHPS: |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 2537 | case X86ISD::MOVLHPD: |
Bruno Cardoso Lopes | 7ff30bb | 2010-08-31 21:38:49 +0000 | [diff] [blame] | 2538 | case X86ISD::MOVHLPS: |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 2539 | case X86ISD::MOVLPS: |
| 2540 | case X86ISD::MOVLPD: |
Bruno Cardoso Lopes | 5023ef2 | 2010-08-31 22:22:11 +0000 | [diff] [blame] | 2541 | case X86ISD::MOVSHDUP: |
Bruno Cardoso Lopes | 013bb3d | 2010-08-31 22:35:05 +0000 | [diff] [blame] | 2542 | case X86ISD::MOVSLDUP: |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 2543 | case X86ISD::MOVDDUP: |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 2544 | case X86ISD::MOVSS: |
| 2545 | case X86ISD::MOVSD: |
Bruno Cardoso Lopes | 3722f00 | 2010-09-02 05:23:12 +0000 | [diff] [blame] | 2546 | case X86ISD::UNPCKLPS: |
Bruno Cardoso Lopes | be8b084 | 2010-09-03 20:10:35 +0000 | [diff] [blame] | 2547 | case X86ISD::UNPCKLPD: |
Bruno Cardoso Lopes | 3722f00 | 2010-09-02 05:23:12 +0000 | [diff] [blame] | 2548 | case X86ISD::PUNPCKLWD: |
| 2549 | case X86ISD::PUNPCKLBW: |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 2550 | case X86ISD::PUNPCKLDQ: |
Bruno Cardoso Lopes | be8b084 | 2010-09-03 20:10:35 +0000 | [diff] [blame] | 2551 | case X86ISD::PUNPCKLQDQ: |
Bruno Cardoso Lopes | 3722f00 | 2010-09-02 05:23:12 +0000 | [diff] [blame] | 2552 | case X86ISD::UNPCKHPS: |
Bruno Cardoso Lopes | be8b084 | 2010-09-03 20:10:35 +0000 | [diff] [blame] | 2553 | case X86ISD::UNPCKHPD: |
Bruno Cardoso Lopes | 3722f00 | 2010-09-02 05:23:12 +0000 | [diff] [blame] | 2554 | case X86ISD::PUNPCKHWD: |
| 2555 | case X86ISD::PUNPCKHBW: |
| 2556 | case X86ISD::PUNPCKHDQ: |
Bruno Cardoso Lopes | be8b084 | 2010-09-03 20:10:35 +0000 | [diff] [blame] | 2557 | case X86ISD::PUNPCKHQDQ: |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 2558 | return true; |
| 2559 | } |
| 2560 | return false; |
| 2561 | } |
| 2562 | |
Bruno Cardoso Lopes | 3efc077 | 2010-08-23 20:41:02 +0000 | [diff] [blame] | 2563 | static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT, |
Bruno Cardoso Lopes | 5023ef2 | 2010-08-31 22:22:11 +0000 | [diff] [blame] | 2564 | SDValue V1, SelectionDAG &DAG) { |
| 2565 | switch(Opc) { |
| 2566 | default: llvm_unreachable("Unknown x86 shuffle node"); |
| 2567 | case X86ISD::MOVSHDUP: |
Bruno Cardoso Lopes | 013bb3d | 2010-08-31 22:35:05 +0000 | [diff] [blame] | 2568 | case X86ISD::MOVSLDUP: |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 2569 | case X86ISD::MOVDDUP: |
Bruno Cardoso Lopes | 5023ef2 | 2010-08-31 22:22:11 +0000 | [diff] [blame] | 2570 | return DAG.getNode(Opc, dl, VT, V1); |
| 2571 | } |
| 2572 | |
| 2573 | return SDValue(); |
| 2574 | } |
| 2575 | |
| 2576 | static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT, |
Bruno Cardoso Lopes | 8878e21 | 2010-08-24 01:16:15 +0000 | [diff] [blame] | 2577 | SDValue V1, unsigned TargetMask, SelectionDAG &DAG) { |
Bruno Cardoso Lopes | 3efc077 | 2010-08-23 20:41:02 +0000 | [diff] [blame] | 2578 | switch(Opc) { |
| 2579 | default: llvm_unreachable("Unknown x86 shuffle node"); |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 2580 | case X86ISD::PSHUFD: |
Bruno Cardoso Lopes | 3efc077 | 2010-08-23 20:41:02 +0000 | [diff] [blame] | 2581 | case X86ISD::PSHUFHW: |
| 2582 | case X86ISD::PSHUFLW: |
| 2583 | return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8)); |
| 2584 | } |
| 2585 | |
| 2586 | return SDValue(); |
| 2587 | } |
Chris Lattner | fcf1a3d | 2007-02-28 06:10:12 +0000 | [diff] [blame] | 2588 | |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 2589 | static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT, |
| 2590 | SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) { |
| 2591 | switch(Opc) { |
| 2592 | default: llvm_unreachable("Unknown x86 shuffle node"); |
Bruno Cardoso Lopes | aace0f2 | 2010-09-04 02:36:07 +0000 | [diff] [blame] | 2593 | case X86ISD::PALIGN: |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 2594 | case X86ISD::SHUFPD: |
| 2595 | case X86ISD::SHUFPS: |
| 2596 | return DAG.getNode(Opc, dl, VT, V1, V2, |
| 2597 | DAG.getConstant(TargetMask, MVT::i8)); |
| 2598 | } |
| 2599 | return SDValue(); |
| 2600 | } |
| 2601 | |
| 2602 | static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT, |
| 2603 | SDValue V1, SDValue V2, SelectionDAG &DAG) { |
| 2604 | switch(Opc) { |
| 2605 | default: llvm_unreachable("Unknown x86 shuffle node"); |
| 2606 | case X86ISD::MOVLHPS: |
Bruno Cardoso Lopes | f2db5b4 | 2010-08-31 21:15:21 +0000 | [diff] [blame] | 2607 | case X86ISD::MOVLHPD: |
Bruno Cardoso Lopes | 7ff30bb | 2010-08-31 21:38:49 +0000 | [diff] [blame] | 2608 | case X86ISD::MOVHLPS: |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 2609 | case X86ISD::MOVLPS: |
| 2610 | case X86ISD::MOVLPD: |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 2611 | case X86ISD::MOVSS: |
| 2612 | case X86ISD::MOVSD: |
Bruno Cardoso Lopes | 3722f00 | 2010-09-02 05:23:12 +0000 | [diff] [blame] | 2613 | case X86ISD::UNPCKLPS: |
Bruno Cardoso Lopes | be8b084 | 2010-09-03 20:10:35 +0000 | [diff] [blame] | 2614 | case X86ISD::UNPCKLPD: |
Bruno Cardoso Lopes | 3722f00 | 2010-09-02 05:23:12 +0000 | [diff] [blame] | 2615 | case X86ISD::PUNPCKLWD: |
| 2616 | case X86ISD::PUNPCKLBW: |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 2617 | case X86ISD::PUNPCKLDQ: |
Bruno Cardoso Lopes | be8b084 | 2010-09-03 20:10:35 +0000 | [diff] [blame] | 2618 | case X86ISD::PUNPCKLQDQ: |
Bruno Cardoso Lopes | 3722f00 | 2010-09-02 05:23:12 +0000 | [diff] [blame] | 2619 | case X86ISD::UNPCKHPS: |
Bruno Cardoso Lopes | be8b084 | 2010-09-03 20:10:35 +0000 | [diff] [blame] | 2620 | case X86ISD::UNPCKHPD: |
Bruno Cardoso Lopes | 3722f00 | 2010-09-02 05:23:12 +0000 | [diff] [blame] | 2621 | case X86ISD::PUNPCKHWD: |
| 2622 | case X86ISD::PUNPCKHBW: |
| 2623 | case X86ISD::PUNPCKHDQ: |
Bruno Cardoso Lopes | be8b084 | 2010-09-03 20:10:35 +0000 | [diff] [blame] | 2624 | case X86ISD::PUNPCKHQDQ: |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 2625 | return DAG.getNode(Opc, dl, VT, V1, V2); |
| 2626 | } |
| 2627 | return SDValue(); |
| 2628 | } |
| 2629 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 2630 | SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const { |
Anton Korobeynikov | a2780e1 | 2007-08-15 17:12:32 +0000 | [diff] [blame] | 2631 | MachineFunction &MF = DAG.getMachineFunction(); |
| 2632 | X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>(); |
| 2633 | int ReturnAddrIndex = FuncInfo->getRAIndex(); |
| 2634 | |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 2635 | if (ReturnAddrIndex == 0) { |
| 2636 | // Set up a frame object for the return address. |
Bill Wendling | 64e8732 | 2009-01-16 19:25:27 +0000 | [diff] [blame] | 2637 | uint64_t SlotSize = TD->getPointerSize(); |
David Greene | 3f2bf85 | 2009-11-12 20:49:22 +0000 | [diff] [blame] | 2638 | ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize, |
Evan Cheng | ed2ae13 | 2010-07-03 00:40:23 +0000 | [diff] [blame] | 2639 | false); |
Anton Korobeynikov | a2780e1 | 2007-08-15 17:12:32 +0000 | [diff] [blame] | 2640 | FuncInfo->setRAIndex(ReturnAddrIndex); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 2641 | } |
| 2642 | |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 2643 | return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy()); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 2644 | } |
| 2645 | |
| 2646 | |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 2647 | bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M, |
| 2648 | bool hasSymbolicDisplacement) { |
| 2649 | // Offset should fit into 32 bit immediate field. |
Benjamin Kramer | 34247a0 | 2010-03-29 21:13:41 +0000 | [diff] [blame] | 2650 | if (!isInt<32>(Offset)) |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 2651 | return false; |
| 2652 | |
| 2653 | // If we don't have a symbolic displacement - we don't have any extra |
| 2654 | // restrictions. |
| 2655 | if (!hasSymbolicDisplacement) |
| 2656 | return true; |
| 2657 | |
| 2658 | // FIXME: Some tweaks might be needed for medium code model. |
| 2659 | if (M != CodeModel::Small && M != CodeModel::Kernel) |
| 2660 | return false; |
| 2661 | |
| 2662 | // For small code model we assume that latest object is 16MB before end of 31 |
| 2663 | // bits boundary. We may also accept pretty large negative constants knowing |
| 2664 | // that all objects are in the positive half of address space. |
| 2665 | if (M == CodeModel::Small && Offset < 16*1024*1024) |
| 2666 | return true; |
| 2667 | |
| 2668 | // For kernel code model we know that all object resist in the negative half |
| 2669 | // of 32bits address space. We may not accept negative offsets, since they may |
| 2670 | // be just off and we may accept pretty large positive ones. |
| 2671 | if (M == CodeModel::Kernel && Offset > 0) |
| 2672 | return true; |
| 2673 | |
| 2674 | return false; |
| 2675 | } |
| 2676 | |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2677 | /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86 |
| 2678 | /// specific condition code, returning the condition code and the LHS/RHS of the |
| 2679 | /// comparison to make. |
| 2680 | static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP, |
| 2681 | SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) { |
Evan Cheng | d9558e0 | 2006-01-06 00:43:03 +0000 | [diff] [blame] | 2682 | if (!isFP) { |
Chris Lattner | bfd68a7 | 2006-09-13 17:04:54 +0000 | [diff] [blame] | 2683 | if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) { |
| 2684 | if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) { |
| 2685 | // X > -1 -> X == 0, jump !sign. |
| 2686 | RHS = DAG.getConstant(0, RHS.getValueType()); |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2687 | return X86::COND_NS; |
Chris Lattner | bfd68a7 | 2006-09-13 17:04:54 +0000 | [diff] [blame] | 2688 | } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) { |
| 2689 | // X < 0 -> X == 0, jump on sign. |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2690 | return X86::COND_S; |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 2691 | } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) { |
Dan Gohman | 5f6913c | 2007-09-17 14:49:27 +0000 | [diff] [blame] | 2692 | // X < 1 -> X <= 0 |
| 2693 | RHS = DAG.getConstant(0, RHS.getValueType()); |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2694 | return X86::COND_LE; |
Chris Lattner | bfd68a7 | 2006-09-13 17:04:54 +0000 | [diff] [blame] | 2695 | } |
Chris Lattner | f957051 | 2006-09-13 03:22:10 +0000 | [diff] [blame] | 2696 | } |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 2697 | |
Evan Cheng | d9558e0 | 2006-01-06 00:43:03 +0000 | [diff] [blame] | 2698 | switch (SetCCOpcode) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 2699 | default: llvm_unreachable("Invalid integer condition!"); |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2700 | case ISD::SETEQ: return X86::COND_E; |
| 2701 | case ISD::SETGT: return X86::COND_G; |
| 2702 | case ISD::SETGE: return X86::COND_GE; |
| 2703 | case ISD::SETLT: return X86::COND_L; |
| 2704 | case ISD::SETLE: return X86::COND_LE; |
| 2705 | case ISD::SETNE: return X86::COND_NE; |
| 2706 | case ISD::SETULT: return X86::COND_B; |
| 2707 | case ISD::SETUGT: return X86::COND_A; |
| 2708 | case ISD::SETULE: return X86::COND_BE; |
| 2709 | case ISD::SETUGE: return X86::COND_AE; |
Evan Cheng | d9558e0 | 2006-01-06 00:43:03 +0000 | [diff] [blame] | 2710 | } |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2711 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2712 | |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2713 | // First determine if it is required or is profitable to flip the operands. |
Duncan Sands | 4047f4a | 2008-10-24 13:03:10 +0000 | [diff] [blame] | 2714 | |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2715 | // If LHS is a foldable load, but RHS is not, flip the condition. |
| 2716 | if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) && |
| 2717 | !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) { |
| 2718 | SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode); |
| 2719 | std::swap(LHS, RHS); |
Evan Cheng | 4d46d0a | 2008-08-28 23:48:31 +0000 | [diff] [blame] | 2720 | } |
| 2721 | |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2722 | switch (SetCCOpcode) { |
| 2723 | default: break; |
| 2724 | case ISD::SETOLT: |
| 2725 | case ISD::SETOLE: |
| 2726 | case ISD::SETUGT: |
| 2727 | case ISD::SETUGE: |
| 2728 | std::swap(LHS, RHS); |
| 2729 | break; |
| 2730 | } |
| 2731 | |
| 2732 | // On a floating point condition, the flags are set as follows: |
| 2733 | // ZF PF CF op |
| 2734 | // 0 | 0 | 0 | X > Y |
| 2735 | // 0 | 0 | 1 | X < Y |
| 2736 | // 1 | 0 | 0 | X == Y |
| 2737 | // 1 | 1 | 1 | unordered |
| 2738 | switch (SetCCOpcode) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 2739 | default: llvm_unreachable("Condcode should be pre-legalized away"); |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2740 | case ISD::SETUEQ: |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2741 | case ISD::SETEQ: return X86::COND_E; |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2742 | case ISD::SETOLT: // flipped |
| 2743 | case ISD::SETOGT: |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2744 | case ISD::SETGT: return X86::COND_A; |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2745 | case ISD::SETOLE: // flipped |
| 2746 | case ISD::SETOGE: |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2747 | case ISD::SETGE: return X86::COND_AE; |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2748 | case ISD::SETUGT: // flipped |
| 2749 | case ISD::SETULT: |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2750 | case ISD::SETLT: return X86::COND_B; |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2751 | case ISD::SETUGE: // flipped |
| 2752 | case ISD::SETULE: |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2753 | case ISD::SETLE: return X86::COND_BE; |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2754 | case ISD::SETONE: |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2755 | case ISD::SETNE: return X86::COND_NE; |
| 2756 | case ISD::SETUO: return X86::COND_P; |
| 2757 | case ISD::SETO: return X86::COND_NP; |
Dan Gohman | 1a49295 | 2009-10-20 16:22:37 +0000 | [diff] [blame] | 2758 | case ISD::SETOEQ: |
| 2759 | case ISD::SETUNE: return X86::COND_INVALID; |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2760 | } |
Evan Cheng | d9558e0 | 2006-01-06 00:43:03 +0000 | [diff] [blame] | 2761 | } |
| 2762 | |
Evan Cheng | 4a46080 | 2006-01-11 00:33:36 +0000 | [diff] [blame] | 2763 | /// hasFPCMov - is there a floating point cmov for the specific X86 condition |
| 2764 | /// code. Current x86 isa includes the following FP cmov instructions: |
Evan Cheng | aaca22c | 2006-01-10 20:26:56 +0000 | [diff] [blame] | 2765 | /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu. |
Evan Cheng | 4a46080 | 2006-01-11 00:33:36 +0000 | [diff] [blame] | 2766 | static bool hasFPCMov(unsigned X86CC) { |
Evan Cheng | aaca22c | 2006-01-10 20:26:56 +0000 | [diff] [blame] | 2767 | switch (X86CC) { |
| 2768 | default: |
| 2769 | return false; |
Chris Lattner | 7fbe972 | 2006-10-20 17:42:20 +0000 | [diff] [blame] | 2770 | case X86::COND_B: |
| 2771 | case X86::COND_BE: |
| 2772 | case X86::COND_E: |
| 2773 | case X86::COND_P: |
| 2774 | case X86::COND_A: |
| 2775 | case X86::COND_AE: |
| 2776 | case X86::COND_NE: |
| 2777 | case X86::COND_NP: |
Evan Cheng | aaca22c | 2006-01-10 20:26:56 +0000 | [diff] [blame] | 2778 | return true; |
| 2779 | } |
| 2780 | } |
| 2781 | |
Evan Cheng | eb2f969 | 2009-10-27 19:56:55 +0000 | [diff] [blame] | 2782 | /// isFPImmLegal - Returns true if the target can instruction select the |
| 2783 | /// specified FP immediate natively. If false, the legalizer will |
| 2784 | /// materialize the FP immediate as a load from a constant pool. |
Evan Cheng | a1eaa3c | 2009-10-28 01:43:28 +0000 | [diff] [blame] | 2785 | bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const { |
Evan Cheng | eb2f969 | 2009-10-27 19:56:55 +0000 | [diff] [blame] | 2786 | for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) { |
| 2787 | if (Imm.bitwiseIsEqual(LegalFPImmediates[i])) |
| 2788 | return true; |
| 2789 | } |
| 2790 | return false; |
| 2791 | } |
| 2792 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2793 | /// isUndefOrInRange - Return true if Val is undef or if its value falls within |
| 2794 | /// the specified range (L, H]. |
| 2795 | static bool isUndefOrInRange(int Val, int Low, int Hi) { |
| 2796 | return (Val < 0) || (Val >= Low && Val < Hi); |
| 2797 | } |
| 2798 | |
| 2799 | /// isUndefOrEqual - Val is either less than zero (undef) or equal to the |
| 2800 | /// specified value. |
| 2801 | static bool isUndefOrEqual(int Val, int CmpVal) { |
| 2802 | if (Val < 0 || Val == CmpVal) |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 2803 | return true; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2804 | return false; |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 2805 | } |
| 2806 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2807 | /// isPSHUFDMask - Return true if the node specifies a shuffle of elements that |
| 2808 | /// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference |
| 2809 | /// the second operand. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2810 | static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) { |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 2811 | if (VT == MVT::v4f32 || VT == MVT::v4i32 ) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2812 | return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2813 | if (VT == MVT::v2f64 || VT == MVT::v2i64) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2814 | return (Mask[0] < 2 && Mask[1] < 2); |
| 2815 | return false; |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 2816 | } |
| 2817 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2818 | bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) { |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2819 | SmallVector<int, 8> M; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2820 | N->getMask(M); |
| 2821 | return ::isPSHUFDMask(M, N->getValueType(0)); |
| 2822 | } |
Evan Cheng | 0188ecb | 2006-03-22 18:59:22 +0000 | [diff] [blame] | 2823 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2824 | /// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that |
| 2825 | /// is suitable for input to PSHUFHW. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2826 | static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2827 | if (VT != MVT::v8i16) |
Evan Cheng | 0188ecb | 2006-03-22 18:59:22 +0000 | [diff] [blame] | 2828 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2829 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2830 | // Lower quadword copied in order or undef. |
| 2831 | for (int i = 0; i != 4; ++i) |
| 2832 | if (Mask[i] >= 0 && Mask[i] != i) |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 2833 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2834 | |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 2835 | // Upper quadword shuffled. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2836 | for (int i = 4; i != 8; ++i) |
| 2837 | if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7)) |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 2838 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2839 | |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 2840 | return true; |
| 2841 | } |
| 2842 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2843 | bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) { |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2844 | SmallVector<int, 8> M; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2845 | N->getMask(M); |
| 2846 | return ::isPSHUFHWMask(M, N->getValueType(0)); |
| 2847 | } |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 2848 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2849 | /// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that |
| 2850 | /// is suitable for input to PSHUFLW. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2851 | static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2852 | if (VT != MVT::v8i16) |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 2853 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2854 | |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 2855 | // Upper quadword copied in order. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2856 | for (int i = 4; i != 8; ++i) |
| 2857 | if (Mask[i] >= 0 && Mask[i] != i) |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 2858 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2859 | |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 2860 | // Lower quadword shuffled. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2861 | for (int i = 0; i != 4; ++i) |
| 2862 | if (Mask[i] >= 4) |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 2863 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2864 | |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 2865 | return true; |
Nate Begeman | b706d29 | 2009-04-24 03:42:54 +0000 | [diff] [blame] | 2866 | } |
| 2867 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2868 | bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) { |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2869 | SmallVector<int, 8> M; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2870 | N->getMask(M); |
| 2871 | return ::isPSHUFLWMask(M, N->getValueType(0)); |
| 2872 | } |
| 2873 | |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 2874 | /// isPALIGNRMask - Return true if the node specifies a shuffle of elements that |
| 2875 | /// is suitable for input to PALIGNR. |
| 2876 | static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT, |
| 2877 | bool hasSSSE3) { |
| 2878 | int i, e = VT.getVectorNumElements(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 2879 | |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 2880 | // Do not handle v2i64 / v2f64 shuffles with palignr. |
| 2881 | if (e < 4 || !hasSSSE3) |
| 2882 | return false; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 2883 | |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 2884 | for (i = 0; i != e; ++i) |
| 2885 | if (Mask[i] >= 0) |
| 2886 | break; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 2887 | |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 2888 | // All undef, not a palignr. |
| 2889 | if (i == e) |
| 2890 | return false; |
| 2891 | |
| 2892 | // Determine if it's ok to perform a palignr with only the LHS, since we |
| 2893 | // don't have access to the actual shuffle elements to see if RHS is undef. |
| 2894 | bool Unary = Mask[i] < (int)e; |
| 2895 | bool NeedsUnary = false; |
| 2896 | |
| 2897 | int s = Mask[i] - i; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 2898 | |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 2899 | // Check the rest of the elements to see if they are consecutive. |
| 2900 | for (++i; i != e; ++i) { |
| 2901 | int m = Mask[i]; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 2902 | if (m < 0) |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 2903 | continue; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 2904 | |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 2905 | Unary = Unary && (m < (int)e); |
| 2906 | NeedsUnary = NeedsUnary || (m < s); |
| 2907 | |
| 2908 | if (NeedsUnary && !Unary) |
| 2909 | return false; |
| 2910 | if (Unary && m != ((s+i) & (e-1))) |
| 2911 | return false; |
| 2912 | if (!Unary && m != (s+i)) |
| 2913 | return false; |
| 2914 | } |
| 2915 | return true; |
| 2916 | } |
| 2917 | |
| 2918 | bool X86::isPALIGNRMask(ShuffleVectorSDNode *N) { |
| 2919 | SmallVector<int, 8> M; |
| 2920 | N->getMask(M); |
| 2921 | return ::isPALIGNRMask(M, N->getValueType(0), true); |
| 2922 | } |
| 2923 | |
Evan Cheng | 14aed5e | 2006-03-24 01:18:28 +0000 | [diff] [blame] | 2924 | /// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand |
| 2925 | /// specifies a shuffle of elements that is suitable for input to SHUFP*. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2926 | static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2927 | int NumElems = VT.getVectorNumElements(); |
| 2928 | if (NumElems != 2 && NumElems != 4) |
| 2929 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2930 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2931 | int Half = NumElems / 2; |
| 2932 | for (int i = 0; i < Half; ++i) |
| 2933 | if (!isUndefOrInRange(Mask[i], 0, NumElems)) |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 2934 | return false; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2935 | for (int i = Half; i < NumElems; ++i) |
| 2936 | if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2)) |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 2937 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2938 | |
Evan Cheng | 14aed5e | 2006-03-24 01:18:28 +0000 | [diff] [blame] | 2939 | return true; |
| 2940 | } |
| 2941 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2942 | bool X86::isSHUFPMask(ShuffleVectorSDNode *N) { |
| 2943 | SmallVector<int, 8> M; |
| 2944 | N->getMask(M); |
| 2945 | return ::isSHUFPMask(M, N->getValueType(0)); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 2946 | } |
| 2947 | |
Evan Cheng | 213d2cf | 2007-05-17 18:45:50 +0000 | [diff] [blame] | 2948 | /// isCommutedSHUFP - Returns true if the shuffle mask is exactly |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 2949 | /// the reverse of what x86 shuffles want. x86 shuffles requires the lower |
| 2950 | /// half elements to come from vector 1 (which would equal the dest.) and |
| 2951 | /// the upper half to come from vector 2. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2952 | static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2953 | int NumElems = VT.getVectorNumElements(); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2954 | |
| 2955 | if (NumElems != 2 && NumElems != 4) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2956 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2957 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2958 | int Half = NumElems / 2; |
| 2959 | for (int i = 0; i < Half; ++i) |
| 2960 | if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2)) |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 2961 | return false; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2962 | for (int i = Half; i < NumElems; ++i) |
| 2963 | if (!isUndefOrInRange(Mask[i], 0, NumElems)) |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 2964 | return false; |
| 2965 | return true; |
| 2966 | } |
| 2967 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2968 | static bool isCommutedSHUFP(ShuffleVectorSDNode *N) { |
| 2969 | SmallVector<int, 8> M; |
| 2970 | N->getMask(M); |
| 2971 | return isCommutedSHUFPMask(M, N->getValueType(0)); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 2972 | } |
| 2973 | |
Evan Cheng | 2c0dbd0 | 2006-03-24 02:58:06 +0000 | [diff] [blame] | 2974 | /// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand |
| 2975 | /// specifies a shuffle of elements that is suitable for input to MOVHLPS. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2976 | bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) { |
| 2977 | if (N->getValueType(0).getVectorNumElements() != 4) |
Evan Cheng | 2c0dbd0 | 2006-03-24 02:58:06 +0000 | [diff] [blame] | 2978 | return false; |
| 2979 | |
Evan Cheng | 2064a2b | 2006-03-28 06:50:32 +0000 | [diff] [blame] | 2980 | // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3 |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2981 | return isUndefOrEqual(N->getMaskElt(0), 6) && |
| 2982 | isUndefOrEqual(N->getMaskElt(1), 7) && |
| 2983 | isUndefOrEqual(N->getMaskElt(2), 2) && |
| 2984 | isUndefOrEqual(N->getMaskElt(3), 3); |
Evan Cheng | 6e56e2c | 2006-11-07 22:14:24 +0000 | [diff] [blame] | 2985 | } |
| 2986 | |
Nate Begeman | 0b10b91 | 2009-11-07 23:17:15 +0000 | [diff] [blame] | 2987 | /// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form |
| 2988 | /// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef, |
| 2989 | /// <2, 3, 2, 3> |
| 2990 | bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) { |
| 2991 | unsigned NumElems = N->getValueType(0).getVectorNumElements(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 2992 | |
Nate Begeman | 0b10b91 | 2009-11-07 23:17:15 +0000 | [diff] [blame] | 2993 | if (NumElems != 4) |
| 2994 | return false; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 2995 | |
Nate Begeman | 0b10b91 | 2009-11-07 23:17:15 +0000 | [diff] [blame] | 2996 | return isUndefOrEqual(N->getMaskElt(0), 2) && |
| 2997 | isUndefOrEqual(N->getMaskElt(1), 3) && |
| 2998 | isUndefOrEqual(N->getMaskElt(2), 2) && |
| 2999 | isUndefOrEqual(N->getMaskElt(3), 3); |
| 3000 | } |
| 3001 | |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3002 | /// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand |
| 3003 | /// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3004 | bool X86::isMOVLPMask(ShuffleVectorSDNode *N) { |
| 3005 | unsigned NumElems = N->getValueType(0).getVectorNumElements(); |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3006 | |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3007 | if (NumElems != 2 && NumElems != 4) |
| 3008 | return false; |
| 3009 | |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 3010 | for (unsigned i = 0; i < NumElems/2; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3011 | if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems)) |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 3012 | return false; |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3013 | |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 3014 | for (unsigned i = NumElems/2; i < NumElems; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3015 | if (!isUndefOrEqual(N->getMaskElt(i), i)) |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 3016 | return false; |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3017 | |
| 3018 | return true; |
| 3019 | } |
| 3020 | |
Nate Begeman | 0b10b91 | 2009-11-07 23:17:15 +0000 | [diff] [blame] | 3021 | /// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand |
| 3022 | /// specifies a shuffle of elements that is suitable for input to MOVLHPS. |
| 3023 | bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3024 | unsigned NumElems = N->getValueType(0).getVectorNumElements(); |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3025 | |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3026 | if (NumElems != 2 && NumElems != 4) |
| 3027 | return false; |
| 3028 | |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 3029 | for (unsigned i = 0; i < NumElems/2; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3030 | if (!isUndefOrEqual(N->getMaskElt(i), i)) |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 3031 | return false; |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3032 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3033 | for (unsigned i = 0; i < NumElems/2; ++i) |
| 3034 | if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems)) |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 3035 | return false; |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3036 | |
| 3037 | return true; |
| 3038 | } |
| 3039 | |
Evan Cheng | 0038e59 | 2006-03-28 00:39:58 +0000 | [diff] [blame] | 3040 | /// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand |
| 3041 | /// specifies a shuffle of elements that is suitable for input to UNPCKL. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3042 | static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT, |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 3043 | bool V2IsSplat = false) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3044 | int NumElts = VT.getVectorNumElements(); |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 3045 | if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16) |
Evan Cheng | 0038e59 | 2006-03-28 00:39:58 +0000 | [diff] [blame] | 3046 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3047 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3048 | for (int i = 0, j = 0; i != NumElts; i += 2, ++j) { |
| 3049 | int BitI = Mask[i]; |
| 3050 | int BitI1 = Mask[i+1]; |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 3051 | if (!isUndefOrEqual(BitI, j)) |
| 3052 | return false; |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3053 | if (V2IsSplat) { |
Mon P Wang | 7bcaefa | 2009-02-04 01:16:59 +0000 | [diff] [blame] | 3054 | if (!isUndefOrEqual(BitI1, NumElts)) |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3055 | return false; |
| 3056 | } else { |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 3057 | if (!isUndefOrEqual(BitI1, j + NumElts)) |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3058 | return false; |
| 3059 | } |
Evan Cheng | 0038e59 | 2006-03-28 00:39:58 +0000 | [diff] [blame] | 3060 | } |
Evan Cheng | 0038e59 | 2006-03-28 00:39:58 +0000 | [diff] [blame] | 3061 | return true; |
| 3062 | } |
| 3063 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3064 | bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) { |
| 3065 | SmallVector<int, 8> M; |
| 3066 | N->getMask(M); |
| 3067 | return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3068 | } |
| 3069 | |
Evan Cheng | 4fcb922 | 2006-03-28 02:43:26 +0000 | [diff] [blame] | 3070 | /// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand |
| 3071 | /// specifies a shuffle of elements that is suitable for input to UNPCKH. |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3072 | static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT, |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 3073 | bool V2IsSplat = false) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3074 | int NumElts = VT.getVectorNumElements(); |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 3075 | if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16) |
Evan Cheng | 4fcb922 | 2006-03-28 02:43:26 +0000 | [diff] [blame] | 3076 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3077 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3078 | for (int i = 0, j = 0; i != NumElts; i += 2, ++j) { |
| 3079 | int BitI = Mask[i]; |
| 3080 | int BitI1 = Mask[i+1]; |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 3081 | if (!isUndefOrEqual(BitI, j + NumElts/2)) |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 3082 | return false; |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3083 | if (V2IsSplat) { |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 3084 | if (isUndefOrEqual(BitI1, NumElts)) |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3085 | return false; |
| 3086 | } else { |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 3087 | if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts)) |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3088 | return false; |
| 3089 | } |
Evan Cheng | 4fcb922 | 2006-03-28 02:43:26 +0000 | [diff] [blame] | 3090 | } |
Evan Cheng | 4fcb922 | 2006-03-28 02:43:26 +0000 | [diff] [blame] | 3091 | return true; |
| 3092 | } |
| 3093 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3094 | bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) { |
| 3095 | SmallVector<int, 8> M; |
| 3096 | N->getMask(M); |
| 3097 | return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3098 | } |
| 3099 | |
Evan Cheng | 1d5a8cc | 2006-04-05 07:20:06 +0000 | [diff] [blame] | 3100 | /// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form |
| 3101 | /// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef, |
| 3102 | /// <0, 0, 1, 1> |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3103 | static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3104 | int NumElems = VT.getVectorNumElements(); |
Bill Wendling | 2f9bb1a | 2007-04-24 21:16:55 +0000 | [diff] [blame] | 3105 | if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16) |
Evan Cheng | 1d5a8cc | 2006-04-05 07:20:06 +0000 | [diff] [blame] | 3106 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3107 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3108 | for (int i = 0, j = 0; i != NumElems; i += 2, ++j) { |
| 3109 | int BitI = Mask[i]; |
| 3110 | int BitI1 = Mask[i+1]; |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 3111 | if (!isUndefOrEqual(BitI, j)) |
| 3112 | return false; |
| 3113 | if (!isUndefOrEqual(BitI1, j)) |
| 3114 | return false; |
Evan Cheng | 1d5a8cc | 2006-04-05 07:20:06 +0000 | [diff] [blame] | 3115 | } |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 3116 | return true; |
Nate Begeman | b706d29 | 2009-04-24 03:42:54 +0000 | [diff] [blame] | 3117 | } |
| 3118 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3119 | bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) { |
| 3120 | SmallVector<int, 8> M; |
| 3121 | N->getMask(M); |
| 3122 | return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0)); |
| 3123 | } |
| 3124 | |
Bill Wendling | 2f9bb1a | 2007-04-24 21:16:55 +0000 | [diff] [blame] | 3125 | /// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form |
| 3126 | /// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef, |
| 3127 | /// <2, 2, 3, 3> |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3128 | static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3129 | int NumElems = VT.getVectorNumElements(); |
Bill Wendling | 2f9bb1a | 2007-04-24 21:16:55 +0000 | [diff] [blame] | 3130 | if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16) |
| 3131 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3132 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3133 | for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) { |
| 3134 | int BitI = Mask[i]; |
| 3135 | int BitI1 = Mask[i+1]; |
Bill Wendling | 2f9bb1a | 2007-04-24 21:16:55 +0000 | [diff] [blame] | 3136 | if (!isUndefOrEqual(BitI, j)) |
| 3137 | return false; |
| 3138 | if (!isUndefOrEqual(BitI1, j)) |
| 3139 | return false; |
| 3140 | } |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 3141 | return true; |
Nate Begeman | b706d29 | 2009-04-24 03:42:54 +0000 | [diff] [blame] | 3142 | } |
| 3143 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3144 | bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) { |
| 3145 | SmallVector<int, 8> M; |
| 3146 | N->getMask(M); |
| 3147 | return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0)); |
| 3148 | } |
| 3149 | |
Evan Cheng | 017dcc6 | 2006-04-21 01:05:10 +0000 | [diff] [blame] | 3150 | /// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand |
| 3151 | /// specifies a shuffle of elements that is suitable for input to MOVSS, |
| 3152 | /// MOVSD, and MOVD, i.e. setting the lowest element. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3153 | static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) { |
Eli Friedman | 1041553 | 2009-06-06 06:05:10 +0000 | [diff] [blame] | 3154 | if (VT.getVectorElementType().getSizeInBits() < 32) |
Evan Cheng | d6d1cbd | 2006-04-11 00:19:04 +0000 | [diff] [blame] | 3155 | return false; |
Eli Friedman | 1041553 | 2009-06-06 06:05:10 +0000 | [diff] [blame] | 3156 | |
| 3157 | int NumElts = VT.getVectorNumElements(); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3158 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3159 | if (!isUndefOrEqual(Mask[0], NumElts)) |
Evan Cheng | d6d1cbd | 2006-04-11 00:19:04 +0000 | [diff] [blame] | 3160 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3161 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3162 | for (int i = 1; i < NumElts; ++i) |
| 3163 | if (!isUndefOrEqual(Mask[i], i)) |
Evan Cheng | d6d1cbd | 2006-04-11 00:19:04 +0000 | [diff] [blame] | 3164 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3165 | |
Evan Cheng | d6d1cbd | 2006-04-11 00:19:04 +0000 | [diff] [blame] | 3166 | return true; |
| 3167 | } |
Evan Cheng | 1d5a8cc | 2006-04-05 07:20:06 +0000 | [diff] [blame] | 3168 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3169 | bool X86::isMOVLMask(ShuffleVectorSDNode *N) { |
| 3170 | SmallVector<int, 8> M; |
| 3171 | N->getMask(M); |
| 3172 | return ::isMOVLMask(M, N->getValueType(0)); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3173 | } |
| 3174 | |
Evan Cheng | 017dcc6 | 2006-04-21 01:05:10 +0000 | [diff] [blame] | 3175 | /// isCommutedMOVL - Returns true if the shuffle mask is except the reverse |
| 3176 | /// of what x86 movss want. X86 movs requires the lowest element to be lowest |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3177 | /// element of vector 2 and the other elements to come from vector 1 in order. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3178 | static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT, |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3179 | bool V2IsSplat = false, bool V2IsUndef = false) { |
| 3180 | int NumOps = VT.getVectorNumElements(); |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 3181 | if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16) |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3182 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3183 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3184 | if (!isUndefOrEqual(Mask[0], 0)) |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3185 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3186 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3187 | for (int i = 1; i < NumOps; ++i) |
| 3188 | if (!(isUndefOrEqual(Mask[i], i+NumOps) || |
| 3189 | (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) || |
| 3190 | (V2IsSplat && isUndefOrEqual(Mask[i], NumOps)))) |
Evan Cheng | 8cf723d | 2006-09-08 01:50:06 +0000 | [diff] [blame] | 3191 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3192 | |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3193 | return true; |
| 3194 | } |
| 3195 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3196 | static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false, |
Evan Cheng | 8cf723d | 2006-09-08 01:50:06 +0000 | [diff] [blame] | 3197 | bool V2IsUndef = false) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3198 | SmallVector<int, 8> M; |
| 3199 | N->getMask(M); |
| 3200 | return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3201 | } |
| 3202 | |
Evan Cheng | d953947 | 2006-04-14 21:59:03 +0000 | [diff] [blame] | 3203 | /// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand |
| 3204 | /// specifies a shuffle of elements that is suitable for input to MOVSHDUP. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3205 | bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N) { |
| 3206 | if (N->getValueType(0).getVectorNumElements() != 4) |
Evan Cheng | d953947 | 2006-04-14 21:59:03 +0000 | [diff] [blame] | 3207 | return false; |
| 3208 | |
| 3209 | // Expect 1, 1, 3, 3 |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 3210 | for (unsigned i = 0; i < 2; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3211 | int Elt = N->getMaskElt(i); |
| 3212 | if (Elt >= 0 && Elt != 1) |
| 3213 | return false; |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 3214 | } |
Evan Cheng | 57ebe9f | 2006-04-15 05:37:34 +0000 | [diff] [blame] | 3215 | |
| 3216 | bool HasHi = false; |
Evan Cheng | d953947 | 2006-04-14 21:59:03 +0000 | [diff] [blame] | 3217 | for (unsigned i = 2; i < 4; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3218 | int Elt = N->getMaskElt(i); |
| 3219 | if (Elt >= 0 && Elt != 3) |
| 3220 | return false; |
| 3221 | if (Elt == 3) |
| 3222 | HasHi = true; |
Evan Cheng | d953947 | 2006-04-14 21:59:03 +0000 | [diff] [blame] | 3223 | } |
Evan Cheng | 57ebe9f | 2006-04-15 05:37:34 +0000 | [diff] [blame] | 3224 | // Don't use movshdup if it can be done with a shufps. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3225 | // FIXME: verify that matching u, u, 3, 3 is what we want. |
Evan Cheng | 57ebe9f | 2006-04-15 05:37:34 +0000 | [diff] [blame] | 3226 | return HasHi; |
Evan Cheng | d953947 | 2006-04-14 21:59:03 +0000 | [diff] [blame] | 3227 | } |
| 3228 | |
| 3229 | /// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand |
| 3230 | /// specifies a shuffle of elements that is suitable for input to MOVSLDUP. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3231 | bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N) { |
| 3232 | if (N->getValueType(0).getVectorNumElements() != 4) |
Evan Cheng | d953947 | 2006-04-14 21:59:03 +0000 | [diff] [blame] | 3233 | return false; |
| 3234 | |
| 3235 | // Expect 0, 0, 2, 2 |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3236 | for (unsigned i = 0; i < 2; ++i) |
| 3237 | if (N->getMaskElt(i) > 0) |
| 3238 | return false; |
Evan Cheng | 57ebe9f | 2006-04-15 05:37:34 +0000 | [diff] [blame] | 3239 | |
| 3240 | bool HasHi = false; |
Evan Cheng | d953947 | 2006-04-14 21:59:03 +0000 | [diff] [blame] | 3241 | for (unsigned i = 2; i < 4; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3242 | int Elt = N->getMaskElt(i); |
| 3243 | if (Elt >= 0 && Elt != 2) |
| 3244 | return false; |
| 3245 | if (Elt == 2) |
| 3246 | HasHi = true; |
Evan Cheng | d953947 | 2006-04-14 21:59:03 +0000 | [diff] [blame] | 3247 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3248 | // Don't use movsldup if it can be done with a shufps. |
Evan Cheng | 57ebe9f | 2006-04-15 05:37:34 +0000 | [diff] [blame] | 3249 | return HasHi; |
Evan Cheng | d953947 | 2006-04-14 21:59:03 +0000 | [diff] [blame] | 3250 | } |
| 3251 | |
Evan Cheng | 0b457f0 | 2008-09-25 20:50:48 +0000 | [diff] [blame] | 3252 | /// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand |
| 3253 | /// specifies a shuffle of elements that is suitable for input to MOVDDUP. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3254 | bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) { |
| 3255 | int e = N->getValueType(0).getVectorNumElements() / 2; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3256 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3257 | for (int i = 0; i < e; ++i) |
| 3258 | if (!isUndefOrEqual(N->getMaskElt(i), i)) |
Evan Cheng | 0b457f0 | 2008-09-25 20:50:48 +0000 | [diff] [blame] | 3259 | return false; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3260 | for (int i = 0; i < e; ++i) |
| 3261 | if (!isUndefOrEqual(N->getMaskElt(e+i), i)) |
Evan Cheng | 0b457f0 | 2008-09-25 20:50:48 +0000 | [diff] [blame] | 3262 | return false; |
| 3263 | return true; |
| 3264 | } |
| 3265 | |
Evan Cheng | 63d3300 | 2006-03-22 08:01:21 +0000 | [diff] [blame] | 3266 | /// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 3267 | /// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions. |
Evan Cheng | 63d3300 | 2006-03-22 08:01:21 +0000 | [diff] [blame] | 3268 | unsigned X86::getShuffleSHUFImmediate(SDNode *N) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3269 | ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N); |
| 3270 | int NumOperands = SVOp->getValueType(0).getVectorNumElements(); |
| 3271 | |
Evan Cheng | b9df0ca | 2006-03-22 02:53:00 +0000 | [diff] [blame] | 3272 | unsigned Shift = (NumOperands == 4) ? 2 : 1; |
| 3273 | unsigned Mask = 0; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3274 | for (int i = 0; i < NumOperands; ++i) { |
| 3275 | int Val = SVOp->getMaskElt(NumOperands-i-1); |
| 3276 | if (Val < 0) Val = 0; |
Evan Cheng | 14aed5e | 2006-03-24 01:18:28 +0000 | [diff] [blame] | 3277 | if (Val >= NumOperands) Val -= NumOperands; |
Evan Cheng | 63d3300 | 2006-03-22 08:01:21 +0000 | [diff] [blame] | 3278 | Mask |= Val; |
Evan Cheng | 36b27f3 | 2006-03-28 23:41:33 +0000 | [diff] [blame] | 3279 | if (i != NumOperands - 1) |
| 3280 | Mask <<= Shift; |
| 3281 | } |
Evan Cheng | 63d3300 | 2006-03-22 08:01:21 +0000 | [diff] [blame] | 3282 | return Mask; |
| 3283 | } |
| 3284 | |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 3285 | /// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 3286 | /// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction. |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 3287 | unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3288 | ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N); |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 3289 | unsigned Mask = 0; |
| 3290 | // 8 nodes, but we only care about the last 4. |
| 3291 | for (unsigned i = 7; i >= 4; --i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3292 | int Val = SVOp->getMaskElt(i); |
| 3293 | if (Val >= 0) |
Mon P Wang | 7bcaefa | 2009-02-04 01:16:59 +0000 | [diff] [blame] | 3294 | Mask |= (Val - 4); |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 3295 | if (i != 4) |
| 3296 | Mask <<= 2; |
| 3297 | } |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 3298 | return Mask; |
| 3299 | } |
| 3300 | |
| 3301 | /// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 3302 | /// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction. |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 3303 | unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3304 | ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N); |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 3305 | unsigned Mask = 0; |
| 3306 | // 8 nodes, but we only care about the first 4. |
| 3307 | for (int i = 3; i >= 0; --i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3308 | int Val = SVOp->getMaskElt(i); |
| 3309 | if (Val >= 0) |
| 3310 | Mask |= Val; |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 3311 | if (i != 0) |
| 3312 | Mask <<= 2; |
| 3313 | } |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 3314 | return Mask; |
| 3315 | } |
| 3316 | |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 3317 | /// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle |
| 3318 | /// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction. |
| 3319 | unsigned X86::getShufflePALIGNRImmediate(SDNode *N) { |
| 3320 | ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N); |
| 3321 | EVT VVT = N->getValueType(0); |
| 3322 | unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3; |
| 3323 | int Val = 0; |
| 3324 | |
| 3325 | unsigned i, e; |
| 3326 | for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) { |
| 3327 | Val = SVOp->getMaskElt(i); |
| 3328 | if (Val >= 0) |
| 3329 | break; |
| 3330 | } |
| 3331 | return (Val - i) * EltSize; |
| 3332 | } |
| 3333 | |
Evan Cheng | 37b7387 | 2009-07-30 08:33:02 +0000 | [diff] [blame] | 3334 | /// isZeroNode - Returns true if Elt is a constant zero or a floating point |
| 3335 | /// constant +0.0. |
| 3336 | bool X86::isZeroNode(SDValue Elt) { |
| 3337 | return ((isa<ConstantSDNode>(Elt) && |
Dan Gohman | e368b46 | 2010-06-18 14:22:04 +0000 | [diff] [blame] | 3338 | cast<ConstantSDNode>(Elt)->isNullValue()) || |
Evan Cheng | 37b7387 | 2009-07-30 08:33:02 +0000 | [diff] [blame] | 3339 | (isa<ConstantFPSDNode>(Elt) && |
| 3340 | cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero())); |
| 3341 | } |
| 3342 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3343 | /// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in |
| 3344 | /// their permute mask. |
| 3345 | static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp, |
| 3346 | SelectionDAG &DAG) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3347 | EVT VT = SVOp->getValueType(0); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3348 | unsigned NumElems = VT.getVectorNumElements(); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3349 | SmallVector<int, 8> MaskVec; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3350 | |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3351 | for (unsigned i = 0; i != NumElems; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3352 | int idx = SVOp->getMaskElt(i); |
| 3353 | if (idx < 0) |
| 3354 | MaskVec.push_back(idx); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3355 | else if (idx < (int)NumElems) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3356 | MaskVec.push_back(idx + NumElems); |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3357 | else |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3358 | MaskVec.push_back(idx - NumElems); |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3359 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3360 | return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1), |
| 3361 | SVOp->getOperand(0), &MaskVec[0]); |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3362 | } |
| 3363 | |
Evan Cheng | 779ccea | 2007-12-07 21:30:01 +0000 | [diff] [blame] | 3364 | /// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming |
| 3365 | /// the two vector operands have swapped position. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3366 | static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) { |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3367 | unsigned NumElems = VT.getVectorNumElements(); |
| 3368 | for (unsigned i = 0; i != NumElems; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3369 | int idx = Mask[i]; |
| 3370 | if (idx < 0) |
Evan Cheng | 8a86c3f | 2007-12-07 08:07:39 +0000 | [diff] [blame] | 3371 | continue; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3372 | else if (idx < (int)NumElems) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3373 | Mask[i] = idx + NumElems; |
Evan Cheng | 8a86c3f | 2007-12-07 08:07:39 +0000 | [diff] [blame] | 3374 | else |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3375 | Mask[i] = idx - NumElems; |
Evan Cheng | 8a86c3f | 2007-12-07 08:07:39 +0000 | [diff] [blame] | 3376 | } |
Evan Cheng | 8a86c3f | 2007-12-07 08:07:39 +0000 | [diff] [blame] | 3377 | } |
| 3378 | |
Evan Cheng | 533a0aa | 2006-04-19 20:35:22 +0000 | [diff] [blame] | 3379 | /// ShouldXformToMOVHLPS - Return true if the node should be transformed to |
| 3380 | /// match movhlps. The lower half elements should come from upper half of |
| 3381 | /// V1 (and in order), and the upper half elements should come from the upper |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 3382 | /// half of V2 (and in order). |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3383 | static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) { |
| 3384 | if (Op->getValueType(0).getVectorNumElements() != 4) |
Evan Cheng | 533a0aa | 2006-04-19 20:35:22 +0000 | [diff] [blame] | 3385 | return false; |
| 3386 | for (unsigned i = 0, e = 2; i != e; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3387 | if (!isUndefOrEqual(Op->getMaskElt(i), i+2)) |
Evan Cheng | 533a0aa | 2006-04-19 20:35:22 +0000 | [diff] [blame] | 3388 | return false; |
| 3389 | for (unsigned i = 2; i != 4; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3390 | if (!isUndefOrEqual(Op->getMaskElt(i), i+4)) |
Evan Cheng | 533a0aa | 2006-04-19 20:35:22 +0000 | [diff] [blame] | 3391 | return false; |
| 3392 | return true; |
| 3393 | } |
| 3394 | |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3395 | /// isScalarLoadToVector - Returns true if the node is a scalar load that |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 3396 | /// is promoted to a vector. It also returns the LoadSDNode by reference if |
| 3397 | /// required. |
| 3398 | static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) { |
Evan Cheng | 0b457f0 | 2008-09-25 20:50:48 +0000 | [diff] [blame] | 3399 | if (N->getOpcode() != ISD::SCALAR_TO_VECTOR) |
| 3400 | return false; |
| 3401 | N = N->getOperand(0).getNode(); |
| 3402 | if (!ISD::isNON_EXTLoad(N)) |
| 3403 | return false; |
| 3404 | if (LD) |
| 3405 | *LD = cast<LoadSDNode>(N); |
| 3406 | return true; |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3407 | } |
| 3408 | |
Evan Cheng | 533a0aa | 2006-04-19 20:35:22 +0000 | [diff] [blame] | 3409 | /// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to |
| 3410 | /// match movlp{s|d}. The lower half elements should come from lower half of |
| 3411 | /// V1 (and in order), and the upper half elements should come from the upper |
| 3412 | /// half of V2 (and in order). And since V1 will become the source of the |
| 3413 | /// MOVLP, it must be either a vector load or a scalar load to vector. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3414 | static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2, |
| 3415 | ShuffleVectorSDNode *Op) { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 3416 | if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1)) |
Evan Cheng | 533a0aa | 2006-04-19 20:35:22 +0000 | [diff] [blame] | 3417 | return false; |
Evan Cheng | 23425f5 | 2006-10-09 21:39:25 +0000 | [diff] [blame] | 3418 | // Is V2 is a vector load, don't do this transformation. We will try to use |
| 3419 | // load folding shufps op. |
| 3420 | if (ISD::isNON_EXTLoad(V2)) |
| 3421 | return false; |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3422 | |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3423 | unsigned NumElems = Op->getValueType(0).getVectorNumElements(); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3424 | |
Evan Cheng | 533a0aa | 2006-04-19 20:35:22 +0000 | [diff] [blame] | 3425 | if (NumElems != 2 && NumElems != 4) |
| 3426 | return false; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3427 | for (unsigned i = 0, e = NumElems/2; i != e; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3428 | if (!isUndefOrEqual(Op->getMaskElt(i), i)) |
Evan Cheng | 533a0aa | 2006-04-19 20:35:22 +0000 | [diff] [blame] | 3429 | return false; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3430 | for (unsigned i = NumElems/2; i != NumElems; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3431 | if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems)) |
Evan Cheng | 533a0aa | 2006-04-19 20:35:22 +0000 | [diff] [blame] | 3432 | return false; |
| 3433 | return true; |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3434 | } |
| 3435 | |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3436 | /// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are |
| 3437 | /// all the same. |
| 3438 | static bool isSplatVector(SDNode *N) { |
| 3439 | if (N->getOpcode() != ISD::BUILD_VECTOR) |
| 3440 | return false; |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3441 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3442 | SDValue SplatValue = N->getOperand(0); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3443 | for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i) |
| 3444 | if (N->getOperand(i) != SplatValue) |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3445 | return false; |
| 3446 | return true; |
| 3447 | } |
| 3448 | |
Evan Cheng | 213d2cf | 2007-05-17 18:45:50 +0000 | [diff] [blame] | 3449 | /// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3450 | /// to an zero vector. |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3451 | /// FIXME: move to dag combiner / method on ShuffleVectorSDNode |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3452 | static bool isZeroShuffle(ShuffleVectorSDNode *N) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3453 | SDValue V1 = N->getOperand(0); |
| 3454 | SDValue V2 = N->getOperand(1); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3455 | unsigned NumElems = N->getValueType(0).getVectorNumElements(); |
| 3456 | for (unsigned i = 0; i != NumElems; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3457 | int Idx = N->getMaskElt(i); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3458 | if (Idx >= (int)NumElems) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3459 | unsigned Opc = V2.getOpcode(); |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 3460 | if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode())) |
| 3461 | continue; |
Evan Cheng | 37b7387 | 2009-07-30 08:33:02 +0000 | [diff] [blame] | 3462 | if (Opc != ISD::BUILD_VECTOR || |
| 3463 | !X86::isZeroNode(V2.getOperand(Idx-NumElems))) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3464 | return false; |
| 3465 | } else if (Idx >= 0) { |
| 3466 | unsigned Opc = V1.getOpcode(); |
| 3467 | if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode())) |
| 3468 | continue; |
Evan Cheng | 37b7387 | 2009-07-30 08:33:02 +0000 | [diff] [blame] | 3469 | if (Opc != ISD::BUILD_VECTOR || |
| 3470 | !X86::isZeroNode(V1.getOperand(Idx))) |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 3471 | return false; |
Evan Cheng | 213d2cf | 2007-05-17 18:45:50 +0000 | [diff] [blame] | 3472 | } |
| 3473 | } |
| 3474 | return true; |
| 3475 | } |
| 3476 | |
| 3477 | /// getZeroVector - Returns a vector of specified type with all zero elements. |
| 3478 | /// |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3479 | static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG, |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 3480 | DebugLoc dl) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3481 | assert(VT.isVector() && "Expected a vector type"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3482 | |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 3483 | // Always build SSE zero vectors as <4 x i32> bitcasted |
Bruno Cardoso Lopes | 8c05a85 | 2010-08-12 02:06:36 +0000 | [diff] [blame] | 3484 | // to their dest type. This ensures they get CSE'd. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3485 | SDValue Vec; |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 3486 | if (VT.getSizeInBits() == 128) { // SSE |
Bruno Cardoso Lopes | 8c05a85 | 2010-08-12 02:06:36 +0000 | [diff] [blame] | 3487 | if (HasSSE2) { // SSE2 |
| 3488 | SDValue Cst = DAG.getTargetConstant(0, MVT::i32); |
| 3489 | Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst); |
| 3490 | } else { // SSE1 |
| 3491 | SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32); |
| 3492 | Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst); |
| 3493 | } |
| 3494 | } else if (VT.getSizeInBits() == 256) { // AVX |
| 3495 | // 256-bit logic and arithmetic instructions in AVX are |
| 3496 | // all floating-point, no support for integer ops. Default |
| 3497 | // to emitting fp zeroed vectors then. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3498 | SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32); |
Bruno Cardoso Lopes | 8c05a85 | 2010-08-12 02:06:36 +0000 | [diff] [blame] | 3499 | SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst }; |
| 3500 | Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8); |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3501 | } |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 3502 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec); |
Evan Cheng | 213d2cf | 2007-05-17 18:45:50 +0000 | [diff] [blame] | 3503 | } |
| 3504 | |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 3505 | /// getOnesVector - Returns a vector of specified type with all bits set. |
| 3506 | /// |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3507 | static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3508 | assert(VT.isVector() && "Expected a vector type"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3509 | |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 3510 | // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest |
| 3511 | // type. This ensures they get CSE'd. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3512 | SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3513 | SDValue Vec; |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 3514 | Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 3515 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec); |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 3516 | } |
| 3517 | |
| 3518 | |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3519 | /// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements |
| 3520 | /// that point to V2 points to its first element. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3521 | static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3522 | EVT VT = SVOp->getValueType(0); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3523 | unsigned NumElems = VT.getVectorNumElements(); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3524 | |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3525 | bool Changed = false; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3526 | SmallVector<int, 8> MaskVec; |
| 3527 | SVOp->getMask(MaskVec); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3528 | |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3529 | for (unsigned i = 0; i != NumElems; ++i) { |
| 3530 | if (MaskVec[i] > (int)NumElems) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3531 | MaskVec[i] = NumElems; |
| 3532 | Changed = true; |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3533 | } |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3534 | } |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3535 | if (Changed) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3536 | return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0), |
| 3537 | SVOp->getOperand(1), &MaskVec[0]); |
| 3538 | return SDValue(SVOp, 0); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3539 | } |
| 3540 | |
Evan Cheng | 017dcc6 | 2006-04-21 01:05:10 +0000 | [diff] [blame] | 3541 | /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd |
| 3542 | /// operation of specified width. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3543 | static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1, |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3544 | SDValue V2) { |
| 3545 | unsigned NumElems = VT.getVectorNumElements(); |
| 3546 | SmallVector<int, 8> Mask; |
| 3547 | Mask.push_back(NumElems); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3548 | for (unsigned i = 1; i != NumElems; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3549 | Mask.push_back(i); |
| 3550 | return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3551 | } |
| 3552 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3553 | /// getUnpackl - Returns a vector_shuffle node for an unpackl operation. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3554 | static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1, |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3555 | SDValue V2) { |
| 3556 | unsigned NumElems = VT.getVectorNumElements(); |
| 3557 | SmallVector<int, 8> Mask; |
Evan Cheng | c575ca2 | 2006-04-17 20:43:08 +0000 | [diff] [blame] | 3558 | for (unsigned i = 0, e = NumElems/2; i != e; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3559 | Mask.push_back(i); |
| 3560 | Mask.push_back(i + NumElems); |
Evan Cheng | c575ca2 | 2006-04-17 20:43:08 +0000 | [diff] [blame] | 3561 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3562 | return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]); |
Evan Cheng | c575ca2 | 2006-04-17 20:43:08 +0000 | [diff] [blame] | 3563 | } |
| 3564 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3565 | /// getUnpackhMask - Returns a vector_shuffle node for an unpackh operation. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3566 | static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1, |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3567 | SDValue V2) { |
| 3568 | unsigned NumElems = VT.getVectorNumElements(); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3569 | unsigned Half = NumElems/2; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3570 | SmallVector<int, 8> Mask; |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3571 | for (unsigned i = 0; i != Half; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3572 | Mask.push_back(i + Half); |
| 3573 | Mask.push_back(i + NumElems + Half); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3574 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3575 | return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]); |
Chris Lattner | 6209804 | 2008-03-09 01:05:04 +0000 | [diff] [blame] | 3576 | } |
| 3577 | |
Bruno Cardoso Lopes | bb0a948 | 2010-08-13 17:50:47 +0000 | [diff] [blame] | 3578 | /// PromoteSplat - Promote a splat of v4i32, v8i16 or v16i8 to v4f32. |
| 3579 | static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3580 | EVT PVT = MVT::v4f32; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3581 | EVT VT = SV->getValueType(0); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3582 | DebugLoc dl = SV->getDebugLoc(); |
| 3583 | SDValue V1 = SV->getOperand(0); |
| 3584 | int NumElems = VT.getVectorNumElements(); |
| 3585 | int EltNo = SV->getSplatIndex(); |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 3586 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3587 | // unpack elements to the correct location |
| 3588 | while (NumElems > 4) { |
| 3589 | if (EltNo < NumElems/2) { |
| 3590 | V1 = getUnpackl(DAG, dl, VT, V1, V1); |
| 3591 | } else { |
| 3592 | V1 = getUnpackh(DAG, dl, VT, V1, V1); |
| 3593 | EltNo -= NumElems/2; |
| 3594 | } |
| 3595 | NumElems >>= 1; |
| 3596 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3597 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3598 | // Perform the splat. |
| 3599 | int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo }; |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 3600 | V1 = DAG.getNode(ISD::BIT_CONVERT, dl, PVT, V1); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3601 | V1 = DAG.getVectorShuffle(PVT, dl, V1, DAG.getUNDEF(PVT), &SplatMask[0]); |
| 3602 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, V1); |
Evan Cheng | c575ca2 | 2006-04-17 20:43:08 +0000 | [diff] [blame] | 3603 | } |
| 3604 | |
Evan Cheng | ba05f72 | 2006-04-21 23:03:30 +0000 | [diff] [blame] | 3605 | /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 3606 | /// vector of zero or undef vector. This produces a shuffle where the low |
| 3607 | /// element of V2 is swizzled into the zero/undef vector, landing at element |
| 3608 | /// Idx. This produces a shuffle mask like 4,1,2,3 (idx=0) or 0,1,2,4 (idx=3). |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3609 | static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx, |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3610 | bool isZero, bool HasSSE2, |
| 3611 | SelectionDAG &DAG) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3612 | EVT VT = V2.getValueType(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3613 | SDValue V1 = isZero |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3614 | ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT); |
| 3615 | unsigned NumElems = VT.getVectorNumElements(); |
| 3616 | SmallVector<int, 16> MaskVec; |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 3617 | for (unsigned i = 0; i != NumElems; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3618 | // If this is the insertion idx, put the low elt of V2 here. |
| 3619 | MaskVec.push_back(i == Idx ? NumElems : i); |
| 3620 | return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]); |
Evan Cheng | 017dcc6 | 2006-04-21 01:05:10 +0000 | [diff] [blame] | 3621 | } |
| 3622 | |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3623 | /// getShuffleScalarElt - Returns the scalar element that will make up the ith |
| 3624 | /// element of the result of the vector shuffle. |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 3625 | SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG, |
| 3626 | unsigned Depth) { |
| 3627 | if (Depth == 6) |
| 3628 | return SDValue(); // Limit search depth. |
| 3629 | |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3630 | SDValue V = SDValue(N, 0); |
| 3631 | EVT VT = V.getValueType(); |
| 3632 | unsigned Opcode = V.getOpcode(); |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3633 | |
| 3634 | // Recurse into ISD::VECTOR_SHUFFLE node to find scalars. |
| 3635 | if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) { |
| 3636 | Index = SV->getMaskElt(Index); |
| 3637 | |
| 3638 | if (Index < 0) |
| 3639 | return DAG.getUNDEF(VT.getVectorElementType()); |
| 3640 | |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 3641 | int NumElems = VT.getVectorNumElements(); |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3642 | SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1); |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 3643 | return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1); |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 3644 | } |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3645 | |
| 3646 | // Recurse into target specific vector shuffles to find scalars. |
| 3647 | if (isTargetShuffle(Opcode)) { |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 3648 | int NumElems = VT.getVectorNumElements(); |
| 3649 | SmallVector<unsigned, 16> ShuffleMask; |
| 3650 | SDValue ImmN; |
| 3651 | |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3652 | switch(Opcode) { |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 3653 | case X86ISD::SHUFPS: |
| 3654 | case X86ISD::SHUFPD: |
| 3655 | ImmN = N->getOperand(N->getNumOperands()-1); |
| 3656 | DecodeSHUFPSMask(NumElems, |
| 3657 | cast<ConstantSDNode>(ImmN)->getZExtValue(), |
| 3658 | ShuffleMask); |
| 3659 | break; |
| 3660 | case X86ISD::PUNPCKHBW: |
| 3661 | case X86ISD::PUNPCKHWD: |
| 3662 | case X86ISD::PUNPCKHDQ: |
| 3663 | case X86ISD::PUNPCKHQDQ: |
| 3664 | DecodePUNPCKHMask(NumElems, ShuffleMask); |
| 3665 | break; |
| 3666 | case X86ISD::UNPCKHPS: |
| 3667 | case X86ISD::UNPCKHPD: |
| 3668 | DecodeUNPCKHPMask(NumElems, ShuffleMask); |
| 3669 | break; |
| 3670 | case X86ISD::PUNPCKLBW: |
| 3671 | case X86ISD::PUNPCKLWD: |
| 3672 | case X86ISD::PUNPCKLDQ: |
| 3673 | case X86ISD::PUNPCKLQDQ: |
| 3674 | DecodePUNPCKLMask(NumElems, ShuffleMask); |
| 3675 | break; |
| 3676 | case X86ISD::UNPCKLPS: |
| 3677 | case X86ISD::UNPCKLPD: |
| 3678 | DecodeUNPCKLPMask(NumElems, ShuffleMask); |
| 3679 | break; |
| 3680 | case X86ISD::MOVHLPS: |
| 3681 | DecodeMOVHLPSMask(NumElems, ShuffleMask); |
| 3682 | break; |
| 3683 | case X86ISD::MOVLHPS: |
| 3684 | DecodeMOVLHPSMask(NumElems, ShuffleMask); |
| 3685 | break; |
| 3686 | case X86ISD::PSHUFD: |
| 3687 | ImmN = N->getOperand(N->getNumOperands()-1); |
| 3688 | DecodePSHUFMask(NumElems, |
| 3689 | cast<ConstantSDNode>(ImmN)->getZExtValue(), |
| 3690 | ShuffleMask); |
| 3691 | break; |
| 3692 | case X86ISD::PSHUFHW: |
| 3693 | ImmN = N->getOperand(N->getNumOperands()-1); |
| 3694 | DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), |
| 3695 | ShuffleMask); |
| 3696 | break; |
| 3697 | case X86ISD::PSHUFLW: |
| 3698 | ImmN = N->getOperand(N->getNumOperands()-1); |
| 3699 | DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), |
| 3700 | ShuffleMask); |
| 3701 | break; |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3702 | case X86ISD::MOVSS: |
Bruno Cardoso Lopes | 20a07f4 | 2010-08-31 02:26:40 +0000 | [diff] [blame] | 3703 | case X86ISD::MOVSD: { |
| 3704 | // The index 0 always comes from the first element of the second source, |
| 3705 | // this is why MOVSS and MOVSD are used in the first place. The other |
| 3706 | // elements come from the other positions of the first source vector. |
| 3707 | unsigned OpNum = (Index == 0) ? 1 : 0; |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 3708 | return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG, |
| 3709 | Depth+1); |
Bruno Cardoso Lopes | 20a07f4 | 2010-08-31 02:26:40 +0000 | [diff] [blame] | 3710 | } |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3711 | default: |
| 3712 | assert("not implemented for target shuffle node"); |
| 3713 | return SDValue(); |
| 3714 | } |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 3715 | |
| 3716 | Index = ShuffleMask[Index]; |
| 3717 | if (Index < 0) |
| 3718 | return DAG.getUNDEF(VT.getVectorElementType()); |
| 3719 | |
| 3720 | SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1); |
| 3721 | return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, |
| 3722 | Depth+1); |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3723 | } |
| 3724 | |
| 3725 | // Actual nodes that may contain scalar elements |
| 3726 | if (Opcode == ISD::BIT_CONVERT) { |
| 3727 | V = V.getOperand(0); |
| 3728 | EVT SrcVT = V.getValueType(); |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 3729 | unsigned NumElems = VT.getVectorNumElements(); |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3730 | |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 3731 | if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems) |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3732 | return SDValue(); |
| 3733 | } |
| 3734 | |
| 3735 | if (V.getOpcode() == ISD::SCALAR_TO_VECTOR) |
| 3736 | return (Index == 0) ? V.getOperand(0) |
| 3737 | : DAG.getUNDEF(VT.getVectorElementType()); |
| 3738 | |
| 3739 | if (V.getOpcode() == ISD::BUILD_VECTOR) |
| 3740 | return V.getOperand(Index); |
| 3741 | |
| 3742 | return SDValue(); |
| 3743 | } |
| 3744 | |
| 3745 | /// getNumOfConsecutiveZeros - Return the number of elements of a vector |
| 3746 | /// shuffle operation which come from a consecutively from a zero. The |
| 3747 | /// search can start in two diferent directions, from left or right. |
| 3748 | static |
| 3749 | unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems, |
| 3750 | bool ZerosFromLeft, SelectionDAG &DAG) { |
| 3751 | int i = 0; |
| 3752 | |
| 3753 | while (i < NumElems) { |
| 3754 | unsigned Index = ZerosFromLeft ? i : NumElems-i-1; |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 3755 | SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0); |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3756 | if (!(Elt.getNode() && |
| 3757 | (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt)))) |
| 3758 | break; |
| 3759 | ++i; |
| 3760 | } |
| 3761 | |
| 3762 | return i; |
| 3763 | } |
| 3764 | |
| 3765 | /// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to |
| 3766 | /// MaskE correspond consecutively to elements from one of the vector operands, |
| 3767 | /// starting from its index OpIdx. Also tell OpNum which source vector operand. |
| 3768 | static |
| 3769 | bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE, |
| 3770 | int OpIdx, int NumElems, unsigned &OpNum) { |
| 3771 | bool SeenV1 = false; |
| 3772 | bool SeenV2 = false; |
| 3773 | |
| 3774 | for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) { |
| 3775 | int Idx = SVOp->getMaskElt(i); |
| 3776 | // Ignore undef indicies |
| 3777 | if (Idx < 0) |
| 3778 | continue; |
| 3779 | |
| 3780 | if (Idx < NumElems) |
| 3781 | SeenV1 = true; |
| 3782 | else |
| 3783 | SeenV2 = true; |
| 3784 | |
| 3785 | // Only accept consecutive elements from the same vector |
| 3786 | if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2)) |
| 3787 | return false; |
| 3788 | } |
| 3789 | |
| 3790 | OpNum = SeenV1 ? 0 : 1; |
| 3791 | return true; |
| 3792 | } |
| 3793 | |
| 3794 | /// isVectorShiftRight - Returns true if the shuffle can be implemented as a |
| 3795 | /// logical left shift of a vector. |
| 3796 | static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG, |
| 3797 | bool &isLeft, SDValue &ShVal, unsigned &ShAmt) { |
| 3798 | unsigned NumElems = SVOp->getValueType(0).getVectorNumElements(); |
| 3799 | unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems, |
| 3800 | false /* check zeros from right */, DAG); |
| 3801 | unsigned OpSrc; |
| 3802 | |
| 3803 | if (!NumZeros) |
| 3804 | return false; |
| 3805 | |
| 3806 | // Considering the elements in the mask that are not consecutive zeros, |
| 3807 | // check if they consecutively come from only one of the source vectors. |
| 3808 | // |
| 3809 | // V1 = {X, A, B, C} 0 |
| 3810 | // \ \ \ / |
| 3811 | // vector_shuffle V1, V2 <1, 2, 3, X> |
| 3812 | // |
| 3813 | if (!isShuffleMaskConsecutive(SVOp, |
| 3814 | 0, // Mask Start Index |
| 3815 | NumElems-NumZeros-1, // Mask End Index |
| 3816 | NumZeros, // Where to start looking in the src vector |
| 3817 | NumElems, // Number of elements in vector |
| 3818 | OpSrc)) // Which source operand ? |
| 3819 | return false; |
| 3820 | |
| 3821 | isLeft = false; |
| 3822 | ShAmt = NumZeros; |
| 3823 | ShVal = SVOp->getOperand(OpSrc); |
| 3824 | return true; |
| 3825 | } |
| 3826 | |
| 3827 | /// isVectorShiftLeft - Returns true if the shuffle can be implemented as a |
| 3828 | /// logical left shift of a vector. |
| 3829 | static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG, |
| 3830 | bool &isLeft, SDValue &ShVal, unsigned &ShAmt) { |
| 3831 | unsigned NumElems = SVOp->getValueType(0).getVectorNumElements(); |
| 3832 | unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems, |
| 3833 | true /* check zeros from left */, DAG); |
| 3834 | unsigned OpSrc; |
| 3835 | |
| 3836 | if (!NumZeros) |
| 3837 | return false; |
| 3838 | |
| 3839 | // Considering the elements in the mask that are not consecutive zeros, |
| 3840 | // check if they consecutively come from only one of the source vectors. |
| 3841 | // |
| 3842 | // 0 { A, B, X, X } = V2 |
| 3843 | // / \ / / |
| 3844 | // vector_shuffle V1, V2 <X, X, 4, 5> |
| 3845 | // |
| 3846 | if (!isShuffleMaskConsecutive(SVOp, |
| 3847 | NumZeros, // Mask Start Index |
| 3848 | NumElems-1, // Mask End Index |
| 3849 | 0, // Where to start looking in the src vector |
| 3850 | NumElems, // Number of elements in vector |
| 3851 | OpSrc)) // Which source operand ? |
| 3852 | return false; |
| 3853 | |
| 3854 | isLeft = true; |
| 3855 | ShAmt = NumZeros; |
| 3856 | ShVal = SVOp->getOperand(OpSrc); |
| 3857 | return true; |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 3858 | } |
| 3859 | |
| 3860 | /// isVectorShift - Returns true if the shuffle can be implemented as a |
| 3861 | /// logical left or right shift of a vector. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3862 | static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3863 | bool &isLeft, SDValue &ShVal, unsigned &ShAmt) { |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3864 | if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) || |
| 3865 | isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt)) |
| 3866 | return true; |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 3867 | |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3868 | return false; |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 3869 | } |
| 3870 | |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3871 | /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8. |
| 3872 | /// |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3873 | static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros, |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3874 | unsigned NumNonZero, unsigned NumZero, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 3875 | SelectionDAG &DAG, |
| 3876 | const TargetLowering &TLI) { |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3877 | if (NumNonZero > 8) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3878 | return SDValue(); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3879 | |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 3880 | DebugLoc dl = Op.getDebugLoc(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3881 | SDValue V(0, 0); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3882 | bool First = true; |
| 3883 | for (unsigned i = 0; i < 16; ++i) { |
| 3884 | bool ThisIsNonZero = (NonZeros & (1 << i)) != 0; |
| 3885 | if (ThisIsNonZero && First) { |
| 3886 | if (NumZero) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3887 | V = getZeroVector(MVT::v8i16, true, DAG, dl); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3888 | else |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3889 | V = DAG.getUNDEF(MVT::v8i16); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3890 | First = false; |
| 3891 | } |
| 3892 | |
| 3893 | if ((i & 1) != 0) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3894 | SDValue ThisElt(0, 0), LastElt(0, 0); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3895 | bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0; |
| 3896 | if (LastIsNonZero) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3897 | LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3898 | MVT::i16, Op.getOperand(i-1)); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3899 | } |
| 3900 | if (ThisIsNonZero) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3901 | ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i)); |
| 3902 | ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16, |
| 3903 | ThisElt, DAG.getConstant(8, MVT::i8)); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3904 | if (LastIsNonZero) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3905 | ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3906 | } else |
| 3907 | ThisElt = LastElt; |
| 3908 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3909 | if (ThisElt.getNode()) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3910 | V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3911 | DAG.getIntPtrConstant(i/2)); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3912 | } |
| 3913 | } |
| 3914 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3915 | return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3916 | } |
| 3917 | |
Bill Wendling | a348c56 | 2007-03-22 18:42:45 +0000 | [diff] [blame] | 3918 | /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16. |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3919 | /// |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3920 | static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 3921 | unsigned NumNonZero, unsigned NumZero, |
| 3922 | SelectionDAG &DAG, |
| 3923 | const TargetLowering &TLI) { |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3924 | if (NumNonZero > 4) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3925 | return SDValue(); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3926 | |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 3927 | DebugLoc dl = Op.getDebugLoc(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3928 | SDValue V(0, 0); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3929 | bool First = true; |
| 3930 | for (unsigned i = 0; i < 8; ++i) { |
| 3931 | bool isNonZero = (NonZeros & (1 << i)) != 0; |
| 3932 | if (isNonZero) { |
| 3933 | if (First) { |
| 3934 | if (NumZero) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3935 | V = getZeroVector(MVT::v8i16, true, DAG, dl); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3936 | else |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3937 | V = DAG.getUNDEF(MVT::v8i16); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3938 | First = false; |
| 3939 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3940 | V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3941 | MVT::v8i16, V, Op.getOperand(i), |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3942 | DAG.getIntPtrConstant(i)); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3943 | } |
| 3944 | } |
| 3945 | |
| 3946 | return V; |
| 3947 | } |
| 3948 | |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 3949 | /// getVShift - Return a vector logical shift node. |
| 3950 | /// |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3951 | static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp, |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3952 | unsigned NumBits, SelectionDAG &DAG, |
| 3953 | const TargetLowering &TLI, DebugLoc dl) { |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 3954 | EVT ShVT = MVT::v2i64; |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 3955 | unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL; |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 3956 | SrcOp = DAG.getNode(ISD::BIT_CONVERT, dl, ShVT, SrcOp); |
| 3957 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, |
| 3958 | DAG.getNode(Opc, dl, ShVT, SrcOp, |
Gabor Greif | 327ef03 | 2008-08-28 23:19:51 +0000 | [diff] [blame] | 3959 | DAG.getConstant(NumBits, TLI.getShiftAmountTy()))); |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 3960 | } |
| 3961 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3962 | SDValue |
Evan Cheng | c363094 | 2009-12-09 21:00:30 +0000 | [diff] [blame] | 3963 | X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 3964 | SelectionDAG &DAG) const { |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 3965 | |
Evan Cheng | c363094 | 2009-12-09 21:00:30 +0000 | [diff] [blame] | 3966 | // Check if the scalar load can be widened into a vector load. And if |
| 3967 | // the address is "base + cst" see if the cst can be "absorbed" into |
| 3968 | // the shuffle mask. |
| 3969 | if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) { |
| 3970 | SDValue Ptr = LD->getBasePtr(); |
| 3971 | if (!ISD::isNormalLoad(LD) || LD->isVolatile()) |
| 3972 | return SDValue(); |
| 3973 | EVT PVT = LD->getValueType(0); |
| 3974 | if (PVT != MVT::i32 && PVT != MVT::f32) |
| 3975 | return SDValue(); |
| 3976 | |
| 3977 | int FI = -1; |
| 3978 | int64_t Offset = 0; |
| 3979 | if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) { |
| 3980 | FI = FINode->getIndex(); |
| 3981 | Offset = 0; |
| 3982 | } else if (Ptr.getOpcode() == ISD::ADD && |
| 3983 | isa<ConstantSDNode>(Ptr.getOperand(1)) && |
| 3984 | isa<FrameIndexSDNode>(Ptr.getOperand(0))) { |
| 3985 | FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex(); |
| 3986 | Offset = Ptr.getConstantOperandVal(1); |
| 3987 | Ptr = Ptr.getOperand(0); |
| 3988 | } else { |
| 3989 | return SDValue(); |
| 3990 | } |
| 3991 | |
| 3992 | SDValue Chain = LD->getChain(); |
| 3993 | // Make sure the stack object alignment is at least 16. |
| 3994 | MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo(); |
| 3995 | if (DAG.InferPtrAlignment(Ptr) < 16) { |
| 3996 | if (MFI->isFixedObjectIndex(FI)) { |
Eric Christopher | e9625cf | 2010-01-23 06:02:43 +0000 | [diff] [blame] | 3997 | // Can't change the alignment. FIXME: It's possible to compute |
| 3998 | // the exact stack offset and reference FI + adjust offset instead. |
| 3999 | // If someone *really* cares about this. That's the way to implement it. |
| 4000 | return SDValue(); |
Evan Cheng | c363094 | 2009-12-09 21:00:30 +0000 | [diff] [blame] | 4001 | } else { |
| 4002 | MFI->setObjectAlignment(FI, 16); |
| 4003 | } |
| 4004 | } |
| 4005 | |
| 4006 | // (Offset % 16) must be multiple of 4. Then address is then |
| 4007 | // Ptr + (Offset & ~15). |
| 4008 | if (Offset < 0) |
| 4009 | return SDValue(); |
| 4010 | if ((Offset % 16) & 3) |
| 4011 | return SDValue(); |
| 4012 | int64_t StartOffset = Offset & ~15; |
| 4013 | if (StartOffset) |
| 4014 | Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(), |
| 4015 | Ptr,DAG.getConstant(StartOffset, Ptr.getValueType())); |
| 4016 | |
| 4017 | int EltNo = (Offset - StartOffset) >> 2; |
| 4018 | int Mask[4] = { EltNo, EltNo, EltNo, EltNo }; |
| 4019 | EVT VT = (PVT == MVT::i32) ? MVT::v4i32 : MVT::v4f32; |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 4020 | SDValue V1 = DAG.getLoad(VT, dl, Chain, Ptr, |
| 4021 | LD->getPointerInfo().getWithOffset(StartOffset), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 4022 | false, false, 0); |
Evan Cheng | c363094 | 2009-12-09 21:00:30 +0000 | [diff] [blame] | 4023 | // Canonicalize it to a v4i32 shuffle. |
| 4024 | V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32, V1); |
| 4025 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, |
| 4026 | DAG.getVectorShuffle(MVT::v4i32, dl, V1, |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 4027 | DAG.getUNDEF(MVT::v4i32),&Mask[0])); |
Evan Cheng | c363094 | 2009-12-09 21:00:30 +0000 | [diff] [blame] | 4028 | } |
| 4029 | |
| 4030 | return SDValue(); |
| 4031 | } |
| 4032 | |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 4033 | /// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a |
| 4034 | /// vector of type 'VT', see if the elements can be replaced by a single large |
Nate Begeman | 1449f29 | 2010-03-24 22:19:06 +0000 | [diff] [blame] | 4035 | /// load which has the same value as a build_vector whose operands are 'elts'. |
| 4036 | /// |
| 4037 | /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 4038 | /// |
Nate Begeman | 1449f29 | 2010-03-24 22:19:06 +0000 | [diff] [blame] | 4039 | /// FIXME: we'd also like to handle the case where the last elements are zero |
| 4040 | /// rather than undef via VZEXT_LOAD, but we do not detect that case today. |
| 4041 | /// There's even a handy isZeroNode for that purpose. |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4042 | static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts, |
Chris Lattner | 8864155 | 2010-09-22 00:34:38 +0000 | [diff] [blame] | 4043 | DebugLoc &DL, SelectionDAG &DAG) { |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4044 | EVT EltVT = VT.getVectorElementType(); |
| 4045 | unsigned NumElems = Elts.size(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 4046 | |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4047 | LoadSDNode *LDBase = NULL; |
| 4048 | unsigned LastLoadedElt = -1U; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 4049 | |
Nate Begeman | 1449f29 | 2010-03-24 22:19:06 +0000 | [diff] [blame] | 4050 | // For each element in the initializer, see if we've found a load or an undef. |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 4051 | // If we don't find an initial load element, or later load elements are |
Nate Begeman | 1449f29 | 2010-03-24 22:19:06 +0000 | [diff] [blame] | 4052 | // non-consecutive, bail out. |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4053 | for (unsigned i = 0; i < NumElems; ++i) { |
| 4054 | SDValue Elt = Elts[i]; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 4055 | |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4056 | if (!Elt.getNode() || |
| 4057 | (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode()))) |
| 4058 | return SDValue(); |
| 4059 | if (!LDBase) { |
| 4060 | if (Elt.getNode()->getOpcode() == ISD::UNDEF) |
| 4061 | return SDValue(); |
| 4062 | LDBase = cast<LoadSDNode>(Elt.getNode()); |
| 4063 | LastLoadedElt = i; |
| 4064 | continue; |
| 4065 | } |
| 4066 | if (Elt.getOpcode() == ISD::UNDEF) |
| 4067 | continue; |
| 4068 | |
| 4069 | LoadSDNode *LD = cast<LoadSDNode>(Elt); |
| 4070 | if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i)) |
| 4071 | return SDValue(); |
| 4072 | LastLoadedElt = i; |
| 4073 | } |
Nate Begeman | 1449f29 | 2010-03-24 22:19:06 +0000 | [diff] [blame] | 4074 | |
| 4075 | // If we have found an entire vector of loads and undefs, then return a large |
| 4076 | // load of the entire vector width starting at the base pointer. If we found |
| 4077 | // consecutive loads for the low half, generate a vzext_load node. |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4078 | if (LastLoadedElt == NumElems - 1) { |
| 4079 | if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16) |
Chris Lattner | 8864155 | 2010-09-22 00:34:38 +0000 | [diff] [blame] | 4080 | return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(), |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 4081 | LDBase->getPointerInfo(), |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4082 | LDBase->isVolatile(), LDBase->isNonTemporal(), 0); |
Chris Lattner | 8864155 | 2010-09-22 00:34:38 +0000 | [diff] [blame] | 4083 | return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(), |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 4084 | LDBase->getPointerInfo(), |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4085 | LDBase->isVolatile(), LDBase->isNonTemporal(), |
| 4086 | LDBase->getAlignment()); |
| 4087 | } else if (NumElems == 4 && LastLoadedElt == 1) { |
| 4088 | SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other); |
| 4089 | SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() }; |
Chris Lattner | 8864155 | 2010-09-22 00:34:38 +0000 | [diff] [blame] | 4090 | SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, |
| 4091 | Ops, 2, MVT::i32, |
| 4092 | LDBase->getMemOperand()); |
| 4093 | return DAG.getNode(ISD::BIT_CONVERT, DL, VT, ResNode); |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4094 | } |
| 4095 | return SDValue(); |
| 4096 | } |
| 4097 | |
Evan Cheng | c363094 | 2009-12-09 21:00:30 +0000 | [diff] [blame] | 4098 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 4099 | X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const { |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 4100 | DebugLoc dl = Op.getDebugLoc(); |
Chris Lattner | 6e80e44 | 2010-08-28 17:15:43 +0000 | [diff] [blame] | 4101 | // All zero's are handled with pxor in SSE2 and above, xorps in SSE1. |
| 4102 | // All one's are handled with pcmpeqd. In AVX, zero's are handled with |
Bruno Cardoso Lopes | 8c05a85 | 2010-08-12 02:06:36 +0000 | [diff] [blame] | 4103 | // vpxor in 128-bit and xor{pd,ps} in 256-bit, but no 256 version of pcmpeqd |
| 4104 | // is present, so AllOnes is ignored. |
| 4105 | if (ISD::isBuildVectorAllZeros(Op.getNode()) || |
| 4106 | (Op.getValueType().getSizeInBits() != 256 && |
| 4107 | ISD::isBuildVectorAllOnes(Op.getNode()))) { |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 4108 | // Canonicalize this to <4 x i32> (SSE) to |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 4109 | // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are |
| 4110 | // eliminated on x86-32 hosts. |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 4111 | if (Op.getValueType() == MVT::v4i32) |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 4112 | return Op; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4113 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4114 | if (ISD::isBuildVectorAllOnes(Op.getNode())) |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4115 | return getOnesVector(Op.getValueType(), DAG, dl); |
| 4116 | return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl); |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 4117 | } |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4118 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4119 | EVT VT = Op.getValueType(); |
| 4120 | EVT ExtVT = VT.getVectorElementType(); |
| 4121 | unsigned EVTBits = ExtVT.getSizeInBits(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4122 | |
| 4123 | unsigned NumElems = Op.getNumOperands(); |
| 4124 | unsigned NumZero = 0; |
| 4125 | unsigned NumNonZero = 0; |
| 4126 | unsigned NonZeros = 0; |
Chris Lattner | c9517fb | 2008-03-08 22:48:29 +0000 | [diff] [blame] | 4127 | bool IsAllConstants = true; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4128 | SmallSet<SDValue, 8> Values; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4129 | for (unsigned i = 0; i < NumElems; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4130 | SDValue Elt = Op.getOperand(i); |
Evan Cheng | db2d524 | 2007-12-12 06:45:40 +0000 | [diff] [blame] | 4131 | if (Elt.getOpcode() == ISD::UNDEF) |
| 4132 | continue; |
| 4133 | Values.insert(Elt); |
| 4134 | if (Elt.getOpcode() != ISD::Constant && |
| 4135 | Elt.getOpcode() != ISD::ConstantFP) |
Chris Lattner | c9517fb | 2008-03-08 22:48:29 +0000 | [diff] [blame] | 4136 | IsAllConstants = false; |
Evan Cheng | 37b7387 | 2009-07-30 08:33:02 +0000 | [diff] [blame] | 4137 | if (X86::isZeroNode(Elt)) |
Evan Cheng | db2d524 | 2007-12-12 06:45:40 +0000 | [diff] [blame] | 4138 | NumZero++; |
| 4139 | else { |
| 4140 | NonZeros |= (1 << i); |
| 4141 | NumNonZero++; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4142 | } |
| 4143 | } |
| 4144 | |
Chris Lattner | 97a2a56 | 2010-08-26 05:24:29 +0000 | [diff] [blame] | 4145 | // All undef vector. Return an UNDEF. All zero vectors were handled above. |
| 4146 | if (NumNonZero == 0) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 4147 | return DAG.getUNDEF(VT); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4148 | |
Chris Lattner | 67f453a | 2008-03-09 05:42:06 +0000 | [diff] [blame] | 4149 | // Special case for single non-zero, non-undef, element. |
Eli Friedman | 1041553 | 2009-06-06 06:05:10 +0000 | [diff] [blame] | 4150 | if (NumNonZero == 1) { |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4151 | unsigned Idx = CountTrailingZeros_32(NonZeros); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4152 | SDValue Item = Op.getOperand(Idx); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4153 | |
Chris Lattner | 6209804 | 2008-03-09 01:05:04 +0000 | [diff] [blame] | 4154 | // If this is an insertion of an i64 value on x86-32, and if the top bits of |
| 4155 | // the value are obviously zero, truncate the value to i32 and do the |
| 4156 | // insertion that way. Only do this if the value is non-constant or if the |
| 4157 | // value is a constant being inserted into element 0. It is cheaper to do |
| 4158 | // a constant pool load than it is to do a movd + shuffle. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4159 | if (ExtVT == MVT::i64 && !Subtarget->is64Bit() && |
Chris Lattner | 6209804 | 2008-03-09 01:05:04 +0000 | [diff] [blame] | 4160 | (!IsAllConstants || Idx == 0)) { |
| 4161 | if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) { |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 4162 | // Handle SSE only. |
| 4163 | assert(VT == MVT::v2i64 && "Expected an SSE value type!"); |
| 4164 | EVT VecVT = MVT::v4i32; |
| 4165 | unsigned VecElts = 4; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4166 | |
Chris Lattner | 6209804 | 2008-03-09 01:05:04 +0000 | [diff] [blame] | 4167 | // Truncate the value (which may itself be a constant) to i32, and |
| 4168 | // convert it to a vector with movd (S2V+shuffle to zero extend). |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4169 | Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4170 | Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item); |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 4171 | Item = getShuffleVectorZeroOrUndef(Item, 0, true, |
| 4172 | Subtarget->hasSSE2(), DAG); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4173 | |
Chris Lattner | 6209804 | 2008-03-09 01:05:04 +0000 | [diff] [blame] | 4174 | // Now we have our 32-bit value zero extended in the low element of |
| 4175 | // a vector. If Idx != 0, swizzle it into place. |
| 4176 | if (Idx != 0) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4177 | SmallVector<int, 4> Mask; |
| 4178 | Mask.push_back(Idx); |
| 4179 | for (unsigned i = 1; i != VecElts; ++i) |
| 4180 | Mask.push_back(i); |
| 4181 | Item = DAG.getVectorShuffle(VecVT, dl, Item, |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4182 | DAG.getUNDEF(Item.getValueType()), |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4183 | &Mask[0]); |
Chris Lattner | 6209804 | 2008-03-09 01:05:04 +0000 | [diff] [blame] | 4184 | } |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4185 | return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Item); |
Chris Lattner | 6209804 | 2008-03-09 01:05:04 +0000 | [diff] [blame] | 4186 | } |
| 4187 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4188 | |
Chris Lattner | 19f7969 | 2008-03-08 22:59:52 +0000 | [diff] [blame] | 4189 | // If we have a constant or non-constant insertion into the low element of |
| 4190 | // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into |
| 4191 | // the rest of the elements. This will be matched as movd/movq/movss/movsd |
Eli Friedman | 1041553 | 2009-06-06 06:05:10 +0000 | [diff] [blame] | 4192 | // depending on what the source datatype is. |
| 4193 | if (Idx == 0) { |
| 4194 | if (NumZero == 0) { |
| 4195 | return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4196 | } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 || |
| 4197 | (ExtVT == MVT::i64 && Subtarget->is64Bit())) { |
Eli Friedman | 1041553 | 2009-06-06 06:05:10 +0000 | [diff] [blame] | 4198 | Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item); |
| 4199 | // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector. |
| 4200 | return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(), |
| 4201 | DAG); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4202 | } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) { |
| 4203 | Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item); |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 4204 | assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!"); |
| 4205 | EVT MiddleVT = MVT::v4i32; |
Eli Friedman | 1041553 | 2009-06-06 06:05:10 +0000 | [diff] [blame] | 4206 | Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item); |
| 4207 | Item = getShuffleVectorZeroOrUndef(Item, 0, true, |
| 4208 | Subtarget->hasSSE2(), DAG); |
| 4209 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Item); |
| 4210 | } |
Chris Lattner | c9517fb | 2008-03-08 22:48:29 +0000 | [diff] [blame] | 4211 | } |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 4212 | |
| 4213 | // Is it a vector logical left shift? |
| 4214 | if (NumElems == 2 && Idx == 1 && |
Evan Cheng | 37b7387 | 2009-07-30 08:33:02 +0000 | [diff] [blame] | 4215 | X86::isZeroNode(Op.getOperand(0)) && |
| 4216 | !X86::isZeroNode(Op.getOperand(1))) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4217 | unsigned NumBits = VT.getSizeInBits(); |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 4218 | return getVShift(true, VT, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4219 | DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, |
Dale Johannesen | b300d2a | 2009-02-07 00:55:49 +0000 | [diff] [blame] | 4220 | VT, Op.getOperand(1)), |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4221 | NumBits/2, DAG, *this, dl); |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 4222 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4223 | |
Chris Lattner | c9517fb | 2008-03-08 22:48:29 +0000 | [diff] [blame] | 4224 | if (IsAllConstants) // Otherwise, it's better to do a constpool load. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4225 | return SDValue(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4226 | |
Chris Lattner | 19f7969 | 2008-03-08 22:59:52 +0000 | [diff] [blame] | 4227 | // Otherwise, if this is a vector with i32 or f32 elements, and the element |
| 4228 | // is a non-constant being inserted into an element other than the low one, |
| 4229 | // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka |
| 4230 | // movd/movss) to move this into the low element, then shuffle it into |
| 4231 | // place. |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4232 | if (EVTBits == 32) { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4233 | Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4234 | |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4235 | // Turn it into a shuffle of zero and zero-extended scalar to vector. |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 4236 | Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, |
| 4237 | Subtarget->hasSSE2(), DAG); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4238 | SmallVector<int, 8> MaskVec; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4239 | for (unsigned i = 0; i < NumElems; i++) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4240 | MaskVec.push_back(i == Idx ? 0 : 1); |
| 4241 | return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4242 | } |
| 4243 | } |
| 4244 | |
Chris Lattner | 67f453a | 2008-03-09 05:42:06 +0000 | [diff] [blame] | 4245 | // Splat is obviously ok. Let legalizer expand it to a shuffle. |
Evan Cheng | c363094 | 2009-12-09 21:00:30 +0000 | [diff] [blame] | 4246 | if (Values.size() == 1) { |
| 4247 | if (EVTBits == 32) { |
| 4248 | // Instead of a shuffle like this: |
| 4249 | // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0> |
| 4250 | // Check if it's possible to issue this instead. |
| 4251 | // shuffle (vload ptr)), undef, <1, 1, 1, 1> |
| 4252 | unsigned Idx = CountTrailingZeros_32(NonZeros); |
| 4253 | SDValue Item = Op.getOperand(Idx); |
| 4254 | if (Op.getNode()->isOnlyUserOf(Item.getNode())) |
| 4255 | return LowerAsSplatVectorLoad(Item, VT, dl, DAG); |
| 4256 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4257 | return SDValue(); |
Evan Cheng | c363094 | 2009-12-09 21:00:30 +0000 | [diff] [blame] | 4258 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4259 | |
Dan Gohman | a394117 | 2007-07-24 22:55:08 +0000 | [diff] [blame] | 4260 | // A vector full of immediates; various special cases are already |
| 4261 | // handled, so this is best done with a single constant-pool load. |
Chris Lattner | c9517fb | 2008-03-08 22:48:29 +0000 | [diff] [blame] | 4262 | if (IsAllConstants) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4263 | return SDValue(); |
Dan Gohman | a394117 | 2007-07-24 22:55:08 +0000 | [diff] [blame] | 4264 | |
Bill Wendling | 2f9bb1a | 2007-04-24 21:16:55 +0000 | [diff] [blame] | 4265 | // Let legalizer expand 2-wide build_vectors. |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4266 | if (EVTBits == 64) { |
| 4267 | if (NumNonZero == 1) { |
| 4268 | // One half is zero or undef. |
| 4269 | unsigned Idx = CountTrailingZeros_32(NonZeros); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4270 | SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4271 | Op.getOperand(Idx)); |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 4272 | return getShuffleVectorZeroOrUndef(V2, Idx, true, |
| 4273 | Subtarget->hasSSE2(), DAG); |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4274 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4275 | return SDValue(); |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4276 | } |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4277 | |
| 4278 | // If element VT is < 32 bits, convert it to inserts into a zero vector. |
Bill Wendling | 826f36f | 2007-03-28 00:57:11 +0000 | [diff] [blame] | 4279 | if (EVTBits == 8 && NumElems == 16) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4280 | SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG, |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 4281 | *this); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4282 | if (V.getNode()) return V; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4283 | } |
| 4284 | |
Bill Wendling | 826f36f | 2007-03-28 00:57:11 +0000 | [diff] [blame] | 4285 | if (EVTBits == 16 && NumElems == 8) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4286 | SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG, |
Chris Lattner | 97a2a56 | 2010-08-26 05:24:29 +0000 | [diff] [blame] | 4287 | *this); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4288 | if (V.getNode()) return V; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4289 | } |
| 4290 | |
| 4291 | // If element VT is == 32 bits, turn it into a number of shuffles. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4292 | SmallVector<SDValue, 8> V; |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 4293 | V.resize(NumElems); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4294 | if (NumElems == 4 && NumZero > 0) { |
| 4295 | for (unsigned i = 0; i < 4; ++i) { |
| 4296 | bool isZero = !(NonZeros & (1 << i)); |
| 4297 | if (isZero) |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4298 | V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4299 | else |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4300 | V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i)); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4301 | } |
| 4302 | |
| 4303 | for (unsigned i = 0; i < 2; ++i) { |
| 4304 | switch ((NonZeros & (0x3 << i*2)) >> (i*2)) { |
| 4305 | default: break; |
| 4306 | case 0: |
| 4307 | V[i] = V[i*2]; // Must be a zero vector. |
| 4308 | break; |
| 4309 | case 1: |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4310 | V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4311 | break; |
| 4312 | case 2: |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4313 | V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4314 | break; |
| 4315 | case 3: |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4316 | V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4317 | break; |
| 4318 | } |
| 4319 | } |
| 4320 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4321 | SmallVector<int, 8> MaskVec; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4322 | bool Reverse = (NonZeros & 0x3) == 2; |
| 4323 | for (unsigned i = 0; i < 2; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4324 | MaskVec.push_back(Reverse ? 1-i : i); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4325 | Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2; |
| 4326 | for (unsigned i = 0; i < 2; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4327 | MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems); |
| 4328 | return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4329 | } |
| 4330 | |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4331 | if (Values.size() > 1 && VT.getSizeInBits() == 128) { |
| 4332 | // Check for a build vector of consecutive loads. |
| 4333 | for (unsigned i = 0; i < NumElems; ++i) |
| 4334 | V[i] = Op.getOperand(i); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 4335 | |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4336 | // Check for elements which are consecutive loads. |
| 4337 | SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG); |
| 4338 | if (LD.getNode()) |
| 4339 | return LD; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 4340 | |
| 4341 | // For SSE 4.1, use insertps to put the high elements into the low element. |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4342 | if (getSubtarget()->hasSSE41()) { |
Chris Lattner | 24faf61 | 2010-08-28 17:59:08 +0000 | [diff] [blame] | 4343 | SDValue Result; |
| 4344 | if (Op.getOperand(0).getOpcode() != ISD::UNDEF) |
| 4345 | Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0)); |
| 4346 | else |
| 4347 | Result = DAG.getUNDEF(VT); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 4348 | |
Chris Lattner | 24faf61 | 2010-08-28 17:59:08 +0000 | [diff] [blame] | 4349 | for (unsigned i = 1; i < NumElems; ++i) { |
| 4350 | if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue; |
| 4351 | Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result, |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4352 | Op.getOperand(i), DAG.getIntPtrConstant(i)); |
Chris Lattner | 24faf61 | 2010-08-28 17:59:08 +0000 | [diff] [blame] | 4353 | } |
| 4354 | return Result; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4355 | } |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 4356 | |
Chris Lattner | 6e80e44 | 2010-08-28 17:15:43 +0000 | [diff] [blame] | 4357 | // Otherwise, expand into a number of unpckl*, start by extending each of |
| 4358 | // our (non-undef) elements to the full vector width with the element in the |
| 4359 | // bottom slot of the vector (which generates no code for SSE). |
| 4360 | for (unsigned i = 0; i < NumElems; ++i) { |
| 4361 | if (Op.getOperand(i).getOpcode() != ISD::UNDEF) |
| 4362 | V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i)); |
| 4363 | else |
| 4364 | V[i] = DAG.getUNDEF(VT); |
| 4365 | } |
| 4366 | |
| 4367 | // Next, we iteratively mix elements, e.g. for v4f32: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4368 | // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0> |
| 4369 | // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1> |
| 4370 | // Step 2: unpcklps X, Y ==> <3, 2, 1, 0> |
Chris Lattner | 6e80e44 | 2010-08-28 17:15:43 +0000 | [diff] [blame] | 4371 | unsigned EltStride = NumElems >> 1; |
| 4372 | while (EltStride != 0) { |
Chris Lattner | 3ddcc43 | 2010-08-28 17:28:30 +0000 | [diff] [blame] | 4373 | for (unsigned i = 0; i < EltStride; ++i) { |
| 4374 | // If V[i+EltStride] is undef and this is the first round of mixing, |
| 4375 | // then it is safe to just drop this shuffle: V[i] is already in the |
| 4376 | // right place, the one element (since it's the first round) being |
| 4377 | // inserted as undef can be dropped. This isn't safe for successive |
| 4378 | // rounds because they will permute elements within both vectors. |
| 4379 | if (V[i+EltStride].getOpcode() == ISD::UNDEF && |
| 4380 | EltStride == NumElems/2) |
| 4381 | continue; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 4382 | |
Chris Lattner | 6e80e44 | 2010-08-28 17:15:43 +0000 | [diff] [blame] | 4383 | V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]); |
Chris Lattner | 3ddcc43 | 2010-08-28 17:28:30 +0000 | [diff] [blame] | 4384 | } |
Chris Lattner | 6e80e44 | 2010-08-28 17:15:43 +0000 | [diff] [blame] | 4385 | EltStride >>= 1; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4386 | } |
| 4387 | return V[0]; |
| 4388 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4389 | return SDValue(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4390 | } |
| 4391 | |
Mon P Wang | eb38ebf | 2010-01-24 00:05:03 +0000 | [diff] [blame] | 4392 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 4393 | X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const { |
Mon P Wang | eb38ebf | 2010-01-24 00:05:03 +0000 | [diff] [blame] | 4394 | // We support concatenate two MMX registers and place them in a MMX |
| 4395 | // register. This is better than doing a stack convert. |
| 4396 | DebugLoc dl = Op.getDebugLoc(); |
| 4397 | EVT ResVT = Op.getValueType(); |
| 4398 | assert(Op.getNumOperands() == 2); |
| 4399 | assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 || |
| 4400 | ResVT == MVT::v8i16 || ResVT == MVT::v16i8); |
| 4401 | int Mask[2]; |
| 4402 | SDValue InVec = DAG.getNode(ISD::BIT_CONVERT,dl, MVT::v1i64, Op.getOperand(0)); |
| 4403 | SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec); |
| 4404 | InVec = Op.getOperand(1); |
| 4405 | if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) { |
| 4406 | unsigned NumElts = ResVT.getVectorNumElements(); |
| 4407 | VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, ResVT, VecOp); |
| 4408 | VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp, |
| 4409 | InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1)); |
| 4410 | } else { |
| 4411 | InVec = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v1i64, InVec); |
| 4412 | SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec); |
| 4413 | Mask[0] = 0; Mask[1] = 2; |
| 4414 | VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask); |
| 4415 | } |
| 4416 | return DAG.getNode(ISD::BIT_CONVERT, dl, ResVT, VecOp); |
| 4417 | } |
| 4418 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4419 | // v8i16 shuffles - Prefer shuffles in the following order: |
| 4420 | // 1. [all] pshuflw, pshufhw, optional move |
| 4421 | // 2. [ssse3] 1 x pshufb |
| 4422 | // 3. [ssse3] 2 x pshufb + 1 x por |
| 4423 | // 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw) |
Bruno Cardoso Lopes | bf8154a | 2010-08-21 01:32:18 +0000 | [diff] [blame] | 4424 | SDValue |
| 4425 | X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op, |
| 4426 | SelectionDAG &DAG) const { |
| 4427 | ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4428 | SDValue V1 = SVOp->getOperand(0); |
| 4429 | SDValue V2 = SVOp->getOperand(1); |
| 4430 | DebugLoc dl = SVOp->getDebugLoc(); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4431 | SmallVector<int, 8> MaskVals; |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4432 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4433 | // Determine if more than 1 of the words in each of the low and high quadwords |
| 4434 | // of the result come from the same quadword of one of the two inputs. Undef |
| 4435 | // mask values count as coming from any quadword, for better codegen. |
| 4436 | SmallVector<unsigned, 4> LoQuad(4); |
| 4437 | SmallVector<unsigned, 4> HiQuad(4); |
| 4438 | BitVector InputQuads(4); |
| 4439 | for (unsigned i = 0; i < 8; ++i) { |
| 4440 | SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4441 | int EltIdx = SVOp->getMaskElt(i); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4442 | MaskVals.push_back(EltIdx); |
| 4443 | if (EltIdx < 0) { |
| 4444 | ++Quad[0]; |
| 4445 | ++Quad[1]; |
| 4446 | ++Quad[2]; |
| 4447 | ++Quad[3]; |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4448 | continue; |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4449 | } |
| 4450 | ++Quad[EltIdx / 4]; |
| 4451 | InputQuads.set(EltIdx / 4); |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4452 | } |
Bill Wendling | e85dc49 | 2008-08-21 22:35:37 +0000 | [diff] [blame] | 4453 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4454 | int BestLoQuad = -1; |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4455 | unsigned MaxQuad = 1; |
| 4456 | for (unsigned i = 0; i < 4; ++i) { |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4457 | if (LoQuad[i] > MaxQuad) { |
| 4458 | BestLoQuad = i; |
| 4459 | MaxQuad = LoQuad[i]; |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4460 | } |
Evan Cheng | 8a86c3f | 2007-12-07 08:07:39 +0000 | [diff] [blame] | 4461 | } |
| 4462 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4463 | int BestHiQuad = -1; |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4464 | MaxQuad = 1; |
| 4465 | for (unsigned i = 0; i < 4; ++i) { |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4466 | if (HiQuad[i] > MaxQuad) { |
| 4467 | BestHiQuad = i; |
| 4468 | MaxQuad = HiQuad[i]; |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4469 | } |
| 4470 | } |
| 4471 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4472 | // For SSSE3, If all 8 words of the result come from only 1 quadword of each |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4473 | // of the two input vectors, shuffle them into one input vector so only a |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4474 | // single pshufb instruction is necessary. If There are more than 2 input |
| 4475 | // quads, disable the next transformation since it does not help SSSE3. |
| 4476 | bool V1Used = InputQuads[0] || InputQuads[1]; |
| 4477 | bool V2Used = InputQuads[2] || InputQuads[3]; |
Bruno Cardoso Lopes | bf8154a | 2010-08-21 01:32:18 +0000 | [diff] [blame] | 4478 | if (Subtarget->hasSSSE3()) { |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4479 | if (InputQuads.count() == 2 && V1Used && V2Used) { |
| 4480 | BestLoQuad = InputQuads.find_first(); |
| 4481 | BestHiQuad = InputQuads.find_next(BestLoQuad); |
| 4482 | } |
| 4483 | if (InputQuads.count() > 2) { |
| 4484 | BestLoQuad = -1; |
| 4485 | BestHiQuad = -1; |
| 4486 | } |
| 4487 | } |
Bill Wendling | e85dc49 | 2008-08-21 22:35:37 +0000 | [diff] [blame] | 4488 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4489 | // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update |
| 4490 | // the shuffle mask. If a quad is scored as -1, that means that it contains |
| 4491 | // words from all 4 input quadwords. |
| 4492 | SDValue NewV; |
| 4493 | if (BestLoQuad >= 0 || BestHiQuad >= 0) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4494 | SmallVector<int, 8> MaskV; |
| 4495 | MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad); |
| 4496 | MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4497 | NewV = DAG.getVectorShuffle(MVT::v2i64, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4498 | DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V1), |
| 4499 | DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V2), &MaskV[0]); |
| 4500 | NewV = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, NewV); |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4501 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4502 | // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the |
| 4503 | // source words for the shuffle, to aid later transformations. |
| 4504 | bool AllWordsInNewV = true; |
Mon P Wang | 37b9a19 | 2009-03-11 06:35:11 +0000 | [diff] [blame] | 4505 | bool InOrder[2] = { true, true }; |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4506 | for (unsigned i = 0; i != 8; ++i) { |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4507 | int idx = MaskVals[i]; |
Mon P Wang | 37b9a19 | 2009-03-11 06:35:11 +0000 | [diff] [blame] | 4508 | if (idx != (int)i) |
| 4509 | InOrder[i/4] = false; |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4510 | if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad) |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4511 | continue; |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4512 | AllWordsInNewV = false; |
| 4513 | break; |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4514 | } |
Bill Wendling | e85dc49 | 2008-08-21 22:35:37 +0000 | [diff] [blame] | 4515 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4516 | bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV; |
| 4517 | if (AllWordsInNewV) { |
| 4518 | for (int i = 0; i != 8; ++i) { |
| 4519 | int idx = MaskVals[i]; |
| 4520 | if (idx < 0) |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4521 | continue; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4522 | idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4; |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4523 | if ((idx != i) && idx < 4) |
| 4524 | pshufhw = false; |
| 4525 | if ((idx != i) && idx > 3) |
| 4526 | pshuflw = false; |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4527 | } |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4528 | V1 = NewV; |
| 4529 | V2Used = false; |
| 4530 | BestLoQuad = 0; |
| 4531 | BestHiQuad = 1; |
Evan Cheng | 8a86c3f | 2007-12-07 08:07:39 +0000 | [diff] [blame] | 4532 | } |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4533 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4534 | // If we've eliminated the use of V2, and the new mask is a pshuflw or |
| 4535 | // pshufhw, that's as cheap as it gets. Return the new shuffle. |
Mon P Wang | 37b9a19 | 2009-03-11 06:35:11 +0000 | [diff] [blame] | 4536 | if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) { |
Bruno Cardoso Lopes | 3efc077 | 2010-08-23 20:41:02 +0000 | [diff] [blame] | 4537 | unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW; |
| 4538 | unsigned TargetMask = 0; |
| 4539 | NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4540 | DAG.getUNDEF(MVT::v8i16), &MaskVals[0]); |
Bruno Cardoso Lopes | 3efc077 | 2010-08-23 20:41:02 +0000 | [diff] [blame] | 4541 | TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()): |
| 4542 | X86::getShufflePSHUFLWImmediate(NewV.getNode()); |
| 4543 | V1 = NewV.getOperand(0); |
Bruno Cardoso Lopes | 8878e21 | 2010-08-24 01:16:15 +0000 | [diff] [blame] | 4544 | return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG); |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4545 | } |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4546 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4547 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4548 | // If we have SSSE3, and all words of the result are from 1 input vector, |
| 4549 | // case 2 is generated, otherwise case 3 is generated. If no SSSE3 |
| 4550 | // is present, fall back to case 4. |
Bruno Cardoso Lopes | bf8154a | 2010-08-21 01:32:18 +0000 | [diff] [blame] | 4551 | if (Subtarget->hasSSSE3()) { |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4552 | SmallVector<SDValue,16> pshufbMask; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4553 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4554 | // If we have elements from both input vectors, set the high bit of the |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4555 | // shuffle mask element to zero out elements that come from V2 in the V1 |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4556 | // mask, and elements that come from V1 in the V2 mask, so that the two |
| 4557 | // results can be OR'd together. |
| 4558 | bool TwoInputs = V1Used && V2Used; |
| 4559 | for (unsigned i = 0; i != 8; ++i) { |
| 4560 | int EltIdx = MaskVals[i] * 2; |
| 4561 | if (TwoInputs && (EltIdx >= 16)) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4562 | pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8)); |
| 4563 | pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4564 | continue; |
| 4565 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4566 | pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8)); |
| 4567 | pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4568 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4569 | V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V1); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4570 | V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1, |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 4571 | DAG.getNode(ISD::BUILD_VECTOR, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4572 | MVT::v16i8, &pshufbMask[0], 16)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4573 | if (!TwoInputs) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4574 | return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4575 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4576 | // Calculate the shuffle mask for the second input, shuffle it, and |
| 4577 | // OR it with the first shuffled input. |
| 4578 | pshufbMask.clear(); |
| 4579 | for (unsigned i = 0; i != 8; ++i) { |
| 4580 | int EltIdx = MaskVals[i] * 2; |
| 4581 | if (EltIdx < 16) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4582 | pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8)); |
| 4583 | pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4584 | continue; |
| 4585 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4586 | pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8)); |
| 4587 | pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4588 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4589 | V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V2); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4590 | V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2, |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 4591 | DAG.getNode(ISD::BUILD_VECTOR, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4592 | MVT::v16i8, &pshufbMask[0], 16)); |
| 4593 | V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2); |
| 4594 | return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4595 | } |
| 4596 | |
| 4597 | // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order, |
| 4598 | // and update MaskVals with new element order. |
| 4599 | BitVector InOrder(8); |
| 4600 | if (BestLoQuad >= 0) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4601 | SmallVector<int, 8> MaskV; |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4602 | for (int i = 0; i != 4; ++i) { |
| 4603 | int idx = MaskVals[i]; |
| 4604 | if (idx < 0) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4605 | MaskV.push_back(-1); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4606 | InOrder.set(i); |
| 4607 | } else if ((idx / 4) == BestLoQuad) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4608 | MaskV.push_back(idx & 3); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4609 | InOrder.set(i); |
| 4610 | } else { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4611 | MaskV.push_back(-1); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4612 | } |
| 4613 | } |
| 4614 | for (unsigned i = 4; i != 8; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4615 | MaskV.push_back(i); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4616 | NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16), |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4617 | &MaskV[0]); |
Bruno Cardoso Lopes | 8878e21 | 2010-08-24 01:16:15 +0000 | [diff] [blame] | 4618 | |
| 4619 | if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) |
| 4620 | NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16, |
| 4621 | NewV.getOperand(0), |
| 4622 | X86::getShufflePSHUFLWImmediate(NewV.getNode()), |
| 4623 | DAG); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4624 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4625 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4626 | // If BestHi >= 0, generate a pshufhw to put the high elements in order, |
| 4627 | // and update MaskVals with the new element order. |
| 4628 | if (BestHiQuad >= 0) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4629 | SmallVector<int, 8> MaskV; |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4630 | for (unsigned i = 0; i != 4; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4631 | MaskV.push_back(i); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4632 | for (unsigned i = 4; i != 8; ++i) { |
| 4633 | int idx = MaskVals[i]; |
| 4634 | if (idx < 0) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4635 | MaskV.push_back(-1); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4636 | InOrder.set(i); |
| 4637 | } else if ((idx / 4) == BestHiQuad) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4638 | MaskV.push_back((idx & 3) + 4); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4639 | InOrder.set(i); |
| 4640 | } else { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4641 | MaskV.push_back(-1); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4642 | } |
| 4643 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4644 | NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16), |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4645 | &MaskV[0]); |
Bruno Cardoso Lopes | 8878e21 | 2010-08-24 01:16:15 +0000 | [diff] [blame] | 4646 | |
| 4647 | if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) |
| 4648 | NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16, |
| 4649 | NewV.getOperand(0), |
| 4650 | X86::getShufflePSHUFHWImmediate(NewV.getNode()), |
| 4651 | DAG); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4652 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4653 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4654 | // In case BestHi & BestLo were both -1, which means each quadword has a word |
| 4655 | // from each of the four input quadwords, calculate the InOrder bitvector now |
| 4656 | // before falling through to the insert/extract cleanup. |
| 4657 | if (BestLoQuad == -1 && BestHiQuad == -1) { |
| 4658 | NewV = V1; |
| 4659 | for (int i = 0; i != 8; ++i) |
| 4660 | if (MaskVals[i] < 0 || MaskVals[i] == i) |
| 4661 | InOrder.set(i); |
| 4662 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4663 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4664 | // The other elements are put in the right place using pextrw and pinsrw. |
| 4665 | for (unsigned i = 0; i != 8; ++i) { |
| 4666 | if (InOrder[i]) |
| 4667 | continue; |
| 4668 | int EltIdx = MaskVals[i]; |
| 4669 | if (EltIdx < 0) |
| 4670 | continue; |
| 4671 | SDValue ExtOp = (EltIdx < 8) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4672 | ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1, |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4673 | DAG.getIntPtrConstant(EltIdx)) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4674 | : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2, |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4675 | DAG.getIntPtrConstant(EltIdx - 8)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4676 | NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp, |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4677 | DAG.getIntPtrConstant(i)); |
| 4678 | } |
| 4679 | return NewV; |
| 4680 | } |
| 4681 | |
| 4682 | // v16i8 shuffles - Prefer shuffles in the following order: |
| 4683 | // 1. [ssse3] 1 x pshufb |
| 4684 | // 2. [ssse3] 2 x pshufb + 1 x por |
| 4685 | // 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw |
| 4686 | static |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4687 | SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 4688 | SelectionDAG &DAG, |
| 4689 | const X86TargetLowering &TLI) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4690 | SDValue V1 = SVOp->getOperand(0); |
| 4691 | SDValue V2 = SVOp->getOperand(1); |
| 4692 | DebugLoc dl = SVOp->getDebugLoc(); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4693 | SmallVector<int, 16> MaskVals; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4694 | SVOp->getMask(MaskVals); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4695 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4696 | // If we have SSSE3, case 1 is generated when all result bytes come from |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4697 | // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4698 | // present, fall back to case 3. |
| 4699 | // FIXME: kill V2Only once shuffles are canonizalized by getNode. |
| 4700 | bool V1Only = true; |
| 4701 | bool V2Only = true; |
| 4702 | for (unsigned i = 0; i < 16; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4703 | int EltIdx = MaskVals[i]; |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4704 | if (EltIdx < 0) |
| 4705 | continue; |
| 4706 | if (EltIdx < 16) |
| 4707 | V2Only = false; |
| 4708 | else |
| 4709 | V1Only = false; |
| 4710 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4711 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4712 | // If SSSE3, use 1 pshufb instruction per vector with elements in the result. |
| 4713 | if (TLI.getSubtarget()->hasSSSE3()) { |
| 4714 | SmallVector<SDValue,16> pshufbMask; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4715 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4716 | // If all result elements are from one input vector, then only translate |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4717 | // undef mask values to 0x80 (zero out result) in the pshufb mask. |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4718 | // |
| 4719 | // Otherwise, we have elements from both input vectors, and must zero out |
| 4720 | // elements that come from V2 in the first mask, and V1 in the second mask |
| 4721 | // so that we can OR them together. |
| 4722 | bool TwoInputs = !(V1Only || V2Only); |
| 4723 | for (unsigned i = 0; i != 16; ++i) { |
| 4724 | int EltIdx = MaskVals[i]; |
| 4725 | if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4726 | pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4727 | continue; |
| 4728 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4729 | pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4730 | } |
| 4731 | // If all the elements are from V2, assign it to V1 and return after |
| 4732 | // building the first pshufb. |
| 4733 | if (V2Only) |
| 4734 | V1 = V2; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4735 | V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1, |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 4736 | DAG.getNode(ISD::BUILD_VECTOR, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4737 | MVT::v16i8, &pshufbMask[0], 16)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4738 | if (!TwoInputs) |
| 4739 | return V1; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4740 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4741 | // Calculate the shuffle mask for the second input, shuffle it, and |
| 4742 | // OR it with the first shuffled input. |
| 4743 | pshufbMask.clear(); |
| 4744 | for (unsigned i = 0; i != 16; ++i) { |
| 4745 | int EltIdx = MaskVals[i]; |
| 4746 | if (EltIdx < 16) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4747 | pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4748 | continue; |
| 4749 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4750 | pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4751 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4752 | V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2, |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 4753 | DAG.getNode(ISD::BUILD_VECTOR, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4754 | MVT::v16i8, &pshufbMask[0], 16)); |
| 4755 | return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4756 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4757 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4758 | // No SSSE3 - Calculate in place words and then fix all out of place words |
| 4759 | // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from |
| 4760 | // the 16 different words that comprise the two doublequadword input vectors. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4761 | V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1); |
| 4762 | V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V2); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4763 | SDValue NewV = V2Only ? V2 : V1; |
| 4764 | for (int i = 0; i != 8; ++i) { |
| 4765 | int Elt0 = MaskVals[i*2]; |
| 4766 | int Elt1 = MaskVals[i*2+1]; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4767 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4768 | // This word of the result is all undef, skip it. |
| 4769 | if (Elt0 < 0 && Elt1 < 0) |
| 4770 | continue; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4771 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4772 | // This word of the result is already in the correct place, skip it. |
| 4773 | if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1)) |
| 4774 | continue; |
| 4775 | if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17)) |
| 4776 | continue; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4777 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4778 | SDValue Elt0Src = Elt0 < 16 ? V1 : V2; |
| 4779 | SDValue Elt1Src = Elt1 < 16 ? V1 : V2; |
| 4780 | SDValue InsElt; |
Mon P Wang | 6b3ef69 | 2009-03-11 18:47:57 +0000 | [diff] [blame] | 4781 | |
| 4782 | // If Elt0 and Elt1 are defined, are consecutive, and can be load |
| 4783 | // using a single extract together, load it and store it. |
| 4784 | if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4785 | InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src, |
Mon P Wang | 6b3ef69 | 2009-03-11 18:47:57 +0000 | [diff] [blame] | 4786 | DAG.getIntPtrConstant(Elt1 / 2)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4787 | NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt, |
Mon P Wang | 6b3ef69 | 2009-03-11 18:47:57 +0000 | [diff] [blame] | 4788 | DAG.getIntPtrConstant(i)); |
| 4789 | continue; |
| 4790 | } |
| 4791 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4792 | // If Elt1 is defined, extract it from the appropriate source. If the |
Mon P Wang | 6b3ef69 | 2009-03-11 18:47:57 +0000 | [diff] [blame] | 4793 | // source byte is not also odd, shift the extracted word left 8 bits |
| 4794 | // otherwise clear the bottom 8 bits if we need to do an or. |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4795 | if (Elt1 >= 0) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4796 | InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src, |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4797 | DAG.getIntPtrConstant(Elt1 / 2)); |
| 4798 | if ((Elt1 & 1) == 0) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4799 | InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt, |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4800 | DAG.getConstant(8, TLI.getShiftAmountTy())); |
Mon P Wang | 6b3ef69 | 2009-03-11 18:47:57 +0000 | [diff] [blame] | 4801 | else if (Elt0 >= 0) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4802 | InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt, |
| 4803 | DAG.getConstant(0xFF00, MVT::i16)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4804 | } |
| 4805 | // If Elt0 is defined, extract it from the appropriate source. If the |
| 4806 | // source byte is not also even, shift the extracted word right 8 bits. If |
| 4807 | // Elt1 was also defined, OR the extracted values together before |
| 4808 | // inserting them in the result. |
| 4809 | if (Elt0 >= 0) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4810 | SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4811 | Elt0Src, DAG.getIntPtrConstant(Elt0 / 2)); |
| 4812 | if ((Elt0 & 1) != 0) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4813 | InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0, |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4814 | DAG.getConstant(8, TLI.getShiftAmountTy())); |
Mon P Wang | 6b3ef69 | 2009-03-11 18:47:57 +0000 | [diff] [blame] | 4815 | else if (Elt1 >= 0) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4816 | InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0, |
| 4817 | DAG.getConstant(0x00FF, MVT::i16)); |
| 4818 | InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0) |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4819 | : InsElt0; |
| 4820 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4821 | NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt, |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4822 | DAG.getIntPtrConstant(i)); |
| 4823 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4824 | return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, NewV); |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4825 | } |
| 4826 | |
Evan Cheng | 7a831ce | 2007-12-15 03:00:47 +0000 | [diff] [blame] | 4827 | /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide |
Bruno Cardoso Lopes | 0a7dd4f | 2010-09-08 18:12:31 +0000 | [diff] [blame] | 4828 | /// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be |
Evan Cheng | 7a831ce | 2007-12-15 03:00:47 +0000 | [diff] [blame] | 4829 | /// done when every pair / quad of shuffle mask elements point to elements in |
| 4830 | /// the right sequence. e.g. |
Bruno Cardoso Lopes | 0a7dd4f | 2010-09-08 18:12:31 +0000 | [diff] [blame] | 4831 | /// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15> |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4832 | static |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4833 | SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp, |
Bruno Cardoso Lopes | 90462b4 | 2010-09-07 21:03:14 +0000 | [diff] [blame] | 4834 | SelectionDAG &DAG, DebugLoc dl) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4835 | EVT VT = SVOp->getValueType(0); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4836 | SDValue V1 = SVOp->getOperand(0); |
| 4837 | SDValue V2 = SVOp->getOperand(1); |
| 4838 | unsigned NumElems = VT.getVectorNumElements(); |
Evan Cheng | 7a831ce | 2007-12-15 03:00:47 +0000 | [diff] [blame] | 4839 | unsigned NewWidth = (NumElems == 4) ? 2 : 4; |
Bruno Cardoso Lopes | 0a7dd4f | 2010-09-08 18:12:31 +0000 | [diff] [blame] | 4840 | EVT NewVT; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4841 | switch (VT.getSimpleVT().SimpleTy) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4842 | default: assert(false && "Unexpected!"); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4843 | case MVT::v4f32: NewVT = MVT::v2f64; break; |
| 4844 | case MVT::v4i32: NewVT = MVT::v2i64; break; |
| 4845 | case MVT::v8i16: NewVT = MVT::v4i32; break; |
| 4846 | case MVT::v16i8: NewVT = MVT::v4i32; break; |
Evan Cheng | 7a831ce | 2007-12-15 03:00:47 +0000 | [diff] [blame] | 4847 | } |
| 4848 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4849 | int Scale = NumElems / NewWidth; |
| 4850 | SmallVector<int, 8> MaskVec; |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4851 | for (unsigned i = 0; i < NumElems; i += Scale) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4852 | int StartIdx = -1; |
| 4853 | for (int j = 0; j < Scale; ++j) { |
| 4854 | int EltIdx = SVOp->getMaskElt(i+j); |
| 4855 | if (EltIdx < 0) |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4856 | continue; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4857 | if (StartIdx == -1) |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4858 | StartIdx = EltIdx - (EltIdx % Scale); |
| 4859 | if (EltIdx != StartIdx + j) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4860 | return SDValue(); |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4861 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4862 | if (StartIdx == -1) |
| 4863 | MaskVec.push_back(-1); |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4864 | else |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4865 | MaskVec.push_back(StartIdx / Scale); |
Evan Cheng | 8a86c3f | 2007-12-07 08:07:39 +0000 | [diff] [blame] | 4866 | } |
| 4867 | |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4868 | V1 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V1); |
| 4869 | V2 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V2); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4870 | return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]); |
Evan Cheng | 8a86c3f | 2007-12-07 08:07:39 +0000 | [diff] [blame] | 4871 | } |
| 4872 | |
Evan Cheng | d880b97 | 2008-05-09 21:53:03 +0000 | [diff] [blame] | 4873 | /// getVZextMovL - Return a zero-extending vector move low node. |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4874 | /// |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4875 | static SDValue getVZextMovL(EVT VT, EVT OpVT, |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4876 | SDValue SrcOp, SelectionDAG &DAG, |
| 4877 | const X86Subtarget *Subtarget, DebugLoc dl) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4878 | if (VT == MVT::v2f64 || VT == MVT::v4f32) { |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4879 | LoadSDNode *LD = NULL; |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4880 | if (!isScalarLoadToVector(SrcOp.getNode(), &LD)) |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4881 | LD = dyn_cast<LoadSDNode>(SrcOp); |
| 4882 | if (!LD) { |
| 4883 | // movssrr and movsdrr do not clear top bits. Try to use movd, movq |
| 4884 | // instead. |
Owen Anderson | 766b5ef | 2009-08-11 21:59:30 +0000 | [diff] [blame] | 4885 | MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32; |
Duncan Sands | cdfad36 | 2010-11-03 12:17:33 +0000 | [diff] [blame] | 4886 | if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) && |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4887 | SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR && |
| 4888 | SrcOp.getOperand(0).getOpcode() == ISD::BIT_CONVERT && |
Owen Anderson | 766b5ef | 2009-08-11 21:59:30 +0000 | [diff] [blame] | 4889 | SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) { |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4890 | // PR2108 |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4891 | OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32; |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4892 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, |
| 4893 | DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT, |
| 4894 | DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, |
| 4895 | OpVT, |
Gabor Greif | 327ef03 | 2008-08-28 23:19:51 +0000 | [diff] [blame] | 4896 | SrcOp.getOperand(0) |
| 4897 | .getOperand(0)))); |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4898 | } |
| 4899 | } |
| 4900 | } |
| 4901 | |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4902 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, |
| 4903 | DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4904 | DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4905 | OpVT, SrcOp))); |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4906 | } |
| 4907 | |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4908 | /// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of |
| 4909 | /// shuffles. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4910 | static SDValue |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4911 | LowerVECTOR_SHUFFLE_4wide(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) { |
| 4912 | SDValue V1 = SVOp->getOperand(0); |
| 4913 | SDValue V2 = SVOp->getOperand(1); |
| 4914 | DebugLoc dl = SVOp->getDebugLoc(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4915 | EVT VT = SVOp->getValueType(0); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4916 | |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4917 | SmallVector<std::pair<int, int>, 8> Locs; |
Rafael Espindola | 833a990 | 2008-08-28 18:32:53 +0000 | [diff] [blame] | 4918 | Locs.resize(4); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4919 | SmallVector<int, 8> Mask1(4U, -1); |
| 4920 | SmallVector<int, 8> PermMask; |
| 4921 | SVOp->getMask(PermMask); |
| 4922 | |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4923 | unsigned NumHi = 0; |
| 4924 | unsigned NumLo = 0; |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4925 | for (unsigned i = 0; i != 4; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4926 | int Idx = PermMask[i]; |
| 4927 | if (Idx < 0) { |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4928 | Locs[i] = std::make_pair(-1, -1); |
| 4929 | } else { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4930 | assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!"); |
| 4931 | if (Idx < 4) { |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4932 | Locs[i] = std::make_pair(0, NumLo); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4933 | Mask1[NumLo] = Idx; |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4934 | NumLo++; |
| 4935 | } else { |
| 4936 | Locs[i] = std::make_pair(1, NumHi); |
| 4937 | if (2+NumHi < 4) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4938 | Mask1[2+NumHi] = Idx; |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4939 | NumHi++; |
| 4940 | } |
| 4941 | } |
| 4942 | } |
Evan Cheng | 5e6ebaf | 2008-07-23 00:22:17 +0000 | [diff] [blame] | 4943 | |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4944 | if (NumLo <= 2 && NumHi <= 2) { |
Evan Cheng | 5e6ebaf | 2008-07-23 00:22:17 +0000 | [diff] [blame] | 4945 | // If no more than two elements come from either vector. This can be |
| 4946 | // implemented with two shuffles. First shuffle gather the elements. |
| 4947 | // The second shuffle, which takes the first shuffle as both of its |
| 4948 | // vector operands, put the elements into the right order. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4949 | V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]); |
Evan Cheng | 5e6ebaf | 2008-07-23 00:22:17 +0000 | [diff] [blame] | 4950 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4951 | SmallVector<int, 8> Mask2(4U, -1); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4952 | |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4953 | for (unsigned i = 0; i != 4; ++i) { |
| 4954 | if (Locs[i].first == -1) |
| 4955 | continue; |
| 4956 | else { |
| 4957 | unsigned Idx = (i < 2) ? 0 : 4; |
| 4958 | Idx += Locs[i].first * 2 + Locs[i].second; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4959 | Mask2[i] = Idx; |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4960 | } |
| 4961 | } |
| 4962 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4963 | return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]); |
Evan Cheng | 5e6ebaf | 2008-07-23 00:22:17 +0000 | [diff] [blame] | 4964 | } else if (NumLo == 3 || NumHi == 3) { |
| 4965 | // Otherwise, we must have three elements from one vector, call it X, and |
| 4966 | // one element from the other, call it Y. First, use a shufps to build an |
| 4967 | // intermediate vector with the one element from Y and the element from X |
| 4968 | // that will be in the same half in the final destination (the indexes don't |
| 4969 | // matter). Then, use a shufps to build the final vector, taking the half |
| 4970 | // containing the element from Y from the intermediate, and the other half |
| 4971 | // from X. |
| 4972 | if (NumHi == 3) { |
| 4973 | // Normalize it so the 3 elements come from V1. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4974 | CommuteVectorShuffleMask(PermMask, VT); |
Evan Cheng | 5e6ebaf | 2008-07-23 00:22:17 +0000 | [diff] [blame] | 4975 | std::swap(V1, V2); |
| 4976 | } |
| 4977 | |
| 4978 | // Find the element from V2. |
| 4979 | unsigned HiIndex; |
| 4980 | for (HiIndex = 0; HiIndex < 3; ++HiIndex) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4981 | int Val = PermMask[HiIndex]; |
| 4982 | if (Val < 0) |
Evan Cheng | 5e6ebaf | 2008-07-23 00:22:17 +0000 | [diff] [blame] | 4983 | continue; |
Evan Cheng | 5e6ebaf | 2008-07-23 00:22:17 +0000 | [diff] [blame] | 4984 | if (Val >= 4) |
| 4985 | break; |
| 4986 | } |
| 4987 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4988 | Mask1[0] = PermMask[HiIndex]; |
| 4989 | Mask1[1] = -1; |
| 4990 | Mask1[2] = PermMask[HiIndex^1]; |
| 4991 | Mask1[3] = -1; |
| 4992 | V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]); |
Evan Cheng | 5e6ebaf | 2008-07-23 00:22:17 +0000 | [diff] [blame] | 4993 | |
| 4994 | if (HiIndex >= 2) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4995 | Mask1[0] = PermMask[0]; |
| 4996 | Mask1[1] = PermMask[1]; |
| 4997 | Mask1[2] = HiIndex & 1 ? 6 : 4; |
| 4998 | Mask1[3] = HiIndex & 1 ? 4 : 6; |
| 4999 | return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]); |
Evan Cheng | 5e6ebaf | 2008-07-23 00:22:17 +0000 | [diff] [blame] | 5000 | } else { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5001 | Mask1[0] = HiIndex & 1 ? 2 : 0; |
| 5002 | Mask1[1] = HiIndex & 1 ? 0 : 2; |
| 5003 | Mask1[2] = PermMask[2]; |
| 5004 | Mask1[3] = PermMask[3]; |
| 5005 | if (Mask1[2] >= 0) |
| 5006 | Mask1[2] += 4; |
| 5007 | if (Mask1[3] >= 0) |
| 5008 | Mask1[3] += 4; |
| 5009 | return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]); |
Evan Cheng | 5e6ebaf | 2008-07-23 00:22:17 +0000 | [diff] [blame] | 5010 | } |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 5011 | } |
| 5012 | |
| 5013 | // Break it into (shuffle shuffle_hi, shuffle_lo). |
| 5014 | Locs.clear(); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5015 | SmallVector<int,8> LoMask(4U, -1); |
| 5016 | SmallVector<int,8> HiMask(4U, -1); |
| 5017 | |
| 5018 | SmallVector<int,8> *MaskPtr = &LoMask; |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 5019 | unsigned MaskIdx = 0; |
| 5020 | unsigned LoIdx = 0; |
| 5021 | unsigned HiIdx = 2; |
| 5022 | for (unsigned i = 0; i != 4; ++i) { |
| 5023 | if (i == 2) { |
| 5024 | MaskPtr = &HiMask; |
| 5025 | MaskIdx = 1; |
| 5026 | LoIdx = 0; |
| 5027 | HiIdx = 2; |
| 5028 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5029 | int Idx = PermMask[i]; |
| 5030 | if (Idx < 0) { |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 5031 | Locs[i] = std::make_pair(-1, -1); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5032 | } else if (Idx < 4) { |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 5033 | Locs[i] = std::make_pair(MaskIdx, LoIdx); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5034 | (*MaskPtr)[LoIdx] = Idx; |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 5035 | LoIdx++; |
| 5036 | } else { |
| 5037 | Locs[i] = std::make_pair(MaskIdx, HiIdx); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5038 | (*MaskPtr)[HiIdx] = Idx; |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 5039 | HiIdx++; |
| 5040 | } |
| 5041 | } |
| 5042 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5043 | SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]); |
| 5044 | SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]); |
| 5045 | SmallVector<int, 8> MaskOps; |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 5046 | for (unsigned i = 0; i != 4; ++i) { |
| 5047 | if (Locs[i].first == -1) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5048 | MaskOps.push_back(-1); |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 5049 | } else { |
| 5050 | unsigned Idx = Locs[i].first * 4 + Locs[i].second; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5051 | MaskOps.push_back(Idx); |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 5052 | } |
| 5053 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5054 | return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]); |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 5055 | } |
| 5056 | |
Bruno Cardoso Lopes | 2a44606 | 2010-09-03 20:20:02 +0000 | [diff] [blame] | 5057 | static bool MayFoldVectorLoad(SDValue V) { |
| 5058 | if (V.hasOneUse() && V.getOpcode() == ISD::BIT_CONVERT) |
| 5059 | V = V.getOperand(0); |
| 5060 | if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR) |
| 5061 | V = V.getOperand(0); |
| 5062 | if (MayFoldLoad(V)) |
| 5063 | return true; |
| 5064 | return false; |
| 5065 | } |
| 5066 | |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 5067 | // FIXME: the version above should always be used. Since there's |
| 5068 | // a bug where several vector shuffles can't be folded because the |
| 5069 | // DAG is not updated during lowering and a node claims to have two |
| 5070 | // uses while it only has one, use this version, and let isel match |
| 5071 | // another instruction if the load really happens to have more than |
| 5072 | // one use. Remove this version after this bug get fixed. |
Evan Cheng | 835580f | 2010-10-07 20:50:20 +0000 | [diff] [blame] | 5073 | // rdar://8434668, PR8156 |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 5074 | static bool RelaxedMayFoldVectorLoad(SDValue V) { |
| 5075 | if (V.hasOneUse() && V.getOpcode() == ISD::BIT_CONVERT) |
| 5076 | V = V.getOperand(0); |
| 5077 | if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR) |
| 5078 | V = V.getOperand(0); |
| 5079 | if (ISD::isNormalLoad(V.getNode())) |
| 5080 | return true; |
| 5081 | return false; |
| 5082 | } |
| 5083 | |
| 5084 | /// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by |
| 5085 | /// a vector extract, and if both can be later optimized into a single load. |
| 5086 | /// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked |
| 5087 | /// here because otherwise a target specific shuffle node is going to be |
| 5088 | /// emitted for this shuffle, and the optimization not done. |
| 5089 | /// FIXME: This is probably not the best approach, but fix the problem |
| 5090 | /// until the right path is decided. |
| 5091 | static |
| 5092 | bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG, |
| 5093 | const TargetLowering &TLI) { |
| 5094 | EVT VT = V.getValueType(); |
| 5095 | ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V); |
| 5096 | |
| 5097 | // Be sure that the vector shuffle is present in a pattern like this: |
| 5098 | // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr) |
| 5099 | if (!V.hasOneUse()) |
| 5100 | return false; |
| 5101 | |
| 5102 | SDNode *N = *V.getNode()->use_begin(); |
| 5103 | if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT) |
| 5104 | return false; |
| 5105 | |
| 5106 | SDValue EltNo = N->getOperand(1); |
| 5107 | if (!isa<ConstantSDNode>(EltNo)) |
| 5108 | return false; |
| 5109 | |
| 5110 | // If the bit convert changed the number of elements, it is unsafe |
| 5111 | // to examine the mask. |
| 5112 | bool HasShuffleIntoBitcast = false; |
| 5113 | if (V.getOpcode() == ISD::BIT_CONVERT) { |
| 5114 | EVT SrcVT = V.getOperand(0).getValueType(); |
| 5115 | if (SrcVT.getVectorNumElements() != VT.getVectorNumElements()) |
| 5116 | return false; |
| 5117 | V = V.getOperand(0); |
| 5118 | HasShuffleIntoBitcast = true; |
| 5119 | } |
| 5120 | |
| 5121 | // Select the input vector, guarding against out of range extract vector. |
| 5122 | unsigned NumElems = VT.getVectorNumElements(); |
| 5123 | unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue(); |
| 5124 | int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt); |
| 5125 | V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1); |
| 5126 | |
| 5127 | // Skip one more bit_convert if necessary |
| 5128 | if (V.getOpcode() == ISD::BIT_CONVERT) |
| 5129 | V = V.getOperand(0); |
| 5130 | |
| 5131 | if (ISD::isNormalLoad(V.getNode())) { |
| 5132 | // Is the original load suitable? |
| 5133 | LoadSDNode *LN0 = cast<LoadSDNode>(V); |
| 5134 | |
| 5135 | // FIXME: avoid the multi-use bug that is preventing lots of |
| 5136 | // of foldings to be detected, this is still wrong of course, but |
| 5137 | // give the temporary desired behavior, and if it happens that |
| 5138 | // the load has real more uses, during isel it will not fold, and |
| 5139 | // will generate poor code. |
| 5140 | if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse() |
| 5141 | return false; |
| 5142 | |
| 5143 | if (!HasShuffleIntoBitcast) |
| 5144 | return true; |
| 5145 | |
| 5146 | // If there's a bitcast before the shuffle, check if the load type and |
| 5147 | // alignment is valid. |
| 5148 | unsigned Align = LN0->getAlignment(); |
| 5149 | unsigned NewAlign = |
| 5150 | TLI.getTargetData()->getABITypeAlignment( |
| 5151 | VT.getTypeForEVT(*DAG.getContext())); |
| 5152 | |
| 5153 | if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT)) |
| 5154 | return false; |
| 5155 | } |
| 5156 | |
| 5157 | return true; |
| 5158 | } |
| 5159 | |
Bruno Cardoso Lopes | f2db5b4 | 2010-08-31 21:15:21 +0000 | [diff] [blame] | 5160 | static |
Evan Cheng | 835580f | 2010-10-07 20:50:20 +0000 | [diff] [blame] | 5161 | SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) { |
| 5162 | EVT VT = Op.getValueType(); |
| 5163 | |
| 5164 | // Canonizalize to v2f64. |
| 5165 | V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, V1); |
| 5166 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, |
| 5167 | getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64, |
| 5168 | V1, DAG)); |
| 5169 | } |
| 5170 | |
| 5171 | static |
Bruno Cardoso Lopes | f2db5b4 | 2010-08-31 21:15:21 +0000 | [diff] [blame] | 5172 | SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, |
| 5173 | bool HasSSE2) { |
| 5174 | SDValue V1 = Op.getOperand(0); |
| 5175 | SDValue V2 = Op.getOperand(1); |
| 5176 | EVT VT = Op.getValueType(); |
| 5177 | |
| 5178 | assert(VT != MVT::v2i64 && "unsupported shuffle type"); |
| 5179 | |
| 5180 | if (HasSSE2 && VT == MVT::v2f64) |
| 5181 | return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG); |
| 5182 | |
| 5183 | // v4f32 or v4i32 |
| 5184 | return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG); |
| 5185 | } |
| 5186 | |
Bruno Cardoso Lopes | 7ff30bb | 2010-08-31 21:38:49 +0000 | [diff] [blame] | 5187 | static |
| 5188 | SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) { |
| 5189 | SDValue V1 = Op.getOperand(0); |
| 5190 | SDValue V2 = Op.getOperand(1); |
| 5191 | EVT VT = Op.getValueType(); |
| 5192 | |
| 5193 | assert((VT == MVT::v4i32 || VT == MVT::v4f32) && |
| 5194 | "unsupported shuffle type"); |
| 5195 | |
| 5196 | if (V2.getOpcode() == ISD::UNDEF) |
| 5197 | V2 = V1; |
| 5198 | |
| 5199 | // v4i32 or v4f32 |
| 5200 | return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG); |
| 5201 | } |
| 5202 | |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 5203 | static |
| 5204 | SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) { |
| 5205 | SDValue V1 = Op.getOperand(0); |
| 5206 | SDValue V2 = Op.getOperand(1); |
| 5207 | EVT VT = Op.getValueType(); |
| 5208 | unsigned NumElems = VT.getVectorNumElements(); |
| 5209 | |
| 5210 | // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second |
| 5211 | // operand of these instructions is only memory, so check if there's a |
| 5212 | // potencial load folding here, otherwise use SHUFPS or MOVSD to match the |
| 5213 | // same masks. |
| 5214 | bool CanFoldLoad = false; |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 5215 | |
Bruno Cardoso Lopes | d00bfe1 | 2010-09-02 02:35:51 +0000 | [diff] [blame] | 5216 | // Trivial case, when V2 comes from a load. |
Bruno Cardoso Lopes | 2a44606 | 2010-09-03 20:20:02 +0000 | [diff] [blame] | 5217 | if (MayFoldVectorLoad(V2)) |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 5218 | CanFoldLoad = true; |
| 5219 | |
| 5220 | // When V1 is a load, it can be folded later into a store in isel, example: |
| 5221 | // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1) |
| 5222 | // turns into: |
| 5223 | // (MOVLPSmr addr:$src1, VR128:$src2) |
| 5224 | // So, recognize this potential and also use MOVLPS or MOVLPD |
Bruno Cardoso Lopes | 2a44606 | 2010-09-03 20:20:02 +0000 | [diff] [blame] | 5225 | if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op)) |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 5226 | CanFoldLoad = true; |
| 5227 | |
| 5228 | if (CanFoldLoad) { |
| 5229 | if (HasSSE2 && NumElems == 2) |
| 5230 | return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG); |
| 5231 | |
| 5232 | if (NumElems == 4) |
| 5233 | return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG); |
| 5234 | } |
| 5235 | |
| 5236 | ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op); |
| 5237 | // movl and movlp will both match v2i64, but v2i64 is never matched by |
| 5238 | // movl earlier because we make it strict to avoid messing with the movlp load |
| 5239 | // folding logic (see the code above getMOVLP call). Match it here then, |
| 5240 | // this is horrible, but will stay like this until we move all shuffle |
| 5241 | // matching to x86 specific nodes. Note that for the 1st condition all |
| 5242 | // types are matched with movsd. |
| 5243 | if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp)) |
| 5244 | return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG); |
| 5245 | else if (HasSSE2) |
| 5246 | return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG); |
| 5247 | |
| 5248 | |
| 5249 | assert(VT != MVT::v4i32 && "unsupported shuffle type"); |
| 5250 | |
| 5251 | // Invert the operand order and use SHUFPS to match it. |
| 5252 | return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1, |
| 5253 | X86::getShuffleSHUFImmediate(SVOp), DAG); |
| 5254 | } |
| 5255 | |
Bruno Cardoso Lopes | be8b084 | 2010-09-03 20:10:35 +0000 | [diff] [blame] | 5256 | static inline unsigned getUNPCKLOpcode(EVT VT) { |
| 5257 | switch(VT.getSimpleVT().SimpleTy) { |
| 5258 | case MVT::v4i32: return X86ISD::PUNPCKLDQ; |
| 5259 | case MVT::v2i64: return X86ISD::PUNPCKLQDQ; |
| 5260 | case MVT::v4f32: return X86ISD::UNPCKLPS; |
| 5261 | case MVT::v2f64: return X86ISD::UNPCKLPD; |
| 5262 | case MVT::v16i8: return X86ISD::PUNPCKLBW; |
| 5263 | case MVT::v8i16: return X86ISD::PUNPCKLWD; |
| 5264 | default: |
| 5265 | llvm_unreachable("Unknow type for unpckl"); |
| 5266 | } |
| 5267 | return 0; |
| 5268 | } |
| 5269 | |
| 5270 | static inline unsigned getUNPCKHOpcode(EVT VT) { |
| 5271 | switch(VT.getSimpleVT().SimpleTy) { |
| 5272 | case MVT::v4i32: return X86ISD::PUNPCKHDQ; |
| 5273 | case MVT::v2i64: return X86ISD::PUNPCKHQDQ; |
| 5274 | case MVT::v4f32: return X86ISD::UNPCKHPS; |
| 5275 | case MVT::v2f64: return X86ISD::UNPCKHPD; |
| 5276 | case MVT::v16i8: return X86ISD::PUNPCKHBW; |
| 5277 | case MVT::v8i16: return X86ISD::PUNPCKHWD; |
| 5278 | default: |
| 5279 | llvm_unreachable("Unknow type for unpckh"); |
| 5280 | } |
| 5281 | return 0; |
| 5282 | } |
| 5283 | |
Bruno Cardoso Lopes | 90462b4 | 2010-09-07 21:03:14 +0000 | [diff] [blame] | 5284 | static |
| 5285 | SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG, |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 5286 | const TargetLowering &TLI, |
Bruno Cardoso Lopes | 90462b4 | 2010-09-07 21:03:14 +0000 | [diff] [blame] | 5287 | const X86Subtarget *Subtarget) { |
| 5288 | ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op); |
| 5289 | EVT VT = Op.getValueType(); |
| 5290 | DebugLoc dl = Op.getDebugLoc(); |
| 5291 | SDValue V1 = Op.getOperand(0); |
| 5292 | SDValue V2 = Op.getOperand(1); |
| 5293 | |
| 5294 | if (isZeroShuffle(SVOp)) |
| 5295 | return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl); |
| 5296 | |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 5297 | // Handle splat operations |
| 5298 | if (SVOp->isSplat()) { |
| 5299 | // Special case, this is the only place now where it's |
| 5300 | // allowed to return a vector_shuffle operation without |
| 5301 | // using a target specific node, because *hopefully* it |
| 5302 | // will be optimized away by the dag combiner. |
| 5303 | if (VT.getVectorNumElements() <= 4 && |
| 5304 | CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI)) |
| 5305 | return Op; |
| 5306 | |
| 5307 | // Handle splats by matching through known masks |
| 5308 | if (VT.getVectorNumElements() <= 4) |
| 5309 | return SDValue(); |
| 5310 | |
Evan Cheng | 835580f | 2010-10-07 20:50:20 +0000 | [diff] [blame] | 5311 | // Canonicalize all of the remaining to v4f32. |
Bruno Cardoso Lopes | 90462b4 | 2010-09-07 21:03:14 +0000 | [diff] [blame] | 5312 | return PromoteSplat(SVOp, DAG); |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 5313 | } |
Bruno Cardoso Lopes | 90462b4 | 2010-09-07 21:03:14 +0000 | [diff] [blame] | 5314 | |
| 5315 | // If the shuffle can be profitably rewritten as a narrower shuffle, then |
| 5316 | // do it! |
| 5317 | if (VT == MVT::v8i16 || VT == MVT::v16i8) { |
| 5318 | SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl); |
| 5319 | if (NewOp.getNode()) |
| 5320 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, NewOp); |
| 5321 | } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) { |
| 5322 | // FIXME: Figure out a cleaner way to do this. |
| 5323 | // Try to make use of movq to zero out the top part. |
| 5324 | if (ISD::isBuildVectorAllZeros(V2.getNode())) { |
| 5325 | SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl); |
| 5326 | if (NewOp.getNode()) { |
| 5327 | if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false)) |
| 5328 | return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0), |
| 5329 | DAG, Subtarget, dl); |
| 5330 | } |
| 5331 | } else if (ISD::isBuildVectorAllZeros(V1.getNode())) { |
| 5332 | SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl); |
| 5333 | if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp))) |
| 5334 | return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1), |
| 5335 | DAG, Subtarget, dl); |
| 5336 | } |
| 5337 | } |
| 5338 | return SDValue(); |
| 5339 | } |
| 5340 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5341 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 5342 | X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5343 | ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5344 | SDValue V1 = Op.getOperand(0); |
| 5345 | SDValue V2 = Op.getOperand(1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5346 | EVT VT = Op.getValueType(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 5347 | DebugLoc dl = Op.getDebugLoc(); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5348 | unsigned NumElems = VT.getVectorNumElements(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5349 | bool isMMX = VT.getSizeInBits() == 64; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5350 | bool V1IsUndef = V1.getOpcode() == ISD::UNDEF; |
| 5351 | bool V2IsUndef = V2.getOpcode() == ISD::UNDEF; |
Evan Cheng | d9b8e40 | 2006-10-16 06:36:00 +0000 | [diff] [blame] | 5352 | bool V1IsSplat = false; |
| 5353 | bool V2IsSplat = false; |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 5354 | bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX(); |
Bruno Cardoso Lopes | 5023ef2 | 2010-08-31 22:22:11 +0000 | [diff] [blame] | 5355 | bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX(); |
Bruno Cardoso Lopes | aace0f2 | 2010-09-04 02:36:07 +0000 | [diff] [blame] | 5356 | bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX(); |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 5357 | MachineFunction &MF = DAG.getMachineFunction(); |
| 5358 | bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5359 | |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5360 | // Shuffle operations on MMX not supported. |
| 5361 | if (isMMX) |
Bruno Cardoso Lopes | 58277b1 | 2010-09-07 18:41:45 +0000 | [diff] [blame] | 5362 | return Op; |
| 5363 | |
Bruno Cardoso Lopes | 90462b4 | 2010-09-07 21:03:14 +0000 | [diff] [blame] | 5364 | // Vector shuffle lowering takes 3 steps: |
| 5365 | // |
| 5366 | // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable |
| 5367 | // narrowing and commutation of operands should be handled. |
| 5368 | // 2) Matching of shuffles with known shuffle masks to x86 target specific |
| 5369 | // shuffle nodes. |
| 5370 | // 3) Rewriting of unmatched masks into new generic shuffle operations, |
| 5371 | // so the shuffle can be broken into other shuffles and the legalizer can |
| 5372 | // try the lowering again. |
| 5373 | // |
| 5374 | // The general ideia is that no vector_shuffle operation should be left to |
| 5375 | // be matched during isel, all of them must be converted to a target specific |
| 5376 | // node here. |
Bruno Cardoso Lopes | 0d1340b | 2010-09-07 20:20:27 +0000 | [diff] [blame] | 5377 | |
Bruno Cardoso Lopes | 90462b4 | 2010-09-07 21:03:14 +0000 | [diff] [blame] | 5378 | // Normalize the input vectors. Here splats, zeroed vectors, profitable |
| 5379 | // narrowing and commutation of operands should be handled. The actual code |
| 5380 | // doesn't include all of those, work in progress... |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 5381 | SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget); |
Bruno Cardoso Lopes | 90462b4 | 2010-09-07 21:03:14 +0000 | [diff] [blame] | 5382 | if (NewOp.getNode()) |
| 5383 | return NewOp; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5384 | |
Bruno Cardoso Lopes | a22c845 | 2010-09-04 00:39:43 +0000 | [diff] [blame] | 5385 | // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and |
| 5386 | // unpckh_undef). Only use pshufd if speed is more important than size. |
| 5387 | if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp)) |
| 5388 | if (VT != MVT::v2i64 && VT != MVT::v2f64) |
| 5389 | return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG); |
| 5390 | if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp)) |
| 5391 | if (VT != MVT::v2i64 && VT != MVT::v2f64) |
| 5392 | return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG); |
Bruno Cardoso Lopes | 3722f00 | 2010-09-02 05:23:12 +0000 | [diff] [blame] | 5393 | |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 5394 | if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef && |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5395 | RelaxedMayFoldVectorLoad(V1)) |
Evan Cheng | 835580f | 2010-10-07 20:50:20 +0000 | [diff] [blame] | 5396 | return getMOVDDup(Op, dl, V1, DAG); |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 5397 | |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5398 | if (X86::isMOVHLPS_v_undef_Mask(SVOp)) |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 5399 | return getMOVHighToLow(Op, dl, DAG); |
| 5400 | |
| 5401 | // Use to match splats |
| 5402 | if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef && |
| 5403 | (VT == MVT::v2f64 || VT == MVT::v2i64)) |
| 5404 | return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG); |
| 5405 | |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 5406 | if (X86::isPSHUFDMask(SVOp)) { |
| 5407 | // The actual implementation will match the mask in the if above and then |
| 5408 | // during isel it can match several different instructions, not only pshufd |
| 5409 | // as its name says, sad but true, emulate the behavior for now... |
| 5410 | if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64))) |
| 5411 | return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG); |
| 5412 | |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 5413 | unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp); |
| 5414 | |
Bruno Cardoso Lopes | 4783a3e | 2010-09-01 22:59:03 +0000 | [diff] [blame] | 5415 | if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32)) |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 5416 | return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG); |
| 5417 | |
Bruno Cardoso Lopes | 4783a3e | 2010-09-01 22:59:03 +0000 | [diff] [blame] | 5418 | if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64)) |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 5419 | return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1, |
| 5420 | TargetMask, DAG); |
| 5421 | |
| 5422 | if (VT == MVT::v4f32) |
| 5423 | return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1, |
| 5424 | TargetMask, DAG); |
| 5425 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5426 | |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 5427 | // Check if this can be converted into a logical shift. |
| 5428 | bool isLeft = false; |
| 5429 | unsigned ShAmt = 0; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5430 | SDValue ShVal; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5431 | bool isShift = getSubtarget()->hasSSE2() && |
Evan Cheng | c363094 | 2009-12-09 21:00:30 +0000 | [diff] [blame] | 5432 | isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt); |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 5433 | if (isShift && ShVal.hasOneUse()) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5434 | // If the shifted value has multiple uses, it may be cheaper to use |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 5435 | // v_set0 + movlhps or movhlps, etc. |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5436 | EVT EltVT = VT.getVectorElementType(); |
| 5437 | ShAmt *= EltVT.getSizeInBits(); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5438 | return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl); |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 5439 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5440 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5441 | if (X86::isMOVLMask(SVOp)) { |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 5442 | if (V1IsUndef) |
| 5443 | return V2; |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5444 | if (ISD::isBuildVectorAllZeros(V1.getNode())) |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5445 | return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl); |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5446 | if (!X86::isMOVLPMask(SVOp)) { |
Bruno Cardoso Lopes | 4783a3e | 2010-09-01 22:59:03 +0000 | [diff] [blame] | 5447 | if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64)) |
Bruno Cardoso Lopes | 20a07f4 | 2010-08-31 02:26:40 +0000 | [diff] [blame] | 5448 | return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG); |
| 5449 | |
Bruno Cardoso Lopes | 4783a3e | 2010-09-01 22:59:03 +0000 | [diff] [blame] | 5450 | if (VT == MVT::v4i32 || VT == MVT::v4f32) |
Bruno Cardoso Lopes | 20a07f4 | 2010-08-31 02:26:40 +0000 | [diff] [blame] | 5451 | return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG); |
| 5452 | } |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 5453 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5454 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5455 | // FIXME: fold these into legal mask. |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5456 | if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp)) |
| 5457 | return getMOVLowToHigh(Op, dl, DAG, HasSSE2); |
Bruno Cardoso Lopes | f2db5b4 | 2010-08-31 21:15:21 +0000 | [diff] [blame] | 5458 | |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5459 | if (X86::isMOVHLPSMask(SVOp)) |
| 5460 | return getMOVHighToLow(Op, dl, DAG); |
Bruno Cardoso Lopes | 7ff30bb | 2010-08-31 21:38:49 +0000 | [diff] [blame] | 5461 | |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5462 | if (X86::isMOVSHDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4) |
| 5463 | return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG); |
Bruno Cardoso Lopes | 5023ef2 | 2010-08-31 22:22:11 +0000 | [diff] [blame] | 5464 | |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5465 | if (X86::isMOVSLDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4) |
| 5466 | return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG); |
Bruno Cardoso Lopes | 013bb3d | 2010-08-31 22:35:05 +0000 | [diff] [blame] | 5467 | |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5468 | if (X86::isMOVLPMask(SVOp)) |
| 5469 | return getMOVLP(Op, dl, DAG, HasSSE2); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5470 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5471 | if (ShouldXformToMOVHLPS(SVOp) || |
| 5472 | ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp)) |
| 5473 | return CommuteVectorShuffle(SVOp, DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5474 | |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 5475 | if (isShift) { |
| 5476 | // No better options. Use a vshl / vsrl. |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5477 | EVT EltVT = VT.getVectorElementType(); |
| 5478 | ShAmt *= EltVT.getSizeInBits(); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5479 | return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl); |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 5480 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5481 | |
Evan Cheng | 9eca5e8 | 2006-10-25 21:49:50 +0000 | [diff] [blame] | 5482 | bool Commuted = false; |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 5483 | // FIXME: This should also accept a bitcast of a splat? Be careful, not |
| 5484 | // 1,1,1,1 -> v8i16 though. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5485 | V1IsSplat = isSplatVector(V1.getNode()); |
| 5486 | V2IsSplat = isSplatVector(V2.getNode()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5487 | |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 5488 | // Canonicalize the splat or undef, if present, to be on the RHS. |
Evan Cheng | 9bbbb98 | 2006-10-25 20:48:19 +0000 | [diff] [blame] | 5489 | if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5490 | Op = CommuteVectorShuffle(SVOp, DAG); |
| 5491 | SVOp = cast<ShuffleVectorSDNode>(Op); |
| 5492 | V1 = SVOp->getOperand(0); |
| 5493 | V2 = SVOp->getOperand(1); |
Evan Cheng | 9bbbb98 | 2006-10-25 20:48:19 +0000 | [diff] [blame] | 5494 | std::swap(V1IsSplat, V2IsSplat); |
| 5495 | std::swap(V1IsUndef, V2IsUndef); |
Evan Cheng | 9eca5e8 | 2006-10-25 21:49:50 +0000 | [diff] [blame] | 5496 | Commuted = true; |
Evan Cheng | 9bbbb98 | 2006-10-25 20:48:19 +0000 | [diff] [blame] | 5497 | } |
| 5498 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5499 | if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) { |
| 5500 | // Shuffling low element of v1 into undef, just return v1. |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5501 | if (V2IsUndef) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5502 | return V1; |
| 5503 | // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which |
| 5504 | // the instruction selector will not match, so get a canonical MOVL with |
| 5505 | // swapped operands to undo the commute. |
| 5506 | return getMOVL(DAG, dl, VT, V2, V1); |
Evan Cheng | d9b8e40 | 2006-10-16 06:36:00 +0000 | [diff] [blame] | 5507 | } |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5508 | |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 5509 | if (X86::isUNPCKLMask(SVOp)) |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5510 | return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG); |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 5511 | |
| 5512 | if (X86::isUNPCKHMask(SVOp)) |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5513 | return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG); |
Evan Cheng | e111303 | 2006-10-04 18:33:38 +0000 | [diff] [blame] | 5514 | |
Evan Cheng | 9bbbb98 | 2006-10-25 20:48:19 +0000 | [diff] [blame] | 5515 | if (V2IsSplat) { |
| 5516 | // Normalize mask so all entries that point to V2 points to its first |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 5517 | // element then try to match unpck{h|l} again. If match, return a |
Evan Cheng | 9bbbb98 | 2006-10-25 20:48:19 +0000 | [diff] [blame] | 5518 | // new vector_shuffle with the corrected mask. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5519 | SDValue NewMask = NormalizeMask(SVOp, DAG); |
| 5520 | ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask); |
| 5521 | if (NSVOp != SVOp) { |
| 5522 | if (X86::isUNPCKLMask(NSVOp, true)) { |
| 5523 | return NewMask; |
| 5524 | } else if (X86::isUNPCKHMask(NSVOp, true)) { |
| 5525 | return NewMask; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5526 | } |
| 5527 | } |
| 5528 | } |
| 5529 | |
Evan Cheng | 9eca5e8 | 2006-10-25 21:49:50 +0000 | [diff] [blame] | 5530 | if (Commuted) { |
| 5531 | // Commute is back and try unpck* again. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5532 | // FIXME: this seems wrong. |
| 5533 | SDValue NewOp = CommuteVectorShuffle(SVOp, DAG); |
| 5534 | ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp); |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 5535 | |
| 5536 | if (X86::isUNPCKLMask(NewSVOp)) |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5537 | return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG); |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 5538 | |
| 5539 | if (X86::isUNPCKHMask(NewSVOp)) |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5540 | return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG); |
Evan Cheng | 9eca5e8 | 2006-10-25 21:49:50 +0000 | [diff] [blame] | 5541 | } |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5542 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5543 | // Normalize the node to match x86 shuffle ops if needed |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5544 | if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp)) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5545 | return CommuteVectorShuffle(SVOp, DAG); |
| 5546 | |
Bruno Cardoso Lopes | 7256e22 | 2010-09-03 23:24:06 +0000 | [diff] [blame] | 5547 | // The checks below are all present in isShuffleMaskLegal, but they are |
| 5548 | // inlined here right now to enable us to directly emit target specific |
| 5549 | // nodes, and remove one by one until they don't return Op anymore. |
| 5550 | SmallVector<int, 16> M; |
| 5551 | SVOp->getMask(M); |
| 5552 | |
Bruno Cardoso Lopes | aace0f2 | 2010-09-04 02:36:07 +0000 | [diff] [blame] | 5553 | if (isPALIGNRMask(M, VT, HasSSSE3)) |
| 5554 | return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2, |
| 5555 | X86::getShufflePALIGNRImmediate(SVOp), |
| 5556 | DAG); |
| 5557 | |
Bruno Cardoso Lopes | c800c0d | 2010-09-04 02:02:14 +0000 | [diff] [blame] | 5558 | if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) && |
| 5559 | SVOp->getSplatIndex() == 0 && V2IsUndef) { |
| 5560 | if (VT == MVT::v2f64) |
| 5561 | return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG); |
| 5562 | if (VT == MVT::v2i64) |
| 5563 | return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG); |
| 5564 | } |
| 5565 | |
Bruno Cardoso Lopes | bbfc310 | 2010-09-04 01:36:45 +0000 | [diff] [blame] | 5566 | if (isPSHUFHWMask(M, VT)) |
| 5567 | return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1, |
| 5568 | X86::getShufflePSHUFHWImmediate(SVOp), |
| 5569 | DAG); |
| 5570 | |
| 5571 | if (isPSHUFLWMask(M, VT)) |
| 5572 | return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1, |
| 5573 | X86::getShufflePSHUFLWImmediate(SVOp), |
| 5574 | DAG); |
| 5575 | |
Bruno Cardoso Lopes | 4c827f5 | 2010-09-04 01:22:57 +0000 | [diff] [blame] | 5576 | if (isSHUFPMask(M, VT)) { |
| 5577 | unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp); |
| 5578 | if (VT == MVT::v4f32 || VT == MVT::v4i32) |
| 5579 | return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2, |
| 5580 | TargetMask, DAG); |
| 5581 | if (VT == MVT::v2f64 || VT == MVT::v2i64) |
| 5582 | return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2, |
| 5583 | TargetMask, DAG); |
| 5584 | } |
| 5585 | |
Bruno Cardoso Lopes | a22c845 | 2010-09-04 00:39:43 +0000 | [diff] [blame] | 5586 | if (X86::isUNPCKL_v_undef_Mask(SVOp)) |
| 5587 | if (VT != MVT::v2i64 && VT != MVT::v2f64) |
| 5588 | return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG); |
| 5589 | if (X86::isUNPCKH_v_undef_Mask(SVOp)) |
| 5590 | if (VT != MVT::v2i64 && VT != MVT::v2f64) |
| 5591 | return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG); |
| 5592 | |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 5593 | // Handle v8i16 specifically since SSE can do byte extraction and insertion. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5594 | if (VT == MVT::v8i16) { |
Bruno Cardoso Lopes | bf8154a | 2010-08-21 01:32:18 +0000 | [diff] [blame] | 5595 | SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5596 | if (NewOp.getNode()) |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 5597 | return NewOp; |
| 5598 | } |
| 5599 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5600 | if (VT == MVT::v16i8) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5601 | SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 5602 | if (NewOp.getNode()) |
| 5603 | return NewOp; |
| 5604 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5605 | |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5606 | // Handle all 4 wide cases with a number of shuffles. |
| 5607 | if (NumElems == 4) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5608 | return LowerVECTOR_SHUFFLE_4wide(SVOp, DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5609 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5610 | return SDValue(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5611 | } |
| 5612 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5613 | SDValue |
| 5614 | X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 5615 | SelectionDAG &DAG) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5616 | EVT VT = Op.getValueType(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 5617 | DebugLoc dl = Op.getDebugLoc(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5618 | if (VT.getSizeInBits() == 8) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5619 | SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32, |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5620 | Op.getOperand(0), Op.getOperand(1)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5621 | SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract, |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5622 | DAG.getValueType(VT)); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5623 | return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5624 | } else if (VT.getSizeInBits() == 16) { |
Evan Cheng | 52ceafa | 2009-01-02 05:29:08 +0000 | [diff] [blame] | 5625 | unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue(); |
| 5626 | // If Idx is 0, it's cheaper to do a move instead of a pextrw. |
| 5627 | if (Idx == 0) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5628 | return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, |
| 5629 | DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32, |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5630 | DAG.getNode(ISD::BIT_CONVERT, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5631 | MVT::v4i32, |
Evan Cheng | 52ceafa | 2009-01-02 05:29:08 +0000 | [diff] [blame] | 5632 | Op.getOperand(0)), |
| 5633 | Op.getOperand(1))); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5634 | SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32, |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5635 | Op.getOperand(0), Op.getOperand(1)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5636 | SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract, |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5637 | DAG.getValueType(VT)); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5638 | return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5639 | } else if (VT == MVT::f32) { |
Evan Cheng | 62a3f15 | 2008-03-24 21:52:23 +0000 | [diff] [blame] | 5640 | // EXTRACTPS outputs to a GPR32 register which will require a movd to copy |
| 5641 | // the result back to FR32 register. It's only worth matching if the |
Dan Gohman | d17cfbe | 2008-10-31 00:57:24 +0000 | [diff] [blame] | 5642 | // result has a single use which is a store or a bitcast to i32. And in |
| 5643 | // the case of a store, it's not worth it if the index is a constant 0, |
| 5644 | // because a MOVSSmr can be used instead, which is smaller and faster. |
Evan Cheng | 62a3f15 | 2008-03-24 21:52:23 +0000 | [diff] [blame] | 5645 | if (!Op.hasOneUse()) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5646 | return SDValue(); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5647 | SDNode *User = *Op.getNode()->use_begin(); |
Dan Gohman | d17cfbe | 2008-10-31 00:57:24 +0000 | [diff] [blame] | 5648 | if ((User->getOpcode() != ISD::STORE || |
| 5649 | (isa<ConstantSDNode>(Op.getOperand(1)) && |
| 5650 | cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) && |
Dan Gohman | 171c11e | 2008-04-16 02:32:24 +0000 | [diff] [blame] | 5651 | (User->getOpcode() != ISD::BIT_CONVERT || |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5652 | User->getValueType(0) != MVT::i32)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5653 | return SDValue(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5654 | SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32, |
| 5655 | DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32, |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5656 | Op.getOperand(0)), |
| 5657 | Op.getOperand(1)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5658 | return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, Extract); |
| 5659 | } else if (VT == MVT::i32) { |
Mon P Wang | f0fcdd8 | 2009-01-15 21:10:20 +0000 | [diff] [blame] | 5660 | // ExtractPS works with constant index. |
| 5661 | if (isa<ConstantSDNode>(Op.getOperand(1))) |
| 5662 | return Op; |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5663 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5664 | return SDValue(); |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5665 | } |
| 5666 | |
| 5667 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5668 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 5669 | X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op, |
| 5670 | SelectionDAG &DAG) const { |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5671 | if (!isa<ConstantSDNode>(Op.getOperand(1))) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5672 | return SDValue(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5673 | |
Evan Cheng | 62a3f15 | 2008-03-24 21:52:23 +0000 | [diff] [blame] | 5674 | if (Subtarget->hasSSE41()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5675 | SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5676 | if (Res.getNode()) |
Evan Cheng | 62a3f15 | 2008-03-24 21:52:23 +0000 | [diff] [blame] | 5677 | return Res; |
| 5678 | } |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5679 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5680 | EVT VT = Op.getValueType(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 5681 | DebugLoc dl = Op.getDebugLoc(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5682 | // TODO: handle v16i8. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5683 | if (VT.getSizeInBits() == 16) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5684 | SDValue Vec = Op.getOperand(0); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5685 | unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue(); |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 5686 | if (Idx == 0) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5687 | return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, |
| 5688 | DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5689 | DAG.getNode(ISD::BIT_CONVERT, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5690 | MVT::v4i32, Vec), |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 5691 | Op.getOperand(1))); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5692 | // Transform it so it match pextrw which produces a 32-bit result. |
Ken Dyck | 70d0ef1 | 2009-12-17 15:31:52 +0000 | [diff] [blame] | 5693 | EVT EltVT = MVT::i32; |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5694 | SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT, |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5695 | Op.getOperand(0), Op.getOperand(1)); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5696 | SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract, |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5697 | DAG.getValueType(VT)); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5698 | return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5699 | } else if (VT.getSizeInBits() == 32) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5700 | unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5701 | if (Idx == 0) |
| 5702 | return Op; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5703 | |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5704 | // SHUFPS the element to the lowest double word, then movss. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5705 | int Mask[4] = { Idx, -1, -1, -1 }; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5706 | EVT VVT = Op.getOperand(0).getValueType(); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5707 | SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0), |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5708 | DAG.getUNDEF(VVT), Mask); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5709 | return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 5710 | DAG.getIntPtrConstant(0)); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5711 | } else if (VT.getSizeInBits() == 64) { |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5712 | // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b |
| 5713 | // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught |
| 5714 | // to match extract_elt for f64. |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5715 | unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5716 | if (Idx == 0) |
| 5717 | return Op; |
| 5718 | |
| 5719 | // UNPCKHPD the element to the lowest double word, then movsd. |
| 5720 | // Note if the lower 64 bits of the result of the UNPCKHPD is then stored |
| 5721 | // to a f64mem, the whole operation is folded into a single MOVHPDmr. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5722 | int Mask[2] = { 1, -1 }; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5723 | EVT VVT = Op.getOperand(0).getValueType(); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5724 | SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0), |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5725 | DAG.getUNDEF(VVT), Mask); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5726 | return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 5727 | DAG.getIntPtrConstant(0)); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5728 | } |
| 5729 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5730 | return SDValue(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5731 | } |
| 5732 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5733 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 5734 | X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, |
| 5735 | SelectionDAG &DAG) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5736 | EVT VT = Op.getValueType(); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5737 | EVT EltVT = VT.getVectorElementType(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 5738 | DebugLoc dl = Op.getDebugLoc(); |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5739 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5740 | SDValue N0 = Op.getOperand(0); |
| 5741 | SDValue N1 = Op.getOperand(1); |
| 5742 | SDValue N2 = Op.getOperand(2); |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5743 | |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5744 | if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) && |
Dan Gohman | ef521f1 | 2008-08-14 22:53:18 +0000 | [diff] [blame] | 5745 | isa<ConstantSDNode>(N2)) { |
Chris Lattner | 8f2b4cc | 2010-02-23 02:07:48 +0000 | [diff] [blame] | 5746 | unsigned Opc; |
| 5747 | if (VT == MVT::v8i16) |
| 5748 | Opc = X86ISD::PINSRW; |
Chris Lattner | 8f2b4cc | 2010-02-23 02:07:48 +0000 | [diff] [blame] | 5749 | else if (VT == MVT::v16i8) |
| 5750 | Opc = X86ISD::PINSRB; |
| 5751 | else |
| 5752 | Opc = X86ISD::PINSRB; |
| 5753 | |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5754 | // Transform it so it match pinsr{b,w} which expects a GR32 as its second |
| 5755 | // argument. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5756 | if (N1.getValueType() != MVT::i32) |
| 5757 | N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1); |
| 5758 | if (N2.getValueType() != MVT::i32) |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5759 | N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue()); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5760 | return DAG.getNode(Opc, dl, VT, N0, N1, N2); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5761 | } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) { |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5762 | // Bits [7:6] of the constant are the source select. This will always be |
| 5763 | // zero here. The DAG Combiner may combine an extract_elt index into these |
| 5764 | // bits. For example (insert (extract, 3), 2) could be matched by putting |
| 5765 | // the '3' into bits [7:6] of X86ISD::INSERTPS. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5766 | // Bits [5:4] of the constant are the destination select. This is the |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5767 | // value of the incoming immediate. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5768 | // Bits [3:0] of the constant are the zero mask. The DAG Combiner may |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5769 | // combine either bitwise AND or insert of float 0.0 to set these bits. |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5770 | N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4); |
Eric Christopher | fbd6687 | 2009-07-24 00:33:09 +0000 | [diff] [blame] | 5771 | // Create this as a scalar to vector.. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5772 | N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5773 | return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5774 | } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) { |
Eric Christopher | fbd6687 | 2009-07-24 00:33:09 +0000 | [diff] [blame] | 5775 | // PINSR* works with constant index. |
| 5776 | return Op; |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5777 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5778 | return SDValue(); |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5779 | } |
| 5780 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5781 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 5782 | X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5783 | EVT VT = Op.getValueType(); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5784 | EVT EltVT = VT.getVectorElementType(); |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5785 | |
| 5786 | if (Subtarget->hasSSE41()) |
| 5787 | return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG); |
| 5788 | |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5789 | if (EltVT == MVT::i8) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5790 | return SDValue(); |
Evan Cheng | 794405e | 2007-12-12 07:55:34 +0000 | [diff] [blame] | 5791 | |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 5792 | DebugLoc dl = Op.getDebugLoc(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5793 | SDValue N0 = Op.getOperand(0); |
| 5794 | SDValue N1 = Op.getOperand(1); |
| 5795 | SDValue N2 = Op.getOperand(2); |
Evan Cheng | 794405e | 2007-12-12 07:55:34 +0000 | [diff] [blame] | 5796 | |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5797 | if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) { |
Evan Cheng | 794405e | 2007-12-12 07:55:34 +0000 | [diff] [blame] | 5798 | // Transform it so it match pinsrw which expects a 16-bit value in a GR32 |
| 5799 | // as its second argument. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5800 | if (N1.getValueType() != MVT::i32) |
| 5801 | N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1); |
| 5802 | if (N2.getValueType() != MVT::i32) |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5803 | N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue()); |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5804 | return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5805 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5806 | return SDValue(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5807 | } |
| 5808 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5809 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 5810 | X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const { |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 5811 | DebugLoc dl = Op.getDebugLoc(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 5812 | |
Chris Lattner | f172ecd | 2010-07-04 23:07:25 +0000 | [diff] [blame] | 5813 | if (Op.getValueType() == MVT::v1i64 && |
| 5814 | Op.getOperand(0).getValueType() == MVT::i64) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5815 | return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0)); |
Rafael Espindola | def390a | 2009-08-03 02:45:34 +0000 | [diff] [blame] | 5816 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5817 | SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0)); |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5818 | assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 && |
| 5819 | "Expected an SSE type!"); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5820 | return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5821 | DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt)); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5822 | } |
| 5823 | |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 5824 | // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as |
| 5825 | // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is |
| 5826 | // one of the above mentioned nodes. It has to be wrapped because otherwise |
| 5827 | // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only |
| 5828 | // be used to form addressing mode. These wrapped nodes will be selected |
| 5829 | // into MOV32ri. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5830 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 5831 | X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const { |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5832 | ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5833 | |
Chris Lattner | 41621a2 | 2009-06-26 19:22:52 +0000 | [diff] [blame] | 5834 | // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the |
| 5835 | // global base reg. |
| 5836 | unsigned char OpFlag = 0; |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5837 | unsigned WrapperKind = X86ISD::Wrapper; |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 5838 | CodeModel::Model M = getTargetMachine().getCodeModel(); |
| 5839 | |
Chris Lattner | 4f06649 | 2009-07-11 20:29:19 +0000 | [diff] [blame] | 5840 | if (Subtarget->isPICStyleRIPRel() && |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 5841 | (M == CodeModel::Small || M == CodeModel::Kernel)) |
Chris Lattner | e4df756 | 2009-07-09 03:15:51 +0000 | [diff] [blame] | 5842 | WrapperKind = X86ISD::WrapperRIP; |
Chris Lattner | 3b67e9b | 2009-07-10 20:47:30 +0000 | [diff] [blame] | 5843 | else if (Subtarget->isPICStyleGOT()) |
Chris Lattner | 88e1fd5 | 2009-07-09 04:24:46 +0000 | [diff] [blame] | 5844 | OpFlag = X86II::MO_GOTOFF; |
Chris Lattner | e2c9208 | 2009-07-10 21:00:45 +0000 | [diff] [blame] | 5845 | else if (Subtarget->isPICStyleStubPIC()) |
Chris Lattner | 88e1fd5 | 2009-07-09 04:24:46 +0000 | [diff] [blame] | 5846 | OpFlag = X86II::MO_PIC_BASE_OFFSET; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5847 | |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 5848 | SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(), |
Chris Lattner | 41621a2 | 2009-06-26 19:22:52 +0000 | [diff] [blame] | 5849 | CP->getAlignment(), |
| 5850 | CP->getOffset(), OpFlag); |
| 5851 | DebugLoc DL = CP->getDebugLoc(); |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5852 | Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result); |
Anton Korobeynikov | 7f70559 | 2007-01-12 19:20:47 +0000 | [diff] [blame] | 5853 | // With PIC, the address is actually $g + Offset. |
Chris Lattner | 41621a2 | 2009-06-26 19:22:52 +0000 | [diff] [blame] | 5854 | if (OpFlag) { |
| 5855 | Result = DAG.getNode(ISD::ADD, DL, getPointerTy(), |
Dale Johannesen | b300d2a | 2009-02-07 00:55:49 +0000 | [diff] [blame] | 5856 | DAG.getNode(X86ISD::GlobalBaseReg, |
Chris Lattner | c7f3ace | 2010-04-02 20:16:16 +0000 | [diff] [blame] | 5857 | DebugLoc(), getPointerTy()), |
Anton Korobeynikov | 7f70559 | 2007-01-12 19:20:47 +0000 | [diff] [blame] | 5858 | Result); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5859 | } |
| 5860 | |
| 5861 | return Result; |
| 5862 | } |
| 5863 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 5864 | SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const { |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5865 | JumpTableSDNode *JT = cast<JumpTableSDNode>(Op); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5866 | |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5867 | // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the |
| 5868 | // global base reg. |
| 5869 | unsigned char OpFlag = 0; |
| 5870 | unsigned WrapperKind = X86ISD::Wrapper; |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 5871 | CodeModel::Model M = getTargetMachine().getCodeModel(); |
| 5872 | |
Chris Lattner | 4f06649 | 2009-07-11 20:29:19 +0000 | [diff] [blame] | 5873 | if (Subtarget->isPICStyleRIPRel() && |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 5874 | (M == CodeModel::Small || M == CodeModel::Kernel)) |
Chris Lattner | e4df756 | 2009-07-09 03:15:51 +0000 | [diff] [blame] | 5875 | WrapperKind = X86ISD::WrapperRIP; |
Chris Lattner | 3b67e9b | 2009-07-10 20:47:30 +0000 | [diff] [blame] | 5876 | else if (Subtarget->isPICStyleGOT()) |
Chris Lattner | 88e1fd5 | 2009-07-09 04:24:46 +0000 | [diff] [blame] | 5877 | OpFlag = X86II::MO_GOTOFF; |
Chris Lattner | e2c9208 | 2009-07-10 21:00:45 +0000 | [diff] [blame] | 5878 | else if (Subtarget->isPICStyleStubPIC()) |
Chris Lattner | 88e1fd5 | 2009-07-09 04:24:46 +0000 | [diff] [blame] | 5879 | OpFlag = X86II::MO_PIC_BASE_OFFSET; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5880 | |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5881 | SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(), |
| 5882 | OpFlag); |
| 5883 | DebugLoc DL = JT->getDebugLoc(); |
| 5884 | Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5885 | |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5886 | // With PIC, the address is actually $g + Offset. |
Chris Lattner | 1e61e69 | 2010-11-15 02:46:57 +0000 | [diff] [blame] | 5887 | if (OpFlag) |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5888 | Result = DAG.getNode(ISD::ADD, DL, getPointerTy(), |
| 5889 | DAG.getNode(X86ISD::GlobalBaseReg, |
Chris Lattner | c7f3ace | 2010-04-02 20:16:16 +0000 | [diff] [blame] | 5890 | DebugLoc(), getPointerTy()), |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5891 | Result); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5892 | |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5893 | return Result; |
| 5894 | } |
| 5895 | |
| 5896 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 5897 | X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const { |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5898 | const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol(); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5899 | |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5900 | // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the |
| 5901 | // global base reg. |
| 5902 | unsigned char OpFlag = 0; |
| 5903 | unsigned WrapperKind = X86ISD::Wrapper; |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 5904 | CodeModel::Model M = getTargetMachine().getCodeModel(); |
| 5905 | |
Chris Lattner | 4f06649 | 2009-07-11 20:29:19 +0000 | [diff] [blame] | 5906 | if (Subtarget->isPICStyleRIPRel() && |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 5907 | (M == CodeModel::Small || M == CodeModel::Kernel)) |
Chris Lattner | e4df756 | 2009-07-09 03:15:51 +0000 | [diff] [blame] | 5908 | WrapperKind = X86ISD::WrapperRIP; |
Chris Lattner | 3b67e9b | 2009-07-10 20:47:30 +0000 | [diff] [blame] | 5909 | else if (Subtarget->isPICStyleGOT()) |
Chris Lattner | 88e1fd5 | 2009-07-09 04:24:46 +0000 | [diff] [blame] | 5910 | OpFlag = X86II::MO_GOTOFF; |
Chris Lattner | e2c9208 | 2009-07-10 21:00:45 +0000 | [diff] [blame] | 5911 | else if (Subtarget->isPICStyleStubPIC()) |
Chris Lattner | 88e1fd5 | 2009-07-09 04:24:46 +0000 | [diff] [blame] | 5912 | OpFlag = X86II::MO_PIC_BASE_OFFSET; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5913 | |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5914 | SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5915 | |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5916 | DebugLoc DL = Op.getDebugLoc(); |
| 5917 | Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5918 | |
| 5919 | |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5920 | // With PIC, the address is actually $g + Offset. |
| 5921 | if (getTargetMachine().getRelocationModel() == Reloc::PIC_ && |
Chris Lattner | e4df756 | 2009-07-09 03:15:51 +0000 | [diff] [blame] | 5922 | !Subtarget->is64Bit()) { |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5923 | Result = DAG.getNode(ISD::ADD, DL, getPointerTy(), |
| 5924 | DAG.getNode(X86ISD::GlobalBaseReg, |
Chris Lattner | c7f3ace | 2010-04-02 20:16:16 +0000 | [diff] [blame] | 5925 | DebugLoc(), getPointerTy()), |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5926 | Result); |
| 5927 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5928 | |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5929 | return Result; |
| 5930 | } |
| 5931 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5932 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 5933 | X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const { |
Dan Gohman | 29cbade | 2009-11-20 23:18:13 +0000 | [diff] [blame] | 5934 | // Create the TargetBlockAddressAddress node. |
| 5935 | unsigned char OpFlags = |
| 5936 | Subtarget->ClassifyBlockAddressReference(); |
Dan Gohman | f705adb | 2009-10-30 01:28:02 +0000 | [diff] [blame] | 5937 | CodeModel::Model M = getTargetMachine().getCodeModel(); |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 5938 | const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress(); |
Dan Gohman | 29cbade | 2009-11-20 23:18:13 +0000 | [diff] [blame] | 5939 | DebugLoc dl = Op.getDebugLoc(); |
| 5940 | SDValue Result = DAG.getBlockAddress(BA, getPointerTy(), |
| 5941 | /*isTarget=*/true, OpFlags); |
| 5942 | |
Dan Gohman | f705adb | 2009-10-30 01:28:02 +0000 | [diff] [blame] | 5943 | if (Subtarget->isPICStyleRIPRel() && |
| 5944 | (M == CodeModel::Small || M == CodeModel::Kernel)) |
Dan Gohman | 29cbade | 2009-11-20 23:18:13 +0000 | [diff] [blame] | 5945 | Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result); |
| 5946 | else |
| 5947 | Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result); |
Dan Gohman | f705adb | 2009-10-30 01:28:02 +0000 | [diff] [blame] | 5948 | |
Dan Gohman | 29cbade | 2009-11-20 23:18:13 +0000 | [diff] [blame] | 5949 | // With PIC, the address is actually $g + Offset. |
| 5950 | if (isGlobalRelativeToPICBase(OpFlags)) { |
| 5951 | Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), |
| 5952 | DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()), |
| 5953 | Result); |
| 5954 | } |
Dan Gohman | f705adb | 2009-10-30 01:28:02 +0000 | [diff] [blame] | 5955 | |
| 5956 | return Result; |
| 5957 | } |
| 5958 | |
| 5959 | SDValue |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 5960 | X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl, |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 5961 | int64_t Offset, |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5962 | SelectionDAG &DAG) const { |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 5963 | // Create the TargetGlobalAddress node, folding in the constant |
| 5964 | // offset if it is legal. |
Chris Lattner | d392bd9 | 2009-07-10 07:20:05 +0000 | [diff] [blame] | 5965 | unsigned char OpFlags = |
| 5966 | Subtarget->ClassifyGlobalReference(GV, getTargetMachine()); |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 5967 | CodeModel::Model M = getTargetMachine().getCodeModel(); |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 5968 | SDValue Result; |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 5969 | if (OpFlags == X86II::MO_NO_FLAG && |
| 5970 | X86::isOffsetSuitableForCodeModel(Offset, M)) { |
Chris Lattner | 4aa21aa | 2009-07-09 00:58:53 +0000 | [diff] [blame] | 5971 | // A direct static reference to a global. |
Devang Patel | 0d881da | 2010-07-06 22:08:15 +0000 | [diff] [blame] | 5972 | Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset); |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 5973 | Offset = 0; |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5974 | } else { |
Devang Patel | 0d881da | 2010-07-06 22:08:15 +0000 | [diff] [blame] | 5975 | Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags); |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5976 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5977 | |
Chris Lattner | 4f06649 | 2009-07-11 20:29:19 +0000 | [diff] [blame] | 5978 | if (Subtarget->isPICStyleRIPRel() && |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 5979 | (M == CodeModel::Small || M == CodeModel::Kernel)) |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5980 | Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result); |
| 5981 | else |
| 5982 | Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result); |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 5983 | |
Anton Korobeynikov | 7f70559 | 2007-01-12 19:20:47 +0000 | [diff] [blame] | 5984 | // With PIC, the address is actually $g + Offset. |
Chris Lattner | 36c2501 | 2009-07-10 07:34:39 +0000 | [diff] [blame] | 5985 | if (isGlobalRelativeToPICBase(OpFlags)) { |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 5986 | Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), |
| 5987 | DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()), |
Anton Korobeynikov | 7f70559 | 2007-01-12 19:20:47 +0000 | [diff] [blame] | 5988 | Result); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5989 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5990 | |
Chris Lattner | 36c2501 | 2009-07-10 07:34:39 +0000 | [diff] [blame] | 5991 | // For globals that require a load from a stub to get the address, emit the |
| 5992 | // load. |
| 5993 | if (isGlobalStubReference(OpFlags)) |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 5994 | Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result, |
Chris Lattner | d1c24ed | 2010-09-21 06:44:06 +0000 | [diff] [blame] | 5995 | MachinePointerInfo::getGOT(), false, false, 0); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5996 | |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 5997 | // If there was a non-zero offset that we didn't fold, create an explicit |
| 5998 | // addition for it. |
| 5999 | if (Offset != 0) |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 6000 | Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result, |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 6001 | DAG.getConstant(Offset, getPointerTy())); |
| 6002 | |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6003 | return Result; |
| 6004 | } |
| 6005 | |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 6006 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6007 | X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const { |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 6008 | const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal(); |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 6009 | int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 6010 | return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG); |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 6011 | } |
| 6012 | |
Rafael Espindola | 2ee3db3 | 2009-04-17 14:35:58 +0000 | [diff] [blame] | 6013 | static SDValue |
| 6014 | GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6015 | SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg, |
Chris Lattner | b903bed | 2009-06-26 21:20:29 +0000 | [diff] [blame] | 6016 | unsigned char OperandFlags) { |
Anton Korobeynikov | 817a464 | 2009-12-11 19:39:55 +0000 | [diff] [blame] | 6017 | MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6018 | SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag); |
Rafael Espindola | 2ee3db3 | 2009-04-17 14:35:58 +0000 | [diff] [blame] | 6019 | DebugLoc dl = GA->getDebugLoc(); |
Devang Patel | 0d881da | 2010-07-06 22:08:15 +0000 | [diff] [blame] | 6020 | SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl, |
Rafael Espindola | 2ee3db3 | 2009-04-17 14:35:58 +0000 | [diff] [blame] | 6021 | GA->getValueType(0), |
Chris Lattner | b903bed | 2009-06-26 21:20:29 +0000 | [diff] [blame] | 6022 | GA->getOffset(), |
| 6023 | OperandFlags); |
Rafael Espindola | 2ee3db3 | 2009-04-17 14:35:58 +0000 | [diff] [blame] | 6024 | if (InFlag) { |
| 6025 | SDValue Ops[] = { Chain, TGA, *InFlag }; |
Rafael Espindola | 15f1b66 | 2009-04-24 12:59:40 +0000 | [diff] [blame] | 6026 | Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3); |
Rafael Espindola | 2ee3db3 | 2009-04-17 14:35:58 +0000 | [diff] [blame] | 6027 | } else { |
| 6028 | SDValue Ops[] = { Chain, TGA }; |
Rafael Espindola | 15f1b66 | 2009-04-24 12:59:40 +0000 | [diff] [blame] | 6029 | Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2); |
Rafael Espindola | 2ee3db3 | 2009-04-17 14:35:58 +0000 | [diff] [blame] | 6030 | } |
Anton Korobeynikov | 817a464 | 2009-12-11 19:39:55 +0000 | [diff] [blame] | 6031 | |
| 6032 | // TLSADDR will be codegen'ed as call. Inform MFI that function has calls. |
Bill Wendling | b92187a | 2010-05-14 21:14:32 +0000 | [diff] [blame] | 6033 | MFI->setAdjustsStack(true); |
Anton Korobeynikov | 817a464 | 2009-12-11 19:39:55 +0000 | [diff] [blame] | 6034 | |
Rafael Espindola | 15f1b66 | 2009-04-24 12:59:40 +0000 | [diff] [blame] | 6035 | SDValue Flag = Chain.getValue(1); |
| 6036 | return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag); |
Rafael Espindola | 2ee3db3 | 2009-04-17 14:35:58 +0000 | [diff] [blame] | 6037 | } |
| 6038 | |
Anton Korobeynikov | 6625eff | 2008-05-04 21:36:32 +0000 | [diff] [blame] | 6039 | // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6040 | static SDValue |
Anton Korobeynikov | 6625eff | 2008-05-04 21:36:32 +0000 | [diff] [blame] | 6041 | LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6042 | const EVT PtrVT) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6043 | SDValue InFlag; |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 6044 | DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better |
| 6045 | SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX, |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 6046 | DAG.getNode(X86ISD::GlobalBaseReg, |
Chris Lattner | c7f3ace | 2010-04-02 20:16:16 +0000 | [diff] [blame] | 6047 | DebugLoc(), PtrVT), InFlag); |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 6048 | InFlag = Chain.getValue(1); |
| 6049 | |
Chris Lattner | b903bed | 2009-06-26 21:20:29 +0000 | [diff] [blame] | 6050 | return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD); |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 6051 | } |
| 6052 | |
Anton Korobeynikov | 6625eff | 2008-05-04 21:36:32 +0000 | [diff] [blame] | 6053 | // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6054 | static SDValue |
Anton Korobeynikov | 6625eff | 2008-05-04 21:36:32 +0000 | [diff] [blame] | 6055 | LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6056 | const EVT PtrVT) { |
Chris Lattner | b903bed | 2009-06-26 21:20:29 +0000 | [diff] [blame] | 6057 | return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, |
| 6058 | X86::RAX, X86II::MO_TLSGD); |
Anton Korobeynikov | 6625eff | 2008-05-04 21:36:32 +0000 | [diff] [blame] | 6059 | } |
| 6060 | |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 6061 | // Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or |
| 6062 | // "local exec" model. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6063 | static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6064 | const EVT PtrVT, TLSModel::Model model, |
Rafael Espindola | 7ff5bff | 2009-04-13 13:02:49 +0000 | [diff] [blame] | 6065 | bool is64Bit) { |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 6066 | DebugLoc dl = GA->getDebugLoc(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6067 | |
Chris Lattner | f93b90c | 2010-09-22 04:39:11 +0000 | [diff] [blame] | 6068 | // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit). |
| 6069 | Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(), |
| 6070 | is64Bit ? 257 : 256)); |
Rafael Espindola | 094fad3 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 6071 | |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6072 | SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), |
Chris Lattner | f93b90c | 2010-09-22 04:39:11 +0000 | [diff] [blame] | 6073 | DAG.getIntPtrConstant(0), |
| 6074 | MachinePointerInfo(Ptr), false, false, 0); |
Rafael Espindola | 094fad3 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 6075 | |
Chris Lattner | b903bed | 2009-06-26 21:20:29 +0000 | [diff] [blame] | 6076 | unsigned char OperandFlags = 0; |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 6077 | // Most TLS accesses are not RIP relative, even on x86-64. One exception is |
| 6078 | // initialexec. |
| 6079 | unsigned WrapperKind = X86ISD::Wrapper; |
| 6080 | if (model == TLSModel::LocalExec) { |
Chris Lattner | b903bed | 2009-06-26 21:20:29 +0000 | [diff] [blame] | 6081 | OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF; |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 6082 | } else if (is64Bit) { |
| 6083 | assert(model == TLSModel::InitialExec); |
| 6084 | OperandFlags = X86II::MO_GOTTPOFF; |
| 6085 | WrapperKind = X86ISD::WrapperRIP; |
| 6086 | } else { |
| 6087 | assert(model == TLSModel::InitialExec); |
| 6088 | OperandFlags = X86II::MO_INDNTPOFF; |
Chris Lattner | b903bed | 2009-06-26 21:20:29 +0000 | [diff] [blame] | 6089 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 6090 | |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 6091 | // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial |
| 6092 | // exec) |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6093 | SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl, |
Devang Patel | 0d881da | 2010-07-06 22:08:15 +0000 | [diff] [blame] | 6094 | GA->getValueType(0), |
Chris Lattner | b903bed | 2009-06-26 21:20:29 +0000 | [diff] [blame] | 6095 | GA->getOffset(), OperandFlags); |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 6096 | SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA); |
Lauro Ramos Venancio | 7d2cc2b | 2007-04-22 22:50:52 +0000 | [diff] [blame] | 6097 | |
Rafael Espindola | 9a58023 | 2009-02-27 13:37:18 +0000 | [diff] [blame] | 6098 | if (model == TLSModel::InitialExec) |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 6099 | Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset, |
Chris Lattner | d1c24ed | 2010-09-21 06:44:06 +0000 | [diff] [blame] | 6100 | MachinePointerInfo::getGOT(), false, false, 0); |
Lauro Ramos Venancio | 7d2cc2b | 2007-04-22 22:50:52 +0000 | [diff] [blame] | 6101 | |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 6102 | // The address of the thread local variable is the add of the thread |
| 6103 | // pointer with the offset of the variable. |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 6104 | return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset); |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 6105 | } |
| 6106 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6107 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6108 | X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const { |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6109 | |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 6110 | GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op); |
Chris Lattner | b903bed | 2009-06-26 21:20:29 +0000 | [diff] [blame] | 6111 | const GlobalValue *GV = GA->getGlobal(); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 6112 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6113 | if (Subtarget->isTargetELF()) { |
| 6114 | // TODO: implement the "local dynamic" model |
| 6115 | // TODO: implement the "initial exec"model for pic executables |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6116 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6117 | // If GV is an alias then use the aliasee for determining |
| 6118 | // thread-localness. |
| 6119 | if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV)) |
| 6120 | GV = GA->resolveAliasedGlobal(false); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6121 | |
| 6122 | TLSModel::Model model |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6123 | = getTLSModel(GV, getTargetMachine().getRelocationModel()); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6124 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6125 | switch (model) { |
| 6126 | case TLSModel::GeneralDynamic: |
| 6127 | case TLSModel::LocalDynamic: // not implemented |
| 6128 | if (Subtarget->is64Bit()) |
| 6129 | return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy()); |
| 6130 | return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy()); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6131 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6132 | case TLSModel::InitialExec: |
| 6133 | case TLSModel::LocalExec: |
| 6134 | return LowerToTLSExecModel(GA, DAG, getPointerTy(), model, |
| 6135 | Subtarget->is64Bit()); |
| 6136 | } |
| 6137 | } else if (Subtarget->isTargetDarwin()) { |
| 6138 | // Darwin only has one model of TLS. Lower to that. |
| 6139 | unsigned char OpFlag = 0; |
| 6140 | unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ? |
| 6141 | X86ISD::WrapperRIP : X86ISD::Wrapper; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6142 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6143 | // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the |
| 6144 | // global base reg. |
| 6145 | bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) && |
| 6146 | !Subtarget->is64Bit(); |
| 6147 | if (PIC32) |
| 6148 | OpFlag = X86II::MO_TLVP_PIC_BASE; |
| 6149 | else |
| 6150 | OpFlag = X86II::MO_TLVP; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6151 | DebugLoc DL = Op.getDebugLoc(); |
Devang Patel | 0d881da | 2010-07-06 22:08:15 +0000 | [diff] [blame] | 6152 | SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL, |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6153 | getPointerTy(), |
| 6154 | GA->getOffset(), OpFlag); |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6155 | SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6156 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6157 | // With PIC32, the address is actually $g + Offset. |
| 6158 | if (PIC32) |
| 6159 | Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(), |
| 6160 | DAG.getNode(X86ISD::GlobalBaseReg, |
| 6161 | DebugLoc(), getPointerTy()), |
| 6162 | Offset); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6163 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6164 | // Lowering the machine isd will make sure everything is in the right |
| 6165 | // location. |
| 6166 | SDValue Args[] = { Offset }; |
| 6167 | SDValue Chain = DAG.getNode(X86ISD::TLSCALL, DL, MVT::Other, Args, 1); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6168 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6169 | // TLSCALL will be codegen'ed as call. Inform MFI that function has calls. |
| 6170 | MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo(); |
| 6171 | MFI->setAdjustsStack(true); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 6172 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6173 | // And our return value (tls address) is in the standard call return value |
| 6174 | // location. |
| 6175 | unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX; |
| 6176 | return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy()); |
Anton Korobeynikov | 6625eff | 2008-05-04 21:36:32 +0000 | [diff] [blame] | 6177 | } |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6178 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6179 | assert(false && |
| 6180 | "TLS not implemented for this target."); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 6181 | |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 6182 | llvm_unreachable("Unreachable"); |
Chris Lattner | 5867de1 | 2009-04-01 22:14:45 +0000 | [diff] [blame] | 6183 | return SDValue(); |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 6184 | } |
| 6185 | |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6186 | |
Chris Lattner | 2ff75ee | 2007-10-17 06:02:13 +0000 | [diff] [blame] | 6187 | /// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6188 | /// take a 2 x i32 value to shift plus a shift amount. |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6189 | SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const { |
Dan Gohman | 4c1fa61 | 2008-03-03 22:22:09 +0000 | [diff] [blame] | 6190 | assert(Op.getNumOperands() == 3 && "Not a double-shift!"); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6191 | EVT VT = Op.getValueType(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6192 | unsigned VTBits = VT.getSizeInBits(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 6193 | DebugLoc dl = Op.getDebugLoc(); |
Chris Lattner | 2ff75ee | 2007-10-17 06:02:13 +0000 | [diff] [blame] | 6194 | bool isSRA = Op.getOpcode() == ISD::SRA_PARTS; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6195 | SDValue ShOpLo = Op.getOperand(0); |
| 6196 | SDValue ShOpHi = Op.getOperand(1); |
| 6197 | SDValue ShAmt = Op.getOperand(2); |
Chris Lattner | 31dcfe6 | 2009-07-29 05:48:09 +0000 | [diff] [blame] | 6198 | SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6199 | DAG.getConstant(VTBits - 1, MVT::i8)) |
Chris Lattner | 31dcfe6 | 2009-07-29 05:48:09 +0000 | [diff] [blame] | 6200 | : DAG.getConstant(0, VT); |
Evan Cheng | e341316 | 2006-01-09 18:33:28 +0000 | [diff] [blame] | 6201 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6202 | SDValue Tmp2, Tmp3; |
Chris Lattner | 2ff75ee | 2007-10-17 06:02:13 +0000 | [diff] [blame] | 6203 | if (Op.getOpcode() == ISD::SHL_PARTS) { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6204 | Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt); |
| 6205 | Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt); |
Chris Lattner | 2ff75ee | 2007-10-17 06:02:13 +0000 | [diff] [blame] | 6206 | } else { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6207 | Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt); |
| 6208 | Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt); |
Chris Lattner | 2ff75ee | 2007-10-17 06:02:13 +0000 | [diff] [blame] | 6209 | } |
Evan Cheng | e341316 | 2006-01-09 18:33:28 +0000 | [diff] [blame] | 6210 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6211 | SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt, |
| 6212 | DAG.getConstant(VTBits, MVT::i8)); |
Chris Lattner | ccfea35 | 2010-02-22 00:28:59 +0000 | [diff] [blame] | 6213 | SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6214 | AndNode, DAG.getConstant(0, MVT::i8)); |
Evan Cheng | e341316 | 2006-01-09 18:33:28 +0000 | [diff] [blame] | 6215 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6216 | SDValue Hi, Lo; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6217 | SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6218 | SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond }; |
| 6219 | SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond }; |
Duncan Sands | f951620 | 2008-06-30 10:19:09 +0000 | [diff] [blame] | 6220 | |
Chris Lattner | 2ff75ee | 2007-10-17 06:02:13 +0000 | [diff] [blame] | 6221 | if (Op.getOpcode() == ISD::SHL_PARTS) { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6222 | Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4); |
| 6223 | Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4); |
Chris Lattner | 2ff75ee | 2007-10-17 06:02:13 +0000 | [diff] [blame] | 6224 | } else { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6225 | Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4); |
| 6226 | Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4); |
Chris Lattner | 2ff75ee | 2007-10-17 06:02:13 +0000 | [diff] [blame] | 6227 | } |
| 6228 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6229 | SDValue Ops[2] = { Lo, Hi }; |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6230 | return DAG.getMergeValues(Ops, 2, dl); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6231 | } |
Evan Cheng | a3195e8 | 2006-01-12 22:54:21 +0000 | [diff] [blame] | 6232 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6233 | SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op, |
| 6234 | SelectionDAG &DAG) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6235 | EVT SrcVT = Op.getOperand(0).getValueType(); |
Eli Friedman | 23ef105 | 2009-06-06 03:57:58 +0000 | [diff] [blame] | 6236 | |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 6237 | if (SrcVT.isVector()) |
Eli Friedman | 23ef105 | 2009-06-06 03:57:58 +0000 | [diff] [blame] | 6238 | return SDValue(); |
Eli Friedman | 23ef105 | 2009-06-06 03:57:58 +0000 | [diff] [blame] | 6239 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6240 | assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 && |
Chris Lattner | b09916b | 2008-02-27 05:57:41 +0000 | [diff] [blame] | 6241 | "Unknown SINT_TO_FP to lower!"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6242 | |
Eli Friedman | 36df499 | 2009-05-27 00:47:34 +0000 | [diff] [blame] | 6243 | // These are really Legal; return the operand so the caller accepts it as |
| 6244 | // Legal. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6245 | if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType())) |
Eli Friedman | 36df499 | 2009-05-27 00:47:34 +0000 | [diff] [blame] | 6246 | return Op; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6247 | if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) && |
Eli Friedman | 36df499 | 2009-05-27 00:47:34 +0000 | [diff] [blame] | 6248 | Subtarget->is64Bit()) { |
| 6249 | return Op; |
| 6250 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6251 | |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 6252 | DebugLoc dl = Op.getDebugLoc(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6253 | unsigned Size = SrcVT.getSizeInBits()/8; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6254 | MachineFunction &MF = DAG.getMachineFunction(); |
David Greene | 3f2bf85 | 2009-11-12 20:49:22 +0000 | [diff] [blame] | 6255 | int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6256 | SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy()); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6257 | SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0), |
Bill Wendling | 105be5a | 2009-03-13 08:41:47 +0000 | [diff] [blame] | 6258 | StackSlot, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 6259 | MachinePointerInfo::getFixedStack(SSFI), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 6260 | false, false, 0); |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 6261 | return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG); |
| 6262 | } |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6263 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6264 | SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain, |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6265 | SDValue StackSlot, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6266 | SelectionDAG &DAG) const { |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6267 | // Build the FILD |
Chris Lattner | 492a43e | 2010-09-22 01:28:21 +0000 | [diff] [blame] | 6268 | DebugLoc DL = Op.getDebugLoc(); |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 6269 | SDVTList Tys; |
Chris Lattner | 7863116 | 2008-01-16 06:24:21 +0000 | [diff] [blame] | 6270 | bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType()); |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 6271 | if (useSSE) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6272 | Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag); |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 6273 | else |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6274 | Tys = DAG.getVTList(Op.getValueType(), MVT::Other); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6275 | |
Chris Lattner | 492a43e | 2010-09-22 01:28:21 +0000 | [diff] [blame] | 6276 | unsigned ByteSize = SrcVT.getSizeInBits()/8; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6277 | |
Chris Lattner | 492a43e | 2010-09-22 01:28:21 +0000 | [diff] [blame] | 6278 | int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex(); |
| 6279 | MachineMemOperand *MMO = |
| 6280 | DAG.getMachineFunction() |
| 6281 | .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI), |
| 6282 | MachineMemOperand::MOLoad, ByteSize, ByteSize); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6283 | |
Benjamin Kramer | 7f1a560 | 2009-12-29 16:57:26 +0000 | [diff] [blame] | 6284 | SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) }; |
Chris Lattner | 492a43e | 2010-09-22 01:28:21 +0000 | [diff] [blame] | 6285 | SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG : |
| 6286 | X86ISD::FILD, DL, |
| 6287 | Tys, Ops, array_lengthof(Ops), |
| 6288 | SrcVT, MMO); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6289 | |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 6290 | if (useSSE) { |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6291 | Chain = Result.getValue(1); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6292 | SDValue InFlag = Result.getValue(2); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6293 | |
| 6294 | // FIXME: Currently the FST is flagged to the FILD_FLAG. This |
| 6295 | // shouldn't be necessary except that RFP cannot be live across |
| 6296 | // multiple blocks. When stackifier is fixed, they can be uncoupled. |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 6297 | MachineFunction &MF = DAG.getMachineFunction(); |
Bob Wilson | eafca4e | 2010-09-22 17:35:14 +0000 | [diff] [blame] | 6298 | unsigned SSFISize = Op.getValueType().getSizeInBits()/8; |
| 6299 | int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6300 | SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy()); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6301 | Tys = DAG.getVTList(MVT::Other); |
Benjamin Kramer | 7f1a560 | 2009-12-29 16:57:26 +0000 | [diff] [blame] | 6302 | SDValue Ops[] = { |
| 6303 | Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag |
| 6304 | }; |
Chris Lattner | 492a43e | 2010-09-22 01:28:21 +0000 | [diff] [blame] | 6305 | MachineMemOperand *MMO = |
| 6306 | DAG.getMachineFunction() |
| 6307 | .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI), |
Bob Wilson | eafca4e | 2010-09-22 17:35:14 +0000 | [diff] [blame] | 6308 | MachineMemOperand::MOStore, SSFISize, SSFISize); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6309 | |
Chris Lattner | 492a43e | 2010-09-22 01:28:21 +0000 | [diff] [blame] | 6310 | Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys, |
| 6311 | Ops, array_lengthof(Ops), |
| 6312 | Op.getValueType(), MMO); |
| 6313 | Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 6314 | MachinePointerInfo::getFixedStack(SSFI), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 6315 | false, false, 0); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 6316 | } |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 6317 | |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6318 | return Result; |
| 6319 | } |
| 6320 | |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6321 | // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion. |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6322 | SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op, |
| 6323 | SelectionDAG &DAG) const { |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6324 | // This algorithm is not obvious. Here it is in C code, more or less: |
| 6325 | /* |
| 6326 | double uint64_to_double( uint32_t hi, uint32_t lo ) { |
| 6327 | static const __m128i exp = { 0x4330000045300000ULL, 0 }; |
| 6328 | static const __m128d bias = { 0x1.0p84, 0x1.0p52 }; |
Dale Johannesen | 040225f | 2008-10-21 23:07:49 +0000 | [diff] [blame] | 6329 | |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6330 | // Copy ints to xmm registers. |
| 6331 | __m128i xh = _mm_cvtsi32_si128( hi ); |
| 6332 | __m128i xl = _mm_cvtsi32_si128( lo ); |
Dale Johannesen | 040225f | 2008-10-21 23:07:49 +0000 | [diff] [blame] | 6333 | |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6334 | // Combine into low half of a single xmm register. |
| 6335 | __m128i x = _mm_unpacklo_epi32( xh, xl ); |
| 6336 | __m128d d; |
| 6337 | double sd; |
Dale Johannesen | 040225f | 2008-10-21 23:07:49 +0000 | [diff] [blame] | 6338 | |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6339 | // Merge in appropriate exponents to give the integer bits the right |
| 6340 | // magnitude. |
| 6341 | x = _mm_unpacklo_epi32( x, exp ); |
Dale Johannesen | 040225f | 2008-10-21 23:07:49 +0000 | [diff] [blame] | 6342 | |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6343 | // Subtract away the biases to deal with the IEEE-754 double precision |
| 6344 | // implicit 1. |
| 6345 | d = _mm_sub_pd( (__m128d) x, bias ); |
Dale Johannesen | 040225f | 2008-10-21 23:07:49 +0000 | [diff] [blame] | 6346 | |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6347 | // All conversions up to here are exact. The correctly rounded result is |
| 6348 | // calculated using the current rounding mode using the following |
| 6349 | // horizontal add. |
| 6350 | d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) ); |
| 6351 | _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this |
| 6352 | // store doesn't really need to be here (except |
| 6353 | // maybe to zero the other double) |
| 6354 | return sd; |
| 6355 | } |
| 6356 | */ |
Dale Johannesen | 040225f | 2008-10-21 23:07:49 +0000 | [diff] [blame] | 6357 | |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 6358 | DebugLoc dl = Op.getDebugLoc(); |
Owen Anderson | a90b3dc | 2009-07-15 21:51:10 +0000 | [diff] [blame] | 6359 | LLVMContext *Context = DAG.getContext(); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6360 | |
Dale Johannesen | 1c15bf5 | 2008-10-21 20:50:01 +0000 | [diff] [blame] | 6361 | // Build some magic constants. |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6362 | std::vector<Constant*> CV0; |
Owen Anderson | eed707b | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 6363 | CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000))); |
| 6364 | CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000))); |
| 6365 | CV0.push_back(ConstantInt::get(*Context, APInt(32, 0))); |
| 6366 | CV0.push_back(ConstantInt::get(*Context, APInt(32, 0))); |
Owen Anderson | af7ec97 | 2009-07-28 21:19:26 +0000 | [diff] [blame] | 6367 | Constant *C0 = ConstantVector::get(CV0); |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 6368 | SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16); |
Dale Johannesen | 1c15bf5 | 2008-10-21 20:50:01 +0000 | [diff] [blame] | 6369 | |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6370 | std::vector<Constant*> CV1; |
Owen Anderson | a90b3dc | 2009-07-15 21:51:10 +0000 | [diff] [blame] | 6371 | CV1.push_back( |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 6372 | ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL)))); |
Owen Anderson | a90b3dc | 2009-07-15 21:51:10 +0000 | [diff] [blame] | 6373 | CV1.push_back( |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 6374 | ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL)))); |
Owen Anderson | af7ec97 | 2009-07-28 21:19:26 +0000 | [diff] [blame] | 6375 | Constant *C1 = ConstantVector::get(CV1); |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 6376 | SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16); |
Dale Johannesen | 1c15bf5 | 2008-10-21 20:50:01 +0000 | [diff] [blame] | 6377 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6378 | SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, |
| 6379 | DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, |
Duncan Sands | 6b6aeb3 | 2008-10-22 11:24:12 +0000 | [diff] [blame] | 6380 | Op.getOperand(0), |
| 6381 | DAG.getIntPtrConstant(1))); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6382 | SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, |
| 6383 | DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, |
Duncan Sands | 6b6aeb3 | 2008-10-22 11:24:12 +0000 | [diff] [blame] | 6384 | Op.getOperand(0), |
| 6385 | DAG.getIntPtrConstant(0))); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6386 | SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2); |
| 6387 | SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 6388 | MachinePointerInfo::getConstantPool(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 6389 | false, false, 16); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6390 | SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0); |
| 6391 | SDValue XR2F = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Unpck2); |
| 6392 | SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 6393 | MachinePointerInfo::getConstantPool(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 6394 | false, false, 16); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6395 | SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1); |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6396 | |
Dale Johannesen | 1c15bf5 | 2008-10-21 20:50:01 +0000 | [diff] [blame] | 6397 | // Add the halves; easiest way is to swap them into another reg first. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 6398 | int ShufMask[2] = { 1, -1 }; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6399 | SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub, |
| 6400 | DAG.getUNDEF(MVT::v2f64), ShufMask); |
| 6401 | SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub); |
| 6402 | return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add, |
Dale Johannesen | 1c15bf5 | 2008-10-21 20:50:01 +0000 | [diff] [blame] | 6403 | DAG.getIntPtrConstant(0)); |
| 6404 | } |
| 6405 | |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6406 | // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion. |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6407 | SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op, |
| 6408 | SelectionDAG &DAG) const { |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 6409 | DebugLoc dl = Op.getDebugLoc(); |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6410 | // FP constant to bias correct the final result. |
| 6411 | SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6412 | MVT::f64); |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6413 | |
| 6414 | // Load the 32-bit value into an XMM register. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6415 | SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, |
| 6416 | DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6417 | Op.getOperand(0), |
| 6418 | DAG.getIntPtrConstant(0))); |
| 6419 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6420 | Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, |
| 6421 | DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Load), |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6422 | DAG.getIntPtrConstant(0)); |
| 6423 | |
| 6424 | // Or the load with the bias. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6425 | SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, |
| 6426 | DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6427 | DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6428 | MVT::v2f64, Load)), |
| 6429 | DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6430 | DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6431 | MVT::v2f64, Bias))); |
| 6432 | Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, |
| 6433 | DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Or), |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6434 | DAG.getIntPtrConstant(0)); |
| 6435 | |
| 6436 | // Subtract the bias. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6437 | SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias); |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6438 | |
| 6439 | // Handle final rounding. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6440 | EVT DestVT = Op.getValueType(); |
Bill Wendling | 030939c | 2009-01-17 07:40:19 +0000 | [diff] [blame] | 6441 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6442 | if (DestVT.bitsLT(MVT::f64)) { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6443 | return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub, |
Bill Wendling | 030939c | 2009-01-17 07:40:19 +0000 | [diff] [blame] | 6444 | DAG.getIntPtrConstant(0)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6445 | } else if (DestVT.bitsGT(MVT::f64)) { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6446 | return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub); |
Bill Wendling | 030939c | 2009-01-17 07:40:19 +0000 | [diff] [blame] | 6447 | } |
| 6448 | |
| 6449 | // Handle final rounding. |
| 6450 | return Sub; |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6451 | } |
| 6452 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6453 | SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op, |
| 6454 | SelectionDAG &DAG) const { |
Evan Cheng | a06ec9e | 2009-01-19 08:08:22 +0000 | [diff] [blame] | 6455 | SDValue N0 = Op.getOperand(0); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 6456 | DebugLoc dl = Op.getDebugLoc(); |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6457 | |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 6458 | // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't |
Evan Cheng | a06ec9e | 2009-01-19 08:08:22 +0000 | [diff] [blame] | 6459 | // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform |
| 6460 | // the optimization here. |
| 6461 | if (DAG.SignBitIsZero(N0)) |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6462 | return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0); |
Evan Cheng | a06ec9e | 2009-01-19 08:08:22 +0000 | [diff] [blame] | 6463 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6464 | EVT SrcVT = N0.getValueType(); |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 6465 | EVT DstVT = Op.getValueType(); |
| 6466 | if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64) |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6467 | return LowerUINT_TO_FP_i64(Op, DAG); |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 6468 | else if (SrcVT == MVT::i32 && X86ScalarSSEf64) |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6469 | return LowerUINT_TO_FP_i32(Op, DAG); |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 6470 | |
| 6471 | // Make a 64-bit buffer, and use it to build an FILD. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6472 | SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64); |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 6473 | if (SrcVT == MVT::i32) { |
| 6474 | SDValue WordOff = DAG.getConstant(4, getPointerTy()); |
| 6475 | SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl, |
| 6476 | getPointerTy(), StackSlot, WordOff); |
| 6477 | SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0), |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 6478 | StackSlot, MachinePointerInfo(), |
| 6479 | false, false, 0); |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 6480 | SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32), |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 6481 | OffsetSlot, MachinePointerInfo(), |
| 6482 | false, false, 0); |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 6483 | SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG); |
| 6484 | return Fild; |
| 6485 | } |
| 6486 | |
| 6487 | assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP"); |
| 6488 | SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0), |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 6489 | StackSlot, MachinePointerInfo(), |
| 6490 | false, false, 0); |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 6491 | // For i64 source, we need to add the appropriate power of 2 if the input |
| 6492 | // was negative. This is the same as the optimization in |
| 6493 | // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here, |
| 6494 | // we must be careful to do the computation in x87 extended precision, not |
| 6495 | // in SSE. (The generic code can't know it's OK to do this, or how to.) |
Chris Lattner | 492a43e | 2010-09-22 01:28:21 +0000 | [diff] [blame] | 6496 | int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex(); |
| 6497 | MachineMemOperand *MMO = |
| 6498 | DAG.getMachineFunction() |
| 6499 | .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI), |
| 6500 | MachineMemOperand::MOLoad, 8, 8); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6501 | |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 6502 | SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other); |
| 6503 | SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) }; |
Chris Lattner | 492a43e | 2010-09-22 01:28:21 +0000 | [diff] [blame] | 6504 | SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3, |
| 6505 | MVT::i64, MMO); |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 6506 | |
| 6507 | APInt FF(32, 0x5F800000ULL); |
| 6508 | |
| 6509 | // Check whether the sign bit is set. |
| 6510 | SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64), |
| 6511 | Op.getOperand(0), DAG.getConstant(0, MVT::i64), |
| 6512 | ISD::SETLT); |
| 6513 | |
| 6514 | // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits. |
| 6515 | SDValue FudgePtr = DAG.getConstantPool( |
| 6516 | ConstantInt::get(*DAG.getContext(), FF.zext(64)), |
| 6517 | getPointerTy()); |
| 6518 | |
| 6519 | // Get a pointer to FF if the sign bit was set, or to 0 otherwise. |
| 6520 | SDValue Zero = DAG.getIntPtrConstant(0); |
| 6521 | SDValue Four = DAG.getIntPtrConstant(4); |
| 6522 | SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet, |
| 6523 | Zero, Four); |
| 6524 | FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset); |
| 6525 | |
| 6526 | // Load the value out, extending it from f32 to f80. |
| 6527 | // FIXME: Avoid the extend by constructing the right constant pool? |
Evan Cheng | bcc8017 | 2010-07-07 22:15:37 +0000 | [diff] [blame] | 6528 | SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, MVT::f80, dl, DAG.getEntryNode(), |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 6529 | FudgePtr, MachinePointerInfo::getConstantPool(), |
| 6530 | MVT::f32, false, false, 4); |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 6531 | // Extend everything to 80 bits to force it to be done on x87. |
| 6532 | SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge); |
| 6533 | return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0)); |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6534 | } |
| 6535 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6536 | std::pair<SDValue,SDValue> X86TargetLowering:: |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6537 | FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const { |
Chris Lattner | 0729093 | 2010-09-22 01:05:16 +0000 | [diff] [blame] | 6538 | DebugLoc DL = Op.getDebugLoc(); |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 6539 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6540 | EVT DstTy = Op.getValueType(); |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 6541 | |
| 6542 | if (!IsSigned) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6543 | assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT"); |
| 6544 | DstTy = MVT::i64; |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 6545 | } |
| 6546 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6547 | assert(DstTy.getSimpleVT() <= MVT::i64 && |
| 6548 | DstTy.getSimpleVT() >= MVT::i16 && |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6549 | "Unknown FP_TO_SINT to lower!"); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6550 | |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 6551 | // These are really Legal. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6552 | if (DstTy == MVT::i32 && |
Chris Lattner | 7863116 | 2008-01-16 06:24:21 +0000 | [diff] [blame] | 6553 | isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType())) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6554 | return std::make_pair(SDValue(), SDValue()); |
Dale Johannesen | 73328d1 | 2007-09-19 23:55:34 +0000 | [diff] [blame] | 6555 | if (Subtarget->is64Bit() && |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6556 | DstTy == MVT::i64 && |
Eli Friedman | 36df499 | 2009-05-27 00:47:34 +0000 | [diff] [blame] | 6557 | isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType())) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6558 | return std::make_pair(SDValue(), SDValue()); |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 6559 | |
Evan Cheng | 87c8935 | 2007-10-15 20:11:21 +0000 | [diff] [blame] | 6560 | // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary |
| 6561 | // stack slot. |
| 6562 | MachineFunction &MF = DAG.getMachineFunction(); |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 6563 | unsigned MemSize = DstTy.getSizeInBits()/8; |
David Greene | 3f2bf85 | 2009-11-12 20:49:22 +0000 | [diff] [blame] | 6564 | int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6565 | SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy()); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 6566 | |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6567 | |
| 6568 | |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6569 | unsigned Opc; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6570 | switch (DstTy.getSimpleVT().SimpleTy) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 6571 | default: llvm_unreachable("Invalid FP_TO_SINT to lower!"); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6572 | case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break; |
| 6573 | case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break; |
| 6574 | case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6575 | } |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 6576 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6577 | SDValue Chain = DAG.getEntryNode(); |
| 6578 | SDValue Value = Op.getOperand(0); |
Chris Lattner | 492a43e | 2010-09-22 01:28:21 +0000 | [diff] [blame] | 6579 | EVT TheVT = Op.getOperand(0).getValueType(); |
| 6580 | if (isScalarFPTypeInSSEReg(TheVT)) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6581 | assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!"); |
Chris Lattner | 0729093 | 2010-09-22 01:05:16 +0000 | [diff] [blame] | 6582 | Chain = DAG.getStore(Chain, DL, Value, StackSlot, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 6583 | MachinePointerInfo::getFixedStack(SSFI), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 6584 | false, false, 0); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6585 | SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6586 | SDValue Ops[] = { |
Chris Lattner | 492a43e | 2010-09-22 01:28:21 +0000 | [diff] [blame] | 6587 | Chain, StackSlot, DAG.getValueType(TheVT) |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 6588 | }; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6589 | |
Chris Lattner | 492a43e | 2010-09-22 01:28:21 +0000 | [diff] [blame] | 6590 | MachineMemOperand *MMO = |
| 6591 | MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI), |
| 6592 | MachineMemOperand::MOLoad, MemSize, MemSize); |
| 6593 | Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3, |
| 6594 | DstTy, MMO); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6595 | Chain = Value.getValue(1); |
David Greene | 3f2bf85 | 2009-11-12 20:49:22 +0000 | [diff] [blame] | 6596 | SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6597 | StackSlot = DAG.getFrameIndex(SSFI, getPointerTy()); |
| 6598 | } |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6599 | |
Chris Lattner | 0729093 | 2010-09-22 01:05:16 +0000 | [diff] [blame] | 6600 | MachineMemOperand *MMO = |
| 6601 | MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI), |
| 6602 | MachineMemOperand::MOStore, MemSize, MemSize); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 6603 | |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6604 | // Build the FP_TO_INT*_IN_MEM |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6605 | SDValue Ops[] = { Chain, Value, StackSlot }; |
Chris Lattner | 0729093 | 2010-09-22 01:05:16 +0000 | [diff] [blame] | 6606 | SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other), |
| 6607 | Ops, 3, DstTy, MMO); |
Evan Cheng | d9558e0 | 2006-01-06 00:43:03 +0000 | [diff] [blame] | 6608 | |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6609 | return std::make_pair(FIST, StackSlot); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6610 | } |
| 6611 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6612 | SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op, |
| 6613 | SelectionDAG &DAG) const { |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 6614 | if (Op.getValueType().isVector()) |
Eli Friedman | 23ef105 | 2009-06-06 03:57:58 +0000 | [diff] [blame] | 6615 | return SDValue(); |
Eli Friedman | 23ef105 | 2009-06-06 03:57:58 +0000 | [diff] [blame] | 6616 | |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 6617 | std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6618 | SDValue FIST = Vals.first, StackSlot = Vals.second; |
Eli Friedman | 36df499 | 2009-05-27 00:47:34 +0000 | [diff] [blame] | 6619 | // If FP_TO_INTHelper failed, the node is actually supposed to be Legal. |
| 6620 | if (FIST.getNode() == 0) return Op; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6621 | |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6622 | // Load the result. |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 6623 | return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(), |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 6624 | FIST, StackSlot, MachinePointerInfo(), false, false, 0); |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6625 | } |
| 6626 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6627 | SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op, |
| 6628 | SelectionDAG &DAG) const { |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 6629 | std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false); |
| 6630 | SDValue FIST = Vals.first, StackSlot = Vals.second; |
| 6631 | assert(FIST.getNode() && "Unexpected failure"); |
| 6632 | |
| 6633 | // Load the result. |
| 6634 | return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(), |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 6635 | FIST, StackSlot, MachinePointerInfo(), false, false, 0); |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 6636 | } |
| 6637 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6638 | SDValue X86TargetLowering::LowerFABS(SDValue Op, |
| 6639 | SelectionDAG &DAG) const { |
Owen Anderson | a90b3dc | 2009-07-15 21:51:10 +0000 | [diff] [blame] | 6640 | LLVMContext *Context = DAG.getContext(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 6641 | DebugLoc dl = Op.getDebugLoc(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6642 | EVT VT = Op.getValueType(); |
| 6643 | EVT EltVT = VT; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6644 | if (VT.isVector()) |
| 6645 | EltVT = VT.getVectorElementType(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6646 | std::vector<Constant*> CV; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6647 | if (EltVT == MVT::f64) { |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 6648 | Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))); |
Dan Gohman | 2038252 | 2007-07-10 00:05:58 +0000 | [diff] [blame] | 6649 | CV.push_back(C); |
| 6650 | CV.push_back(C); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6651 | } else { |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 6652 | Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))); |
Dan Gohman | 2038252 | 2007-07-10 00:05:58 +0000 | [diff] [blame] | 6653 | CV.push_back(C); |
| 6654 | CV.push_back(C); |
| 6655 | CV.push_back(C); |
| 6656 | CV.push_back(C); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6657 | } |
Owen Anderson | af7ec97 | 2009-07-28 21:19:26 +0000 | [diff] [blame] | 6658 | Constant *C = ConstantVector::get(CV); |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 6659 | SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6660 | SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 6661 | MachinePointerInfo::getConstantPool(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 6662 | false, false, 16); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6663 | return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6664 | } |
| 6665 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6666 | SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const { |
Owen Anderson | a90b3dc | 2009-07-15 21:51:10 +0000 | [diff] [blame] | 6667 | LLVMContext *Context = DAG.getContext(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 6668 | DebugLoc dl = Op.getDebugLoc(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6669 | EVT VT = Op.getValueType(); |
| 6670 | EVT EltVT = VT; |
Duncan Sands | da9ad38 | 2009-09-06 19:29:07 +0000 | [diff] [blame] | 6671 | if (VT.isVector()) |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6672 | EltVT = VT.getVectorElementType(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6673 | std::vector<Constant*> CV; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6674 | if (EltVT == MVT::f64) { |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 6675 | Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))); |
Dan Gohman | 2038252 | 2007-07-10 00:05:58 +0000 | [diff] [blame] | 6676 | CV.push_back(C); |
| 6677 | CV.push_back(C); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6678 | } else { |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 6679 | Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))); |
Dan Gohman | 2038252 | 2007-07-10 00:05:58 +0000 | [diff] [blame] | 6680 | CV.push_back(C); |
| 6681 | CV.push_back(C); |
| 6682 | CV.push_back(C); |
| 6683 | CV.push_back(C); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6684 | } |
Owen Anderson | af7ec97 | 2009-07-28 21:19:26 +0000 | [diff] [blame] | 6685 | Constant *C = ConstantVector::get(CV); |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 6686 | SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6687 | SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 6688 | MachinePointerInfo::getConstantPool(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 6689 | false, false, 16); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6690 | if (VT.isVector()) { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6691 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6692 | DAG.getNode(ISD::XOR, dl, MVT::v2i64, |
| 6693 | DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6694 | Op.getOperand(0)), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6695 | DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, Mask))); |
Evan Cheng | d4d01b7 | 2007-07-19 23:36:01 +0000 | [diff] [blame] | 6696 | } else { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6697 | return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask); |
Evan Cheng | d4d01b7 | 2007-07-19 23:36:01 +0000 | [diff] [blame] | 6698 | } |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6699 | } |
| 6700 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6701 | SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const { |
Owen Anderson | a90b3dc | 2009-07-15 21:51:10 +0000 | [diff] [blame] | 6702 | LLVMContext *Context = DAG.getContext(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6703 | SDValue Op0 = Op.getOperand(0); |
| 6704 | SDValue Op1 = Op.getOperand(1); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 6705 | DebugLoc dl = Op.getDebugLoc(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6706 | EVT VT = Op.getValueType(); |
| 6707 | EVT SrcVT = Op1.getValueType(); |
Evan Cheng | 73d6cf1 | 2007-01-05 21:37:56 +0000 | [diff] [blame] | 6708 | |
| 6709 | // If second operand is smaller, extend it first. |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 6710 | if (SrcVT.bitsLT(VT)) { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6711 | Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1); |
Evan Cheng | 73d6cf1 | 2007-01-05 21:37:56 +0000 | [diff] [blame] | 6712 | SrcVT = VT; |
| 6713 | } |
Dale Johannesen | 61c7ef3 | 2007-10-21 01:07:44 +0000 | [diff] [blame] | 6714 | // And if it is bigger, shrink it first. |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 6715 | if (SrcVT.bitsGT(VT)) { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6716 | Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1)); |
Dale Johannesen | 61c7ef3 | 2007-10-21 01:07:44 +0000 | [diff] [blame] | 6717 | SrcVT = VT; |
Dale Johannesen | 61c7ef3 | 2007-10-21 01:07:44 +0000 | [diff] [blame] | 6718 | } |
| 6719 | |
| 6720 | // At this point the operands and the result should have the same |
| 6721 | // type, and that won't be f80 since that is not custom lowered. |
Evan Cheng | 73d6cf1 | 2007-01-05 21:37:56 +0000 | [diff] [blame] | 6722 | |
Evan Cheng | 68c47cb | 2007-01-05 07:55:56 +0000 | [diff] [blame] | 6723 | // First get the sign bit of second operand. |
| 6724 | std::vector<Constant*> CV; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6725 | if (SrcVT == MVT::f64) { |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 6726 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)))); |
| 6727 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0)))); |
Evan Cheng | 68c47cb | 2007-01-05 07:55:56 +0000 | [diff] [blame] | 6728 | } else { |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 6729 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)))); |
| 6730 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0)))); |
| 6731 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0)))); |
| 6732 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0)))); |
Evan Cheng | 68c47cb | 2007-01-05 07:55:56 +0000 | [diff] [blame] | 6733 | } |
Owen Anderson | af7ec97 | 2009-07-28 21:19:26 +0000 | [diff] [blame] | 6734 | Constant *C = ConstantVector::get(CV); |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 6735 | SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6736 | SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 6737 | MachinePointerInfo::getConstantPool(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 6738 | false, false, 16); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6739 | SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1); |
Evan Cheng | 68c47cb | 2007-01-05 07:55:56 +0000 | [diff] [blame] | 6740 | |
| 6741 | // Shift sign bit right or left if the two operands have different types. |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 6742 | if (SrcVT.bitsGT(VT)) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6743 | // Op0 is MVT::f32, Op1 is MVT::f64. |
| 6744 | SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit); |
| 6745 | SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit, |
| 6746 | DAG.getConstant(32, MVT::i32)); |
| 6747 | SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32, SignBit); |
| 6748 | SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 6749 | DAG.getIntPtrConstant(0)); |
Evan Cheng | 68c47cb | 2007-01-05 07:55:56 +0000 | [diff] [blame] | 6750 | } |
| 6751 | |
Evan Cheng | 73d6cf1 | 2007-01-05 21:37:56 +0000 | [diff] [blame] | 6752 | // Clear first operand sign bit. |
| 6753 | CV.clear(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6754 | if (VT == MVT::f64) { |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 6755 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))))); |
| 6756 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0)))); |
Evan Cheng | 73d6cf1 | 2007-01-05 21:37:56 +0000 | [diff] [blame] | 6757 | } else { |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 6758 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))))); |
| 6759 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0)))); |
| 6760 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0)))); |
| 6761 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0)))); |
Evan Cheng | 73d6cf1 | 2007-01-05 21:37:56 +0000 | [diff] [blame] | 6762 | } |
Owen Anderson | af7ec97 | 2009-07-28 21:19:26 +0000 | [diff] [blame] | 6763 | C = ConstantVector::get(CV); |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 6764 | CPIdx = DAG.getConstantPool(C, getPointerTy(), 16); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6765 | SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 6766 | MachinePointerInfo::getConstantPool(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 6767 | false, false, 16); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6768 | SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2); |
Evan Cheng | 73d6cf1 | 2007-01-05 21:37:56 +0000 | [diff] [blame] | 6769 | |
| 6770 | // Or the value with the sign bit. |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6771 | return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit); |
Evan Cheng | 68c47cb | 2007-01-05 07:55:56 +0000 | [diff] [blame] | 6772 | } |
| 6773 | |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6774 | /// Emit nodes that will be selected as "test Op0,Op0", or something |
| 6775 | /// equivalent. |
Dan Gohman | 3112581 | 2009-03-07 01:58:32 +0000 | [diff] [blame] | 6776 | SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC, |
Evan Cheng | 552f09a | 2010-04-26 19:06:11 +0000 | [diff] [blame] | 6777 | SelectionDAG &DAG) const { |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6778 | DebugLoc dl = Op.getDebugLoc(); |
| 6779 | |
Dan Gohman | 3112581 | 2009-03-07 01:58:32 +0000 | [diff] [blame] | 6780 | // CF and OF aren't always set the way we want. Determine which |
| 6781 | // of these we need. |
| 6782 | bool NeedCF = false; |
| 6783 | bool NeedOF = false; |
| 6784 | switch (X86CC) { |
Bill Wendling | c25ccf8 | 2010-06-28 21:08:32 +0000 | [diff] [blame] | 6785 | default: break; |
Dan Gohman | 3112581 | 2009-03-07 01:58:32 +0000 | [diff] [blame] | 6786 | case X86::COND_A: case X86::COND_AE: |
| 6787 | case X86::COND_B: case X86::COND_BE: |
| 6788 | NeedCF = true; |
| 6789 | break; |
| 6790 | case X86::COND_G: case X86::COND_GE: |
| 6791 | case X86::COND_L: case X86::COND_LE: |
| 6792 | case X86::COND_O: case X86::COND_NO: |
| 6793 | NeedOF = true; |
| 6794 | break; |
Dan Gohman | 3112581 | 2009-03-07 01:58:32 +0000 | [diff] [blame] | 6795 | } |
| 6796 | |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6797 | // See if we can use the EFLAGS value from the operand instead of |
Dan Gohman | 3112581 | 2009-03-07 01:58:32 +0000 | [diff] [blame] | 6798 | // doing a separate TEST. TEST always sets OF and CF to 0, so unless |
| 6799 | // we prove that the arithmetic won't overflow, we can't use OF or CF. |
Bill Wendling | c25ccf8 | 2010-06-28 21:08:32 +0000 | [diff] [blame] | 6800 | if (Op.getResNo() != 0 || NeedOF || NeedCF) |
| 6801 | // Emit a CMP with 0, which is the TEST pattern. |
| 6802 | return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op, |
| 6803 | DAG.getConstant(0, Op.getValueType())); |
| 6804 | |
| 6805 | unsigned Opcode = 0; |
| 6806 | unsigned NumOperands = 0; |
| 6807 | switch (Op.getNode()->getOpcode()) { |
| 6808 | case ISD::ADD: |
| 6809 | // Due to an isel shortcoming, be conservative if this add is likely to be |
| 6810 | // selected as part of a load-modify-store instruction. When the root node |
| 6811 | // in a match is a store, isel doesn't know how to remap non-chain non-flag |
| 6812 | // uses of other nodes in the match, such as the ADD in this case. This |
| 6813 | // leads to the ADD being left around and reselected, with the result being |
| 6814 | // two adds in the output. Alas, even if none our users are stores, that |
| 6815 | // doesn't prove we're O.K. Ergo, if we have any parents that aren't |
| 6816 | // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require |
| 6817 | // climbing the DAG back to the root, and it doesn't seem to be worth the |
| 6818 | // effort. |
| 6819 | for (SDNode::use_iterator UI = Op.getNode()->use_begin(), |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6820 | UE = Op.getNode()->use_end(); UI != UE; ++UI) |
Bill Wendling | c25ccf8 | 2010-06-28 21:08:32 +0000 | [diff] [blame] | 6821 | if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC) |
| 6822 | goto default_case; |
| 6823 | |
| 6824 | if (ConstantSDNode *C = |
| 6825 | dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) { |
| 6826 | // An add of one will be selected as an INC. |
| 6827 | if (C->getAPIntValue() == 1) { |
| 6828 | Opcode = X86ISD::INC; |
| 6829 | NumOperands = 1; |
| 6830 | break; |
Dan Gohman | e220c4b | 2009-09-18 19:59:53 +0000 | [diff] [blame] | 6831 | } |
Bill Wendling | c25ccf8 | 2010-06-28 21:08:32 +0000 | [diff] [blame] | 6832 | |
| 6833 | // An add of negative one (subtract of one) will be selected as a DEC. |
| 6834 | if (C->getAPIntValue().isAllOnesValue()) { |
| 6835 | Opcode = X86ISD::DEC; |
| 6836 | NumOperands = 1; |
| 6837 | break; |
| 6838 | } |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6839 | } |
Bill Wendling | c25ccf8 | 2010-06-28 21:08:32 +0000 | [diff] [blame] | 6840 | |
| 6841 | // Otherwise use a regular EFLAGS-setting add. |
| 6842 | Opcode = X86ISD::ADD; |
| 6843 | NumOperands = 2; |
| 6844 | break; |
| 6845 | case ISD::AND: { |
| 6846 | // If the primary and result isn't used, don't bother using X86ISD::AND, |
| 6847 | // because a TEST instruction will be better. |
| 6848 | bool NonFlagUse = false; |
| 6849 | for (SDNode::use_iterator UI = Op.getNode()->use_begin(), |
| 6850 | UE = Op.getNode()->use_end(); UI != UE; ++UI) { |
| 6851 | SDNode *User = *UI; |
| 6852 | unsigned UOpNo = UI.getOperandNo(); |
| 6853 | if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) { |
| 6854 | // Look pass truncate. |
| 6855 | UOpNo = User->use_begin().getOperandNo(); |
| 6856 | User = *User->use_begin(); |
| 6857 | } |
| 6858 | |
| 6859 | if (User->getOpcode() != ISD::BRCOND && |
| 6860 | User->getOpcode() != ISD::SETCC && |
| 6861 | (User->getOpcode() != ISD::SELECT || UOpNo != 0)) { |
| 6862 | NonFlagUse = true; |
| 6863 | break; |
| 6864 | } |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6865 | } |
Bill Wendling | c25ccf8 | 2010-06-28 21:08:32 +0000 | [diff] [blame] | 6866 | |
| 6867 | if (!NonFlagUse) |
| 6868 | break; |
| 6869 | } |
| 6870 | // FALL THROUGH |
| 6871 | case ISD::SUB: |
| 6872 | case ISD::OR: |
| 6873 | case ISD::XOR: |
| 6874 | // Due to the ISEL shortcoming noted above, be conservative if this op is |
| 6875 | // likely to be selected as part of a load-modify-store instruction. |
| 6876 | for (SDNode::use_iterator UI = Op.getNode()->use_begin(), |
| 6877 | UE = Op.getNode()->use_end(); UI != UE; ++UI) |
| 6878 | if (UI->getOpcode() == ISD::STORE) |
| 6879 | goto default_case; |
| 6880 | |
| 6881 | // Otherwise use a regular EFLAGS-setting instruction. |
| 6882 | switch (Op.getNode()->getOpcode()) { |
| 6883 | default: llvm_unreachable("unexpected operator!"); |
| 6884 | case ISD::SUB: Opcode = X86ISD::SUB; break; |
| 6885 | case ISD::OR: Opcode = X86ISD::OR; break; |
| 6886 | case ISD::XOR: Opcode = X86ISD::XOR; break; |
| 6887 | case ISD::AND: Opcode = X86ISD::AND; break; |
| 6888 | } |
| 6889 | |
| 6890 | NumOperands = 2; |
| 6891 | break; |
| 6892 | case X86ISD::ADD: |
| 6893 | case X86ISD::SUB: |
| 6894 | case X86ISD::INC: |
| 6895 | case X86ISD::DEC: |
| 6896 | case X86ISD::OR: |
| 6897 | case X86ISD::XOR: |
| 6898 | case X86ISD::AND: |
| 6899 | return SDValue(Op.getNode(), 1); |
| 6900 | default: |
| 6901 | default_case: |
| 6902 | break; |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6903 | } |
| 6904 | |
Bill Wendling | c25ccf8 | 2010-06-28 21:08:32 +0000 | [diff] [blame] | 6905 | if (Opcode == 0) |
| 6906 | // Emit a CMP with 0, which is the TEST pattern. |
| 6907 | return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op, |
| 6908 | DAG.getConstant(0, Op.getValueType())); |
| 6909 | |
| 6910 | SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32); |
| 6911 | SmallVector<SDValue, 4> Ops; |
| 6912 | for (unsigned i = 0; i != NumOperands; ++i) |
| 6913 | Ops.push_back(Op.getOperand(i)); |
| 6914 | |
| 6915 | SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands); |
| 6916 | DAG.ReplaceAllUsesWith(Op, New); |
| 6917 | return SDValue(New.getNode(), 1); |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6918 | } |
| 6919 | |
| 6920 | /// Emit nodes that will be selected as "cmp Op0,Op1", or something |
| 6921 | /// equivalent. |
Dan Gohman | 3112581 | 2009-03-07 01:58:32 +0000 | [diff] [blame] | 6922 | SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC, |
Evan Cheng | 552f09a | 2010-04-26 19:06:11 +0000 | [diff] [blame] | 6923 | SelectionDAG &DAG) const { |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6924 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1)) |
| 6925 | if (C->getAPIntValue() == 0) |
Evan Cheng | 552f09a | 2010-04-26 19:06:11 +0000 | [diff] [blame] | 6926 | return EmitTest(Op0, X86CC, DAG); |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6927 | |
| 6928 | DebugLoc dl = Op0.getDebugLoc(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6929 | return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1); |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6930 | } |
| 6931 | |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6932 | /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node |
| 6933 | /// if it's possible. |
Evan Cheng | 5528e7b | 2010-04-21 01:47:12 +0000 | [diff] [blame] | 6934 | SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC, |
| 6935 | DebugLoc dl, SelectionDAG &DAG) const { |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 6936 | SDValue Op0 = And.getOperand(0); |
| 6937 | SDValue Op1 = And.getOperand(1); |
| 6938 | if (Op0.getOpcode() == ISD::TRUNCATE) |
| 6939 | Op0 = Op0.getOperand(0); |
| 6940 | if (Op1.getOpcode() == ISD::TRUNCATE) |
| 6941 | Op1 = Op1.getOperand(0); |
| 6942 | |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6943 | SDValue LHS, RHS; |
Dan Gohman | 6b13cbc | 2010-06-24 02:07:59 +0000 | [diff] [blame] | 6944 | if (Op1.getOpcode() == ISD::SHL) |
| 6945 | std::swap(Op0, Op1); |
| 6946 | if (Op0.getOpcode() == ISD::SHL) { |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 6947 | if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0))) |
| 6948 | if (And00C->getZExtValue() == 1) { |
Dan Gohman | 6b13cbc | 2010-06-24 02:07:59 +0000 | [diff] [blame] | 6949 | // If we looked past a truncate, check that it's only truncating away |
| 6950 | // known zeros. |
| 6951 | unsigned BitWidth = Op0.getValueSizeInBits(); |
| 6952 | unsigned AndBitWidth = And.getValueSizeInBits(); |
| 6953 | if (BitWidth > AndBitWidth) { |
| 6954 | APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones; |
| 6955 | DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones); |
| 6956 | if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth) |
| 6957 | return SDValue(); |
| 6958 | } |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 6959 | LHS = Op1; |
| 6960 | RHS = Op0.getOperand(1); |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6961 | } |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 6962 | } else if (Op1.getOpcode() == ISD::Constant) { |
| 6963 | ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1); |
| 6964 | SDValue AndLHS = Op0; |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6965 | if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) { |
| 6966 | LHS = AndLHS.getOperand(0); |
| 6967 | RHS = AndLHS.getOperand(1); |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 6968 | } |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6969 | } |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 6970 | |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6971 | if (LHS.getNode()) { |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 6972 | // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6973 | // instruction. Since the shift amount is in-range-or-undefined, we know |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 6974 | // that doing a bittest on the i32 value is ok. We extend to i32 because |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6975 | // the encoding for the i16 version is larger than the i32 version. |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 6976 | // Also promote i16 to i32 for performance / code size reason. |
| 6977 | if (LHS.getValueType() == MVT::i8 || |
Evan Cheng | 2bce5f4b | 2010-04-28 08:30:49 +0000 | [diff] [blame] | 6978 | LHS.getValueType() == MVT::i16) |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6979 | LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS); |
Chris Lattner | e55484e | 2008-12-25 05:34:37 +0000 | [diff] [blame] | 6980 | |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6981 | // If the operand types disagree, extend the shift amount to match. Since |
| 6982 | // BT ignores high bits (like shifts) we can use anyextend. |
| 6983 | if (LHS.getValueType() != RHS.getValueType()) |
| 6984 | RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS); |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 6985 | |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6986 | SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS); |
| 6987 | unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B; |
| 6988 | return DAG.getNode(X86ISD::SETCC, dl, MVT::i8, |
| 6989 | DAG.getConstant(Cond, MVT::i8), BT); |
Chris Lattner | e55484e | 2008-12-25 05:34:37 +0000 | [diff] [blame] | 6990 | } |
| 6991 | |
Evan Cheng | 54de3ea | 2010-01-05 06:52:31 +0000 | [diff] [blame] | 6992 | return SDValue(); |
| 6993 | } |
| 6994 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6995 | SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const { |
Evan Cheng | 54de3ea | 2010-01-05 06:52:31 +0000 | [diff] [blame] | 6996 | assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer"); |
| 6997 | SDValue Op0 = Op.getOperand(0); |
| 6998 | SDValue Op1 = Op.getOperand(1); |
| 6999 | DebugLoc dl = Op.getDebugLoc(); |
| 7000 | ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get(); |
| 7001 | |
| 7002 | // Optimize to BT if possible. |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 7003 | // Lower (X & (1 << N)) == 0 to BT(X, N). |
| 7004 | // Lower ((X >>u N) & 1) != 0 to BT(X, N). |
| 7005 | // Lower ((X >>s N) & 1) != 0 to BT(X, N). |
| 7006 | if (Op0.getOpcode() == ISD::AND && |
| 7007 | Op0.hasOneUse() && |
| 7008 | Op1.getOpcode() == ISD::Constant && |
Dan Gohman | e368b46 | 2010-06-18 14:22:04 +0000 | [diff] [blame] | 7009 | cast<ConstantSDNode>(Op1)->isNullValue() && |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 7010 | (CC == ISD::SETEQ || CC == ISD::SETNE)) { |
| 7011 | SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG); |
| 7012 | if (NewSetCC.getNode()) |
| 7013 | return NewSetCC; |
| 7014 | } |
Evan Cheng | 54de3ea | 2010-01-05 06:52:31 +0000 | [diff] [blame] | 7015 | |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 7016 | // Look for "(setcc) == / != 1" to avoid unncessary setcc. |
| 7017 | if (Op0.getOpcode() == X86ISD::SETCC && |
| 7018 | Op1.getOpcode() == ISD::Constant && |
| 7019 | (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 || |
| 7020 | cast<ConstantSDNode>(Op1)->isNullValue()) && |
| 7021 | (CC == ISD::SETEQ || CC == ISD::SETNE)) { |
| 7022 | X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0); |
| 7023 | bool Invert = (CC == ISD::SETNE) ^ |
| 7024 | cast<ConstantSDNode>(Op1)->isNullValue(); |
| 7025 | if (Invert) |
| 7026 | CCode = X86::GetOppositeBranchCondition(CCode); |
| 7027 | return DAG.getNode(X86ISD::SETCC, dl, MVT::i8, |
| 7028 | DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1)); |
| 7029 | } |
| 7030 | |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 7031 | bool isFP = Op1.getValueType().isFloatingPoint(); |
Chris Lattner | e55484e | 2008-12-25 05:34:37 +0000 | [diff] [blame] | 7032 | unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG); |
Dan Gohman | 1a49295 | 2009-10-20 16:22:37 +0000 | [diff] [blame] | 7033 | if (X86CC == X86::COND_INVALID) |
| 7034 | return SDValue(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7035 | |
Evan Cheng | 552f09a | 2010-04-26 19:06:11 +0000 | [diff] [blame] | 7036 | SDValue Cond = EmitCmp(Op0, Op1, X86CC, DAG); |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 7037 | |
| 7038 | // Use sbb x, x to materialize carry bit into a GPR. |
Evan Cheng | 2e489c4 | 2009-12-16 00:53:11 +0000 | [diff] [blame] | 7039 | if (X86CC == X86::COND_B) |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 7040 | return DAG.getNode(ISD::AND, dl, MVT::i8, |
| 7041 | DAG.getNode(X86ISD::SETCC_CARRY, dl, MVT::i8, |
| 7042 | DAG.getConstant(X86CC, MVT::i8), Cond), |
| 7043 | DAG.getConstant(1, MVT::i8)); |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 7044 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7045 | return DAG.getNode(X86ISD::SETCC, dl, MVT::i8, |
| 7046 | DAG.getConstant(X86CC, MVT::i8), Cond); |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7047 | } |
| 7048 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7049 | SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7050 | SDValue Cond; |
| 7051 | SDValue Op0 = Op.getOperand(0); |
| 7052 | SDValue Op1 = Op.getOperand(1); |
| 7053 | SDValue CC = Op.getOperand(2); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 7054 | EVT VT = Op.getValueType(); |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7055 | ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get(); |
| 7056 | bool isFP = Op.getOperand(1).getValueType().isFloatingPoint(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 7057 | DebugLoc dl = Op.getDebugLoc(); |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7058 | |
| 7059 | if (isFP) { |
| 7060 | unsigned SSECC = 8; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 7061 | EVT VT0 = Op0.getValueType(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7062 | assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64); |
| 7063 | unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD; |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7064 | bool Swap = false; |
| 7065 | |
| 7066 | switch (SetCCOpcode) { |
| 7067 | default: break; |
Nate Begeman | fb8ead0 | 2008-07-25 19:05:58 +0000 | [diff] [blame] | 7068 | case ISD::SETOEQ: |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7069 | case ISD::SETEQ: SSECC = 0; break; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7070 | case ISD::SETOGT: |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7071 | case ISD::SETGT: Swap = true; // Fallthrough |
| 7072 | case ISD::SETLT: |
| 7073 | case ISD::SETOLT: SSECC = 1; break; |
| 7074 | case ISD::SETOGE: |
| 7075 | case ISD::SETGE: Swap = true; // Fallthrough |
| 7076 | case ISD::SETLE: |
| 7077 | case ISD::SETOLE: SSECC = 2; break; |
| 7078 | case ISD::SETUO: SSECC = 3; break; |
Nate Begeman | fb8ead0 | 2008-07-25 19:05:58 +0000 | [diff] [blame] | 7079 | case ISD::SETUNE: |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7080 | case ISD::SETNE: SSECC = 4; break; |
| 7081 | case ISD::SETULE: Swap = true; |
| 7082 | case ISD::SETUGE: SSECC = 5; break; |
| 7083 | case ISD::SETULT: Swap = true; |
| 7084 | case ISD::SETUGT: SSECC = 6; break; |
| 7085 | case ISD::SETO: SSECC = 7; break; |
| 7086 | } |
| 7087 | if (Swap) |
| 7088 | std::swap(Op0, Op1); |
| 7089 | |
Nate Begeman | fb8ead0 | 2008-07-25 19:05:58 +0000 | [diff] [blame] | 7090 | // In the two special cases we can't handle, emit two comparisons. |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7091 | if (SSECC == 8) { |
Nate Begeman | fb8ead0 | 2008-07-25 19:05:58 +0000 | [diff] [blame] | 7092 | if (SetCCOpcode == ISD::SETUEQ) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7093 | SDValue UNORD, EQ; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7094 | UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8)); |
| 7095 | EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8)); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 7096 | return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ); |
Nate Begeman | fb8ead0 | 2008-07-25 19:05:58 +0000 | [diff] [blame] | 7097 | } |
| 7098 | else if (SetCCOpcode == ISD::SETONE) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7099 | SDValue ORD, NEQ; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7100 | ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8)); |
| 7101 | NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8)); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 7102 | return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ); |
Nate Begeman | fb8ead0 | 2008-07-25 19:05:58 +0000 | [diff] [blame] | 7103 | } |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 7104 | llvm_unreachable("Illegal FP comparison"); |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7105 | } |
| 7106 | // Handle all other FP comparisons here. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7107 | return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8)); |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7108 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7109 | |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7110 | // We are handling one of the integer comparisons here. Since SSE only has |
| 7111 | // GT and EQ comparisons for integer, swapping operands and multiple |
| 7112 | // operations may be required for some comparisons. |
| 7113 | unsigned Opc = 0, EQOpc = 0, GTOpc = 0; |
| 7114 | bool Swap = false, Invert = false, FlipSigns = false; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7115 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7116 | switch (VT.getSimpleVT().SimpleTy) { |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7117 | default: break; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7118 | case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7119 | case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7120 | case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break; |
| 7121 | case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break; |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7122 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7123 | |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7124 | switch (SetCCOpcode) { |
| 7125 | default: break; |
| 7126 | case ISD::SETNE: Invert = true; |
| 7127 | case ISD::SETEQ: Opc = EQOpc; break; |
| 7128 | case ISD::SETLT: Swap = true; |
| 7129 | case ISD::SETGT: Opc = GTOpc; break; |
| 7130 | case ISD::SETGE: Swap = true; |
| 7131 | case ISD::SETLE: Opc = GTOpc; Invert = true; break; |
| 7132 | case ISD::SETULT: Swap = true; |
| 7133 | case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break; |
| 7134 | case ISD::SETUGE: Swap = true; |
| 7135 | case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break; |
| 7136 | } |
| 7137 | if (Swap) |
| 7138 | std::swap(Op0, Op1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7139 | |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7140 | // Since SSE has no unsigned integer comparisons, we need to flip the sign |
| 7141 | // bits of the inputs before performing those operations. |
| 7142 | if (FlipSigns) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 7143 | EVT EltVT = VT.getVectorElementType(); |
Duncan Sands | b0d5cdd | 2009-02-01 18:06:53 +0000 | [diff] [blame] | 7144 | SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), |
| 7145 | EltVT); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7146 | std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit); |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 7147 | SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0], |
| 7148 | SignBits.size()); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 7149 | Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec); |
| 7150 | Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec); |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7151 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7152 | |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 7153 | SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1); |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7154 | |
| 7155 | // If the logical-not of the result is required, perform that now. |
Bob Wilson | 4c24546 | 2009-01-22 17:39:32 +0000 | [diff] [blame] | 7156 | if (Invert) |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 7157 | Result = DAG.getNOT(dl, Result, VT); |
Bob Wilson | 4c24546 | 2009-01-22 17:39:32 +0000 | [diff] [blame] | 7158 | |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7159 | return Result; |
| 7160 | } |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7161 | |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7162 | // isX86LogicalCmp - Return true if opcode is a X86 logical comparison. |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 7163 | static bool isX86LogicalCmp(SDValue Op) { |
| 7164 | unsigned Opc = Op.getNode()->getOpcode(); |
| 7165 | if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI) |
| 7166 | return true; |
| 7167 | if (Op.getResNo() == 1 && |
| 7168 | (Opc == X86ISD::ADD || |
| 7169 | Opc == X86ISD::SUB || |
| 7170 | Opc == X86ISD::SMUL || |
| 7171 | Opc == X86ISD::UMUL || |
| 7172 | Opc == X86ISD::INC || |
Dan Gohman | e220c4b | 2009-09-18 19:59:53 +0000 | [diff] [blame] | 7173 | Opc == X86ISD::DEC || |
| 7174 | Opc == X86ISD::OR || |
| 7175 | Opc == X86ISD::XOR || |
| 7176 | Opc == X86ISD::AND)) |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 7177 | return true; |
| 7178 | |
| 7179 | return false; |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7180 | } |
| 7181 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7182 | SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const { |
Evan Cheng | 734503b | 2006-09-11 02:19:56 +0000 | [diff] [blame] | 7183 | bool addTest = true; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7184 | SDValue Cond = Op.getOperand(0); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 7185 | DebugLoc dl = Op.getDebugLoc(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7186 | SDValue CC; |
Evan Cheng | 9bba894 | 2006-01-26 02:13:10 +0000 | [diff] [blame] | 7187 | |
Dan Gohman | 1a49295 | 2009-10-20 16:22:37 +0000 | [diff] [blame] | 7188 | if (Cond.getOpcode() == ISD::SETCC) { |
| 7189 | SDValue NewCond = LowerSETCC(Cond, DAG); |
| 7190 | if (NewCond.getNode()) |
| 7191 | Cond = NewCond; |
| 7192 | } |
Evan Cheng | 734503b | 2006-09-11 02:19:56 +0000 | [diff] [blame] | 7193 | |
Evan Cheng | 8c7ecaf | 2010-01-26 02:00:44 +0000 | [diff] [blame] | 7194 | // (select (x == 0), -1, 0) -> (sign_bit (x - 1)) |
| 7195 | SDValue Op1 = Op.getOperand(1); |
| 7196 | SDValue Op2 = Op.getOperand(2); |
| 7197 | if (Cond.getOpcode() == X86ISD::SETCC && |
| 7198 | cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue() == X86::COND_E) { |
| 7199 | SDValue Cmp = Cond.getOperand(1); |
| 7200 | if (Cmp.getOpcode() == X86ISD::CMP) { |
| 7201 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op1); |
| 7202 | ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2); |
| 7203 | ConstantSDNode *RHSC = |
| 7204 | dyn_cast<ConstantSDNode>(Cmp.getOperand(1).getNode()); |
| 7205 | if (N1C && N1C->isAllOnesValue() && |
| 7206 | N2C && N2C->isNullValue() && |
| 7207 | RHSC && RHSC->isNullValue()) { |
| 7208 | SDValue CmpOp0 = Cmp.getOperand(0); |
Chris Lattner | da0688e | 2010-03-14 18:44:35 +0000 | [diff] [blame] | 7209 | Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32, |
Evan Cheng | 8c7ecaf | 2010-01-26 02:00:44 +0000 | [diff] [blame] | 7210 | CmpOp0, DAG.getConstant(1, CmpOp0.getValueType())); |
| 7211 | return DAG.getNode(X86ISD::SETCC_CARRY, dl, Op.getValueType(), |
| 7212 | DAG.getConstant(X86::COND_B, MVT::i8), Cmp); |
| 7213 | } |
| 7214 | } |
| 7215 | } |
| 7216 | |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 7217 | // Look pass (and (setcc_carry (cmp ...)), 1). |
| 7218 | if (Cond.getOpcode() == ISD::AND && |
| 7219 | Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) { |
| 7220 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1)); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 7221 | if (C && C->getAPIntValue() == 1) |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 7222 | Cond = Cond.getOperand(0); |
| 7223 | } |
| 7224 | |
Evan Cheng | 3f41d66 | 2007-10-08 22:16:29 +0000 | [diff] [blame] | 7225 | // If condition flag is set by a X86ISD::CMP, then use it as the condition |
| 7226 | // setting operand in place of the X86ISD::SETCC. |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 7227 | if (Cond.getOpcode() == X86ISD::SETCC || |
| 7228 | Cond.getOpcode() == X86ISD::SETCC_CARRY) { |
Evan Cheng | 734503b | 2006-09-11 02:19:56 +0000 | [diff] [blame] | 7229 | CC = Cond.getOperand(0); |
| 7230 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7231 | SDValue Cmp = Cond.getOperand(1); |
Evan Cheng | 734503b | 2006-09-11 02:19:56 +0000 | [diff] [blame] | 7232 | unsigned Opc = Cmp.getOpcode(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 7233 | EVT VT = Op.getValueType(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7234 | |
Evan Cheng | 3f41d66 | 2007-10-08 22:16:29 +0000 | [diff] [blame] | 7235 | bool IllegalFPCMov = false; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 7236 | if (VT.isFloatingPoint() && !VT.isVector() && |
Chris Lattner | 7863116 | 2008-01-16 06:24:21 +0000 | [diff] [blame] | 7237 | !isScalarFPTypeInSSEReg(VT)) // FPStack? |
Dan Gohman | 7810bfe | 2008-09-26 21:54:37 +0000 | [diff] [blame] | 7238 | IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7239 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 7240 | if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) || |
| 7241 | Opc == X86ISD::BT) { // FIXME |
Evan Cheng | 3f41d66 | 2007-10-08 22:16:29 +0000 | [diff] [blame] | 7242 | Cond = Cmp; |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7243 | addTest = false; |
| 7244 | } |
| 7245 | } |
| 7246 | |
| 7247 | if (addTest) { |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 7248 | // Look pass the truncate. |
| 7249 | if (Cond.getOpcode() == ISD::TRUNCATE) |
| 7250 | Cond = Cond.getOperand(0); |
| 7251 | |
| 7252 | // We know the result of AND is compared against zero. Try to match |
| 7253 | // it to BT. |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 7254 | if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) { |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 7255 | SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG); |
| 7256 | if (NewSetCC.getNode()) { |
| 7257 | CC = NewSetCC.getOperand(0); |
| 7258 | Cond = NewSetCC.getOperand(1); |
| 7259 | addTest = false; |
| 7260 | } |
| 7261 | } |
| 7262 | } |
| 7263 | |
| 7264 | if (addTest) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7265 | CC = DAG.getConstant(X86::COND_NE, MVT::i8); |
Evan Cheng | 552f09a | 2010-04-26 19:06:11 +0000 | [diff] [blame] | 7266 | Cond = EmitTest(Cond, X86::COND_NE, DAG); |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7267 | } |
| 7268 | |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7269 | // X86ISD::CMOV means set the result (which is operand 1) to the RHS if |
| 7270 | // condition is true. |
Evan Cheng | 8c7ecaf | 2010-01-26 02:00:44 +0000 | [diff] [blame] | 7271 | SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Flag); |
| 7272 | SDValue Ops[] = { Op2, Op1, CC, Cond }; |
Benjamin Kramer | 7f1a560 | 2009-12-29 16:57:26 +0000 | [diff] [blame] | 7273 | return DAG.getNode(X86ISD::CMOV, dl, VTs, Ops, array_lengthof(Ops)); |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7274 | } |
| 7275 | |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7276 | // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or |
| 7277 | // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart |
| 7278 | // from the AND / OR. |
| 7279 | static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) { |
| 7280 | Opc = Op.getOpcode(); |
| 7281 | if (Opc != ISD::OR && Opc != ISD::AND) |
| 7282 | return false; |
| 7283 | return (Op.getOperand(0).getOpcode() == X86ISD::SETCC && |
| 7284 | Op.getOperand(0).hasOneUse() && |
| 7285 | Op.getOperand(1).getOpcode() == X86ISD::SETCC && |
| 7286 | Op.getOperand(1).hasOneUse()); |
| 7287 | } |
| 7288 | |
Evan Cheng | 961d6d4 | 2009-02-02 08:19:07 +0000 | [diff] [blame] | 7289 | // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and |
| 7290 | // 1 and that the SETCC node has a single use. |
Evan Cheng | 67ad9db | 2009-02-02 08:07:36 +0000 | [diff] [blame] | 7291 | static bool isXor1OfSetCC(SDValue Op) { |
| 7292 | if (Op.getOpcode() != ISD::XOR) |
| 7293 | return false; |
| 7294 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1)); |
| 7295 | if (N1C && N1C->getAPIntValue() == 1) { |
| 7296 | return Op.getOperand(0).getOpcode() == X86ISD::SETCC && |
| 7297 | Op.getOperand(0).hasOneUse(); |
| 7298 | } |
| 7299 | return false; |
| 7300 | } |
| 7301 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7302 | SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const { |
Evan Cheng | 734503b | 2006-09-11 02:19:56 +0000 | [diff] [blame] | 7303 | bool addTest = true; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7304 | SDValue Chain = Op.getOperand(0); |
| 7305 | SDValue Cond = Op.getOperand(1); |
| 7306 | SDValue Dest = Op.getOperand(2); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 7307 | DebugLoc dl = Op.getDebugLoc(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7308 | SDValue CC; |
Evan Cheng | 734503b | 2006-09-11 02:19:56 +0000 | [diff] [blame] | 7309 | |
Dan Gohman | 1a49295 | 2009-10-20 16:22:37 +0000 | [diff] [blame] | 7310 | if (Cond.getOpcode() == ISD::SETCC) { |
| 7311 | SDValue NewCond = LowerSETCC(Cond, DAG); |
| 7312 | if (NewCond.getNode()) |
| 7313 | Cond = NewCond; |
| 7314 | } |
Chris Lattner | e55484e | 2008-12-25 05:34:37 +0000 | [diff] [blame] | 7315 | #if 0 |
| 7316 | // FIXME: LowerXALUO doesn't handle these!! |
Bill Wendling | d350e02 | 2008-12-12 21:15:41 +0000 | [diff] [blame] | 7317 | else if (Cond.getOpcode() == X86ISD::ADD || |
| 7318 | Cond.getOpcode() == X86ISD::SUB || |
| 7319 | Cond.getOpcode() == X86ISD::SMUL || |
| 7320 | Cond.getOpcode() == X86ISD::UMUL) |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 7321 | Cond = LowerXALUO(Cond, DAG); |
Chris Lattner | e55484e | 2008-12-25 05:34:37 +0000 | [diff] [blame] | 7322 | #endif |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7323 | |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 7324 | // Look pass (and (setcc_carry (cmp ...)), 1). |
| 7325 | if (Cond.getOpcode() == ISD::AND && |
| 7326 | Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) { |
| 7327 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1)); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 7328 | if (C && C->getAPIntValue() == 1) |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 7329 | Cond = Cond.getOperand(0); |
| 7330 | } |
| 7331 | |
Evan Cheng | 3f41d66 | 2007-10-08 22:16:29 +0000 | [diff] [blame] | 7332 | // If condition flag is set by a X86ISD::CMP, then use it as the condition |
| 7333 | // setting operand in place of the X86ISD::SETCC. |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 7334 | if (Cond.getOpcode() == X86ISD::SETCC || |
| 7335 | Cond.getOpcode() == X86ISD::SETCC_CARRY) { |
Evan Cheng | 734503b | 2006-09-11 02:19:56 +0000 | [diff] [blame] | 7336 | CC = Cond.getOperand(0); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7337 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7338 | SDValue Cmp = Cond.getOperand(1); |
Evan Cheng | 734503b | 2006-09-11 02:19:56 +0000 | [diff] [blame] | 7339 | unsigned Opc = Cmp.getOpcode(); |
Chris Lattner | e55484e | 2008-12-25 05:34:37 +0000 | [diff] [blame] | 7340 | // FIXME: WHY THE SPECIAL CASING OF LogicalCmp?? |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 7341 | if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) { |
Evan Cheng | 3f41d66 | 2007-10-08 22:16:29 +0000 | [diff] [blame] | 7342 | Cond = Cmp; |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7343 | addTest = false; |
Bill Wendling | 61edeb5 | 2008-12-02 01:06:39 +0000 | [diff] [blame] | 7344 | } else { |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7345 | switch (cast<ConstantSDNode>(CC)->getZExtValue()) { |
Bill Wendling | 0ea25cb | 2008-12-03 08:32:02 +0000 | [diff] [blame] | 7346 | default: break; |
| 7347 | case X86::COND_O: |
Dan Gohman | 653456c | 2009-01-07 00:15:08 +0000 | [diff] [blame] | 7348 | case X86::COND_B: |
Chris Lattner | e55484e | 2008-12-25 05:34:37 +0000 | [diff] [blame] | 7349 | // These can only come from an arithmetic instruction with overflow, |
| 7350 | // e.g. SADDO, UADDO. |
Bill Wendling | 0ea25cb | 2008-12-03 08:32:02 +0000 | [diff] [blame] | 7351 | Cond = Cond.getNode()->getOperand(1); |
| 7352 | addTest = false; |
| 7353 | break; |
Bill Wendling | 61edeb5 | 2008-12-02 01:06:39 +0000 | [diff] [blame] | 7354 | } |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7355 | } |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7356 | } else { |
| 7357 | unsigned CondOpc; |
| 7358 | if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) { |
| 7359 | SDValue Cmp = Cond.getOperand(0).getOperand(1); |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7360 | if (CondOpc == ISD::OR) { |
| 7361 | // Also, recognize the pattern generated by an FCMP_UNE. We can emit |
| 7362 | // two branches instead of an explicit OR instruction with a |
| 7363 | // separate test. |
| 7364 | if (Cmp == Cond.getOperand(1).getOperand(1) && |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 7365 | isX86LogicalCmp(Cmp)) { |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7366 | CC = Cond.getOperand(0).getOperand(0); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7367 | Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(), |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7368 | Chain, Dest, CC, Cmp); |
| 7369 | CC = Cond.getOperand(1).getOperand(0); |
| 7370 | Cond = Cmp; |
| 7371 | addTest = false; |
| 7372 | } |
| 7373 | } else { // ISD::AND |
| 7374 | // Also, recognize the pattern generated by an FCMP_OEQ. We can emit |
| 7375 | // two branches instead of an explicit AND instruction with a |
| 7376 | // separate test. However, we only do this if this block doesn't |
| 7377 | // have a fall-through edge, because this requires an explicit |
| 7378 | // jmp when the condition is false. |
| 7379 | if (Cmp == Cond.getOperand(1).getOperand(1) && |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 7380 | isX86LogicalCmp(Cmp) && |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7381 | Op.getNode()->hasOneUse()) { |
| 7382 | X86::CondCode CCode = |
| 7383 | (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0); |
| 7384 | CCode = X86::GetOppositeBranchCondition(CCode); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7385 | CC = DAG.getConstant(CCode, MVT::i8); |
Dan Gohman | 027657d | 2010-06-18 15:30:29 +0000 | [diff] [blame] | 7386 | SDNode *User = *Op.getNode()->use_begin(); |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7387 | // Look for an unconditional branch following this conditional branch. |
| 7388 | // We need this because we need to reverse the successors in order |
| 7389 | // to implement FCMP_OEQ. |
Dan Gohman | 027657d | 2010-06-18 15:30:29 +0000 | [diff] [blame] | 7390 | if (User->getOpcode() == ISD::BR) { |
| 7391 | SDValue FalseBB = User->getOperand(1); |
| 7392 | SDNode *NewBR = |
| 7393 | DAG.UpdateNodeOperands(User, User->getOperand(0), Dest); |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7394 | assert(NewBR == User); |
Nick Lewycky | 2a3ee5e | 2010-06-20 20:27:42 +0000 | [diff] [blame] | 7395 | (void)NewBR; |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7396 | Dest = FalseBB; |
Dan Gohman | 279c22e | 2008-10-21 03:29:32 +0000 | [diff] [blame] | 7397 | |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7398 | Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(), |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7399 | Chain, Dest, CC, Cmp); |
| 7400 | X86::CondCode CCode = |
| 7401 | (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0); |
| 7402 | CCode = X86::GetOppositeBranchCondition(CCode); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7403 | CC = DAG.getConstant(CCode, MVT::i8); |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7404 | Cond = Cmp; |
| 7405 | addTest = false; |
| 7406 | } |
| 7407 | } |
Dan Gohman | 279c22e | 2008-10-21 03:29:32 +0000 | [diff] [blame] | 7408 | } |
Evan Cheng | 67ad9db | 2009-02-02 08:07:36 +0000 | [diff] [blame] | 7409 | } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) { |
| 7410 | // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition. |
| 7411 | // It should be transformed during dag combiner except when the condition |
| 7412 | // is set by a arithmetics with overflow node. |
| 7413 | X86::CondCode CCode = |
| 7414 | (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0); |
| 7415 | CCode = X86::GetOppositeBranchCondition(CCode); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7416 | CC = DAG.getConstant(CCode, MVT::i8); |
Evan Cheng | 67ad9db | 2009-02-02 08:07:36 +0000 | [diff] [blame] | 7417 | Cond = Cond.getOperand(0).getOperand(1); |
| 7418 | addTest = false; |
Dan Gohman | 279c22e | 2008-10-21 03:29:32 +0000 | [diff] [blame] | 7419 | } |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7420 | } |
| 7421 | |
| 7422 | if (addTest) { |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 7423 | // Look pass the truncate. |
| 7424 | if (Cond.getOpcode() == ISD::TRUNCATE) |
| 7425 | Cond = Cond.getOperand(0); |
| 7426 | |
| 7427 | // We know the result of AND is compared against zero. Try to match |
| 7428 | // it to BT. |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 7429 | if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) { |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 7430 | SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG); |
| 7431 | if (NewSetCC.getNode()) { |
| 7432 | CC = NewSetCC.getOperand(0); |
| 7433 | Cond = NewSetCC.getOperand(1); |
| 7434 | addTest = false; |
| 7435 | } |
| 7436 | } |
| 7437 | } |
| 7438 | |
| 7439 | if (addTest) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7440 | CC = DAG.getConstant(X86::COND_NE, MVT::i8); |
Evan Cheng | 552f09a | 2010-04-26 19:06:11 +0000 | [diff] [blame] | 7441 | Cond = EmitTest(Cond, X86::COND_NE, DAG); |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7442 | } |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7443 | return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(), |
Dan Gohman | 279c22e | 2008-10-21 03:29:32 +0000 | [diff] [blame] | 7444 | Chain, Dest, CC, Cond); |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7445 | } |
| 7446 | |
Anton Korobeynikov | e060b53 | 2007-04-17 19:34:00 +0000 | [diff] [blame] | 7447 | |
| 7448 | // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets. |
| 7449 | // Calls to _alloca is needed to probe the stack when allocating more than 4k |
| 7450 | // bytes in one go. Touching the stack at 4K increments is necessary to ensure |
| 7451 | // that the guard pages used by the OS virtual memory manager are allocated in |
| 7452 | // correct sequence. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7453 | SDValue |
| 7454 | X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7455 | SelectionDAG &DAG) const { |
Duncan Sands | 1e1ca0b | 2010-10-21 16:02:12 +0000 | [diff] [blame] | 7456 | assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) && |
Michael J. Spencer | e9c253e | 2010-10-21 01:41:01 +0000 | [diff] [blame] | 7457 | "This should be used only on Windows targets"); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 7458 | DebugLoc dl = Op.getDebugLoc(); |
Anton Korobeynikov | 096b461 | 2008-06-11 20:16:42 +0000 | [diff] [blame] | 7459 | |
Anton Korobeynikov | 57fc00d | 2007-04-17 09:20:00 +0000 | [diff] [blame] | 7460 | // Get the inputs. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7461 | SDValue Chain = Op.getOperand(0); |
| 7462 | SDValue Size = Op.getOperand(1); |
Anton Korobeynikov | 57fc00d | 2007-04-17 09:20:00 +0000 | [diff] [blame] | 7463 | // FIXME: Ensure alignment here |
| 7464 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7465 | SDValue Flag; |
Anton Korobeynikov | 096b461 | 2008-06-11 20:16:42 +0000 | [diff] [blame] | 7466 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7467 | EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32; |
Anton Korobeynikov | 57fc00d | 2007-04-17 09:20:00 +0000 | [diff] [blame] | 7468 | |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 7469 | Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Size, Flag); |
Anton Korobeynikov | 4304bcc | 2007-07-05 20:36:08 +0000 | [diff] [blame] | 7470 | Flag = Chain.getValue(1); |
| 7471 | |
Anton Korobeynikov | 043f3c2 | 2010-03-06 19:32:29 +0000 | [diff] [blame] | 7472 | SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag); |
Anton Korobeynikov | 4304bcc | 2007-07-05 20:36:08 +0000 | [diff] [blame] | 7473 | |
Michael J. Spencer | e9c253e | 2010-10-21 01:41:01 +0000 | [diff] [blame] | 7474 | Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag); |
Anton Korobeynikov | 043f3c2 | 2010-03-06 19:32:29 +0000 | [diff] [blame] | 7475 | Flag = Chain.getValue(1); |
Anton Korobeynikov | 096b461 | 2008-06-11 20:16:42 +0000 | [diff] [blame] | 7476 | |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 7477 | Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1); |
Anton Korobeynikov | 096b461 | 2008-06-11 20:16:42 +0000 | [diff] [blame] | 7478 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7479 | SDValue Ops1[2] = { Chain.getValue(0), Chain }; |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7480 | return DAG.getMergeValues(Ops1, 2, dl); |
Anton Korobeynikov | 57fc00d | 2007-04-17 09:20:00 +0000 | [diff] [blame] | 7481 | } |
| 7482 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7483 | SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const { |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 7484 | MachineFunction &MF = DAG.getMachineFunction(); |
| 7485 | X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>(); |
| 7486 | |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 7487 | const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue(); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7488 | DebugLoc DL = Op.getDebugLoc(); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 7489 | |
Anton Korobeynikov | e7beda1 | 2010-10-03 22:52:07 +0000 | [diff] [blame] | 7490 | if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) { |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 7491 | // vastart just stores the address of the VarArgsFrameIndex slot into the |
| 7492 | // memory location argument. |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 7493 | SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), |
| 7494 | getPointerTy()); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7495 | return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1), |
| 7496 | MachinePointerInfo(SV), false, false, 0); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 7497 | } |
| 7498 | |
| 7499 | // __va_list_tag: |
| 7500 | // gp_offset (0 - 6 * 8) |
| 7501 | // fp_offset (48 - 48 + 8 * 16) |
| 7502 | // overflow_arg_area (point to parameters coming in memory). |
| 7503 | // reg_save_area |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7504 | SmallVector<SDValue, 8> MemOps; |
| 7505 | SDValue FIN = Op.getOperand(1); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 7506 | // Store gp_offset |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7507 | SDValue Store = DAG.getStore(Op.getOperand(0), DL, |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 7508 | DAG.getConstant(FuncInfo->getVarArgsGPOffset(), |
| 7509 | MVT::i32), |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7510 | FIN, MachinePointerInfo(SV), false, false, 0); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 7511 | MemOps.push_back(Store); |
| 7512 | |
| 7513 | // Store fp_offset |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7514 | FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(), |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7515 | FIN, DAG.getIntPtrConstant(4)); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7516 | Store = DAG.getStore(Op.getOperand(0), DL, |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 7517 | DAG.getConstant(FuncInfo->getVarArgsFPOffset(), |
| 7518 | MVT::i32), |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7519 | FIN, MachinePointerInfo(SV, 4), false, false, 0); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 7520 | MemOps.push_back(Store); |
| 7521 | |
| 7522 | // Store ptr to overflow_arg_area |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7523 | FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(), |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7524 | FIN, DAG.getIntPtrConstant(4)); |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 7525 | SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), |
| 7526 | getPointerTy()); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7527 | Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN, |
| 7528 | MachinePointerInfo(SV, 8), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 7529 | false, false, 0); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 7530 | MemOps.push_back(Store); |
| 7531 | |
| 7532 | // Store ptr to reg_save_area. |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7533 | FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(), |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7534 | FIN, DAG.getIntPtrConstant(8)); |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 7535 | SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(), |
| 7536 | getPointerTy()); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7537 | Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN, |
| 7538 | MachinePointerInfo(SV, 16), false, false, 0); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 7539 | MemOps.push_back(Store); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7540 | return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7541 | &MemOps[0], MemOps.size()); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7542 | } |
| 7543 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7544 | SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const { |
Dan Gohman | 320afb8 | 2010-10-12 18:00:49 +0000 | [diff] [blame] | 7545 | assert(Subtarget->is64Bit() && |
| 7546 | "LowerVAARG only handles 64-bit va_arg!"); |
| 7547 | assert((Subtarget->isTargetLinux() || |
| 7548 | Subtarget->isTargetDarwin()) && |
| 7549 | "Unhandled target in LowerVAARG"); |
| 7550 | assert(Op.getNode()->getNumOperands() == 4); |
| 7551 | SDValue Chain = Op.getOperand(0); |
| 7552 | SDValue SrcPtr = Op.getOperand(1); |
| 7553 | const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue(); |
| 7554 | unsigned Align = Op.getConstantOperandVal(3); |
| 7555 | DebugLoc dl = Op.getDebugLoc(); |
Dan Gohman | 9018e83 | 2008-05-10 01:26:14 +0000 | [diff] [blame] | 7556 | |
Dan Gohman | 320afb8 | 2010-10-12 18:00:49 +0000 | [diff] [blame] | 7557 | EVT ArgVT = Op.getNode()->getValueType(0); |
| 7558 | const Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext()); |
| 7559 | uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy); |
| 7560 | uint8_t ArgMode; |
| 7561 | |
| 7562 | // Decide which area this value should be read from. |
| 7563 | // TODO: Implement the AMD64 ABI in its entirety. This simple |
| 7564 | // selection mechanism works only for the basic types. |
| 7565 | if (ArgVT == MVT::f80) { |
| 7566 | llvm_unreachable("va_arg for f80 not yet implemented"); |
| 7567 | } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) { |
| 7568 | ArgMode = 2; // Argument passed in XMM register. Use fp_offset. |
| 7569 | } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) { |
| 7570 | ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset. |
| 7571 | } else { |
| 7572 | llvm_unreachable("Unhandled argument type in LowerVAARG"); |
| 7573 | } |
| 7574 | |
| 7575 | if (ArgMode == 2) { |
| 7576 | // Sanity Check: Make sure using fp_offset makes sense. |
Michael J. Spencer | 87b8665 | 2010-10-19 07:32:42 +0000 | [diff] [blame] | 7577 | assert(!UseSoftFloat && |
Eric Christopher | 52b4505 | 2010-10-12 19:44:17 +0000 | [diff] [blame] | 7578 | !(DAG.getMachineFunction() |
| 7579 | .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) && |
| 7580 | Subtarget->hasSSE1()); |
Dan Gohman | 320afb8 | 2010-10-12 18:00:49 +0000 | [diff] [blame] | 7581 | } |
| 7582 | |
| 7583 | // Insert VAARG_64 node into the DAG |
| 7584 | // VAARG_64 returns two values: Variable Argument Address, Chain |
| 7585 | SmallVector<SDValue, 11> InstOps; |
| 7586 | InstOps.push_back(Chain); |
| 7587 | InstOps.push_back(SrcPtr); |
| 7588 | InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32)); |
| 7589 | InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8)); |
| 7590 | InstOps.push_back(DAG.getConstant(Align, MVT::i32)); |
| 7591 | SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other); |
| 7592 | SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl, |
| 7593 | VTs, &InstOps[0], InstOps.size(), |
| 7594 | MVT::i64, |
| 7595 | MachinePointerInfo(SV), |
| 7596 | /*Align=*/0, |
| 7597 | /*Volatile=*/false, |
| 7598 | /*ReadMem=*/true, |
| 7599 | /*WriteMem=*/true); |
| 7600 | Chain = VAARG.getValue(1); |
| 7601 | |
| 7602 | // Load the next argument and return it |
| 7603 | return DAG.getLoad(ArgVT, dl, |
| 7604 | Chain, |
| 7605 | VAARG, |
| 7606 | MachinePointerInfo(), |
| 7607 | false, false, 0); |
Dan Gohman | 9018e83 | 2008-05-10 01:26:14 +0000 | [diff] [blame] | 7608 | } |
| 7609 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7610 | SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const { |
Evan Cheng | ae64219 | 2007-03-02 23:16:35 +0000 | [diff] [blame] | 7611 | // X86-64 va_list is a struct { i32, i32, i8*, i8* }. |
Dan Gohman | 2826913 | 2008-04-18 20:55:41 +0000 | [diff] [blame] | 7612 | assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!"); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7613 | SDValue Chain = Op.getOperand(0); |
| 7614 | SDValue DstPtr = Op.getOperand(1); |
| 7615 | SDValue SrcPtr = Op.getOperand(2); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 7616 | const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue(); |
| 7617 | const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue(); |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 7618 | DebugLoc DL = Op.getDebugLoc(); |
Evan Cheng | ae64219 | 2007-03-02 23:16:35 +0000 | [diff] [blame] | 7619 | |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 7620 | return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr, |
Mon P Wang | 20adc9d | 2010-04-04 03:10:48 +0000 | [diff] [blame] | 7621 | DAG.getIntPtrConstant(24), 8, /*isVolatile*/false, |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 7622 | false, |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 7623 | MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV)); |
Evan Cheng | ae64219 | 2007-03-02 23:16:35 +0000 | [diff] [blame] | 7624 | } |
| 7625 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7626 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7627 | X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const { |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 7628 | DebugLoc dl = Op.getDebugLoc(); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 7629 | unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7630 | switch (IntNo) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7631 | default: return SDValue(); // Don't custom lower most intrinsics. |
Evan Cheng | 5759f97 | 2008-05-04 09:15:50 +0000 | [diff] [blame] | 7632 | // Comparison intrinsics. |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7633 | case Intrinsic::x86_sse_comieq_ss: |
| 7634 | case Intrinsic::x86_sse_comilt_ss: |
| 7635 | case Intrinsic::x86_sse_comile_ss: |
| 7636 | case Intrinsic::x86_sse_comigt_ss: |
| 7637 | case Intrinsic::x86_sse_comige_ss: |
| 7638 | case Intrinsic::x86_sse_comineq_ss: |
| 7639 | case Intrinsic::x86_sse_ucomieq_ss: |
| 7640 | case Intrinsic::x86_sse_ucomilt_ss: |
| 7641 | case Intrinsic::x86_sse_ucomile_ss: |
| 7642 | case Intrinsic::x86_sse_ucomigt_ss: |
| 7643 | case Intrinsic::x86_sse_ucomige_ss: |
| 7644 | case Intrinsic::x86_sse_ucomineq_ss: |
| 7645 | case Intrinsic::x86_sse2_comieq_sd: |
| 7646 | case Intrinsic::x86_sse2_comilt_sd: |
| 7647 | case Intrinsic::x86_sse2_comile_sd: |
| 7648 | case Intrinsic::x86_sse2_comigt_sd: |
| 7649 | case Intrinsic::x86_sse2_comige_sd: |
| 7650 | case Intrinsic::x86_sse2_comineq_sd: |
| 7651 | case Intrinsic::x86_sse2_ucomieq_sd: |
| 7652 | case Intrinsic::x86_sse2_ucomilt_sd: |
| 7653 | case Intrinsic::x86_sse2_ucomile_sd: |
| 7654 | case Intrinsic::x86_sse2_ucomigt_sd: |
| 7655 | case Intrinsic::x86_sse2_ucomige_sd: |
| 7656 | case Intrinsic::x86_sse2_ucomineq_sd: { |
| 7657 | unsigned Opc = 0; |
| 7658 | ISD::CondCode CC = ISD::SETCC_INVALID; |
| 7659 | switch (IntNo) { |
| 7660 | default: break; |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 7661 | case Intrinsic::x86_sse_comieq_ss: |
| 7662 | case Intrinsic::x86_sse2_comieq_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7663 | Opc = X86ISD::COMI; |
| 7664 | CC = ISD::SETEQ; |
| 7665 | break; |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7666 | case Intrinsic::x86_sse_comilt_ss: |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7667 | case Intrinsic::x86_sse2_comilt_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7668 | Opc = X86ISD::COMI; |
| 7669 | CC = ISD::SETLT; |
| 7670 | break; |
| 7671 | case Intrinsic::x86_sse_comile_ss: |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7672 | case Intrinsic::x86_sse2_comile_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7673 | Opc = X86ISD::COMI; |
| 7674 | CC = ISD::SETLE; |
| 7675 | break; |
| 7676 | case Intrinsic::x86_sse_comigt_ss: |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7677 | case Intrinsic::x86_sse2_comigt_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7678 | Opc = X86ISD::COMI; |
| 7679 | CC = ISD::SETGT; |
| 7680 | break; |
| 7681 | case Intrinsic::x86_sse_comige_ss: |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7682 | case Intrinsic::x86_sse2_comige_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7683 | Opc = X86ISD::COMI; |
| 7684 | CC = ISD::SETGE; |
| 7685 | break; |
| 7686 | case Intrinsic::x86_sse_comineq_ss: |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7687 | case Intrinsic::x86_sse2_comineq_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7688 | Opc = X86ISD::COMI; |
| 7689 | CC = ISD::SETNE; |
| 7690 | break; |
| 7691 | case Intrinsic::x86_sse_ucomieq_ss: |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7692 | case Intrinsic::x86_sse2_ucomieq_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7693 | Opc = X86ISD::UCOMI; |
| 7694 | CC = ISD::SETEQ; |
| 7695 | break; |
| 7696 | case Intrinsic::x86_sse_ucomilt_ss: |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7697 | case Intrinsic::x86_sse2_ucomilt_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7698 | Opc = X86ISD::UCOMI; |
| 7699 | CC = ISD::SETLT; |
| 7700 | break; |
| 7701 | case Intrinsic::x86_sse_ucomile_ss: |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7702 | case Intrinsic::x86_sse2_ucomile_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7703 | Opc = X86ISD::UCOMI; |
| 7704 | CC = ISD::SETLE; |
| 7705 | break; |
| 7706 | case Intrinsic::x86_sse_ucomigt_ss: |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7707 | case Intrinsic::x86_sse2_ucomigt_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7708 | Opc = X86ISD::UCOMI; |
| 7709 | CC = ISD::SETGT; |
| 7710 | break; |
| 7711 | case Intrinsic::x86_sse_ucomige_ss: |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7712 | case Intrinsic::x86_sse2_ucomige_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7713 | Opc = X86ISD::UCOMI; |
| 7714 | CC = ISD::SETGE; |
| 7715 | break; |
| 7716 | case Intrinsic::x86_sse_ucomineq_ss: |
| 7717 | case Intrinsic::x86_sse2_ucomineq_sd: |
| 7718 | Opc = X86ISD::UCOMI; |
| 7719 | CC = ISD::SETNE; |
| 7720 | break; |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7721 | } |
Evan Cheng | 734503b | 2006-09-11 02:19:56 +0000 | [diff] [blame] | 7722 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7723 | SDValue LHS = Op.getOperand(1); |
| 7724 | SDValue RHS = Op.getOperand(2); |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 7725 | unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG); |
Dan Gohman | 1a49295 | 2009-10-20 16:22:37 +0000 | [diff] [blame] | 7726 | assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!"); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7727 | SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS); |
| 7728 | SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, |
| 7729 | DAG.getConstant(X86CC, MVT::i8), Cond); |
| 7730 | return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC); |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7731 | } |
Bruno Cardoso Lopes | 045573c | 2010-08-10 23:25:42 +0000 | [diff] [blame] | 7732 | // ptest and testp intrinsics. The intrinsic these come from are designed to |
| 7733 | // return an integer value, not just an instruction so lower it to the ptest |
| 7734 | // or testp pattern and a setcc for the result. |
Eric Christopher | 71c6753 | 2009-07-29 00:28:05 +0000 | [diff] [blame] | 7735 | case Intrinsic::x86_sse41_ptestz: |
| 7736 | case Intrinsic::x86_sse41_ptestc: |
Bruno Cardoso Lopes | 045573c | 2010-08-10 23:25:42 +0000 | [diff] [blame] | 7737 | case Intrinsic::x86_sse41_ptestnzc: |
| 7738 | case Intrinsic::x86_avx_ptestz_256: |
| 7739 | case Intrinsic::x86_avx_ptestc_256: |
| 7740 | case Intrinsic::x86_avx_ptestnzc_256: |
| 7741 | case Intrinsic::x86_avx_vtestz_ps: |
| 7742 | case Intrinsic::x86_avx_vtestc_ps: |
| 7743 | case Intrinsic::x86_avx_vtestnzc_ps: |
| 7744 | case Intrinsic::x86_avx_vtestz_pd: |
| 7745 | case Intrinsic::x86_avx_vtestc_pd: |
| 7746 | case Intrinsic::x86_avx_vtestnzc_pd: |
| 7747 | case Intrinsic::x86_avx_vtestz_ps_256: |
| 7748 | case Intrinsic::x86_avx_vtestc_ps_256: |
| 7749 | case Intrinsic::x86_avx_vtestnzc_ps_256: |
| 7750 | case Intrinsic::x86_avx_vtestz_pd_256: |
| 7751 | case Intrinsic::x86_avx_vtestc_pd_256: |
| 7752 | case Intrinsic::x86_avx_vtestnzc_pd_256: { |
| 7753 | bool IsTestPacked = false; |
Eric Christopher | 71c6753 | 2009-07-29 00:28:05 +0000 | [diff] [blame] | 7754 | unsigned X86CC = 0; |
| 7755 | switch (IntNo) { |
Eric Christopher | 978dae3 | 2009-07-29 18:14:04 +0000 | [diff] [blame] | 7756 | default: llvm_unreachable("Bad fallthrough in Intrinsic lowering."); |
Bruno Cardoso Lopes | 045573c | 2010-08-10 23:25:42 +0000 | [diff] [blame] | 7757 | case Intrinsic::x86_avx_vtestz_ps: |
| 7758 | case Intrinsic::x86_avx_vtestz_pd: |
| 7759 | case Intrinsic::x86_avx_vtestz_ps_256: |
| 7760 | case Intrinsic::x86_avx_vtestz_pd_256: |
| 7761 | IsTestPacked = true; // Fallthrough |
Eric Christopher | 71c6753 | 2009-07-29 00:28:05 +0000 | [diff] [blame] | 7762 | case Intrinsic::x86_sse41_ptestz: |
Bruno Cardoso Lopes | 045573c | 2010-08-10 23:25:42 +0000 | [diff] [blame] | 7763 | case Intrinsic::x86_avx_ptestz_256: |
Eric Christopher | 71c6753 | 2009-07-29 00:28:05 +0000 | [diff] [blame] | 7764 | // ZF = 1 |
| 7765 | X86CC = X86::COND_E; |
| 7766 | break; |
Bruno Cardoso Lopes | 045573c | 2010-08-10 23:25:42 +0000 | [diff] [blame] | 7767 | case Intrinsic::x86_avx_vtestc_ps: |
| 7768 | case Intrinsic::x86_avx_vtestc_pd: |
| 7769 | case Intrinsic::x86_avx_vtestc_ps_256: |
| 7770 | case Intrinsic::x86_avx_vtestc_pd_256: |
| 7771 | IsTestPacked = true; // Fallthrough |
Eric Christopher | 71c6753 | 2009-07-29 00:28:05 +0000 | [diff] [blame] | 7772 | case Intrinsic::x86_sse41_ptestc: |
Bruno Cardoso Lopes | 045573c | 2010-08-10 23:25:42 +0000 | [diff] [blame] | 7773 | case Intrinsic::x86_avx_ptestc_256: |
Eric Christopher | 71c6753 | 2009-07-29 00:28:05 +0000 | [diff] [blame] | 7774 | // CF = 1 |
| 7775 | X86CC = X86::COND_B; |
| 7776 | break; |
Bruno Cardoso Lopes | 045573c | 2010-08-10 23:25:42 +0000 | [diff] [blame] | 7777 | case Intrinsic::x86_avx_vtestnzc_ps: |
| 7778 | case Intrinsic::x86_avx_vtestnzc_pd: |
| 7779 | case Intrinsic::x86_avx_vtestnzc_ps_256: |
| 7780 | case Intrinsic::x86_avx_vtestnzc_pd_256: |
| 7781 | IsTestPacked = true; // Fallthrough |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 7782 | case Intrinsic::x86_sse41_ptestnzc: |
Bruno Cardoso Lopes | 045573c | 2010-08-10 23:25:42 +0000 | [diff] [blame] | 7783 | case Intrinsic::x86_avx_ptestnzc_256: |
Eric Christopher | 71c6753 | 2009-07-29 00:28:05 +0000 | [diff] [blame] | 7784 | // ZF and CF = 0 |
| 7785 | X86CC = X86::COND_A; |
| 7786 | break; |
| 7787 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 7788 | |
Eric Christopher | 71c6753 | 2009-07-29 00:28:05 +0000 | [diff] [blame] | 7789 | SDValue LHS = Op.getOperand(1); |
| 7790 | SDValue RHS = Op.getOperand(2); |
Bruno Cardoso Lopes | 045573c | 2010-08-10 23:25:42 +0000 | [diff] [blame] | 7791 | unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST; |
| 7792 | SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7793 | SDValue CC = DAG.getConstant(X86CC, MVT::i8); |
| 7794 | SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test); |
| 7795 | return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC); |
Eric Christopher | 71c6753 | 2009-07-29 00:28:05 +0000 | [diff] [blame] | 7796 | } |
Evan Cheng | 5759f97 | 2008-05-04 09:15:50 +0000 | [diff] [blame] | 7797 | |
| 7798 | // Fix vector shift instructions where the last operand is a non-immediate |
| 7799 | // i32 value. |
| 7800 | case Intrinsic::x86_sse2_pslli_w: |
| 7801 | case Intrinsic::x86_sse2_pslli_d: |
| 7802 | case Intrinsic::x86_sse2_pslli_q: |
| 7803 | case Intrinsic::x86_sse2_psrli_w: |
| 7804 | case Intrinsic::x86_sse2_psrli_d: |
| 7805 | case Intrinsic::x86_sse2_psrli_q: |
| 7806 | case Intrinsic::x86_sse2_psrai_w: |
| 7807 | case Intrinsic::x86_sse2_psrai_d: |
| 7808 | case Intrinsic::x86_mmx_pslli_w: |
| 7809 | case Intrinsic::x86_mmx_pslli_d: |
| 7810 | case Intrinsic::x86_mmx_pslli_q: |
| 7811 | case Intrinsic::x86_mmx_psrli_w: |
| 7812 | case Intrinsic::x86_mmx_psrli_d: |
| 7813 | case Intrinsic::x86_mmx_psrli_q: |
| 7814 | case Intrinsic::x86_mmx_psrai_w: |
| 7815 | case Intrinsic::x86_mmx_psrai_d: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7816 | SDValue ShAmt = Op.getOperand(2); |
Evan Cheng | 5759f97 | 2008-05-04 09:15:50 +0000 | [diff] [blame] | 7817 | if (isa<ConstantSDNode>(ShAmt)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7818 | return SDValue(); |
Evan Cheng | 5759f97 | 2008-05-04 09:15:50 +0000 | [diff] [blame] | 7819 | |
| 7820 | unsigned NewIntNo = 0; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7821 | EVT ShAmtVT = MVT::v4i32; |
Evan Cheng | 5759f97 | 2008-05-04 09:15:50 +0000 | [diff] [blame] | 7822 | switch (IntNo) { |
| 7823 | case Intrinsic::x86_sse2_pslli_w: |
| 7824 | NewIntNo = Intrinsic::x86_sse2_psll_w; |
| 7825 | break; |
| 7826 | case Intrinsic::x86_sse2_pslli_d: |
| 7827 | NewIntNo = Intrinsic::x86_sse2_psll_d; |
| 7828 | break; |
| 7829 | case Intrinsic::x86_sse2_pslli_q: |
| 7830 | NewIntNo = Intrinsic::x86_sse2_psll_q; |
| 7831 | break; |
| 7832 | case Intrinsic::x86_sse2_psrli_w: |
| 7833 | NewIntNo = Intrinsic::x86_sse2_psrl_w; |
| 7834 | break; |
| 7835 | case Intrinsic::x86_sse2_psrli_d: |
| 7836 | NewIntNo = Intrinsic::x86_sse2_psrl_d; |
| 7837 | break; |
| 7838 | case Intrinsic::x86_sse2_psrli_q: |
| 7839 | NewIntNo = Intrinsic::x86_sse2_psrl_q; |
| 7840 | break; |
| 7841 | case Intrinsic::x86_sse2_psrai_w: |
| 7842 | NewIntNo = Intrinsic::x86_sse2_psra_w; |
| 7843 | break; |
| 7844 | case Intrinsic::x86_sse2_psrai_d: |
| 7845 | NewIntNo = Intrinsic::x86_sse2_psra_d; |
| 7846 | break; |
| 7847 | default: { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7848 | ShAmtVT = MVT::v2i32; |
Evan Cheng | 5759f97 | 2008-05-04 09:15:50 +0000 | [diff] [blame] | 7849 | switch (IntNo) { |
| 7850 | case Intrinsic::x86_mmx_pslli_w: |
| 7851 | NewIntNo = Intrinsic::x86_mmx_psll_w; |
| 7852 | break; |
| 7853 | case Intrinsic::x86_mmx_pslli_d: |
| 7854 | NewIntNo = Intrinsic::x86_mmx_psll_d; |
| 7855 | break; |
| 7856 | case Intrinsic::x86_mmx_pslli_q: |
| 7857 | NewIntNo = Intrinsic::x86_mmx_psll_q; |
| 7858 | break; |
| 7859 | case Intrinsic::x86_mmx_psrli_w: |
| 7860 | NewIntNo = Intrinsic::x86_mmx_psrl_w; |
| 7861 | break; |
| 7862 | case Intrinsic::x86_mmx_psrli_d: |
| 7863 | NewIntNo = Intrinsic::x86_mmx_psrl_d; |
| 7864 | break; |
| 7865 | case Intrinsic::x86_mmx_psrli_q: |
| 7866 | NewIntNo = Intrinsic::x86_mmx_psrl_q; |
| 7867 | break; |
| 7868 | case Intrinsic::x86_mmx_psrai_w: |
| 7869 | NewIntNo = Intrinsic::x86_mmx_psra_w; |
| 7870 | break; |
| 7871 | case Intrinsic::x86_mmx_psrai_d: |
| 7872 | NewIntNo = Intrinsic::x86_mmx_psra_d; |
| 7873 | break; |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 7874 | default: llvm_unreachable("Impossible intrinsic"); // Can't reach here. |
Evan Cheng | 5759f97 | 2008-05-04 09:15:50 +0000 | [diff] [blame] | 7875 | } |
| 7876 | break; |
| 7877 | } |
| 7878 | } |
Mon P Wang | efa4220 | 2009-09-03 19:56:25 +0000 | [diff] [blame] | 7879 | |
| 7880 | // The vector shift intrinsics with scalars uses 32b shift amounts but |
| 7881 | // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits |
| 7882 | // to be zero. |
| 7883 | SDValue ShOps[4]; |
| 7884 | ShOps[0] = ShAmt; |
| 7885 | ShOps[1] = DAG.getConstant(0, MVT::i32); |
| 7886 | if (ShAmtVT == MVT::v4i32) { |
| 7887 | ShOps[2] = DAG.getUNDEF(MVT::i32); |
| 7888 | ShOps[3] = DAG.getUNDEF(MVT::i32); |
| 7889 | ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4); |
| 7890 | } else { |
| 7891 | ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2); |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 7892 | // FIXME this must be lowered to get rid of the invalid type. |
Mon P Wang | efa4220 | 2009-09-03 19:56:25 +0000 | [diff] [blame] | 7893 | } |
| 7894 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 7895 | EVT VT = Op.getValueType(); |
Mon P Wang | efa4220 | 2009-09-03 19:56:25 +0000 | [diff] [blame] | 7896 | ShAmt = DAG.getNode(ISD::BIT_CONVERT, dl, VT, ShAmt); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7897 | return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7898 | DAG.getConstant(NewIntNo, MVT::i32), |
Evan Cheng | 5759f97 | 2008-05-04 09:15:50 +0000 | [diff] [blame] | 7899 | Op.getOperand(1), ShAmt); |
| 7900 | } |
Evan Cheng | 38bcbaf | 2005-12-23 07:31:11 +0000 | [diff] [blame] | 7901 | } |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 7902 | } |
Evan Cheng | 7226158 | 2005-12-20 06:22:03 +0000 | [diff] [blame] | 7903 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7904 | SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op, |
| 7905 | SelectionDAG &DAG) const { |
Evan Cheng | 2457f2c | 2010-05-22 01:47:14 +0000 | [diff] [blame] | 7906 | MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo(); |
| 7907 | MFI->setReturnAddressIsTaken(true); |
| 7908 | |
Bill Wendling | 64e8732 | 2009-01-16 19:25:27 +0000 | [diff] [blame] | 7909 | unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 7910 | DebugLoc dl = Op.getDebugLoc(); |
Bill Wendling | 64e8732 | 2009-01-16 19:25:27 +0000 | [diff] [blame] | 7911 | |
| 7912 | if (Depth > 0) { |
| 7913 | SDValue FrameAddr = LowerFRAMEADDR(Op, DAG); |
| 7914 | SDValue Offset = |
| 7915 | DAG.getConstant(TD->getPointerSize(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7916 | Subtarget->is64Bit() ? MVT::i64 : MVT::i32); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7917 | return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7918 | DAG.getNode(ISD::ADD, dl, getPointerTy(), |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7919 | FrameAddr, Offset), |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 7920 | MachinePointerInfo(), false, false, 0); |
Bill Wendling | 64e8732 | 2009-01-16 19:25:27 +0000 | [diff] [blame] | 7921 | } |
| 7922 | |
| 7923 | // Just load the return address. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7924 | SDValue RetAddrFI = getReturnAddressFrameIndex(DAG); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7925 | return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 7926 | RetAddrFI, MachinePointerInfo(), false, false, 0); |
Nate Begeman | bcc5f36 | 2007-01-29 22:58:52 +0000 | [diff] [blame] | 7927 | } |
| 7928 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7929 | SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const { |
Evan Cheng | 184793f | 2008-09-27 01:56:22 +0000 | [diff] [blame] | 7930 | MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo(); |
| 7931 | MFI->setFrameAddressIsTaken(true); |
Evan Cheng | 2457f2c | 2010-05-22 01:47:14 +0000 | [diff] [blame] | 7932 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 7933 | EVT VT = Op.getValueType(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 7934 | DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful |
Evan Cheng | 184793f | 2008-09-27 01:56:22 +0000 | [diff] [blame] | 7935 | unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); |
| 7936 | unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP; |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 7937 | SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT); |
Evan Cheng | 184793f | 2008-09-27 01:56:22 +0000 | [diff] [blame] | 7938 | while (Depth--) |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 7939 | FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr, |
| 7940 | MachinePointerInfo(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 7941 | false, false, 0); |
Evan Cheng | 184793f | 2008-09-27 01:56:22 +0000 | [diff] [blame] | 7942 | return FrameAddr; |
Nate Begeman | bcc5f36 | 2007-01-29 22:58:52 +0000 | [diff] [blame] | 7943 | } |
| 7944 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7945 | SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7946 | SelectionDAG &DAG) const { |
Anton Korobeynikov | bff66b0 | 2008-09-09 18:22:57 +0000 | [diff] [blame] | 7947 | return DAG.getIntPtrConstant(2*TD->getPointerSize()); |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 7948 | } |
| 7949 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7950 | SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const { |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 7951 | MachineFunction &MF = DAG.getMachineFunction(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7952 | SDValue Chain = Op.getOperand(0); |
| 7953 | SDValue Offset = Op.getOperand(1); |
| 7954 | SDValue Handler = Op.getOperand(2); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 7955 | DebugLoc dl = Op.getDebugLoc(); |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 7956 | |
Dan Gohman | d881627 | 2010-08-11 18:14:00 +0000 | [diff] [blame] | 7957 | SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, |
| 7958 | Subtarget->is64Bit() ? X86::RBP : X86::EBP, |
| 7959 | getPointerTy()); |
Anton Korobeynikov | b84c167 | 2008-09-08 21:12:47 +0000 | [diff] [blame] | 7960 | unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX); |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 7961 | |
Dan Gohman | d881627 | 2010-08-11 18:14:00 +0000 | [diff] [blame] | 7962 | SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame, |
| 7963 | DAG.getIntPtrConstant(TD->getPointerSize())); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7964 | StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7965 | Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(), |
| 7966 | false, false, 0); |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 7967 | Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr); |
Anton Korobeynikov | b84c167 | 2008-09-08 21:12:47 +0000 | [diff] [blame] | 7968 | MF.getRegInfo().addLiveOut(StoreAddrReg); |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 7969 | |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7970 | return DAG.getNode(X86ISD::EH_RETURN, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7971 | MVT::Other, |
Anton Korobeynikov | b84c167 | 2008-09-08 21:12:47 +0000 | [diff] [blame] | 7972 | Chain, DAG.getRegister(StoreAddrReg, getPointerTy())); |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 7973 | } |
| 7974 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7975 | SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7976 | SelectionDAG &DAG) const { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7977 | SDValue Root = Op.getOperand(0); |
| 7978 | SDValue Trmp = Op.getOperand(1); // trampoline |
| 7979 | SDValue FPtr = Op.getOperand(2); // nested function |
| 7980 | SDValue Nest = Op.getOperand(3); // 'nest' parameter value |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 7981 | DebugLoc dl = Op.getDebugLoc(); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 7982 | |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 7983 | const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue(); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 7984 | |
| 7985 | if (Subtarget->is64Bit()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7986 | SDValue OutChains[6]; |
Duncan Sands | 339e14f | 2008-01-16 22:55:25 +0000 | [diff] [blame] | 7987 | |
| 7988 | // Large code-model. |
Chris Lattner | a62fe66 | 2010-02-05 19:20:30 +0000 | [diff] [blame] | 7989 | const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode. |
| 7990 | const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode. |
Duncan Sands | 339e14f | 2008-01-16 22:55:25 +0000 | [diff] [blame] | 7991 | |
Dan Gohman | c9f5f3f | 2008-05-14 01:58:56 +0000 | [diff] [blame] | 7992 | const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10); |
| 7993 | const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11); |
Duncan Sands | 339e14f | 2008-01-16 22:55:25 +0000 | [diff] [blame] | 7994 | |
| 7995 | const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix |
| 7996 | |
| 7997 | // Load the pointer to the nested function into R11. |
| 7998 | unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11 |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7999 | SDValue Addr = Trmp; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8000 | OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16), |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 8001 | Addr, MachinePointerInfo(TrmpAddr), |
| 8002 | false, false, 0); |
Duncan Sands | 339e14f | 2008-01-16 22:55:25 +0000 | [diff] [blame] | 8003 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8004 | Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp, |
| 8005 | DAG.getConstant(2, MVT::i64)); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 8006 | OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr, |
| 8007 | MachinePointerInfo(TrmpAddr, 2), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 8008 | false, false, 2); |
Duncan Sands | 339e14f | 2008-01-16 22:55:25 +0000 | [diff] [blame] | 8009 | |
| 8010 | // Load the 'nest' parameter value into R10. |
| 8011 | // R10 is specified in X86CallingConv.td |
| 8012 | OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10 |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8013 | Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp, |
| 8014 | DAG.getConstant(10, MVT::i64)); |
| 8015 | OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16), |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 8016 | Addr, MachinePointerInfo(TrmpAddr, 10), |
| 8017 | false, false, 0); |
Duncan Sands | 339e14f | 2008-01-16 22:55:25 +0000 | [diff] [blame] | 8018 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8019 | Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp, |
| 8020 | DAG.getConstant(12, MVT::i64)); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 8021 | OutChains[3] = DAG.getStore(Root, dl, Nest, Addr, |
| 8022 | MachinePointerInfo(TrmpAddr, 12), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 8023 | false, false, 2); |
Duncan Sands | 339e14f | 2008-01-16 22:55:25 +0000 | [diff] [blame] | 8024 | |
| 8025 | // Jump to the nested function. |
| 8026 | OpCode = (JMP64r << 8) | REX_WB; // jmpq *... |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8027 | Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp, |
| 8028 | DAG.getConstant(20, MVT::i64)); |
| 8029 | OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16), |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 8030 | Addr, MachinePointerInfo(TrmpAddr, 20), |
| 8031 | false, false, 0); |
Duncan Sands | 339e14f | 2008-01-16 22:55:25 +0000 | [diff] [blame] | 8032 | |
| 8033 | unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11 |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8034 | Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp, |
| 8035 | DAG.getConstant(22, MVT::i64)); |
| 8036 | OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr, |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 8037 | MachinePointerInfo(TrmpAddr, 22), |
| 8038 | false, false, 0); |
Duncan Sands | 339e14f | 2008-01-16 22:55:25 +0000 | [diff] [blame] | 8039 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8040 | SDValue Ops[] = |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8041 | { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) }; |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8042 | return DAG.getMergeValues(Ops, 2, dl); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8043 | } else { |
Dan Gohman | bbfb9c5 | 2008-01-31 01:01:48 +0000 | [diff] [blame] | 8044 | const Function *Func = |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8045 | cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue()); |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 8046 | CallingConv::ID CC = Func->getCallingConv(); |
Duncan Sands | ee46574 | 2007-08-29 19:01:20 +0000 | [diff] [blame] | 8047 | unsigned NestReg; |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8048 | |
| 8049 | switch (CC) { |
| 8050 | default: |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 8051 | llvm_unreachable("Unsupported calling convention"); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8052 | case CallingConv::C: |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8053 | case CallingConv::X86_StdCall: { |
| 8054 | // Pass 'nest' parameter in ECX. |
| 8055 | // Must be kept in sync with X86CallingConv.td |
Duncan Sands | ee46574 | 2007-08-29 19:01:20 +0000 | [diff] [blame] | 8056 | NestReg = X86::ECX; |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8057 | |
| 8058 | // Check that ECX wasn't needed by an 'inreg' parameter. |
| 8059 | const FunctionType *FTy = Func->getFunctionType(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 8060 | const AttrListPtr &Attrs = Func->getAttributes(); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8061 | |
Chris Lattner | 58d7491 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 8062 | if (!Attrs.isEmpty() && !Func->isVarArg()) { |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8063 | unsigned InRegCount = 0; |
| 8064 | unsigned Idx = 1; |
| 8065 | |
| 8066 | for (FunctionType::param_iterator I = FTy->param_begin(), |
| 8067 | E = FTy->param_end(); I != E; ++I, ++Idx) |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 8068 | if (Attrs.paramHasAttr(Idx, Attribute::InReg)) |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8069 | // FIXME: should only count parameters that are lowered to integers. |
Anton Korobeynikov | bff66b0 | 2008-09-09 18:22:57 +0000 | [diff] [blame] | 8070 | InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32; |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8071 | |
| 8072 | if (InRegCount > 2) { |
Eric Christopher | 90eb402 | 2010-07-22 00:26:08 +0000 | [diff] [blame] | 8073 | report_fatal_error("Nest register in use - reduce number of inreg" |
| 8074 | " parameters!"); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8075 | } |
| 8076 | } |
| 8077 | break; |
| 8078 | } |
| 8079 | case CallingConv::X86_FastCall: |
Anton Korobeynikov | ded05e3 | 2010-05-16 09:08:45 +0000 | [diff] [blame] | 8080 | case CallingConv::X86_ThisCall: |
Duncan Sands | bf53c29 | 2008-09-10 13:22:10 +0000 | [diff] [blame] | 8081 | case CallingConv::Fast: |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8082 | // Pass 'nest' parameter in EAX. |
| 8083 | // Must be kept in sync with X86CallingConv.td |
Duncan Sands | ee46574 | 2007-08-29 19:01:20 +0000 | [diff] [blame] | 8084 | NestReg = X86::EAX; |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8085 | break; |
| 8086 | } |
| 8087 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8088 | SDValue OutChains[4]; |
| 8089 | SDValue Addr, Disp; |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8090 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8091 | Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp, |
| 8092 | DAG.getConstant(10, MVT::i32)); |
| 8093 | Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8094 | |
Chris Lattner | a62fe66 | 2010-02-05 19:20:30 +0000 | [diff] [blame] | 8095 | // This is storing the opcode for MOV32ri. |
| 8096 | const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte. |
Dan Gohman | c9f5f3f | 2008-05-14 01:58:56 +0000 | [diff] [blame] | 8097 | const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8098 | OutChains[0] = DAG.getStore(Root, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8099 | DAG.getConstant(MOV32ri|N86Reg, MVT::i8), |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 8100 | Trmp, MachinePointerInfo(TrmpAddr), |
| 8101 | false, false, 0); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8102 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8103 | Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp, |
| 8104 | DAG.getConstant(1, MVT::i32)); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 8105 | OutChains[1] = DAG.getStore(Root, dl, Nest, Addr, |
| 8106 | MachinePointerInfo(TrmpAddr, 1), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 8107 | false, false, 1); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8108 | |
Chris Lattner | a62fe66 | 2010-02-05 19:20:30 +0000 | [diff] [blame] | 8109 | const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8110 | Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp, |
| 8111 | DAG.getConstant(5, MVT::i32)); |
| 8112 | OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr, |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 8113 | MachinePointerInfo(TrmpAddr, 5), |
| 8114 | false, false, 1); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8115 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8116 | Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp, |
| 8117 | DAG.getConstant(6, MVT::i32)); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 8118 | OutChains[3] = DAG.getStore(Root, dl, Disp, Addr, |
| 8119 | MachinePointerInfo(TrmpAddr, 6), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 8120 | false, false, 1); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8121 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8122 | SDValue Ops[] = |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8123 | { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) }; |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8124 | return DAG.getMergeValues(Ops, 2, dl); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8125 | } |
| 8126 | } |
| 8127 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8128 | SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op, |
| 8129 | SelectionDAG &DAG) const { |
Anton Korobeynikov | 45b22fa | 2007-11-16 01:31:51 +0000 | [diff] [blame] | 8130 | /* |
| 8131 | The rounding mode is in bits 11:10 of FPSR, and has the following |
| 8132 | settings: |
| 8133 | 00 Round to nearest |
| 8134 | 01 Round to -inf |
| 8135 | 10 Round to +inf |
| 8136 | 11 Round to 0 |
| 8137 | |
| 8138 | FLT_ROUNDS, on the other hand, expects the following: |
| 8139 | -1 Undefined |
| 8140 | 0 Round to 0 |
| 8141 | 1 Round to nearest |
| 8142 | 2 Round to +inf |
| 8143 | 3 Round to -inf |
| 8144 | |
| 8145 | To perform the conversion, we do: |
| 8146 | (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3) |
| 8147 | */ |
| 8148 | |
| 8149 | MachineFunction &MF = DAG.getMachineFunction(); |
| 8150 | const TargetMachine &TM = MF.getTarget(); |
| 8151 | const TargetFrameInfo &TFI = *TM.getFrameInfo(); |
| 8152 | unsigned StackAlignment = TFI.getStackAlignment(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8153 | EVT VT = Op.getValueType(); |
Chris Lattner | 2156b79 | 2010-09-22 01:11:26 +0000 | [diff] [blame] | 8154 | DebugLoc DL = Op.getDebugLoc(); |
Anton Korobeynikov | 45b22fa | 2007-11-16 01:31:51 +0000 | [diff] [blame] | 8155 | |
| 8156 | // Save FP Control Word to stack slot |
David Greene | 3f2bf85 | 2009-11-12 20:49:22 +0000 | [diff] [blame] | 8157 | int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8158 | SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy()); |
Anton Korobeynikov | 45b22fa | 2007-11-16 01:31:51 +0000 | [diff] [blame] | 8159 | |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8160 | |
Chris Lattner | 2156b79 | 2010-09-22 01:11:26 +0000 | [diff] [blame] | 8161 | MachineMemOperand *MMO = |
| 8162 | MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI), |
| 8163 | MachineMemOperand::MOStore, 2, 2); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8164 | |
Chris Lattner | 2156b79 | 2010-09-22 01:11:26 +0000 | [diff] [blame] | 8165 | SDValue Ops[] = { DAG.getEntryNode(), StackSlot }; |
| 8166 | SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL, |
| 8167 | DAG.getVTList(MVT::Other), |
| 8168 | Ops, 2, MVT::i16, MMO); |
Anton Korobeynikov | 45b22fa | 2007-11-16 01:31:51 +0000 | [diff] [blame] | 8169 | |
| 8170 | // Load FP Control Word from stack slot |
Chris Lattner | 2156b79 | 2010-09-22 01:11:26 +0000 | [diff] [blame] | 8171 | SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot, |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 8172 | MachinePointerInfo(), false, false, 0); |
Anton Korobeynikov | 45b22fa | 2007-11-16 01:31:51 +0000 | [diff] [blame] | 8173 | |
| 8174 | // Transform as necessary |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8175 | SDValue CWD1 = |
Chris Lattner | 2156b79 | 2010-09-22 01:11:26 +0000 | [diff] [blame] | 8176 | DAG.getNode(ISD::SRL, DL, MVT::i16, |
| 8177 | DAG.getNode(ISD::AND, DL, MVT::i16, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8178 | CWD, DAG.getConstant(0x800, MVT::i16)), |
| 8179 | DAG.getConstant(11, MVT::i8)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8180 | SDValue CWD2 = |
Chris Lattner | 2156b79 | 2010-09-22 01:11:26 +0000 | [diff] [blame] | 8181 | DAG.getNode(ISD::SRL, DL, MVT::i16, |
| 8182 | DAG.getNode(ISD::AND, DL, MVT::i16, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8183 | CWD, DAG.getConstant(0x400, MVT::i16)), |
| 8184 | DAG.getConstant(9, MVT::i8)); |
Anton Korobeynikov | 45b22fa | 2007-11-16 01:31:51 +0000 | [diff] [blame] | 8185 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8186 | SDValue RetVal = |
Chris Lattner | 2156b79 | 2010-09-22 01:11:26 +0000 | [diff] [blame] | 8187 | DAG.getNode(ISD::AND, DL, MVT::i16, |
| 8188 | DAG.getNode(ISD::ADD, DL, MVT::i16, |
| 8189 | DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8190 | DAG.getConstant(1, MVT::i16)), |
| 8191 | DAG.getConstant(3, MVT::i16)); |
Anton Korobeynikov | 45b22fa | 2007-11-16 01:31:51 +0000 | [diff] [blame] | 8192 | |
| 8193 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 8194 | return DAG.getNode((VT.getSizeInBits() < 16 ? |
Chris Lattner | 2156b79 | 2010-09-22 01:11:26 +0000 | [diff] [blame] | 8195 | ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal); |
Anton Korobeynikov | 45b22fa | 2007-11-16 01:31:51 +0000 | [diff] [blame] | 8196 | } |
| 8197 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8198 | SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8199 | EVT VT = Op.getValueType(); |
| 8200 | EVT OpVT = VT; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 8201 | unsigned NumBits = VT.getSizeInBits(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 8202 | DebugLoc dl = Op.getDebugLoc(); |
Evan Cheng | 18efe26 | 2007-12-14 02:13:44 +0000 | [diff] [blame] | 8203 | |
| 8204 | Op = Op.getOperand(0); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8205 | if (VT == MVT::i8) { |
Evan Cheng | 152804e | 2007-12-14 08:30:15 +0000 | [diff] [blame] | 8206 | // Zero extend to i32 since there is not an i8 bsr. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8207 | OpVT = MVT::i32; |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8208 | Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op); |
Evan Cheng | 18efe26 | 2007-12-14 02:13:44 +0000 | [diff] [blame] | 8209 | } |
Evan Cheng | 18efe26 | 2007-12-14 02:13:44 +0000 | [diff] [blame] | 8210 | |
Evan Cheng | 152804e | 2007-12-14 08:30:15 +0000 | [diff] [blame] | 8211 | // Issue a bsr (scan bits in reverse) which also sets EFLAGS. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8212 | SDVTList VTs = DAG.getVTList(OpVT, MVT::i32); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8213 | Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op); |
Evan Cheng | 152804e | 2007-12-14 08:30:15 +0000 | [diff] [blame] | 8214 | |
| 8215 | // If src is zero (i.e. bsr sets ZF), returns NumBits. |
Benjamin Kramer | 7f1a560 | 2009-12-29 16:57:26 +0000 | [diff] [blame] | 8216 | SDValue Ops[] = { |
| 8217 | Op, |
| 8218 | DAG.getConstant(NumBits+NumBits-1, OpVT), |
| 8219 | DAG.getConstant(X86::COND_E, MVT::i8), |
| 8220 | Op.getValue(1) |
| 8221 | }; |
| 8222 | Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops)); |
Evan Cheng | 152804e | 2007-12-14 08:30:15 +0000 | [diff] [blame] | 8223 | |
| 8224 | // Finally xor with NumBits-1. |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8225 | Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT)); |
Evan Cheng | 152804e | 2007-12-14 08:30:15 +0000 | [diff] [blame] | 8226 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8227 | if (VT == MVT::i8) |
| 8228 | Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op); |
Evan Cheng | 18efe26 | 2007-12-14 02:13:44 +0000 | [diff] [blame] | 8229 | return Op; |
| 8230 | } |
| 8231 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8232 | SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8233 | EVT VT = Op.getValueType(); |
| 8234 | EVT OpVT = VT; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 8235 | unsigned NumBits = VT.getSizeInBits(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 8236 | DebugLoc dl = Op.getDebugLoc(); |
Evan Cheng | 18efe26 | 2007-12-14 02:13:44 +0000 | [diff] [blame] | 8237 | |
| 8238 | Op = Op.getOperand(0); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8239 | if (VT == MVT::i8) { |
| 8240 | OpVT = MVT::i32; |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8241 | Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op); |
Evan Cheng | 18efe26 | 2007-12-14 02:13:44 +0000 | [diff] [blame] | 8242 | } |
Evan Cheng | 152804e | 2007-12-14 08:30:15 +0000 | [diff] [blame] | 8243 | |
| 8244 | // Issue a bsf (scan bits forward) which also sets EFLAGS. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8245 | SDVTList VTs = DAG.getVTList(OpVT, MVT::i32); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8246 | Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op); |
Evan Cheng | 152804e | 2007-12-14 08:30:15 +0000 | [diff] [blame] | 8247 | |
| 8248 | // If src is zero (i.e. bsf sets ZF), returns NumBits. |
Benjamin Kramer | 7f1a560 | 2009-12-29 16:57:26 +0000 | [diff] [blame] | 8249 | SDValue Ops[] = { |
| 8250 | Op, |
| 8251 | DAG.getConstant(NumBits, OpVT), |
| 8252 | DAG.getConstant(X86::COND_E, MVT::i8), |
| 8253 | Op.getValue(1) |
| 8254 | }; |
| 8255 | Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops)); |
Evan Cheng | 152804e | 2007-12-14 08:30:15 +0000 | [diff] [blame] | 8256 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8257 | if (VT == MVT::i8) |
| 8258 | Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op); |
Evan Cheng | 18efe26 | 2007-12-14 02:13:44 +0000 | [diff] [blame] | 8259 | return Op; |
| 8260 | } |
| 8261 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8262 | SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8263 | EVT VT = Op.getValueType(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8264 | assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply"); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 8265 | DebugLoc dl = Op.getDebugLoc(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8266 | |
Mon P Wang | af9b952 | 2008-12-18 21:42:19 +0000 | [diff] [blame] | 8267 | // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32); |
| 8268 | // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32); |
| 8269 | // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b ); |
| 8270 | // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi ); |
| 8271 | // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b ); |
| 8272 | // |
| 8273 | // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 ); |
| 8274 | // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 ); |
| 8275 | // return AloBlo + AloBhi + AhiBlo; |
| 8276 | |
| 8277 | SDValue A = Op.getOperand(0); |
| 8278 | SDValue B = Op.getOperand(1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8279 | |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8280 | SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8281 | DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32), |
| 8282 | A, DAG.getConstant(32, MVT::i32)); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8283 | SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8284 | DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32), |
| 8285 | B, DAG.getConstant(32, MVT::i32)); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8286 | SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8287 | DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32), |
Mon P Wang | af9b952 | 2008-12-18 21:42:19 +0000 | [diff] [blame] | 8288 | A, B); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8289 | SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8290 | DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32), |
Mon P Wang | af9b952 | 2008-12-18 21:42:19 +0000 | [diff] [blame] | 8291 | A, Bhi); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8292 | SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8293 | DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32), |
Mon P Wang | af9b952 | 2008-12-18 21:42:19 +0000 | [diff] [blame] | 8294 | Ahi, B); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8295 | AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8296 | DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32), |
| 8297 | AloBhi, DAG.getConstant(32, MVT::i32)); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8298 | AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8299 | DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32), |
| 8300 | AhiBlo, DAG.getConstant(32, MVT::i32)); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8301 | SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi); |
| 8302 | Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo); |
Mon P Wang | af9b952 | 2008-12-18 21:42:19 +0000 | [diff] [blame] | 8303 | return Res; |
| 8304 | } |
| 8305 | |
Nate Begeman | bdcb5af | 2010-07-27 22:37:06 +0000 | [diff] [blame] | 8306 | SDValue X86TargetLowering::LowerSHL(SDValue Op, SelectionDAG &DAG) const { |
| 8307 | EVT VT = Op.getValueType(); |
| 8308 | DebugLoc dl = Op.getDebugLoc(); |
| 8309 | SDValue R = Op.getOperand(0); |
| 8310 | |
Nate Begeman | bdcb5af | 2010-07-27 22:37:06 +0000 | [diff] [blame] | 8311 | LLVMContext *Context = DAG.getContext(); |
Nate Begeman | bdcb5af | 2010-07-27 22:37:06 +0000 | [diff] [blame] | 8312 | |
Nate Begeman | 5140921 | 2010-07-28 00:21:48 +0000 | [diff] [blame] | 8313 | assert(Subtarget->hasSSE41() && "Cannot lower SHL without SSE4.1 or later"); |
| 8314 | |
| 8315 | if (VT == MVT::v4i32) { |
| 8316 | Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
| 8317 | DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32), |
| 8318 | Op.getOperand(1), DAG.getConstant(23, MVT::i32)); |
| 8319 | |
| 8320 | ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U)); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8321 | |
Nate Begeman | 5140921 | 2010-07-28 00:21:48 +0000 | [diff] [blame] | 8322 | std::vector<Constant*> CV(4, CI); |
| 8323 | Constant *C = ConstantVector::get(CV); |
| 8324 | SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16); |
| 8325 | SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 8326 | MachinePointerInfo::getConstantPool(), |
Nate Begeman | 5140921 | 2010-07-28 00:21:48 +0000 | [diff] [blame] | 8327 | false, false, 16); |
| 8328 | |
| 8329 | Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend); |
| 8330 | Op = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32, Op); |
| 8331 | Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op); |
| 8332 | return DAG.getNode(ISD::MUL, dl, VT, Op, R); |
| 8333 | } |
| 8334 | if (VT == MVT::v16i8) { |
| 8335 | // a = a << 5; |
| 8336 | Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
| 8337 | DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), |
| 8338 | Op.getOperand(1), DAG.getConstant(5, MVT::i32)); |
| 8339 | |
| 8340 | ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15)); |
| 8341 | ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63)); |
| 8342 | |
| 8343 | std::vector<Constant*> CVM1(16, CM1); |
| 8344 | std::vector<Constant*> CVM2(16, CM2); |
| 8345 | Constant *C = ConstantVector::get(CVM1); |
| 8346 | SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16); |
| 8347 | SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 8348 | MachinePointerInfo::getConstantPool(), |
Nate Begeman | 5140921 | 2010-07-28 00:21:48 +0000 | [diff] [blame] | 8349 | false, false, 16); |
| 8350 | |
| 8351 | // r = pblendv(r, psllw(r & (char16)15, 4), a); |
| 8352 | M = DAG.getNode(ISD::AND, dl, VT, R, M); |
| 8353 | M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
| 8354 | DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M, |
| 8355 | DAG.getConstant(4, MVT::i32)); |
| 8356 | R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
| 8357 | DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32), |
| 8358 | R, M, Op); |
| 8359 | // a += a |
| 8360 | Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8361 | |
Nate Begeman | 5140921 | 2010-07-28 00:21:48 +0000 | [diff] [blame] | 8362 | C = ConstantVector::get(CVM2); |
| 8363 | CPIdx = DAG.getConstantPool(C, getPointerTy(), 16); |
| 8364 | M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 8365 | MachinePointerInfo::getConstantPool(), |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 8366 | false, false, 16); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8367 | |
Nate Begeman | 5140921 | 2010-07-28 00:21:48 +0000 | [diff] [blame] | 8368 | // r = pblendv(r, psllw(r & (char16)63, 2), a); |
| 8369 | M = DAG.getNode(ISD::AND, dl, VT, R, M); |
| 8370 | M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
| 8371 | DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M, |
| 8372 | DAG.getConstant(2, MVT::i32)); |
| 8373 | R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
| 8374 | DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32), |
| 8375 | R, M, Op); |
| 8376 | // a += a |
| 8377 | Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8378 | |
Nate Begeman | 5140921 | 2010-07-28 00:21:48 +0000 | [diff] [blame] | 8379 | // return pblendv(r, r+r, a); |
| 8380 | R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
| 8381 | DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32), |
| 8382 | R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op); |
| 8383 | return R; |
| 8384 | } |
| 8385 | return SDValue(); |
Nate Begeman | bdcb5af | 2010-07-27 22:37:06 +0000 | [diff] [blame] | 8386 | } |
Mon P Wang | af9b952 | 2008-12-18 21:42:19 +0000 | [diff] [blame] | 8387 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8388 | SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const { |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8389 | // Lower the "add/sub/mul with overflow" instruction into a regular ins plus |
| 8390 | // a "setcc" instruction that checks the overflow flag. The "brcond" lowering |
Bill Wendling | 61edeb5 | 2008-12-02 01:06:39 +0000 | [diff] [blame] | 8391 | // looks for this combo and may remove the "setcc" instruction if the "setcc" |
| 8392 | // has only one use. |
Bill Wendling | 3fafd93 | 2008-11-26 22:37:40 +0000 | [diff] [blame] | 8393 | SDNode *N = Op.getNode(); |
Bill Wendling | 61edeb5 | 2008-12-02 01:06:39 +0000 | [diff] [blame] | 8394 | SDValue LHS = N->getOperand(0); |
| 8395 | SDValue RHS = N->getOperand(1); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8396 | unsigned BaseOp = 0; |
| 8397 | unsigned Cond = 0; |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 8398 | DebugLoc dl = Op.getDebugLoc(); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8399 | |
| 8400 | switch (Op.getOpcode()) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 8401 | default: llvm_unreachable("Unknown ovf instruction!"); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8402 | case ISD::SADDO: |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 8403 | // A subtract of one will be selected as a INC. Note that INC doesn't |
| 8404 | // set CF, so we can't do this for UADDO. |
| 8405 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) |
| 8406 | if (C->getAPIntValue() == 1) { |
| 8407 | BaseOp = X86ISD::INC; |
| 8408 | Cond = X86::COND_O; |
| 8409 | break; |
| 8410 | } |
Bill Wendling | ab55ebd | 2008-12-12 00:56:36 +0000 | [diff] [blame] | 8411 | BaseOp = X86ISD::ADD; |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8412 | Cond = X86::COND_O; |
| 8413 | break; |
| 8414 | case ISD::UADDO: |
Bill Wendling | ab55ebd | 2008-12-12 00:56:36 +0000 | [diff] [blame] | 8415 | BaseOp = X86ISD::ADD; |
Dan Gohman | 653456c | 2009-01-07 00:15:08 +0000 | [diff] [blame] | 8416 | Cond = X86::COND_B; |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8417 | break; |
| 8418 | case ISD::SSUBO: |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 8419 | // A subtract of one will be selected as a DEC. Note that DEC doesn't |
| 8420 | // set CF, so we can't do this for USUBO. |
| 8421 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) |
| 8422 | if (C->getAPIntValue() == 1) { |
| 8423 | BaseOp = X86ISD::DEC; |
| 8424 | Cond = X86::COND_O; |
| 8425 | break; |
| 8426 | } |
Bill Wendling | ab55ebd | 2008-12-12 00:56:36 +0000 | [diff] [blame] | 8427 | BaseOp = X86ISD::SUB; |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8428 | Cond = X86::COND_O; |
| 8429 | break; |
| 8430 | case ISD::USUBO: |
Bill Wendling | ab55ebd | 2008-12-12 00:56:36 +0000 | [diff] [blame] | 8431 | BaseOp = X86ISD::SUB; |
Dan Gohman | 653456c | 2009-01-07 00:15:08 +0000 | [diff] [blame] | 8432 | Cond = X86::COND_B; |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8433 | break; |
| 8434 | case ISD::SMULO: |
Bill Wendling | d350e02 | 2008-12-12 21:15:41 +0000 | [diff] [blame] | 8435 | BaseOp = X86ISD::SMUL; |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8436 | Cond = X86::COND_O; |
| 8437 | break; |
| 8438 | case ISD::UMULO: |
Bill Wendling | d350e02 | 2008-12-12 21:15:41 +0000 | [diff] [blame] | 8439 | BaseOp = X86ISD::UMUL; |
Dan Gohman | 653456c | 2009-01-07 00:15:08 +0000 | [diff] [blame] | 8440 | Cond = X86::COND_B; |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8441 | break; |
| 8442 | } |
Bill Wendling | 3fafd93 | 2008-11-26 22:37:40 +0000 | [diff] [blame] | 8443 | |
Bill Wendling | 61edeb5 | 2008-12-02 01:06:39 +0000 | [diff] [blame] | 8444 | // Also sets EFLAGS. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8445 | SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8446 | SDValue Sum = DAG.getNode(BaseOp, dl, VTs, LHS, RHS); |
Bill Wendling | 3fafd93 | 2008-11-26 22:37:40 +0000 | [diff] [blame] | 8447 | |
Bill Wendling | 61edeb5 | 2008-12-02 01:06:39 +0000 | [diff] [blame] | 8448 | SDValue SetCC = |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8449 | DAG.getNode(X86ISD::SETCC, dl, N->getValueType(1), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8450 | DAG.getConstant(Cond, MVT::i32), SDValue(Sum.getNode(), 1)); |
Bill Wendling | 3fafd93 | 2008-11-26 22:37:40 +0000 | [diff] [blame] | 8451 | |
Bill Wendling | 61edeb5 | 2008-12-02 01:06:39 +0000 | [diff] [blame] | 8452 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC); |
| 8453 | return Sum; |
Bill Wendling | 41ea7e7 | 2008-11-24 19:21:46 +0000 | [diff] [blame] | 8454 | } |
| 8455 | |
Eric Christopher | 9a9d275 | 2010-07-22 02:48:34 +0000 | [diff] [blame] | 8456 | SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{ |
| 8457 | DebugLoc dl = Op.getDebugLoc(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8458 | |
Eric Christopher | b6729dc | 2010-08-04 23:03:04 +0000 | [diff] [blame] | 8459 | if (!Subtarget->hasSSE2()) { |
Eric Christopher | c0b2a20 | 2010-08-14 21:51:50 +0000 | [diff] [blame] | 8460 | SDValue Chain = Op.getOperand(0); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8461 | SDValue Zero = DAG.getConstant(0, |
Eric Christopher | b6729dc | 2010-08-04 23:03:04 +0000 | [diff] [blame] | 8462 | Subtarget->is64Bit() ? MVT::i64 : MVT::i32); |
Eric Christopher | c0b2a20 | 2010-08-14 21:51:50 +0000 | [diff] [blame] | 8463 | SDValue Ops[] = { |
| 8464 | DAG.getRegister(X86::ESP, MVT::i32), // Base |
| 8465 | DAG.getTargetConstant(1, MVT::i8), // Scale |
| 8466 | DAG.getRegister(0, MVT::i32), // Index |
| 8467 | DAG.getTargetConstant(0, MVT::i32), // Disp |
| 8468 | DAG.getRegister(0, MVT::i32), // Segment. |
| 8469 | Zero, |
| 8470 | Chain |
| 8471 | }; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8472 | SDNode *Res = |
Eric Christopher | c0b2a20 | 2010-08-14 21:51:50 +0000 | [diff] [blame] | 8473 | DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops, |
| 8474 | array_lengthof(Ops)); |
| 8475 | return SDValue(Res, 0); |
Eric Christopher | b6729dc | 2010-08-04 23:03:04 +0000 | [diff] [blame] | 8476 | } |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8477 | |
Eric Christopher | 9a9d275 | 2010-07-22 02:48:34 +0000 | [diff] [blame] | 8478 | unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue(); |
Chris Lattner | 132929a | 2010-08-14 17:26:09 +0000 | [diff] [blame] | 8479 | if (!isDev) |
Eric Christopher | 9a9d275 | 2010-07-22 02:48:34 +0000 | [diff] [blame] | 8480 | return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0)); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8481 | |
Chris Lattner | 132929a | 2010-08-14 17:26:09 +0000 | [diff] [blame] | 8482 | unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue(); |
| 8483 | unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue(); |
| 8484 | unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue(); |
| 8485 | unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8486 | |
Chris Lattner | 132929a | 2010-08-14 17:26:09 +0000 | [diff] [blame] | 8487 | // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>; |
| 8488 | if (!Op1 && !Op2 && !Op3 && Op4) |
| 8489 | return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0)); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8490 | |
Chris Lattner | 132929a | 2010-08-14 17:26:09 +0000 | [diff] [blame] | 8491 | // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>; |
| 8492 | if (Op1 && !Op2 && !Op3 && !Op4) |
| 8493 | return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0)); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8494 | |
| 8495 | // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)), |
Chris Lattner | 132929a | 2010-08-14 17:26:09 +0000 | [diff] [blame] | 8496 | // (MFENCE)>; |
| 8497 | return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0)); |
Eric Christopher | 9a9d275 | 2010-07-22 02:48:34 +0000 | [diff] [blame] | 8498 | } |
| 8499 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8500 | SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8501 | EVT T = Op.getValueType(); |
Chris Lattner | 93c4a5b | 2010-09-21 23:59:42 +0000 | [diff] [blame] | 8502 | DebugLoc DL = Op.getDebugLoc(); |
Andrew Lenharth | a76e2f0 | 2008-03-04 21:13:33 +0000 | [diff] [blame] | 8503 | unsigned Reg = 0; |
| 8504 | unsigned size = 0; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8505 | switch(T.getSimpleVT().SimpleTy) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 8506 | default: |
| 8507 | assert(false && "Invalid value type!"); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8508 | case MVT::i8: Reg = X86::AL; size = 1; break; |
| 8509 | case MVT::i16: Reg = X86::AX; size = 2; break; |
| 8510 | case MVT::i32: Reg = X86::EAX; size = 4; break; |
| 8511 | case MVT::i64: |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8512 | assert(Subtarget->is64Bit() && "Node not type legal!"); |
| 8513 | Reg = X86::RAX; size = 8; |
Andrew Lenharth | d19189e | 2008-03-05 01:15:49 +0000 | [diff] [blame] | 8514 | break; |
Bill Wendling | 61edeb5 | 2008-12-02 01:06:39 +0000 | [diff] [blame] | 8515 | } |
Chris Lattner | 93c4a5b | 2010-09-21 23:59:42 +0000 | [diff] [blame] | 8516 | SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg, |
Dale Johannesen | d18a462 | 2008-09-11 03:12:59 +0000 | [diff] [blame] | 8517 | Op.getOperand(2), SDValue()); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8518 | SDValue Ops[] = { cpIn.getValue(0), |
Evan Cheng | 8a186ae | 2008-09-24 23:26:36 +0000 | [diff] [blame] | 8519 | Op.getOperand(1), |
| 8520 | Op.getOperand(3), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8521 | DAG.getTargetConstant(size, MVT::i8), |
Evan Cheng | 8a186ae | 2008-09-24 23:26:36 +0000 | [diff] [blame] | 8522 | cpIn.getValue(1) }; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8523 | SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag); |
Chris Lattner | 93c4a5b | 2010-09-21 23:59:42 +0000 | [diff] [blame] | 8524 | MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand(); |
| 8525 | SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys, |
| 8526 | Ops, 5, T, MMO); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8527 | SDValue cpOut = |
Chris Lattner | 93c4a5b | 2010-09-21 23:59:42 +0000 | [diff] [blame] | 8528 | DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1)); |
Andrew Lenharth | 26ed869 | 2008-03-01 21:52:34 +0000 | [diff] [blame] | 8529 | return cpOut; |
| 8530 | } |
| 8531 | |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8532 | SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8533 | SelectionDAG &DAG) const { |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8534 | assert(Subtarget->is64Bit() && "Result not type legalized?"); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8535 | SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8536 | SDValue TheChain = Op.getOperand(0); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 8537 | DebugLoc dl = Op.getDebugLoc(); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8538 | SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8539 | SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1)); |
| 8540 | SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64, |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8541 | rax.getValue(2)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8542 | SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx, |
| 8543 | DAG.getConstant(32, MVT::i8)); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8544 | SDValue Ops[] = { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8545 | DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp), |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8546 | rdx.getValue(1) |
| 8547 | }; |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8548 | return DAG.getMergeValues(Ops, 2, dl); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 8549 | } |
| 8550 | |
Dale Johannesen | 7d07b48 | 2010-05-21 00:52:33 +0000 | [diff] [blame] | 8551 | SDValue X86TargetLowering::LowerBIT_CONVERT(SDValue Op, |
| 8552 | SelectionDAG &DAG) const { |
| 8553 | EVT SrcVT = Op.getOperand(0).getValueType(); |
| 8554 | EVT DstVT = Op.getValueType(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8555 | assert((Subtarget->is64Bit() && !Subtarget->hasSSE2() && |
Dale Johannesen | 7d07b48 | 2010-05-21 00:52:33 +0000 | [diff] [blame] | 8556 | Subtarget->hasMMX() && !DisableMMX) && |
| 8557 | "Unexpected custom BIT_CONVERT"); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8558 | assert((DstVT == MVT::i64 || |
Dale Johannesen | 7d07b48 | 2010-05-21 00:52:33 +0000 | [diff] [blame] | 8559 | (DstVT.isVector() && DstVT.getSizeInBits()==64)) && |
| 8560 | "Unexpected custom BIT_CONVERT"); |
| 8561 | // i64 <=> MMX conversions are Legal. |
| 8562 | if (SrcVT==MVT::i64 && DstVT.isVector()) |
| 8563 | return Op; |
| 8564 | if (DstVT==MVT::i64 && SrcVT.isVector()) |
| 8565 | return Op; |
Dale Johannesen | e39859a | 2010-05-21 18:40:15 +0000 | [diff] [blame] | 8566 | // MMX <=> MMX conversions are Legal. |
| 8567 | if (SrcVT.isVector() && DstVT.isVector()) |
| 8568 | return Op; |
Dale Johannesen | 7d07b48 | 2010-05-21 00:52:33 +0000 | [diff] [blame] | 8569 | // All other conversions need to be expanded. |
| 8570 | return SDValue(); |
| 8571 | } |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8572 | SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const { |
Dale Johannesen | 71d1bf5 | 2008-09-29 22:25:26 +0000 | [diff] [blame] | 8573 | SDNode *Node = Op.getNode(); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8574 | DebugLoc dl = Node->getDebugLoc(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8575 | EVT T = Node->getValueType(0); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8576 | SDValue negOp = DAG.getNode(ISD::SUB, dl, T, |
Evan Cheng | 242b38b | 2009-02-23 09:03:22 +0000 | [diff] [blame] | 8577 | DAG.getConstant(0, T), Node->getOperand(2)); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8578 | return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl, |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 8579 | cast<AtomicSDNode>(Node)->getMemoryVT(), |
Dale Johannesen | 71d1bf5 | 2008-09-29 22:25:26 +0000 | [diff] [blame] | 8580 | Node->getOperand(0), |
| 8581 | Node->getOperand(1), negOp, |
| 8582 | cast<AtomicSDNode>(Node)->getSrcValue(), |
| 8583 | cast<AtomicSDNode>(Node)->getAlignment()); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 8584 | } |
| 8585 | |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8586 | /// LowerOperation - Provide custom lowering hooks for some operations. |
| 8587 | /// |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8588 | SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const { |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8589 | switch (Op.getOpcode()) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 8590 | default: llvm_unreachable("Should not custom lower this!"); |
Eric Christopher | 9a9d275 | 2010-07-22 02:48:34 +0000 | [diff] [blame] | 8591 | case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG); |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 8592 | case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG); |
| 8593 | case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8594 | case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG); |
Mon P Wang | eb38ebf | 2010-01-24 00:05:03 +0000 | [diff] [blame] | 8595 | case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8596 | case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG); |
| 8597 | case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG); |
| 8598 | case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG); |
| 8599 | case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG); |
| 8600 | case ISD::ConstantPool: return LowerConstantPool(Op, DAG); |
| 8601 | case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG); |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 8602 | case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG); |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 8603 | case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG); |
Dan Gohman | f705adb | 2009-10-30 01:28:02 +0000 | [diff] [blame] | 8604 | case ISD::BlockAddress: return LowerBlockAddress(Op, DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8605 | case ISD::SHL_PARTS: |
| 8606 | case ISD::SRA_PARTS: |
| 8607 | case ISD::SRL_PARTS: return LowerShift(Op, DAG); |
| 8608 | case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG); |
Dale Johannesen | 1c15bf5 | 2008-10-21 20:50:01 +0000 | [diff] [blame] | 8609 | case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8610 | case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG); |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 8611 | case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8612 | case ISD::FABS: return LowerFABS(Op, DAG); |
| 8613 | case ISD::FNEG: return LowerFNEG(Op, DAG); |
Evan Cheng | 68c47cb | 2007-01-05 07:55:56 +0000 | [diff] [blame] | 8614 | case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG); |
Evan Cheng | e5f6204 | 2007-09-29 00:00:36 +0000 | [diff] [blame] | 8615 | case ISD::SETCC: return LowerSETCC(Op, DAG); |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 8616 | case ISD::VSETCC: return LowerVSETCC(Op, DAG); |
Evan Cheng | e5f6204 | 2007-09-29 00:00:36 +0000 | [diff] [blame] | 8617 | case ISD::SELECT: return LowerSELECT(Op, DAG); |
| 8618 | case ISD::BRCOND: return LowerBRCOND(Op, DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8619 | case ISD::JumpTable: return LowerJumpTable(Op, DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8620 | case ISD::VASTART: return LowerVASTART(Op, DAG); |
Dan Gohman | 9018e83 | 2008-05-10 01:26:14 +0000 | [diff] [blame] | 8621 | case ISD::VAARG: return LowerVAARG(Op, DAG); |
Evan Cheng | ae64219 | 2007-03-02 23:16:35 +0000 | [diff] [blame] | 8622 | case ISD::VACOPY: return LowerVACOPY(Op, DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8623 | case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG); |
Nate Begeman | bcc5f36 | 2007-01-29 22:58:52 +0000 | [diff] [blame] | 8624 | case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG); |
| 8625 | case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG); |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 8626 | case ISD::FRAME_TO_ARGS_OFFSET: |
| 8627 | return LowerFRAME_TO_ARGS_OFFSET(Op, DAG); |
Anton Korobeynikov | 57fc00d | 2007-04-17 09:20:00 +0000 | [diff] [blame] | 8628 | case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG); |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 8629 | case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8630 | case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG); |
Dan Gohman | 1a02486 | 2008-01-31 00:41:03 +0000 | [diff] [blame] | 8631 | case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG); |
Evan Cheng | 18efe26 | 2007-12-14 02:13:44 +0000 | [diff] [blame] | 8632 | case ISD::CTLZ: return LowerCTLZ(Op, DAG); |
| 8633 | case ISD::CTTZ: return LowerCTTZ(Op, DAG); |
Mon P Wang | af9b952 | 2008-12-18 21:42:19 +0000 | [diff] [blame] | 8634 | case ISD::MUL: return LowerMUL_V2I64(Op, DAG); |
Nate Begeman | bdcb5af | 2010-07-27 22:37:06 +0000 | [diff] [blame] | 8635 | case ISD::SHL: return LowerSHL(Op, DAG); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8636 | case ISD::SADDO: |
| 8637 | case ISD::UADDO: |
| 8638 | case ISD::SSUBO: |
| 8639 | case ISD::USUBO: |
| 8640 | case ISD::SMULO: |
| 8641 | case ISD::UMULO: return LowerXALUO(Op, DAG); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8642 | case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG); |
Dale Johannesen | 7d07b48 | 2010-05-21 00:52:33 +0000 | [diff] [blame] | 8643 | case ISD::BIT_CONVERT: return LowerBIT_CONVERT(Op, DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8644 | } |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 8645 | } |
| 8646 | |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8647 | void X86TargetLowering:: |
| 8648 | ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8649 | SelectionDAG &DAG, unsigned NewOp) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8650 | EVT T = Node->getValueType(0); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8651 | DebugLoc dl = Node->getDebugLoc(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8652 | assert (T == MVT::i64 && "Only know how to expand i64 atomics"); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8653 | |
| 8654 | SDValue Chain = Node->getOperand(0); |
| 8655 | SDValue In1 = Node->getOperand(1); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8656 | SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8657 | Node->getOperand(2), DAG.getIntPtrConstant(0)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8658 | SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8659 | Node->getOperand(2), DAG.getIntPtrConstant(1)); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 8660 | SDValue Ops[] = { Chain, In1, In2L, In2H }; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8661 | SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 8662 | SDValue Result = |
| 8663 | DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64, |
| 8664 | cast<MemSDNode>(Node)->getMemOperand()); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8665 | SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)}; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8666 | Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2)); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8667 | Results.push_back(Result.getValue(2)); |
| 8668 | } |
| 8669 | |
Duncan Sands | 126d907 | 2008-07-04 11:47:58 +0000 | [diff] [blame] | 8670 | /// ReplaceNodeResults - Replace a node with an illegal result type |
| 8671 | /// with a new node built out of custom code. |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8672 | void X86TargetLowering::ReplaceNodeResults(SDNode *N, |
| 8673 | SmallVectorImpl<SDValue>&Results, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8674 | SelectionDAG &DAG) const { |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8675 | DebugLoc dl = N->getDebugLoc(); |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 8676 | switch (N->getOpcode()) { |
Duncan Sands | ed294c4 | 2008-10-20 15:56:33 +0000 | [diff] [blame] | 8677 | default: |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8678 | assert(false && "Do not know how to custom type legalize this operation!"); |
| 8679 | return; |
| 8680 | case ISD::FP_TO_SINT: { |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 8681 | std::pair<SDValue,SDValue> Vals = |
| 8682 | FP_TO_INTHelper(SDValue(N, 0), DAG, true); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8683 | SDValue FIST = Vals.first, StackSlot = Vals.second; |
| 8684 | if (FIST.getNode() != 0) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8685 | EVT VT = N->getValueType(0); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8686 | // Return a load from the stack slot. |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 8687 | Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot, |
| 8688 | MachinePointerInfo(), false, false, 0)); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8689 | } |
| 8690 | return; |
| 8691 | } |
| 8692 | case ISD::READCYCLECOUNTER: { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8693 | SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8694 | SDValue TheChain = N->getOperand(0); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8695 | SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8696 | SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32, |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 8697 | rd.getValue(1)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8698 | SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32, |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8699 | eax.getValue(2)); |
| 8700 | // Use a buildpair to merge the two 32-bit values into a 64-bit one. |
| 8701 | SDValue Ops[] = { eax, edx }; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8702 | Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2)); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8703 | Results.push_back(edx.getValue(1)); |
| 8704 | return; |
| 8705 | } |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 8706 | case ISD::ATOMIC_CMP_SWAP: { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8707 | EVT T = N->getValueType(0); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8708 | assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap"); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8709 | SDValue cpInL, cpInH; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8710 | cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2), |
| 8711 | DAG.getConstant(0, MVT::i32)); |
| 8712 | cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2), |
| 8713 | DAG.getConstant(1, MVT::i32)); |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 8714 | cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue()); |
| 8715 | cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH, |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8716 | cpInL.getValue(1)); |
| 8717 | SDValue swapInL, swapInH; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8718 | swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3), |
| 8719 | DAG.getConstant(0, MVT::i32)); |
| 8720 | swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3), |
| 8721 | DAG.getConstant(1, MVT::i32)); |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 8722 | swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL, |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8723 | cpInH.getValue(1)); |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 8724 | swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH, |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8725 | swapInL.getValue(1)); |
| 8726 | SDValue Ops[] = { swapInH.getValue(0), |
| 8727 | N->getOperand(1), |
| 8728 | swapInH.getValue(1) }; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8729 | SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag); |
Andrew Trick | 1a2cf3b | 2010-10-11 19:02:04 +0000 | [diff] [blame] | 8730 | MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand(); |
| 8731 | SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys, |
| 8732 | Ops, 3, T, MMO); |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 8733 | SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8734 | MVT::i32, Result.getValue(1)); |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 8735 | SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8736 | MVT::i32, cpOutL.getValue(2)); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8737 | SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)}; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8738 | Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2)); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8739 | Results.push_back(cpOutH.getValue(1)); |
| 8740 | return; |
| 8741 | } |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 8742 | case ISD::ATOMIC_LOAD_ADD: |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8743 | ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG); |
| 8744 | return; |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 8745 | case ISD::ATOMIC_LOAD_AND: |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8746 | ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG); |
| 8747 | return; |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 8748 | case ISD::ATOMIC_LOAD_NAND: |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8749 | ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG); |
| 8750 | return; |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 8751 | case ISD::ATOMIC_LOAD_OR: |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8752 | ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG); |
| 8753 | return; |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 8754 | case ISD::ATOMIC_LOAD_SUB: |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8755 | ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG); |
| 8756 | return; |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 8757 | case ISD::ATOMIC_LOAD_XOR: |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8758 | ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG); |
| 8759 | return; |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 8760 | case ISD::ATOMIC_SWAP: |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8761 | ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG); |
| 8762 | return; |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 8763 | } |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8764 | } |
| 8765 | |
Evan Cheng | 7226158 | 2005-12-20 06:22:03 +0000 | [diff] [blame] | 8766 | const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const { |
| 8767 | switch (Opcode) { |
| 8768 | default: return NULL; |
Evan Cheng | 18efe26 | 2007-12-14 02:13:44 +0000 | [diff] [blame] | 8769 | case X86ISD::BSF: return "X86ISD::BSF"; |
| 8770 | case X86ISD::BSR: return "X86ISD::BSR"; |
Evan Cheng | e341316 | 2006-01-09 18:33:28 +0000 | [diff] [blame] | 8771 | case X86ISD::SHLD: return "X86ISD::SHLD"; |
| 8772 | case X86ISD::SHRD: return "X86ISD::SHRD"; |
Evan Cheng | ef6ffb1 | 2006-01-31 03:14:29 +0000 | [diff] [blame] | 8773 | case X86ISD::FAND: return "X86ISD::FAND"; |
Evan Cheng | 68c47cb | 2007-01-05 07:55:56 +0000 | [diff] [blame] | 8774 | case X86ISD::FOR: return "X86ISD::FOR"; |
Evan Cheng | 223547a | 2006-01-31 22:28:30 +0000 | [diff] [blame] | 8775 | case X86ISD::FXOR: return "X86ISD::FXOR"; |
Evan Cheng | 68c47cb | 2007-01-05 07:55:56 +0000 | [diff] [blame] | 8776 | case X86ISD::FSRL: return "X86ISD::FSRL"; |
Evan Cheng | a3195e8 | 2006-01-12 22:54:21 +0000 | [diff] [blame] | 8777 | case X86ISD::FILD: return "X86ISD::FILD"; |
Evan Cheng | e3de85b | 2006-02-04 02:20:30 +0000 | [diff] [blame] | 8778 | case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG"; |
Evan Cheng | 7226158 | 2005-12-20 06:22:03 +0000 | [diff] [blame] | 8779 | case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM"; |
| 8780 | case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM"; |
| 8781 | case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM"; |
Evan Cheng | b077b84 | 2005-12-21 02:39:21 +0000 | [diff] [blame] | 8782 | case X86ISD::FLD: return "X86ISD::FLD"; |
Evan Cheng | d90eb7f | 2006-01-05 00:27:02 +0000 | [diff] [blame] | 8783 | case X86ISD::FST: return "X86ISD::FST"; |
Evan Cheng | 7226158 | 2005-12-20 06:22:03 +0000 | [diff] [blame] | 8784 | case X86ISD::CALL: return "X86ISD::CALL"; |
Evan Cheng | 7226158 | 2005-12-20 06:22:03 +0000 | [diff] [blame] | 8785 | case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG"; |
Dan Gohman | c7a37d4 | 2008-12-23 22:45:23 +0000 | [diff] [blame] | 8786 | case X86ISD::BT: return "X86ISD::BT"; |
Evan Cheng | 7226158 | 2005-12-20 06:22:03 +0000 | [diff] [blame] | 8787 | case X86ISD::CMP: return "X86ISD::CMP"; |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 8788 | case X86ISD::COMI: return "X86ISD::COMI"; |
| 8789 | case X86ISD::UCOMI: return "X86ISD::UCOMI"; |
Evan Cheng | d5781fc | 2005-12-21 20:21:51 +0000 | [diff] [blame] | 8790 | case X86ISD::SETCC: return "X86ISD::SETCC"; |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 8791 | case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY"; |
Evan Cheng | 7226158 | 2005-12-20 06:22:03 +0000 | [diff] [blame] | 8792 | case X86ISD::CMOV: return "X86ISD::CMOV"; |
| 8793 | case X86ISD::BRCOND: return "X86ISD::BRCOND"; |
Evan Cheng | b077b84 | 2005-12-21 02:39:21 +0000 | [diff] [blame] | 8794 | case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG"; |
Evan Cheng | 8df346b | 2006-03-04 01:12:00 +0000 | [diff] [blame] | 8795 | case X86ISD::REP_STOS: return "X86ISD::REP_STOS"; |
| 8796 | case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS"; |
Evan Cheng | 7ccced6 | 2006-02-18 00:15:05 +0000 | [diff] [blame] | 8797 | case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg"; |
Evan Cheng | 020d2e8 | 2006-02-23 20:41:18 +0000 | [diff] [blame] | 8798 | case X86ISD::Wrapper: return "X86ISD::Wrapper"; |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 8799 | case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP"; |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 8800 | case X86ISD::PEXTRB: return "X86ISD::PEXTRB"; |
Evan Cheng | b067a1e | 2006-03-31 19:22:53 +0000 | [diff] [blame] | 8801 | case X86ISD::PEXTRW: return "X86ISD::PEXTRW"; |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 8802 | case X86ISD::INSERTPS: return "X86ISD::INSERTPS"; |
| 8803 | case X86ISD::PINSRB: return "X86ISD::PINSRB"; |
Evan Cheng | 653159f | 2006-03-31 21:55:24 +0000 | [diff] [blame] | 8804 | case X86ISD::PINSRW: return "X86ISD::PINSRW"; |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 8805 | case X86ISD::PSHUFB: return "X86ISD::PSHUFB"; |
Evan Cheng | 8ca2932 | 2006-11-10 21:43:37 +0000 | [diff] [blame] | 8806 | case X86ISD::FMAX: return "X86ISD::FMAX"; |
| 8807 | case X86ISD::FMIN: return "X86ISD::FMIN"; |
Dan Gohman | 2038252 | 2007-07-10 00:05:58 +0000 | [diff] [blame] | 8808 | case X86ISD::FRSQRT: return "X86ISD::FRSQRT"; |
| 8809 | case X86ISD::FRCP: return "X86ISD::FRCP"; |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 8810 | case X86ISD::TLSADDR: return "X86ISD::TLSADDR"; |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 8811 | case X86ISD::TLSCALL: return "X86ISD::TLSCALL"; |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 8812 | case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN"; |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 8813 | case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN"; |
Anton Korobeynikov | 45b22fa | 2007-11-16 01:31:51 +0000 | [diff] [blame] | 8814 | case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m"; |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 8815 | case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG"; |
| 8816 | case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG"; |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 8817 | case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG"; |
| 8818 | case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG"; |
| 8819 | case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG"; |
| 8820 | case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG"; |
| 8821 | case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG"; |
| 8822 | case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG"; |
Evan Cheng | d880b97 | 2008-05-09 21:53:03 +0000 | [diff] [blame] | 8823 | case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL"; |
| 8824 | case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD"; |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 8825 | case X86ISD::VSHL: return "X86ISD::VSHL"; |
| 8826 | case X86ISD::VSRL: return "X86ISD::VSRL"; |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 8827 | case X86ISD::CMPPD: return "X86ISD::CMPPD"; |
| 8828 | case X86ISD::CMPPS: return "X86ISD::CMPPS"; |
| 8829 | case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB"; |
| 8830 | case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW"; |
| 8831 | case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD"; |
| 8832 | case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ"; |
| 8833 | case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB"; |
| 8834 | case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW"; |
| 8835 | case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD"; |
| 8836 | case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ"; |
Bill Wendling | ab55ebd | 2008-12-12 00:56:36 +0000 | [diff] [blame] | 8837 | case X86ISD::ADD: return "X86ISD::ADD"; |
| 8838 | case X86ISD::SUB: return "X86ISD::SUB"; |
Bill Wendling | d350e02 | 2008-12-12 21:15:41 +0000 | [diff] [blame] | 8839 | case X86ISD::SMUL: return "X86ISD::SMUL"; |
| 8840 | case X86ISD::UMUL: return "X86ISD::UMUL"; |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 8841 | case X86ISD::INC: return "X86ISD::INC"; |
| 8842 | case X86ISD::DEC: return "X86ISD::DEC"; |
Dan Gohman | e220c4b | 2009-09-18 19:59:53 +0000 | [diff] [blame] | 8843 | case X86ISD::OR: return "X86ISD::OR"; |
| 8844 | case X86ISD::XOR: return "X86ISD::XOR"; |
| 8845 | case X86ISD::AND: return "X86ISD::AND"; |
Evan Cheng | 73f24c9 | 2009-03-30 21:36:47 +0000 | [diff] [blame] | 8846 | case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM"; |
Eric Christopher | 71c6753 | 2009-07-29 00:28:05 +0000 | [diff] [blame] | 8847 | case X86ISD::PTEST: return "X86ISD::PTEST"; |
Bruno Cardoso Lopes | 045573c | 2010-08-10 23:25:42 +0000 | [diff] [blame] | 8848 | case X86ISD::TESTP: return "X86ISD::TESTP"; |
Bruno Cardoso Lopes | 3157ef1 | 2010-08-20 22:55:05 +0000 | [diff] [blame] | 8849 | case X86ISD::PALIGN: return "X86ISD::PALIGN"; |
| 8850 | case X86ISD::PSHUFD: return "X86ISD::PSHUFD"; |
| 8851 | case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW"; |
| 8852 | case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD"; |
| 8853 | case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW"; |
| 8854 | case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD"; |
| 8855 | case X86ISD::SHUFPS: return "X86ISD::SHUFPS"; |
| 8856 | case X86ISD::SHUFPD: return "X86ISD::SHUFPD"; |
| 8857 | case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS"; |
Bruno Cardoso Lopes | 3157ef1 | 2010-08-20 22:55:05 +0000 | [diff] [blame] | 8858 | case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD"; |
Bruno Cardoso Lopes | f2db5b4 | 2010-08-31 21:15:21 +0000 | [diff] [blame] | 8859 | case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS"; |
Bruno Cardoso Lopes | 3157ef1 | 2010-08-20 22:55:05 +0000 | [diff] [blame] | 8860 | case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD"; |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 8861 | case X86ISD::MOVLPS: return "X86ISD::MOVLPS"; |
| 8862 | case X86ISD::MOVLPD: return "X86ISD::MOVLPD"; |
Bruno Cardoso Lopes | 3157ef1 | 2010-08-20 22:55:05 +0000 | [diff] [blame] | 8863 | case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP"; |
| 8864 | case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP"; |
| 8865 | case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP"; |
| 8866 | case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD"; |
| 8867 | case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD"; |
| 8868 | case X86ISD::MOVSD: return "X86ISD::MOVSD"; |
| 8869 | case X86ISD::MOVSS: return "X86ISD::MOVSS"; |
| 8870 | case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS"; |
| 8871 | case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD"; |
| 8872 | case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS"; |
| 8873 | case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD"; |
| 8874 | case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW"; |
| 8875 | case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD"; |
| 8876 | case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ"; |
| 8877 | case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ"; |
| 8878 | case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW"; |
| 8879 | case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD"; |
| 8880 | case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ"; |
| 8881 | case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ"; |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 8882 | case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS"; |
Dan Gohman | 320afb8 | 2010-10-12 18:00:49 +0000 | [diff] [blame] | 8883 | case X86ISD::VAARG_64: return "X86ISD::VAARG_64"; |
Michael J. Spencer | e9c253e | 2010-10-21 01:41:01 +0000 | [diff] [blame] | 8884 | case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA"; |
Evan Cheng | 7226158 | 2005-12-20 06:22:03 +0000 | [diff] [blame] | 8885 | } |
| 8886 | } |
Evan Cheng | 3a03ebb | 2005-12-21 23:05:39 +0000 | [diff] [blame] | 8887 | |
Chris Lattner | c9addb7 | 2007-03-30 23:15:24 +0000 | [diff] [blame] | 8888 | // isLegalAddressingMode - Return true if the addressing mode represented |
| 8889 | // by AM is legal for this target, for a load/store of the specified type. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8890 | bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM, |
Chris Lattner | c9addb7 | 2007-03-30 23:15:24 +0000 | [diff] [blame] | 8891 | const Type *Ty) const { |
| 8892 | // X86 supports extremely general addressing modes. |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 8893 | CodeModel::Model M = getTargetMachine().getCodeModel(); |
Dan Gohman | 92b651f | 2010-08-24 15:55:12 +0000 | [diff] [blame] | 8894 | Reloc::Model R = getTargetMachine().getRelocationModel(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8895 | |
Chris Lattner | c9addb7 | 2007-03-30 23:15:24 +0000 | [diff] [blame] | 8896 | // X86 allows a sign-extended 32-bit immediate field as a displacement. |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 8897 | if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL)) |
Chris Lattner | c9addb7 | 2007-03-30 23:15:24 +0000 | [diff] [blame] | 8898 | return false; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8899 | |
Chris Lattner | c9addb7 | 2007-03-30 23:15:24 +0000 | [diff] [blame] | 8900 | if (AM.BaseGV) { |
Chris Lattner | dfed413 | 2009-07-10 07:38:24 +0000 | [diff] [blame] | 8901 | unsigned GVFlags = |
| 8902 | Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine()); |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 8903 | |
Chris Lattner | dfed413 | 2009-07-10 07:38:24 +0000 | [diff] [blame] | 8904 | // If a reference to this global requires an extra load, we can't fold it. |
| 8905 | if (isGlobalStubReference(GVFlags)) |
Chris Lattner | c9addb7 | 2007-03-30 23:15:24 +0000 | [diff] [blame] | 8906 | return false; |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 8907 | |
Chris Lattner | dfed413 | 2009-07-10 07:38:24 +0000 | [diff] [blame] | 8908 | // If BaseGV requires a register for the PIC base, we cannot also have a |
| 8909 | // BaseReg specified. |
| 8910 | if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags)) |
Dale Johannesen | 203af58 | 2008-12-05 21:47:27 +0000 | [diff] [blame] | 8911 | return false; |
Evan Cheng | 5278784 | 2007-08-01 23:46:47 +0000 | [diff] [blame] | 8912 | |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 8913 | // If lower 4G is not available, then we must use rip-relative addressing. |
Dan Gohman | 92b651f | 2010-08-24 15:55:12 +0000 | [diff] [blame] | 8914 | if ((M != CodeModel::Small || R != Reloc::Static) && |
| 8915 | Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1)) |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 8916 | return false; |
Chris Lattner | c9addb7 | 2007-03-30 23:15:24 +0000 | [diff] [blame] | 8917 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8918 | |
Chris Lattner | c9addb7 | 2007-03-30 23:15:24 +0000 | [diff] [blame] | 8919 | switch (AM.Scale) { |
| 8920 | case 0: |
| 8921 | case 1: |
| 8922 | case 2: |
| 8923 | case 4: |
| 8924 | case 8: |
| 8925 | // These scales always work. |
| 8926 | break; |
| 8927 | case 3: |
| 8928 | case 5: |
| 8929 | case 9: |
| 8930 | // These scales are formed with basereg+scalereg. Only accept if there is |
| 8931 | // no basereg yet. |
| 8932 | if (AM.HasBaseReg) |
| 8933 | return false; |
| 8934 | break; |
| 8935 | default: // Other stuff never works. |
| 8936 | return false; |
| 8937 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8938 | |
Chris Lattner | c9addb7 | 2007-03-30 23:15:24 +0000 | [diff] [blame] | 8939 | return true; |
| 8940 | } |
| 8941 | |
| 8942 | |
Evan Cheng | 2bd122c | 2007-10-26 01:56:11 +0000 | [diff] [blame] | 8943 | bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const { |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 8944 | if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy()) |
Evan Cheng | 2bd122c | 2007-10-26 01:56:11 +0000 | [diff] [blame] | 8945 | return false; |
Evan Cheng | e127a73 | 2007-10-29 07:57:50 +0000 | [diff] [blame] | 8946 | unsigned NumBits1 = Ty1->getPrimitiveSizeInBits(); |
| 8947 | unsigned NumBits2 = Ty2->getPrimitiveSizeInBits(); |
Evan Cheng | 260e07e | 2008-03-20 02:18:41 +0000 | [diff] [blame] | 8948 | if (NumBits1 <= NumBits2) |
Evan Cheng | e127a73 | 2007-10-29 07:57:50 +0000 | [diff] [blame] | 8949 | return false; |
Dan Gohman | 377fbc0 | 2010-02-25 03:04:36 +0000 | [diff] [blame] | 8950 | return true; |
Evan Cheng | 2bd122c | 2007-10-26 01:56:11 +0000 | [diff] [blame] | 8951 | } |
| 8952 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8953 | bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 8954 | if (!VT1.isInteger() || !VT2.isInteger()) |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 8955 | return false; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 8956 | unsigned NumBits1 = VT1.getSizeInBits(); |
| 8957 | unsigned NumBits2 = VT2.getSizeInBits(); |
Evan Cheng | 260e07e | 2008-03-20 02:18:41 +0000 | [diff] [blame] | 8958 | if (NumBits1 <= NumBits2) |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 8959 | return false; |
Dan Gohman | 377fbc0 | 2010-02-25 03:04:36 +0000 | [diff] [blame] | 8960 | return true; |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 8961 | } |
Evan Cheng | 2bd122c | 2007-10-26 01:56:11 +0000 | [diff] [blame] | 8962 | |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 8963 | bool X86TargetLowering::isZExtFree(const Type *Ty1, const Type *Ty2) const { |
Dan Gohman | 349ba49 | 2009-04-09 02:06:09 +0000 | [diff] [blame] | 8964 | // x86-64 implicitly zero-extends 32-bit results in 64-bit registers. |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 8965 | return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit(); |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 8966 | } |
| 8967 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8968 | bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const { |
Dan Gohman | 349ba49 | 2009-04-09 02:06:09 +0000 | [diff] [blame] | 8969 | // x86-64 implicitly zero-extends 32-bit results in 64-bit registers. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8970 | return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit(); |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 8971 | } |
| 8972 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8973 | bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const { |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 8974 | // i16 instructions are longer (0x66 prefix) and potentially slower. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8975 | return !(VT1 == MVT::i32 && VT2 == MVT::i16); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 8976 | } |
| 8977 | |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 8978 | /// isShuffleMaskLegal - Targets can use this to indicate that they only |
| 8979 | /// support *some* VECTOR_SHUFFLE operations, those with specific masks. |
| 8980 | /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values |
| 8981 | /// are assumed to be legal. |
| 8982 | bool |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 8983 | X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8984 | EVT VT) const { |
Eric Christopher | cff6f85 | 2010-04-15 01:40:20 +0000 | [diff] [blame] | 8985 | // Very little shuffling can be done for 64-bit vectors right now. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8986 | if (VT.getSizeInBits() == 64) |
Eric Christopher | cff6f85 | 2010-04-15 01:40:20 +0000 | [diff] [blame] | 8987 | return isPALIGNRMask(M, VT, Subtarget->hasSSSE3()); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8988 | |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 8989 | // FIXME: pshufb, blends, shifts. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8990 | return (VT.getVectorNumElements() == 2 || |
| 8991 | ShuffleVectorSDNode::isSplatMask(&M[0], VT) || |
| 8992 | isMOVLMask(M, VT) || |
| 8993 | isSHUFPMask(M, VT) || |
| 8994 | isPSHUFDMask(M, VT) || |
| 8995 | isPSHUFHWMask(M, VT) || |
| 8996 | isPSHUFLWMask(M, VT) || |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 8997 | isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) || |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8998 | isUNPCKLMask(M, VT) || |
| 8999 | isUNPCKHMask(M, VT) || |
| 9000 | isUNPCKL_v_undef_Mask(M, VT) || |
| 9001 | isUNPCKH_v_undef_Mask(M, VT)); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9002 | } |
| 9003 | |
Dan Gohman | 7d8143f | 2008-04-09 20:09:42 +0000 | [diff] [blame] | 9004 | bool |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 9005 | X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 9006 | EVT VT) const { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 9007 | unsigned NumElts = VT.getVectorNumElements(); |
| 9008 | // FIXME: This collection of masks seems suspect. |
| 9009 | if (NumElts == 2) |
| 9010 | return true; |
| 9011 | if (NumElts == 4 && VT.getSizeInBits() == 128) { |
| 9012 | return (isMOVLMask(Mask, VT) || |
| 9013 | isCommutedMOVLMask(Mask, VT, true) || |
| 9014 | isSHUFPMask(Mask, VT) || |
| 9015 | isCommutedSHUFPMask(Mask, VT)); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9016 | } |
| 9017 | return false; |
| 9018 | } |
| 9019 | |
| 9020 | //===----------------------------------------------------------------------===// |
| 9021 | // X86 Scheduler Hooks |
| 9022 | //===----------------------------------------------------------------------===// |
| 9023 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9024 | // private utility function |
| 9025 | MachineBasicBlock * |
| 9026 | X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr, |
| 9027 | MachineBasicBlock *MBB, |
| 9028 | unsigned regOpc, |
Andrew Lenharth | 507a58a | 2008-06-14 05:48:15 +0000 | [diff] [blame] | 9029 | unsigned immOpc, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 9030 | unsigned LoadOpc, |
| 9031 | unsigned CXchgOpc, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 9032 | unsigned notOpc, |
| 9033 | unsigned EAXreg, |
| 9034 | TargetRegisterClass *RC, |
Dan Gohman | 1fdbc1d | 2009-02-07 16:15:20 +0000 | [diff] [blame] | 9035 | bool invSrc) const { |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9036 | // For the atomic bitwise operator, we generate |
| 9037 | // thisMBB: |
| 9038 | // newMBB: |
Mon P Wang | ab3e747 | 2008-05-05 22:56:23 +0000 | [diff] [blame] | 9039 | // ld t1 = [bitinstr.addr] |
| 9040 | // op t2 = t1, [bitinstr.val] |
| 9041 | // mov EAX = t1 |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9042 | // lcs dest = [bitinstr.addr], t2 [EAX is implicit] |
| 9043 | // bz newMBB |
| 9044 | // fallthrough -->nextMBB |
| 9045 | const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); |
| 9046 | const BasicBlock *LLVM_BB = MBB->getBasicBlock(); |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 9047 | MachineFunction::iterator MBBIter = MBB; |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9048 | ++MBBIter; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9049 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9050 | /// First build the CFG |
| 9051 | MachineFunction *F = MBB->getParent(); |
| 9052 | MachineBasicBlock *thisMBB = MBB; |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 9053 | MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 9054 | MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 9055 | F->insert(MBBIter, newMBB); |
| 9056 | F->insert(MBBIter, nextMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9057 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9058 | // Transfer the remainder of thisMBB and its successor edges to nextMBB. |
| 9059 | nextMBB->splice(nextMBB->begin(), thisMBB, |
| 9060 | llvm::next(MachineBasicBlock::iterator(bInstr)), |
| 9061 | thisMBB->end()); |
| 9062 | nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9063 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9064 | // Update thisMBB to fall through to newMBB |
| 9065 | thisMBB->addSuccessor(newMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9066 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9067 | // newMBB jumps to itself and fall through to nextMBB |
| 9068 | newMBB->addSuccessor(nextMBB); |
| 9069 | newMBB->addSuccessor(newMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9070 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9071 | // Insert instructions into newMBB based on incoming instruction |
Chris Lattner | ac0ed5d | 2010-07-08 22:41:28 +0000 | [diff] [blame] | 9072 | assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 && |
Bill Wendling | 51b16f4 | 2009-05-30 01:09:53 +0000 | [diff] [blame] | 9073 | "unexpected number of operands"); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9074 | DebugLoc dl = bInstr->getDebugLoc(); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9075 | MachineOperand& destOper = bInstr->getOperand(0); |
Chris Lattner | ac0ed5d | 2010-07-08 22:41:28 +0000 | [diff] [blame] | 9076 | MachineOperand* argOpers[2 + X86::AddrNumOperands]; |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9077 | int numArgs = bInstr->getNumOperands() - 1; |
| 9078 | for (int i=0; i < numArgs; ++i) |
| 9079 | argOpers[i] = &bInstr->getOperand(i+1); |
| 9080 | |
| 9081 | // x86 address has 4 operands: base, index, scale, and displacement |
Chris Lattner | ac0ed5d | 2010-07-08 22:41:28 +0000 | [diff] [blame] | 9082 | int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3] |
Rafael Espindola | a82dfca | 2009-03-27 15:26:30 +0000 | [diff] [blame] | 9083 | int valArgIndx = lastAddrIndx + 1; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9084 | |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 9085 | unsigned t1 = F->getRegInfo().createVirtualRegister(RC); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9086 | MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9087 | for (int i=0; i <= lastAddrIndx; ++i) |
| 9088 | (*MIB).addOperand(*argOpers[i]); |
Andrew Lenharth | 507a58a | 2008-06-14 05:48:15 +0000 | [diff] [blame] | 9089 | |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 9090 | unsigned tt = F->getRegInfo().createVirtualRegister(RC); |
Andrew Lenharth | 507a58a | 2008-06-14 05:48:15 +0000 | [diff] [blame] | 9091 | if (invSrc) { |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9092 | MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1); |
Andrew Lenharth | 507a58a | 2008-06-14 05:48:15 +0000 | [diff] [blame] | 9093 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9094 | else |
Andrew Lenharth | 507a58a | 2008-06-14 05:48:15 +0000 | [diff] [blame] | 9095 | tt = t1; |
| 9096 | |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 9097 | unsigned t2 = F->getRegInfo().createVirtualRegister(RC); |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 9098 | assert((argOpers[valArgIndx]->isReg() || |
| 9099 | argOpers[valArgIndx]->isImm()) && |
Dan Gohman | 014278e | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 9100 | "invalid operand"); |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 9101 | if (argOpers[valArgIndx]->isReg()) |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9102 | MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9103 | else |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9104 | MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2); |
Andrew Lenharth | 507a58a | 2008-06-14 05:48:15 +0000 | [diff] [blame] | 9105 | MIB.addReg(tt); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9106 | (*MIB).addOperand(*argOpers[valArgIndx]); |
Andrew Lenharth | 507a58a | 2008-06-14 05:48:15 +0000 | [diff] [blame] | 9107 | |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9108 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg); |
Mon P Wang | ab3e747 | 2008-05-05 22:56:23 +0000 | [diff] [blame] | 9109 | MIB.addReg(t1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9110 | |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9111 | MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc)); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9112 | for (int i=0; i <= lastAddrIndx; ++i) |
| 9113 | (*MIB).addOperand(*argOpers[i]); |
| 9114 | MIB.addReg(t2); |
Mon P Wang | f595266 | 2008-07-17 04:54:06 +0000 | [diff] [blame] | 9115 | assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand"); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 9116 | (*MIB).setMemRefs(bInstr->memoperands_begin(), |
| 9117 | bInstr->memoperands_end()); |
Mon P Wang | f595266 | 2008-07-17 04:54:06 +0000 | [diff] [blame] | 9118 | |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9119 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg()); |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 9120 | MIB.addReg(EAXreg); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9121 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9122 | // insert branch |
Chris Lattner | bd13fb6 | 2010-02-11 19:25:55 +0000 | [diff] [blame] | 9123 | BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9124 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9125 | bInstr->eraseFromParent(); // The pseudo instruction is gone now. |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9126 | return nextMBB; |
| 9127 | } |
| 9128 | |
Dale Johannesen | 1b54c7f | 2008-10-03 19:41:08 +0000 | [diff] [blame] | 9129 | // private utility function: 64 bit atomics on 32 bit host. |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9130 | MachineBasicBlock * |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9131 | X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr, |
| 9132 | MachineBasicBlock *MBB, |
| 9133 | unsigned regOpcL, |
| 9134 | unsigned regOpcH, |
| 9135 | unsigned immOpcL, |
| 9136 | unsigned immOpcH, |
Dan Gohman | 1fdbc1d | 2009-02-07 16:15:20 +0000 | [diff] [blame] | 9137 | bool invSrc) const { |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9138 | // For the atomic bitwise operator, we generate |
| 9139 | // thisMBB (instructions are in pairs, except cmpxchg8b) |
| 9140 | // ld t1,t2 = [bitinstr.addr] |
| 9141 | // newMBB: |
| 9142 | // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4) |
| 9143 | // op t5, t6 <- out1, out2, [bitinstr.val] |
Dale Johannesen | 880ae36 | 2008-10-03 22:25:52 +0000 | [diff] [blame] | 9144 | // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val]) |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9145 | // mov ECX, EBX <- t5, t6 |
| 9146 | // mov EAX, EDX <- t1, t2 |
| 9147 | // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit] |
| 9148 | // mov t3, t4 <- EAX, EDX |
| 9149 | // bz newMBB |
| 9150 | // result in out1, out2 |
| 9151 | // fallthrough -->nextMBB |
| 9152 | |
| 9153 | const TargetRegisterClass *RC = X86::GR32RegisterClass; |
| 9154 | const unsigned LoadOpc = X86::MOV32rm; |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9155 | const unsigned NotOpc = X86::NOT32r; |
| 9156 | const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); |
| 9157 | const BasicBlock *LLVM_BB = MBB->getBasicBlock(); |
| 9158 | MachineFunction::iterator MBBIter = MBB; |
| 9159 | ++MBBIter; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9160 | |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9161 | /// First build the CFG |
| 9162 | MachineFunction *F = MBB->getParent(); |
| 9163 | MachineBasicBlock *thisMBB = MBB; |
| 9164 | MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 9165 | MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 9166 | F->insert(MBBIter, newMBB); |
| 9167 | F->insert(MBBIter, nextMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9168 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9169 | // Transfer the remainder of thisMBB and its successor edges to nextMBB. |
| 9170 | nextMBB->splice(nextMBB->begin(), thisMBB, |
| 9171 | llvm::next(MachineBasicBlock::iterator(bInstr)), |
| 9172 | thisMBB->end()); |
| 9173 | nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9174 | |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9175 | // Update thisMBB to fall through to newMBB |
| 9176 | thisMBB->addSuccessor(newMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9177 | |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9178 | // newMBB jumps to itself and fall through to nextMBB |
| 9179 | newMBB->addSuccessor(nextMBB); |
| 9180 | newMBB->addSuccessor(newMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9181 | |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9182 | DebugLoc dl = bInstr->getDebugLoc(); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9183 | // Insert instructions into newMBB based on incoming instruction |
| 9184 | // There are 8 "real" operands plus 9 implicit def/uses, ignored here. |
Chris Lattner | ac0ed5d | 2010-07-08 22:41:28 +0000 | [diff] [blame] | 9185 | assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 && |
Bill Wendling | 51b16f4 | 2009-05-30 01:09:53 +0000 | [diff] [blame] | 9186 | "unexpected number of operands"); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9187 | MachineOperand& dest1Oper = bInstr->getOperand(0); |
| 9188 | MachineOperand& dest2Oper = bInstr->getOperand(1); |
Chris Lattner | ac0ed5d | 2010-07-08 22:41:28 +0000 | [diff] [blame] | 9189 | MachineOperand* argOpers[2 + X86::AddrNumOperands]; |
| 9190 | for (int i=0; i < 2 + X86::AddrNumOperands; ++i) { |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9191 | argOpers[i] = &bInstr->getOperand(i+2); |
| 9192 | |
Dan Gohman | 71ea4e5 | 2010-05-14 21:01:44 +0000 | [diff] [blame] | 9193 | // We use some of the operands multiple times, so conservatively just |
| 9194 | // clear any kill flags that might be present. |
| 9195 | if (argOpers[i]->isReg() && argOpers[i]->isUse()) |
| 9196 | argOpers[i]->setIsKill(false); |
| 9197 | } |
| 9198 | |
Evan Cheng | ad5b52f | 2010-01-08 19:14:57 +0000 | [diff] [blame] | 9199 | // x86 address has 5 operands: base, index, scale, displacement, and segment. |
Chris Lattner | ac0ed5d | 2010-07-08 22:41:28 +0000 | [diff] [blame] | 9200 | int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3] |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9201 | |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9202 | unsigned t1 = F->getRegInfo().createVirtualRegister(RC); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9203 | MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9204 | for (int i=0; i <= lastAddrIndx; ++i) |
| 9205 | (*MIB).addOperand(*argOpers[i]); |
| 9206 | unsigned t2 = F->getRegInfo().createVirtualRegister(RC); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9207 | MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2); |
Dale Johannesen | 880ae36 | 2008-10-03 22:25:52 +0000 | [diff] [blame] | 9208 | // add 4 to displacement. |
Rafael Espindola | 094fad3 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 9209 | for (int i=0; i <= lastAddrIndx-2; ++i) |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9210 | (*MIB).addOperand(*argOpers[i]); |
Dale Johannesen | 880ae36 | 2008-10-03 22:25:52 +0000 | [diff] [blame] | 9211 | MachineOperand newOp3 = *(argOpers[3]); |
| 9212 | if (newOp3.isImm()) |
| 9213 | newOp3.setImm(newOp3.getImm()+4); |
| 9214 | else |
| 9215 | newOp3.setOffset(newOp3.getOffset()+4); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9216 | (*MIB).addOperand(newOp3); |
Rafael Espindola | 094fad3 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 9217 | (*MIB).addOperand(*argOpers[lastAddrIndx]); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9218 | |
| 9219 | // t3/4 are defined later, at the bottom of the loop |
| 9220 | unsigned t3 = F->getRegInfo().createVirtualRegister(RC); |
| 9221 | unsigned t4 = F->getRegInfo().createVirtualRegister(RC); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9222 | BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg()) |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9223 | .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9224 | BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg()) |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9225 | .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB); |
| 9226 | |
Evan Cheng | 306b4ca | 2010-01-08 23:41:50 +0000 | [diff] [blame] | 9227 | // The subsequent operations should be using the destination registers of |
| 9228 | //the PHI instructions. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9229 | if (invSrc) { |
Evan Cheng | 306b4ca | 2010-01-08 23:41:50 +0000 | [diff] [blame] | 9230 | t1 = F->getRegInfo().createVirtualRegister(RC); |
| 9231 | t2 = F->getRegInfo().createVirtualRegister(RC); |
| 9232 | MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg()); |
| 9233 | MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg()); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9234 | } else { |
Evan Cheng | 306b4ca | 2010-01-08 23:41:50 +0000 | [diff] [blame] | 9235 | t1 = dest1Oper.getReg(); |
| 9236 | t2 = dest2Oper.getReg(); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9237 | } |
| 9238 | |
Rafael Espindola | a82dfca | 2009-03-27 15:26:30 +0000 | [diff] [blame] | 9239 | int valArgIndx = lastAddrIndx + 1; |
| 9240 | assert((argOpers[valArgIndx]->isReg() || |
Bill Wendling | 51b16f4 | 2009-05-30 01:09:53 +0000 | [diff] [blame] | 9241 | argOpers[valArgIndx]->isImm()) && |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9242 | "invalid operand"); |
| 9243 | unsigned t5 = F->getRegInfo().createVirtualRegister(RC); |
| 9244 | unsigned t6 = F->getRegInfo().createVirtualRegister(RC); |
Rafael Espindola | a82dfca | 2009-03-27 15:26:30 +0000 | [diff] [blame] | 9245 | if (argOpers[valArgIndx]->isReg()) |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9246 | MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9247 | else |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9248 | MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5); |
Dale Johannesen | 880ae36 | 2008-10-03 22:25:52 +0000 | [diff] [blame] | 9249 | if (regOpcL != X86::MOV32rr) |
Evan Cheng | 306b4ca | 2010-01-08 23:41:50 +0000 | [diff] [blame] | 9250 | MIB.addReg(t1); |
Rafael Espindola | a82dfca | 2009-03-27 15:26:30 +0000 | [diff] [blame] | 9251 | (*MIB).addOperand(*argOpers[valArgIndx]); |
| 9252 | assert(argOpers[valArgIndx + 1]->isReg() == |
Bill Wendling | 51b16f4 | 2009-05-30 01:09:53 +0000 | [diff] [blame] | 9253 | argOpers[valArgIndx]->isReg()); |
Rafael Espindola | a82dfca | 2009-03-27 15:26:30 +0000 | [diff] [blame] | 9254 | assert(argOpers[valArgIndx + 1]->isImm() == |
Bill Wendling | 51b16f4 | 2009-05-30 01:09:53 +0000 | [diff] [blame] | 9255 | argOpers[valArgIndx]->isImm()); |
Rafael Espindola | a82dfca | 2009-03-27 15:26:30 +0000 | [diff] [blame] | 9256 | if (argOpers[valArgIndx + 1]->isReg()) |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9257 | MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9258 | else |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9259 | MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6); |
Dale Johannesen | 880ae36 | 2008-10-03 22:25:52 +0000 | [diff] [blame] | 9260 | if (regOpcH != X86::MOV32rr) |
Evan Cheng | 306b4ca | 2010-01-08 23:41:50 +0000 | [diff] [blame] | 9261 | MIB.addReg(t2); |
Rafael Espindola | a82dfca | 2009-03-27 15:26:30 +0000 | [diff] [blame] | 9262 | (*MIB).addOperand(*argOpers[valArgIndx + 1]); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9263 | |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9264 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9265 | MIB.addReg(t1); |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9266 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9267 | MIB.addReg(t2); |
| 9268 | |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9269 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9270 | MIB.addReg(t5); |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9271 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9272 | MIB.addReg(t6); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9273 | |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9274 | MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B)); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9275 | for (int i=0; i <= lastAddrIndx; ++i) |
| 9276 | (*MIB).addOperand(*argOpers[i]); |
| 9277 | |
| 9278 | assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand"); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 9279 | (*MIB).setMemRefs(bInstr->memoperands_begin(), |
| 9280 | bInstr->memoperands_end()); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9281 | |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9282 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9283 | MIB.addReg(X86::EAX); |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9284 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9285 | MIB.addReg(X86::EDX); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9286 | |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9287 | // insert branch |
Chris Lattner | bd13fb6 | 2010-02-11 19:25:55 +0000 | [diff] [blame] | 9288 | BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9289 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9290 | bInstr->eraseFromParent(); // The pseudo instruction is gone now. |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9291 | return nextMBB; |
| 9292 | } |
| 9293 | |
| 9294 | // private utility function |
| 9295 | MachineBasicBlock * |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9296 | X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr, |
| 9297 | MachineBasicBlock *MBB, |
Dan Gohman | 1fdbc1d | 2009-02-07 16:15:20 +0000 | [diff] [blame] | 9298 | unsigned cmovOpc) const { |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9299 | // For the atomic min/max operator, we generate |
| 9300 | // thisMBB: |
| 9301 | // newMBB: |
Mon P Wang | ab3e747 | 2008-05-05 22:56:23 +0000 | [diff] [blame] | 9302 | // ld t1 = [min/max.addr] |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9303 | // mov t2 = [min/max.val] |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9304 | // cmp t1, t2 |
| 9305 | // cmov[cond] t2 = t1 |
Mon P Wang | ab3e747 | 2008-05-05 22:56:23 +0000 | [diff] [blame] | 9306 | // mov EAX = t1 |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9307 | // lcs dest = [bitinstr.addr], t2 [EAX is implicit] |
| 9308 | // bz newMBB |
| 9309 | // fallthrough -->nextMBB |
| 9310 | // |
| 9311 | const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); |
| 9312 | const BasicBlock *LLVM_BB = MBB->getBasicBlock(); |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 9313 | MachineFunction::iterator MBBIter = MBB; |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9314 | ++MBBIter; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9315 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9316 | /// First build the CFG |
| 9317 | MachineFunction *F = MBB->getParent(); |
| 9318 | MachineBasicBlock *thisMBB = MBB; |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 9319 | MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 9320 | MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 9321 | F->insert(MBBIter, newMBB); |
| 9322 | F->insert(MBBIter, nextMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9323 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9324 | // Transfer the remainder of thisMBB and its successor edges to nextMBB. |
| 9325 | nextMBB->splice(nextMBB->begin(), thisMBB, |
| 9326 | llvm::next(MachineBasicBlock::iterator(mInstr)), |
| 9327 | thisMBB->end()); |
| 9328 | nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9329 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9330 | // Update thisMBB to fall through to newMBB |
| 9331 | thisMBB->addSuccessor(newMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9332 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9333 | // newMBB jumps to newMBB and fall through to nextMBB |
| 9334 | newMBB->addSuccessor(nextMBB); |
| 9335 | newMBB->addSuccessor(newMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9336 | |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9337 | DebugLoc dl = mInstr->getDebugLoc(); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9338 | // Insert instructions into newMBB based on incoming instruction |
Chris Lattner | ac0ed5d | 2010-07-08 22:41:28 +0000 | [diff] [blame] | 9339 | assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 && |
Bill Wendling | 51b16f4 | 2009-05-30 01:09:53 +0000 | [diff] [blame] | 9340 | "unexpected number of operands"); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9341 | MachineOperand& destOper = mInstr->getOperand(0); |
Chris Lattner | ac0ed5d | 2010-07-08 22:41:28 +0000 | [diff] [blame] | 9342 | MachineOperand* argOpers[2 + X86::AddrNumOperands]; |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9343 | int numArgs = mInstr->getNumOperands() - 1; |
| 9344 | for (int i=0; i < numArgs; ++i) |
| 9345 | argOpers[i] = &mInstr->getOperand(i+1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9346 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9347 | // x86 address has 4 operands: base, index, scale, and displacement |
Chris Lattner | ac0ed5d | 2010-07-08 22:41:28 +0000 | [diff] [blame] | 9348 | int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3] |
Rafael Espindola | a82dfca | 2009-03-27 15:26:30 +0000 | [diff] [blame] | 9349 | int valArgIndx = lastAddrIndx + 1; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9350 | |
Mon P Wang | ab3e747 | 2008-05-05 22:56:23 +0000 | [diff] [blame] | 9351 | unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9352 | MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9353 | for (int i=0; i <= lastAddrIndx; ++i) |
| 9354 | (*MIB).addOperand(*argOpers[i]); |
Mon P Wang | ab3e747 | 2008-05-05 22:56:23 +0000 | [diff] [blame] | 9355 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9356 | // We only support register and immediate values |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 9357 | assert((argOpers[valArgIndx]->isReg() || |
| 9358 | argOpers[valArgIndx]->isImm()) && |
Dan Gohman | 014278e | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 9359 | "invalid operand"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9360 | |
| 9361 | unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass); |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 9362 | if (argOpers[valArgIndx]->isReg()) |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9363 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9364 | else |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9365 | MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9366 | (*MIB).addOperand(*argOpers[valArgIndx]); |
| 9367 | |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9368 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX); |
Mon P Wang | ab3e747 | 2008-05-05 22:56:23 +0000 | [diff] [blame] | 9369 | MIB.addReg(t1); |
| 9370 | |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9371 | MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr)); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9372 | MIB.addReg(t1); |
| 9373 | MIB.addReg(t2); |
| 9374 | |
| 9375 | // Generate movc |
| 9376 | unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9377 | MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9378 | MIB.addReg(t2); |
| 9379 | MIB.addReg(t1); |
| 9380 | |
| 9381 | // Cmp and exchange if none has modified the memory location |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9382 | MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32)); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9383 | for (int i=0; i <= lastAddrIndx; ++i) |
| 9384 | (*MIB).addOperand(*argOpers[i]); |
| 9385 | MIB.addReg(t3); |
Mon P Wang | f595266 | 2008-07-17 04:54:06 +0000 | [diff] [blame] | 9386 | assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand"); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 9387 | (*MIB).setMemRefs(mInstr->memoperands_begin(), |
| 9388 | mInstr->memoperands_end()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9389 | |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9390 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg()); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9391 | MIB.addReg(X86::EAX); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9392 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9393 | // insert branch |
Chris Lattner | bd13fb6 | 2010-02-11 19:25:55 +0000 | [diff] [blame] | 9394 | BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9395 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9396 | mInstr->eraseFromParent(); // The pseudo instruction is gone now. |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9397 | return nextMBB; |
| 9398 | } |
| 9399 | |
Eric Christopher | f83a5de | 2009-08-27 18:08:16 +0000 | [diff] [blame] | 9400 | // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8 |
Bruno Cardoso Lopes | 98f9856 | 2010-07-30 19:54:33 +0000 | [diff] [blame] | 9401 | // or XMM0_V32I8 in AVX all of this code can be replaced with that |
| 9402 | // in the .td file. |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 9403 | MachineBasicBlock * |
Eric Christopher | b120ab4 | 2009-08-18 22:50:32 +0000 | [diff] [blame] | 9404 | X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB, |
Daniel Dunbar | a279bc3 | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 9405 | unsigned numArgs, bool memArg) const { |
Eric Christopher | b120ab4 | 2009-08-18 22:50:32 +0000 | [diff] [blame] | 9406 | |
Bruno Cardoso Lopes | 98f9856 | 2010-07-30 19:54:33 +0000 | [diff] [blame] | 9407 | assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) && |
| 9408 | "Target must have SSE4.2 or AVX features enabled"); |
| 9409 | |
Eric Christopher | b120ab4 | 2009-08-18 22:50:32 +0000 | [diff] [blame] | 9410 | DebugLoc dl = MI->getDebugLoc(); |
| 9411 | const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); |
| 9412 | |
| 9413 | unsigned Opc; |
Bruno Cardoso Lopes | 98f9856 | 2010-07-30 19:54:33 +0000 | [diff] [blame] | 9414 | |
| 9415 | if (!Subtarget->hasAVX()) { |
| 9416 | if (memArg) |
| 9417 | Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm; |
| 9418 | else |
| 9419 | Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr; |
| 9420 | } else { |
| 9421 | if (memArg) |
| 9422 | Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm; |
| 9423 | else |
| 9424 | Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr; |
| 9425 | } |
Eric Christopher | b120ab4 | 2009-08-18 22:50:32 +0000 | [diff] [blame] | 9426 | |
| 9427 | MachineInstrBuilder MIB = BuildMI(BB, dl, TII->get(Opc)); |
| 9428 | |
| 9429 | for (unsigned i = 0; i < numArgs; ++i) { |
| 9430 | MachineOperand &Op = MI->getOperand(i+1); |
| 9431 | |
| 9432 | if (!(Op.isReg() && Op.isImplicit())) |
| 9433 | MIB.addOperand(Op); |
| 9434 | } |
| 9435 | |
| 9436 | BuildMI(BB, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg()) |
| 9437 | .addReg(X86::XMM0); |
| 9438 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9439 | MI->eraseFromParent(); |
Eric Christopher | b120ab4 | 2009-08-18 22:50:32 +0000 | [diff] [blame] | 9440 | |
| 9441 | return BB; |
| 9442 | } |
| 9443 | |
| 9444 | MachineBasicBlock * |
Dan Gohman | 320afb8 | 2010-10-12 18:00:49 +0000 | [diff] [blame] | 9445 | X86TargetLowering::EmitVAARG64WithCustomInserter( |
| 9446 | MachineInstr *MI, |
| 9447 | MachineBasicBlock *MBB) const { |
| 9448 | // Emit va_arg instruction on X86-64. |
| 9449 | |
| 9450 | // Operands to this pseudo-instruction: |
| 9451 | // 0 ) Output : destination address (reg) |
| 9452 | // 1-5) Input : va_list address (addr, i64mem) |
| 9453 | // 6 ) ArgSize : Size (in bytes) of vararg type |
| 9454 | // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset |
| 9455 | // 8 ) Align : Alignment of type |
| 9456 | // 9 ) EFLAGS (implicit-def) |
| 9457 | |
| 9458 | assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!"); |
| 9459 | assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands"); |
| 9460 | |
| 9461 | unsigned DestReg = MI->getOperand(0).getReg(); |
| 9462 | MachineOperand &Base = MI->getOperand(1); |
| 9463 | MachineOperand &Scale = MI->getOperand(2); |
| 9464 | MachineOperand &Index = MI->getOperand(3); |
| 9465 | MachineOperand &Disp = MI->getOperand(4); |
| 9466 | MachineOperand &Segment = MI->getOperand(5); |
| 9467 | unsigned ArgSize = MI->getOperand(6).getImm(); |
| 9468 | unsigned ArgMode = MI->getOperand(7).getImm(); |
| 9469 | unsigned Align = MI->getOperand(8).getImm(); |
| 9470 | |
| 9471 | // Memory Reference |
| 9472 | assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand"); |
| 9473 | MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin(); |
| 9474 | MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end(); |
| 9475 | |
| 9476 | // Machine Information |
| 9477 | const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); |
| 9478 | MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo(); |
| 9479 | const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64); |
| 9480 | const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32); |
| 9481 | DebugLoc DL = MI->getDebugLoc(); |
| 9482 | |
| 9483 | // struct va_list { |
| 9484 | // i32 gp_offset |
| 9485 | // i32 fp_offset |
| 9486 | // i64 overflow_area (address) |
| 9487 | // i64 reg_save_area (address) |
| 9488 | // } |
| 9489 | // sizeof(va_list) = 24 |
| 9490 | // alignment(va_list) = 8 |
| 9491 | |
| 9492 | unsigned TotalNumIntRegs = 6; |
| 9493 | unsigned TotalNumXMMRegs = 8; |
| 9494 | bool UseGPOffset = (ArgMode == 1); |
| 9495 | bool UseFPOffset = (ArgMode == 2); |
| 9496 | unsigned MaxOffset = TotalNumIntRegs * 8 + |
| 9497 | (UseFPOffset ? TotalNumXMMRegs * 16 : 0); |
| 9498 | |
| 9499 | /* Align ArgSize to a multiple of 8 */ |
| 9500 | unsigned ArgSizeA8 = (ArgSize + 7) & ~7; |
| 9501 | bool NeedsAlign = (Align > 8); |
| 9502 | |
| 9503 | MachineBasicBlock *thisMBB = MBB; |
| 9504 | MachineBasicBlock *overflowMBB; |
| 9505 | MachineBasicBlock *offsetMBB; |
| 9506 | MachineBasicBlock *endMBB; |
| 9507 | |
| 9508 | unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB |
| 9509 | unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB |
| 9510 | unsigned OffsetReg = 0; |
| 9511 | |
| 9512 | if (!UseGPOffset && !UseFPOffset) { |
| 9513 | // If we only pull from the overflow region, we don't create a branch. |
| 9514 | // We don't need to alter control flow. |
| 9515 | OffsetDestReg = 0; // unused |
| 9516 | OverflowDestReg = DestReg; |
| 9517 | |
| 9518 | offsetMBB = NULL; |
| 9519 | overflowMBB = thisMBB; |
| 9520 | endMBB = thisMBB; |
| 9521 | } else { |
| 9522 | // First emit code to check if gp_offset (or fp_offset) is below the bound. |
| 9523 | // If so, pull the argument from reg_save_area. (branch to offsetMBB) |
| 9524 | // If not, pull from overflow_area. (branch to overflowMBB) |
| 9525 | // |
| 9526 | // thisMBB |
| 9527 | // | . |
| 9528 | // | . |
| 9529 | // offsetMBB overflowMBB |
| 9530 | // | . |
| 9531 | // | . |
| 9532 | // endMBB |
| 9533 | |
| 9534 | // Registers for the PHI in endMBB |
| 9535 | OffsetDestReg = MRI.createVirtualRegister(AddrRegClass); |
| 9536 | OverflowDestReg = MRI.createVirtualRegister(AddrRegClass); |
| 9537 | |
| 9538 | const BasicBlock *LLVM_BB = MBB->getBasicBlock(); |
| 9539 | MachineFunction *MF = MBB->getParent(); |
| 9540 | overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB); |
| 9541 | offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB); |
| 9542 | endMBB = MF->CreateMachineBasicBlock(LLVM_BB); |
| 9543 | |
| 9544 | MachineFunction::iterator MBBIter = MBB; |
| 9545 | ++MBBIter; |
| 9546 | |
| 9547 | // Insert the new basic blocks |
| 9548 | MF->insert(MBBIter, offsetMBB); |
| 9549 | MF->insert(MBBIter, overflowMBB); |
| 9550 | MF->insert(MBBIter, endMBB); |
| 9551 | |
| 9552 | // Transfer the remainder of MBB and its successor edges to endMBB. |
| 9553 | endMBB->splice(endMBB->begin(), thisMBB, |
| 9554 | llvm::next(MachineBasicBlock::iterator(MI)), |
| 9555 | thisMBB->end()); |
| 9556 | endMBB->transferSuccessorsAndUpdatePHIs(thisMBB); |
| 9557 | |
| 9558 | // Make offsetMBB and overflowMBB successors of thisMBB |
| 9559 | thisMBB->addSuccessor(offsetMBB); |
| 9560 | thisMBB->addSuccessor(overflowMBB); |
| 9561 | |
| 9562 | // endMBB is a successor of both offsetMBB and overflowMBB |
| 9563 | offsetMBB->addSuccessor(endMBB); |
| 9564 | overflowMBB->addSuccessor(endMBB); |
| 9565 | |
| 9566 | // Load the offset value into a register |
| 9567 | OffsetReg = MRI.createVirtualRegister(OffsetRegClass); |
| 9568 | BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg) |
| 9569 | .addOperand(Base) |
| 9570 | .addOperand(Scale) |
| 9571 | .addOperand(Index) |
| 9572 | .addDisp(Disp, UseFPOffset ? 4 : 0) |
| 9573 | .addOperand(Segment) |
| 9574 | .setMemRefs(MMOBegin, MMOEnd); |
| 9575 | |
| 9576 | // Check if there is enough room left to pull this argument. |
| 9577 | BuildMI(thisMBB, DL, TII->get(X86::CMP32ri)) |
| 9578 | .addReg(OffsetReg) |
| 9579 | .addImm(MaxOffset + 8 - ArgSizeA8); |
| 9580 | |
| 9581 | // Branch to "overflowMBB" if offset >= max |
| 9582 | // Fall through to "offsetMBB" otherwise |
| 9583 | BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE))) |
| 9584 | .addMBB(overflowMBB); |
| 9585 | } |
| 9586 | |
| 9587 | // In offsetMBB, emit code to use the reg_save_area. |
| 9588 | if (offsetMBB) { |
| 9589 | assert(OffsetReg != 0); |
| 9590 | |
| 9591 | // Read the reg_save_area address. |
| 9592 | unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass); |
| 9593 | BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg) |
| 9594 | .addOperand(Base) |
| 9595 | .addOperand(Scale) |
| 9596 | .addOperand(Index) |
| 9597 | .addDisp(Disp, 16) |
| 9598 | .addOperand(Segment) |
| 9599 | .setMemRefs(MMOBegin, MMOEnd); |
| 9600 | |
| 9601 | // Zero-extend the offset |
| 9602 | unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass); |
| 9603 | BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64) |
| 9604 | .addImm(0) |
| 9605 | .addReg(OffsetReg) |
| 9606 | .addImm(X86::sub_32bit); |
| 9607 | |
| 9608 | // Add the offset to the reg_save_area to get the final address. |
| 9609 | BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg) |
| 9610 | .addReg(OffsetReg64) |
| 9611 | .addReg(RegSaveReg); |
| 9612 | |
| 9613 | // Compute the offset for the next argument |
| 9614 | unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass); |
| 9615 | BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg) |
| 9616 | .addReg(OffsetReg) |
| 9617 | .addImm(UseFPOffset ? 16 : 8); |
| 9618 | |
| 9619 | // Store it back into the va_list. |
| 9620 | BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr)) |
| 9621 | .addOperand(Base) |
| 9622 | .addOperand(Scale) |
| 9623 | .addOperand(Index) |
| 9624 | .addDisp(Disp, UseFPOffset ? 4 : 0) |
| 9625 | .addOperand(Segment) |
| 9626 | .addReg(NextOffsetReg) |
| 9627 | .setMemRefs(MMOBegin, MMOEnd); |
| 9628 | |
| 9629 | // Jump to endMBB |
| 9630 | BuildMI(offsetMBB, DL, TII->get(X86::JMP_4)) |
| 9631 | .addMBB(endMBB); |
| 9632 | } |
| 9633 | |
| 9634 | // |
| 9635 | // Emit code to use overflow area |
| 9636 | // |
| 9637 | |
| 9638 | // Load the overflow_area address into a register. |
| 9639 | unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass); |
| 9640 | BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg) |
| 9641 | .addOperand(Base) |
| 9642 | .addOperand(Scale) |
| 9643 | .addOperand(Index) |
| 9644 | .addDisp(Disp, 8) |
| 9645 | .addOperand(Segment) |
| 9646 | .setMemRefs(MMOBegin, MMOEnd); |
| 9647 | |
| 9648 | // If we need to align it, do so. Otherwise, just copy the address |
| 9649 | // to OverflowDestReg. |
| 9650 | if (NeedsAlign) { |
| 9651 | // Align the overflow address |
| 9652 | assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2"); |
| 9653 | unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass); |
| 9654 | |
| 9655 | // aligned_addr = (addr + (align-1)) & ~(align-1) |
| 9656 | BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg) |
| 9657 | .addReg(OverflowAddrReg) |
| 9658 | .addImm(Align-1); |
| 9659 | |
| 9660 | BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg) |
| 9661 | .addReg(TmpReg) |
| 9662 | .addImm(~(uint64_t)(Align-1)); |
| 9663 | } else { |
| 9664 | BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg) |
| 9665 | .addReg(OverflowAddrReg); |
| 9666 | } |
| 9667 | |
| 9668 | // Compute the next overflow address after this argument. |
| 9669 | // (the overflow address should be kept 8-byte aligned) |
| 9670 | unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass); |
| 9671 | BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg) |
| 9672 | .addReg(OverflowDestReg) |
| 9673 | .addImm(ArgSizeA8); |
| 9674 | |
| 9675 | // Store the new overflow address. |
| 9676 | BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr)) |
| 9677 | .addOperand(Base) |
| 9678 | .addOperand(Scale) |
| 9679 | .addOperand(Index) |
| 9680 | .addDisp(Disp, 8) |
| 9681 | .addOperand(Segment) |
| 9682 | .addReg(NextAddrReg) |
| 9683 | .setMemRefs(MMOBegin, MMOEnd); |
| 9684 | |
| 9685 | // If we branched, emit the PHI to the front of endMBB. |
| 9686 | if (offsetMBB) { |
| 9687 | BuildMI(*endMBB, endMBB->begin(), DL, |
| 9688 | TII->get(X86::PHI), DestReg) |
| 9689 | .addReg(OffsetDestReg).addMBB(offsetMBB) |
| 9690 | .addReg(OverflowDestReg).addMBB(overflowMBB); |
| 9691 | } |
| 9692 | |
| 9693 | // Erase the pseudo instruction |
| 9694 | MI->eraseFromParent(); |
| 9695 | |
| 9696 | return endMBB; |
| 9697 | } |
| 9698 | |
| 9699 | MachineBasicBlock * |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 9700 | X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter( |
| 9701 | MachineInstr *MI, |
| 9702 | MachineBasicBlock *MBB) const { |
| 9703 | // Emit code to save XMM registers to the stack. The ABI says that the |
| 9704 | // number of registers to save is given in %al, so it's theoretically |
| 9705 | // possible to do an indirect jump trick to avoid saving all of them, |
| 9706 | // however this code takes a simpler approach and just executes all |
| 9707 | // of the stores if %al is non-zero. It's less code, and it's probably |
| 9708 | // easier on the hardware branch predictor, and stores aren't all that |
| 9709 | // expensive anyway. |
| 9710 | |
| 9711 | // Create the new basic blocks. One block contains all the XMM stores, |
| 9712 | // and one block is the final destination regardless of whether any |
| 9713 | // stores were performed. |
| 9714 | const BasicBlock *LLVM_BB = MBB->getBasicBlock(); |
| 9715 | MachineFunction *F = MBB->getParent(); |
| 9716 | MachineFunction::iterator MBBIter = MBB; |
| 9717 | ++MBBIter; |
| 9718 | MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 9719 | MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 9720 | F->insert(MBBIter, XMMSaveMBB); |
| 9721 | F->insert(MBBIter, EndMBB); |
| 9722 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9723 | // Transfer the remainder of MBB and its successor edges to EndMBB. |
| 9724 | EndMBB->splice(EndMBB->begin(), MBB, |
| 9725 | llvm::next(MachineBasicBlock::iterator(MI)), |
| 9726 | MBB->end()); |
| 9727 | EndMBB->transferSuccessorsAndUpdatePHIs(MBB); |
| 9728 | |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 9729 | // The original block will now fall through to the XMM save block. |
| 9730 | MBB->addSuccessor(XMMSaveMBB); |
| 9731 | // The XMMSaveMBB will fall through to the end block. |
| 9732 | XMMSaveMBB->addSuccessor(EndMBB); |
| 9733 | |
| 9734 | // Now add the instructions. |
| 9735 | const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); |
| 9736 | DebugLoc DL = MI->getDebugLoc(); |
| 9737 | |
| 9738 | unsigned CountReg = MI->getOperand(0).getReg(); |
| 9739 | int64_t RegSaveFrameIndex = MI->getOperand(1).getImm(); |
| 9740 | int64_t VarArgsFPOffset = MI->getOperand(2).getImm(); |
| 9741 | |
| 9742 | if (!Subtarget->isTargetWin64()) { |
| 9743 | // If %al is 0, branch around the XMM save block. |
| 9744 | BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg); |
Chris Lattner | bd13fb6 | 2010-02-11 19:25:55 +0000 | [diff] [blame] | 9745 | BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB); |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 9746 | MBB->addSuccessor(EndMBB); |
| 9747 | } |
| 9748 | |
| 9749 | // In the XMM save block, save all the XMM argument registers. |
| 9750 | for (int i = 3, e = MI->getNumOperands(); i != e; ++i) { |
| 9751 | int64_t Offset = (i - 3) * 16 + VarArgsFPOffset; |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 9752 | MachineMemOperand *MMO = |
Evan Cheng | ff89dcb | 2009-10-18 18:16:27 +0000 | [diff] [blame] | 9753 | F->getMachineMemOperand( |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 9754 | MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset), |
Chris Lattner | 59db549 | 2010-09-21 04:39:43 +0000 | [diff] [blame] | 9755 | MachineMemOperand::MOStore, |
Evan Cheng | ff89dcb | 2009-10-18 18:16:27 +0000 | [diff] [blame] | 9756 | /*Size=*/16, /*Align=*/16); |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 9757 | BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr)) |
| 9758 | .addFrameIndex(RegSaveFrameIndex) |
| 9759 | .addImm(/*Scale=*/1) |
| 9760 | .addReg(/*IndexReg=*/0) |
| 9761 | .addImm(/*Disp=*/Offset) |
| 9762 | .addReg(/*Segment=*/0) |
| 9763 | .addReg(MI->getOperand(i).getReg()) |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 9764 | .addMemOperand(MMO); |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 9765 | } |
| 9766 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9767 | MI->eraseFromParent(); // The pseudo instruction is gone now. |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 9768 | |
| 9769 | return EndMBB; |
| 9770 | } |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9771 | |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9772 | MachineBasicBlock * |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9773 | X86TargetLowering::EmitLoweredSelect(MachineInstr *MI, |
Dan Gohman | af1d8ca | 2010-05-01 00:01:06 +0000 | [diff] [blame] | 9774 | MachineBasicBlock *BB) const { |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9775 | const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); |
| 9776 | DebugLoc DL = MI->getDebugLoc(); |
Daniel Dunbar | a279bc3 | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 9777 | |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9778 | // To "insert" a SELECT_CC instruction, we actually have to insert the |
| 9779 | // diamond control-flow pattern. The incoming instruction knows the |
| 9780 | // destination vreg to set, the condition code register to branch on, the |
| 9781 | // true/false values to select between, and a branch opcode to use. |
| 9782 | const BasicBlock *LLVM_BB = BB->getBasicBlock(); |
| 9783 | MachineFunction::iterator It = BB; |
| 9784 | ++It; |
Daniel Dunbar | a279bc3 | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 9785 | |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9786 | // thisMBB: |
| 9787 | // ... |
| 9788 | // TrueVal = ... |
| 9789 | // cmpTY ccX, r1, r2 |
| 9790 | // bCC copy1MBB |
| 9791 | // fallthrough --> copy0MBB |
| 9792 | MachineBasicBlock *thisMBB = BB; |
| 9793 | MachineFunction *F = BB->getParent(); |
| 9794 | MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 9795 | MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB); |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9796 | F->insert(It, copy0MBB); |
| 9797 | F->insert(It, sinkMBB); |
Bill Wendling | 730c07e | 2010-06-25 20:48:10 +0000 | [diff] [blame] | 9798 | |
Bill Wendling | 730c07e | 2010-06-25 20:48:10 +0000 | [diff] [blame] | 9799 | // If the EFLAGS register isn't dead in the terminator, then claim that it's |
| 9800 | // live into the sink and copy blocks. |
| 9801 | const MachineFunction *MF = BB->getParent(); |
| 9802 | const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo(); |
| 9803 | BitVector ReservedRegs = TRI->getReservedRegs(*MF); |
Bill Wendling | 730c07e | 2010-06-25 20:48:10 +0000 | [diff] [blame] | 9804 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9805 | for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) { |
| 9806 | const MachineOperand &MO = MI->getOperand(I); |
| 9807 | if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue; |
Bill Wendling | 730c07e | 2010-06-25 20:48:10 +0000 | [diff] [blame] | 9808 | unsigned Reg = MO.getReg(); |
| 9809 | if (Reg != X86::EFLAGS) continue; |
| 9810 | copy0MBB->addLiveIn(Reg); |
| 9811 | sinkMBB->addLiveIn(Reg); |
| 9812 | } |
| 9813 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9814 | // Transfer the remainder of BB and its successor edges to sinkMBB. |
| 9815 | sinkMBB->splice(sinkMBB->begin(), BB, |
| 9816 | llvm::next(MachineBasicBlock::iterator(MI)), |
| 9817 | BB->end()); |
| 9818 | sinkMBB->transferSuccessorsAndUpdatePHIs(BB); |
| 9819 | |
| 9820 | // Add the true and fallthrough blocks as its successors. |
| 9821 | BB->addSuccessor(copy0MBB); |
| 9822 | BB->addSuccessor(sinkMBB); |
| 9823 | |
| 9824 | // Create the conditional branch instruction. |
| 9825 | unsigned Opc = |
| 9826 | X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm()); |
| 9827 | BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB); |
| 9828 | |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9829 | // copy0MBB: |
| 9830 | // %FalseValue = ... |
| 9831 | // # fallthrough to sinkMBB |
Dan Gohman | 3335a22 | 2010-04-30 20:14:26 +0000 | [diff] [blame] | 9832 | copy0MBB->addSuccessor(sinkMBB); |
Daniel Dunbar | a279bc3 | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 9833 | |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9834 | // sinkMBB: |
| 9835 | // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ] |
| 9836 | // ... |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9837 | BuildMI(*sinkMBB, sinkMBB->begin(), DL, |
| 9838 | TII->get(X86::PHI), MI->getOperand(0).getReg()) |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9839 | .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB) |
| 9840 | .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB); |
| 9841 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9842 | MI->eraseFromParent(); // The pseudo instruction is gone now. |
Dan Gohman | 3335a22 | 2010-04-30 20:14:26 +0000 | [diff] [blame] | 9843 | return sinkMBB; |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9844 | } |
| 9845 | |
Anton Korobeynikov | 043f3c2 | 2010-03-06 19:32:29 +0000 | [diff] [blame] | 9846 | MachineBasicBlock * |
Michael J. Spencer | e9c253e | 2010-10-21 01:41:01 +0000 | [diff] [blame] | 9847 | X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI, |
Dan Gohman | af1d8ca | 2010-05-01 00:01:06 +0000 | [diff] [blame] | 9848 | MachineBasicBlock *BB) const { |
Anton Korobeynikov | 043f3c2 | 2010-03-06 19:32:29 +0000 | [diff] [blame] | 9849 | const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); |
| 9850 | DebugLoc DL = MI->getDebugLoc(); |
Anton Korobeynikov | 043f3c2 | 2010-03-06 19:32:29 +0000 | [diff] [blame] | 9851 | |
| 9852 | // The lowering is pretty easy: we're just emitting the call to _alloca. The |
| 9853 | // non-trivial part is impdef of ESP. |
| 9854 | // FIXME: The code should be tweaked as soon as we'll try to do codegen for |
| 9855 | // mingw-w64. |
| 9856 | |
Michael J. Spencer | e9c253e | 2010-10-21 01:41:01 +0000 | [diff] [blame] | 9857 | const char *StackProbeSymbol = |
| 9858 | Subtarget->isTargetWindows() ? "_chkstk" : "_alloca"; |
| 9859 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9860 | BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32)) |
Michael J. Spencer | e9c253e | 2010-10-21 01:41:01 +0000 | [diff] [blame] | 9861 | .addExternalSymbol(StackProbeSymbol) |
Anton Korobeynikov | 043f3c2 | 2010-03-06 19:32:29 +0000 | [diff] [blame] | 9862 | .addReg(X86::EAX, RegState::Implicit) |
| 9863 | .addReg(X86::ESP, RegState::Implicit) |
| 9864 | .addReg(X86::EAX, RegState::Define | RegState::Implicit) |
Anton Korobeynikov | 9f7f83b | 2010-08-25 07:50:11 +0000 | [diff] [blame] | 9865 | .addReg(X86::ESP, RegState::Define | RegState::Implicit) |
| 9866 | .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit); |
Anton Korobeynikov | 043f3c2 | 2010-03-06 19:32:29 +0000 | [diff] [blame] | 9867 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9868 | MI->eraseFromParent(); // The pseudo instruction is gone now. |
Anton Korobeynikov | 043f3c2 | 2010-03-06 19:32:29 +0000 | [diff] [blame] | 9869 | return BB; |
| 9870 | } |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9871 | |
| 9872 | MachineBasicBlock * |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 9873 | X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI, |
| 9874 | MachineBasicBlock *BB) const { |
| 9875 | // This is pretty easy. We're taking the value that we received from |
| 9876 | // our load from the relocation, sticking it in either RDI (x86-64) |
| 9877 | // or EAX and doing an indirect call. The return value will then |
| 9878 | // be in the normal return register. |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 9879 | const X86InstrInfo *TII |
Eric Christopher | 5441536 | 2010-06-08 22:04:25 +0000 | [diff] [blame] | 9880 | = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo()); |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 9881 | DebugLoc DL = MI->getDebugLoc(); |
| 9882 | MachineFunction *F = BB->getParent(); |
Eric Christopher | 722d315 | 2010-09-27 06:01:51 +0000 | [diff] [blame] | 9883 | |
| 9884 | assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?"); |
Eric Christopher | 5441536 | 2010-06-08 22:04:25 +0000 | [diff] [blame] | 9885 | assert(MI->getOperand(3).isGlobal() && "This should be a global"); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 9886 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 9887 | if (Subtarget->is64Bit()) { |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9888 | MachineInstrBuilder MIB = BuildMI(*BB, MI, DL, |
| 9889 | TII->get(X86::MOV64rm), X86::RDI) |
Eric Christopher | 5441536 | 2010-06-08 22:04:25 +0000 | [diff] [blame] | 9890 | .addReg(X86::RIP) |
| 9891 | .addImm(0).addReg(0) |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 9892 | .addGlobalAddress(MI->getOperand(3).getGlobal(), 0, |
Eric Christopher | 5441536 | 2010-06-08 22:04:25 +0000 | [diff] [blame] | 9893 | MI->getOperand(3).getTargetFlags()) |
| 9894 | .addReg(0); |
Eric Christopher | 722d315 | 2010-09-27 06:01:51 +0000 | [diff] [blame] | 9895 | MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m)); |
Chris Lattner | 599b531 | 2010-07-08 23:46:44 +0000 | [diff] [blame] | 9896 | addDirectMem(MIB, X86::RDI); |
Eric Christopher | 6102549 | 2010-06-15 23:08:42 +0000 | [diff] [blame] | 9897 | } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) { |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9898 | MachineInstrBuilder MIB = BuildMI(*BB, MI, DL, |
| 9899 | TII->get(X86::MOV32rm), X86::EAX) |
Eric Christopher | 6102549 | 2010-06-15 23:08:42 +0000 | [diff] [blame] | 9900 | .addReg(0) |
| 9901 | .addImm(0).addReg(0) |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 9902 | .addGlobalAddress(MI->getOperand(3).getGlobal(), 0, |
Eric Christopher | 6102549 | 2010-06-15 23:08:42 +0000 | [diff] [blame] | 9903 | MI->getOperand(3).getTargetFlags()) |
| 9904 | .addReg(0); |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9905 | MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m)); |
Chris Lattner | 599b531 | 2010-07-08 23:46:44 +0000 | [diff] [blame] | 9906 | addDirectMem(MIB, X86::EAX); |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 9907 | } else { |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9908 | MachineInstrBuilder MIB = BuildMI(*BB, MI, DL, |
| 9909 | TII->get(X86::MOV32rm), X86::EAX) |
Eric Christopher | 5441536 | 2010-06-08 22:04:25 +0000 | [diff] [blame] | 9910 | .addReg(TII->getGlobalBaseReg(F)) |
| 9911 | .addImm(0).addReg(0) |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 9912 | .addGlobalAddress(MI->getOperand(3).getGlobal(), 0, |
Eric Christopher | 5441536 | 2010-06-08 22:04:25 +0000 | [diff] [blame] | 9913 | MI->getOperand(3).getTargetFlags()) |
| 9914 | .addReg(0); |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9915 | MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m)); |
Chris Lattner | 599b531 | 2010-07-08 23:46:44 +0000 | [diff] [blame] | 9916 | addDirectMem(MIB, X86::EAX); |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 9917 | } |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 9918 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9919 | MI->eraseFromParent(); // The pseudo instruction is gone now. |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 9920 | return BB; |
| 9921 | } |
| 9922 | |
| 9923 | MachineBasicBlock * |
Evan Cheng | ff9b373 | 2008-01-30 18:18:23 +0000 | [diff] [blame] | 9924 | X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI, |
Dan Gohman | af1d8ca | 2010-05-01 00:01:06 +0000 | [diff] [blame] | 9925 | MachineBasicBlock *BB) const { |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9926 | switch (MI->getOpcode()) { |
| 9927 | default: assert(false && "Unexpected instr type to insert"); |
Michael J. Spencer | e9c253e | 2010-10-21 01:41:01 +0000 | [diff] [blame] | 9928 | case X86::WIN_ALLOCA: |
| 9929 | return EmitLoweredWinAlloca(MI, BB); |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 9930 | case X86::TLSCall_32: |
| 9931 | case X86::TLSCall_64: |
| 9932 | return EmitLoweredTLSCall(MI, BB); |
Dan Gohman | cbbea0f | 2009-08-27 00:14:12 +0000 | [diff] [blame] | 9933 | case X86::CMOV_GR8: |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9934 | case X86::CMOV_FR32: |
| 9935 | case X86::CMOV_FR64: |
| 9936 | case X86::CMOV_V4F32: |
| 9937 | case X86::CMOV_V2F64: |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9938 | case X86::CMOV_V2I64: |
Chris Lattner | 314a113 | 2010-03-14 18:31:44 +0000 | [diff] [blame] | 9939 | case X86::CMOV_GR16: |
| 9940 | case X86::CMOV_GR32: |
| 9941 | case X86::CMOV_RFP32: |
| 9942 | case X86::CMOV_RFP64: |
| 9943 | case X86::CMOV_RFP80: |
Dan Gohman | af1d8ca | 2010-05-01 00:01:06 +0000 | [diff] [blame] | 9944 | return EmitLoweredSelect(MI, BB); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9945 | |
Dale Johannesen | 849f214 | 2007-07-03 00:53:03 +0000 | [diff] [blame] | 9946 | case X86::FP32_TO_INT16_IN_MEM: |
| 9947 | case X86::FP32_TO_INT32_IN_MEM: |
| 9948 | case X86::FP32_TO_INT64_IN_MEM: |
| 9949 | case X86::FP64_TO_INT16_IN_MEM: |
| 9950 | case X86::FP64_TO_INT32_IN_MEM: |
Dale Johannesen | a996d52 | 2007-08-07 01:17:37 +0000 | [diff] [blame] | 9951 | case X86::FP64_TO_INT64_IN_MEM: |
| 9952 | case X86::FP80_TO_INT16_IN_MEM: |
| 9953 | case X86::FP80_TO_INT32_IN_MEM: |
| 9954 | case X86::FP80_TO_INT64_IN_MEM: { |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9955 | const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); |
| 9956 | DebugLoc DL = MI->getDebugLoc(); |
| 9957 | |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9958 | // Change the floating point control register to use "round towards zero" |
| 9959 | // mode when truncating to an integer value. |
| 9960 | MachineFunction *F = BB->getParent(); |
David Greene | 3f2bf85 | 2009-11-12 20:49:22 +0000 | [diff] [blame] | 9961 | int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false); |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9962 | addFrameReference(BuildMI(*BB, MI, DL, |
| 9963 | TII->get(X86::FNSTCW16m)), CWFrameIdx); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9964 | |
| 9965 | // Load the old value of the high byte of the control word... |
| 9966 | unsigned OldCW = |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 9967 | F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass); |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9968 | addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW), |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9969 | CWFrameIdx); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9970 | |
| 9971 | // Set the high part to be round to zero... |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9972 | addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx) |
Evan Cheng | c0f64ff | 2006-11-27 23:37:22 +0000 | [diff] [blame] | 9973 | .addImm(0xC7F); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9974 | |
| 9975 | // Reload the modified control word now... |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9976 | addFrameReference(BuildMI(*BB, MI, DL, |
| 9977 | TII->get(X86::FLDCW16m)), CWFrameIdx); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9978 | |
| 9979 | // Restore the memory image of control word to original value |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9980 | addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx) |
Evan Cheng | c0f64ff | 2006-11-27 23:37:22 +0000 | [diff] [blame] | 9981 | .addReg(OldCW); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9982 | |
| 9983 | // Get the X86 opcode to use. |
| 9984 | unsigned Opc; |
| 9985 | switch (MI->getOpcode()) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 9986 | default: llvm_unreachable("illegal opcode!"); |
Dale Johannesen | e377d4d | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 9987 | case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break; |
| 9988 | case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break; |
| 9989 | case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break; |
| 9990 | case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break; |
| 9991 | case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break; |
| 9992 | case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break; |
Dale Johannesen | a996d52 | 2007-08-07 01:17:37 +0000 | [diff] [blame] | 9993 | case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break; |
| 9994 | case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break; |
| 9995 | case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break; |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9996 | } |
| 9997 | |
| 9998 | X86AddressMode AM; |
| 9999 | MachineOperand &Op = MI->getOperand(0); |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 10000 | if (Op.isReg()) { |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 10001 | AM.BaseType = X86AddressMode::RegBase; |
| 10002 | AM.Base.Reg = Op.getReg(); |
| 10003 | } else { |
| 10004 | AM.BaseType = X86AddressMode::FrameIndexBase; |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 10005 | AM.Base.FrameIndex = Op.getIndex(); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 10006 | } |
| 10007 | Op = MI->getOperand(1); |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 10008 | if (Op.isImm()) |
Chris Lattner | 7fbe972 | 2006-10-20 17:42:20 +0000 | [diff] [blame] | 10009 | AM.Scale = Op.getImm(); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 10010 | Op = MI->getOperand(2); |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 10011 | if (Op.isImm()) |
Chris Lattner | 7fbe972 | 2006-10-20 17:42:20 +0000 | [diff] [blame] | 10012 | AM.IndexReg = Op.getImm(); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 10013 | Op = MI->getOperand(3); |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 10014 | if (Op.isGlobal()) { |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 10015 | AM.GV = Op.getGlobal(); |
| 10016 | } else { |
Chris Lattner | 7fbe972 | 2006-10-20 17:42:20 +0000 | [diff] [blame] | 10017 | AM.Disp = Op.getImm(); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 10018 | } |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 10019 | addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM) |
Chris Lattner | ac0ed5d | 2010-07-08 22:41:28 +0000 | [diff] [blame] | 10020 | .addReg(MI->getOperand(X86::AddrNumOperands).getReg()); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 10021 | |
| 10022 | // Reload the original control word now. |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 10023 | addFrameReference(BuildMI(*BB, MI, DL, |
| 10024 | TII->get(X86::FLDCW16m)), CWFrameIdx); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 10025 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 10026 | MI->eraseFromParent(); // The pseudo instruction is gone now. |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 10027 | return BB; |
| 10028 | } |
Eric Christopher | b120ab4 | 2009-08-18 22:50:32 +0000 | [diff] [blame] | 10029 | // String/text processing lowering. |
| 10030 | case X86::PCMPISTRM128REG: |
Bruno Cardoso Lopes | 98f9856 | 2010-07-30 19:54:33 +0000 | [diff] [blame] | 10031 | case X86::VPCMPISTRM128REG: |
Eric Christopher | b120ab4 | 2009-08-18 22:50:32 +0000 | [diff] [blame] | 10032 | return EmitPCMP(MI, BB, 3, false /* in-mem */); |
| 10033 | case X86::PCMPISTRM128MEM: |
Bruno Cardoso Lopes | 98f9856 | 2010-07-30 19:54:33 +0000 | [diff] [blame] | 10034 | case X86::VPCMPISTRM128MEM: |
Eric Christopher | b120ab4 | 2009-08-18 22:50:32 +0000 | [diff] [blame] | 10035 | return EmitPCMP(MI, BB, 3, true /* in-mem */); |
| 10036 | case X86::PCMPESTRM128REG: |
Bruno Cardoso Lopes | 98f9856 | 2010-07-30 19:54:33 +0000 | [diff] [blame] | 10037 | case X86::VPCMPESTRM128REG: |
Eric Christopher | b120ab4 | 2009-08-18 22:50:32 +0000 | [diff] [blame] | 10038 | return EmitPCMP(MI, BB, 5, false /* in mem */); |
| 10039 | case X86::PCMPESTRM128MEM: |
Bruno Cardoso Lopes | 98f9856 | 2010-07-30 19:54:33 +0000 | [diff] [blame] | 10040 | case X86::VPCMPESTRM128MEM: |
Eric Christopher | b120ab4 | 2009-08-18 22:50:32 +0000 | [diff] [blame] | 10041 | return EmitPCMP(MI, BB, 5, true /* in mem */); |
| 10042 | |
| 10043 | // Atomic Lowering. |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 10044 | case X86::ATOMAND32: |
| 10045 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10046 | X86::AND32ri, X86::MOV32rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10047 | X86::LCMPXCHG32, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10048 | X86::NOT32r, X86::EAX, |
| 10049 | X86::GR32RegisterClass); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 10050 | case X86::ATOMOR32: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10051 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr, |
| 10052 | X86::OR32ri, X86::MOV32rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10053 | X86::LCMPXCHG32, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10054 | X86::NOT32r, X86::EAX, |
| 10055 | X86::GR32RegisterClass); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 10056 | case X86::ATOMXOR32: |
| 10057 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10058 | X86::XOR32ri, X86::MOV32rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10059 | X86::LCMPXCHG32, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10060 | X86::NOT32r, X86::EAX, |
| 10061 | X86::GR32RegisterClass); |
Andrew Lenharth | 507a58a | 2008-06-14 05:48:15 +0000 | [diff] [blame] | 10062 | case X86::ATOMNAND32: |
| 10063 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10064 | X86::AND32ri, X86::MOV32rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10065 | X86::LCMPXCHG32, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10066 | X86::NOT32r, X86::EAX, |
| 10067 | X86::GR32RegisterClass, true); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 10068 | case X86::ATOMMIN32: |
| 10069 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr); |
| 10070 | case X86::ATOMMAX32: |
| 10071 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr); |
| 10072 | case X86::ATOMUMIN32: |
| 10073 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr); |
| 10074 | case X86::ATOMUMAX32: |
| 10075 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr); |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10076 | |
| 10077 | case X86::ATOMAND16: |
| 10078 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr, |
| 10079 | X86::AND16ri, X86::MOV16rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10080 | X86::LCMPXCHG16, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10081 | X86::NOT16r, X86::AX, |
| 10082 | X86::GR16RegisterClass); |
| 10083 | case X86::ATOMOR16: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10084 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10085 | X86::OR16ri, X86::MOV16rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10086 | X86::LCMPXCHG16, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10087 | X86::NOT16r, X86::AX, |
| 10088 | X86::GR16RegisterClass); |
| 10089 | case X86::ATOMXOR16: |
| 10090 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr, |
| 10091 | X86::XOR16ri, X86::MOV16rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10092 | X86::LCMPXCHG16, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10093 | X86::NOT16r, X86::AX, |
| 10094 | X86::GR16RegisterClass); |
| 10095 | case X86::ATOMNAND16: |
| 10096 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr, |
| 10097 | X86::AND16ri, X86::MOV16rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10098 | X86::LCMPXCHG16, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10099 | X86::NOT16r, X86::AX, |
| 10100 | X86::GR16RegisterClass, true); |
| 10101 | case X86::ATOMMIN16: |
| 10102 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr); |
| 10103 | case X86::ATOMMAX16: |
| 10104 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr); |
| 10105 | case X86::ATOMUMIN16: |
| 10106 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr); |
| 10107 | case X86::ATOMUMAX16: |
| 10108 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr); |
| 10109 | |
| 10110 | case X86::ATOMAND8: |
| 10111 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr, |
| 10112 | X86::AND8ri, X86::MOV8rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10113 | X86::LCMPXCHG8, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10114 | X86::NOT8r, X86::AL, |
| 10115 | X86::GR8RegisterClass); |
| 10116 | case X86::ATOMOR8: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10117 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10118 | X86::OR8ri, X86::MOV8rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10119 | X86::LCMPXCHG8, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10120 | X86::NOT8r, X86::AL, |
| 10121 | X86::GR8RegisterClass); |
| 10122 | case X86::ATOMXOR8: |
| 10123 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr, |
| 10124 | X86::XOR8ri, X86::MOV8rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10125 | X86::LCMPXCHG8, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10126 | X86::NOT8r, X86::AL, |
| 10127 | X86::GR8RegisterClass); |
| 10128 | case X86::ATOMNAND8: |
| 10129 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr, |
| 10130 | X86::AND8ri, X86::MOV8rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10131 | X86::LCMPXCHG8, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10132 | X86::NOT8r, X86::AL, |
| 10133 | X86::GR8RegisterClass, true); |
| 10134 | // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way. |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 10135 | // This group is for 64-bit host. |
Dale Johannesen | a99e384 | 2008-08-20 00:48:50 +0000 | [diff] [blame] | 10136 | case X86::ATOMAND64: |
| 10137 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10138 | X86::AND64ri32, X86::MOV64rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10139 | X86::LCMPXCHG64, |
Dale Johannesen | a99e384 | 2008-08-20 00:48:50 +0000 | [diff] [blame] | 10140 | X86::NOT64r, X86::RAX, |
| 10141 | X86::GR64RegisterClass); |
| 10142 | case X86::ATOMOR64: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10143 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr, |
| 10144 | X86::OR64ri32, X86::MOV64rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10145 | X86::LCMPXCHG64, |
Dale Johannesen | a99e384 | 2008-08-20 00:48:50 +0000 | [diff] [blame] | 10146 | X86::NOT64r, X86::RAX, |
| 10147 | X86::GR64RegisterClass); |
| 10148 | case X86::ATOMXOR64: |
| 10149 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10150 | X86::XOR64ri32, X86::MOV64rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10151 | X86::LCMPXCHG64, |
Dale Johannesen | a99e384 | 2008-08-20 00:48:50 +0000 | [diff] [blame] | 10152 | X86::NOT64r, X86::RAX, |
| 10153 | X86::GR64RegisterClass); |
| 10154 | case X86::ATOMNAND64: |
| 10155 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr, |
| 10156 | X86::AND64ri32, X86::MOV64rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10157 | X86::LCMPXCHG64, |
Dale Johannesen | a99e384 | 2008-08-20 00:48:50 +0000 | [diff] [blame] | 10158 | X86::NOT64r, X86::RAX, |
| 10159 | X86::GR64RegisterClass, true); |
| 10160 | case X86::ATOMMIN64: |
| 10161 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr); |
| 10162 | case X86::ATOMMAX64: |
| 10163 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr); |
| 10164 | case X86::ATOMUMIN64: |
| 10165 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr); |
| 10166 | case X86::ATOMUMAX64: |
| 10167 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 10168 | |
| 10169 | // This group does 64-bit operations on a 32-bit host. |
| 10170 | case X86::ATOMAND6432: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10171 | return EmitAtomicBit6432WithCustomInserter(MI, BB, |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 10172 | X86::AND32rr, X86::AND32rr, |
| 10173 | X86::AND32ri, X86::AND32ri, |
| 10174 | false); |
| 10175 | case X86::ATOMOR6432: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10176 | return EmitAtomicBit6432WithCustomInserter(MI, BB, |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 10177 | X86::OR32rr, X86::OR32rr, |
| 10178 | X86::OR32ri, X86::OR32ri, |
| 10179 | false); |
| 10180 | case X86::ATOMXOR6432: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10181 | return EmitAtomicBit6432WithCustomInserter(MI, BB, |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 10182 | X86::XOR32rr, X86::XOR32rr, |
| 10183 | X86::XOR32ri, X86::XOR32ri, |
| 10184 | false); |
| 10185 | case X86::ATOMNAND6432: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10186 | return EmitAtomicBit6432WithCustomInserter(MI, BB, |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 10187 | X86::AND32rr, X86::AND32rr, |
| 10188 | X86::AND32ri, X86::AND32ri, |
| 10189 | true); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 10190 | case X86::ATOMADD6432: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10191 | return EmitAtomicBit6432WithCustomInserter(MI, BB, |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 10192 | X86::ADD32rr, X86::ADC32rr, |
| 10193 | X86::ADD32ri, X86::ADC32ri, |
| 10194 | false); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 10195 | case X86::ATOMSUB6432: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10196 | return EmitAtomicBit6432WithCustomInserter(MI, BB, |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 10197 | X86::SUB32rr, X86::SBB32rr, |
| 10198 | X86::SUB32ri, X86::SBB32ri, |
| 10199 | false); |
Dale Johannesen | 880ae36 | 2008-10-03 22:25:52 +0000 | [diff] [blame] | 10200 | case X86::ATOMSWAP6432: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10201 | return EmitAtomicBit6432WithCustomInserter(MI, BB, |
Dale Johannesen | 880ae36 | 2008-10-03 22:25:52 +0000 | [diff] [blame] | 10202 | X86::MOV32rr, X86::MOV32rr, |
| 10203 | X86::MOV32ri, X86::MOV32ri, |
| 10204 | false); |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 10205 | case X86::VASTART_SAVE_XMM_REGS: |
| 10206 | return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB); |
Dan Gohman | 320afb8 | 2010-10-12 18:00:49 +0000 | [diff] [blame] | 10207 | |
| 10208 | case X86::VAARG_64: |
| 10209 | return EmitVAARG64WithCustomInserter(MI, BB); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 10210 | } |
| 10211 | } |
| 10212 | |
| 10213 | //===----------------------------------------------------------------------===// |
| 10214 | // X86 Optimization Hooks |
| 10215 | //===----------------------------------------------------------------------===// |
| 10216 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 10217 | void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op, |
Dan Gohman | 977a76f | 2008-02-13 22:28:48 +0000 | [diff] [blame] | 10218 | const APInt &Mask, |
Dan Gohman | fd29e0e | 2008-02-13 00:35:47 +0000 | [diff] [blame] | 10219 | APInt &KnownZero, |
| 10220 | APInt &KnownOne, |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 10221 | const SelectionDAG &DAG, |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 10222 | unsigned Depth) const { |
Evan Cheng | 3a03ebb | 2005-12-21 23:05:39 +0000 | [diff] [blame] | 10223 | unsigned Opc = Op.getOpcode(); |
Evan Cheng | 865f060 | 2006-04-05 06:11:20 +0000 | [diff] [blame] | 10224 | assert((Opc >= ISD::BUILTIN_OP_END || |
| 10225 | Opc == ISD::INTRINSIC_WO_CHAIN || |
| 10226 | Opc == ISD::INTRINSIC_W_CHAIN || |
| 10227 | Opc == ISD::INTRINSIC_VOID) && |
| 10228 | "Should use MaskedValueIsZero if you don't know whether Op" |
| 10229 | " is a target node!"); |
Evan Cheng | 3a03ebb | 2005-12-21 23:05:39 +0000 | [diff] [blame] | 10230 | |
Dan Gohman | f4f92f5 | 2008-02-13 23:07:24 +0000 | [diff] [blame] | 10231 | KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything. |
Evan Cheng | 3a03ebb | 2005-12-21 23:05:39 +0000 | [diff] [blame] | 10232 | switch (Opc) { |
Evan Cheng | 865f060 | 2006-04-05 06:11:20 +0000 | [diff] [blame] | 10233 | default: break; |
Evan Cheng | 97d0e0e | 2009-02-02 09:15:04 +0000 | [diff] [blame] | 10234 | case X86ISD::ADD: |
| 10235 | case X86ISD::SUB: |
| 10236 | case X86ISD::SMUL: |
| 10237 | case X86ISD::UMUL: |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 10238 | case X86ISD::INC: |
| 10239 | case X86ISD::DEC: |
Dan Gohman | e220c4b | 2009-09-18 19:59:53 +0000 | [diff] [blame] | 10240 | case X86ISD::OR: |
| 10241 | case X86ISD::XOR: |
| 10242 | case X86ISD::AND: |
Evan Cheng | 97d0e0e | 2009-02-02 09:15:04 +0000 | [diff] [blame] | 10243 | // These nodes' second result is a boolean. |
| 10244 | if (Op.getResNo() == 0) |
| 10245 | break; |
| 10246 | // Fallthrough |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 10247 | case X86ISD::SETCC: |
Dan Gohman | fd29e0e | 2008-02-13 00:35:47 +0000 | [diff] [blame] | 10248 | KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(), |
| 10249 | Mask.getBitWidth() - 1); |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 10250 | break; |
Evan Cheng | 3a03ebb | 2005-12-21 23:05:39 +0000 | [diff] [blame] | 10251 | } |
Evan Cheng | 3a03ebb | 2005-12-21 23:05:39 +0000 | [diff] [blame] | 10252 | } |
Chris Lattner | 259e97c | 2006-01-31 19:43:35 +0000 | [diff] [blame] | 10253 | |
Owen Anderson | bc146b0 | 2010-09-21 20:42:50 +0000 | [diff] [blame] | 10254 | unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op, |
| 10255 | unsigned Depth) const { |
| 10256 | // SETCC_CARRY sets the dest to ~0 for true or 0 for false. |
| 10257 | if (Op.getOpcode() == X86ISD::SETCC_CARRY) |
| 10258 | return Op.getValueType().getScalarType().getSizeInBits(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 10259 | |
Owen Anderson | bc146b0 | 2010-09-21 20:42:50 +0000 | [diff] [blame] | 10260 | // Fallback case. |
| 10261 | return 1; |
| 10262 | } |
| 10263 | |
Evan Cheng | 206ee9d | 2006-07-07 08:33:52 +0000 | [diff] [blame] | 10264 | /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the |
Evan Cheng | ad4196b | 2008-05-12 19:56:52 +0000 | [diff] [blame] | 10265 | /// node is a GlobalAddress + offset. |
| 10266 | bool X86TargetLowering::isGAPlusOffset(SDNode *N, |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 10267 | const GlobalValue* &GA, |
| 10268 | int64_t &Offset) const { |
Evan Cheng | ad4196b | 2008-05-12 19:56:52 +0000 | [diff] [blame] | 10269 | if (N->getOpcode() == X86ISD::Wrapper) { |
| 10270 | if (isa<GlobalAddressSDNode>(N->getOperand(0))) { |
Evan Cheng | 206ee9d | 2006-07-07 08:33:52 +0000 | [diff] [blame] | 10271 | GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal(); |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 10272 | Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset(); |
Evan Cheng | 206ee9d | 2006-07-07 08:33:52 +0000 | [diff] [blame] | 10273 | return true; |
| 10274 | } |
Evan Cheng | 206ee9d | 2006-07-07 08:33:52 +0000 | [diff] [blame] | 10275 | } |
Evan Cheng | ad4196b | 2008-05-12 19:56:52 +0000 | [diff] [blame] | 10276 | return TargetLowering::isGAPlusOffset(N, GA, Offset); |
Evan Cheng | 206ee9d | 2006-07-07 08:33:52 +0000 | [diff] [blame] | 10277 | } |
| 10278 | |
Evan Cheng | 206ee9d | 2006-07-07 08:33:52 +0000 | [diff] [blame] | 10279 | /// PerformShuffleCombine - Combine a vector_shuffle that is equal to |
| 10280 | /// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load |
| 10281 | /// if the load addresses are consecutive, non-overlapping, and in the right |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 10282 | /// order. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 10283 | static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG, |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 10284 | const TargetLowering &TLI) { |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 10285 | DebugLoc dl = N->getDebugLoc(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 10286 | EVT VT = N->getValueType(0); |
Mon P Wang | 1e95580 | 2009-04-03 02:43:30 +0000 | [diff] [blame] | 10287 | |
Eli Friedman | 7a5e555 | 2009-06-07 06:52:44 +0000 | [diff] [blame] | 10288 | if (VT.getSizeInBits() != 128) |
| 10289 | return SDValue(); |
| 10290 | |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 10291 | SmallVector<SDValue, 16> Elts; |
| 10292 | for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i) |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 10293 | Elts.push_back(getShuffleScalarElt(N, i, DAG, 0)); |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 10294 | |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 10295 | return EltsFromConsecutiveLoads(VT, Elts, dl, DAG); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10296 | } |
Evan Cheng | d880b97 | 2008-05-09 21:53:03 +0000 | [diff] [blame] | 10297 | |
Bruno Cardoso Lopes | b3e0669 | 2010-09-03 19:55:05 +0000 | [diff] [blame] | 10298 | /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index |
| 10299 | /// generation and convert it from being a bunch of shuffles and extracts |
| 10300 | /// to a simple store and scalar loads to extract the elements. |
Dan Gohman | 1bbf72b | 2010-03-15 23:23:03 +0000 | [diff] [blame] | 10301 | static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG, |
| 10302 | const TargetLowering &TLI) { |
| 10303 | SDValue InputVector = N->getOperand(0); |
| 10304 | |
| 10305 | // Only operate on vectors of 4 elements, where the alternative shuffling |
| 10306 | // gets to be more expensive. |
| 10307 | if (InputVector.getValueType() != MVT::v4i32) |
| 10308 | return SDValue(); |
| 10309 | |
| 10310 | // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a |
| 10311 | // single use which is a sign-extend or zero-extend, and all elements are |
| 10312 | // used. |
| 10313 | SmallVector<SDNode *, 4> Uses; |
| 10314 | unsigned ExtractedElements = 0; |
| 10315 | for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(), |
| 10316 | UE = InputVector.getNode()->use_end(); UI != UE; ++UI) { |
| 10317 | if (UI.getUse().getResNo() != InputVector.getResNo()) |
| 10318 | return SDValue(); |
| 10319 | |
| 10320 | SDNode *Extract = *UI; |
| 10321 | if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT) |
| 10322 | return SDValue(); |
| 10323 | |
| 10324 | if (Extract->getValueType(0) != MVT::i32) |
| 10325 | return SDValue(); |
| 10326 | if (!Extract->hasOneUse()) |
| 10327 | return SDValue(); |
| 10328 | if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND && |
| 10329 | Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND) |
| 10330 | return SDValue(); |
| 10331 | if (!isa<ConstantSDNode>(Extract->getOperand(1))) |
| 10332 | return SDValue(); |
| 10333 | |
| 10334 | // Record which element was extracted. |
| 10335 | ExtractedElements |= |
| 10336 | 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue(); |
| 10337 | |
| 10338 | Uses.push_back(Extract); |
| 10339 | } |
| 10340 | |
| 10341 | // If not all the elements were used, this may not be worthwhile. |
| 10342 | if (ExtractedElements != 15) |
| 10343 | return SDValue(); |
| 10344 | |
| 10345 | // Ok, we've now decided to do the transformation. |
| 10346 | DebugLoc dl = InputVector.getDebugLoc(); |
| 10347 | |
| 10348 | // Store the value to a temporary stack slot. |
| 10349 | SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType()); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 10350 | SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr, |
| 10351 | MachinePointerInfo(), false, false, 0); |
Dan Gohman | 1bbf72b | 2010-03-15 23:23:03 +0000 | [diff] [blame] | 10352 | |
| 10353 | // Replace each use (extract) with a load of the appropriate element. |
| 10354 | for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(), |
| 10355 | UE = Uses.end(); UI != UE; ++UI) { |
| 10356 | SDNode *Extract = *UI; |
| 10357 | |
| 10358 | // Compute the element's address. |
| 10359 | SDValue Idx = Extract->getOperand(1); |
| 10360 | unsigned EltSize = |
| 10361 | InputVector.getValueType().getVectorElementType().getSizeInBits()/8; |
| 10362 | uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue(); |
| 10363 | SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy()); |
| 10364 | |
Eric Christopher | 90eb402 | 2010-07-22 00:26:08 +0000 | [diff] [blame] | 10365 | SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 10366 | StackPtr, OffsetVal); |
Dan Gohman | 1bbf72b | 2010-03-15 23:23:03 +0000 | [diff] [blame] | 10367 | |
| 10368 | // Load the scalar. |
Eric Christopher | 90eb402 | 2010-07-22 00:26:08 +0000 | [diff] [blame] | 10369 | SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch, |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 10370 | ScalarAddr, MachinePointerInfo(), |
| 10371 | false, false, 0); |
Dan Gohman | 1bbf72b | 2010-03-15 23:23:03 +0000 | [diff] [blame] | 10372 | |
| 10373 | // Replace the exact with the load. |
| 10374 | DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar); |
| 10375 | } |
| 10376 | |
| 10377 | // The replacement was made in place; don't return anything. |
| 10378 | return SDValue(); |
| 10379 | } |
| 10380 | |
Chris Lattner | 83e6c99 | 2006-10-04 06:57:07 +0000 | [diff] [blame] | 10381 | /// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 10382 | static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG, |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10383 | const X86Subtarget *Subtarget) { |
| 10384 | DebugLoc DL = N->getDebugLoc(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 10385 | SDValue Cond = N->getOperand(0); |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10386 | // Get the LHS/RHS of the select. |
| 10387 | SDValue LHS = N->getOperand(1); |
| 10388 | SDValue RHS = N->getOperand(2); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10389 | |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10390 | // If we have SSE[12] support, try to form min/max nodes. SSE min/max |
Dan Gohman | 8ce05da | 2010-02-22 04:03:39 +0000 | [diff] [blame] | 10391 | // instructions match the semantics of the common C idiom x<y?x:y but not |
| 10392 | // x<=y?x:y, because of how they handle negative zero (which can be |
| 10393 | // ignored in unsafe-math mode). |
Chris Lattner | 83e6c99 | 2006-10-04 06:57:07 +0000 | [diff] [blame] | 10394 | if (Subtarget->hasSSE2() && |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10395 | (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) && |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10396 | Cond.getOpcode() == ISD::SETCC) { |
| 10397 | ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get(); |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 10398 | |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10399 | unsigned Opcode = 0; |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10400 | // Check for x CC y ? x : y. |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10401 | if (DAG.isEqualTo(LHS, Cond.getOperand(0)) && |
| 10402 | DAG.isEqualTo(RHS, Cond.getOperand(1))) { |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10403 | switch (CC) { |
| 10404 | default: break; |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10405 | case ISD::SETULT: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10406 | // Converting this to a min would handle NaNs incorrectly, and swapping |
| 10407 | // the operands would cause it to handle comparisons between positive |
| 10408 | // and negative zero incorrectly. |
Evan Cheng | 60108e9 | 2010-07-15 22:07:12 +0000 | [diff] [blame] | 10409 | if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) { |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10410 | if (!UnsafeFPMath && |
| 10411 | !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) |
| 10412 | break; |
| 10413 | std::swap(LHS, RHS); |
| 10414 | } |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10415 | Opcode = X86ISD::FMIN; |
| 10416 | break; |
| 10417 | case ISD::SETOLE: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10418 | // Converting this to a min would handle comparisons between positive |
| 10419 | // and negative zero incorrectly. |
| 10420 | if (!UnsafeFPMath && |
| 10421 | !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) |
| 10422 | break; |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10423 | Opcode = X86ISD::FMIN; |
| 10424 | break; |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10425 | case ISD::SETULE: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10426 | // Converting this to a min would handle both negative zeros and NaNs |
| 10427 | // incorrectly, but we can swap the operands to fix both. |
| 10428 | std::swap(LHS, RHS); |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10429 | case ISD::SETOLT: |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10430 | case ISD::SETLT: |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10431 | case ISD::SETLE: |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10432 | Opcode = X86ISD::FMIN; |
| 10433 | break; |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 10434 | |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10435 | case ISD::SETOGE: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10436 | // Converting this to a max would handle comparisons between positive |
| 10437 | // and negative zero incorrectly. |
| 10438 | if (!UnsafeFPMath && |
| 10439 | !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(LHS)) |
| 10440 | break; |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10441 | Opcode = X86ISD::FMAX; |
| 10442 | break; |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10443 | case ISD::SETUGT: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10444 | // Converting this to a max would handle NaNs incorrectly, and swapping |
| 10445 | // the operands would cause it to handle comparisons between positive |
| 10446 | // and negative zero incorrectly. |
Evan Cheng | 60108e9 | 2010-07-15 22:07:12 +0000 | [diff] [blame] | 10447 | if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) { |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10448 | if (!UnsafeFPMath && |
| 10449 | !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) |
| 10450 | break; |
| 10451 | std::swap(LHS, RHS); |
| 10452 | } |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10453 | Opcode = X86ISD::FMAX; |
| 10454 | break; |
| 10455 | case ISD::SETUGE: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10456 | // Converting this to a max would handle both negative zeros and NaNs |
| 10457 | // incorrectly, but we can swap the operands to fix both. |
| 10458 | std::swap(LHS, RHS); |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10459 | case ISD::SETOGT: |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10460 | case ISD::SETGT: |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10461 | case ISD::SETGE: |
| 10462 | Opcode = X86ISD::FMAX; |
| 10463 | break; |
Chris Lattner | 83e6c99 | 2006-10-04 06:57:07 +0000 | [diff] [blame] | 10464 | } |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10465 | // Check for x CC y ? y : x -- a min/max with reversed arms. |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10466 | } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) && |
| 10467 | DAG.isEqualTo(RHS, Cond.getOperand(0))) { |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10468 | switch (CC) { |
| 10469 | default: break; |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10470 | case ISD::SETOGE: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10471 | // Converting this to a min would handle comparisons between positive |
| 10472 | // and negative zero incorrectly, and swapping the operands would |
| 10473 | // cause it to handle NaNs incorrectly. |
| 10474 | if (!UnsafeFPMath && |
| 10475 | !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) { |
Evan Cheng | 60108e9 | 2010-07-15 22:07:12 +0000 | [diff] [blame] | 10476 | if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10477 | break; |
| 10478 | std::swap(LHS, RHS); |
| 10479 | } |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10480 | Opcode = X86ISD::FMIN; |
Dan Gohman | 8d44b28 | 2009-09-03 20:34:31 +0000 | [diff] [blame] | 10481 | break; |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10482 | case ISD::SETUGT: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10483 | // Converting this to a min would handle NaNs incorrectly. |
| 10484 | if (!UnsafeFPMath && |
| 10485 | (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))) |
| 10486 | break; |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10487 | Opcode = X86ISD::FMIN; |
| 10488 | break; |
| 10489 | case ISD::SETUGE: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10490 | // Converting this to a min would handle both negative zeros and NaNs |
| 10491 | // incorrectly, but we can swap the operands to fix both. |
| 10492 | std::swap(LHS, RHS); |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10493 | case ISD::SETOGT: |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10494 | case ISD::SETGT: |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10495 | case ISD::SETGE: |
| 10496 | Opcode = X86ISD::FMIN; |
| 10497 | break; |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 10498 | |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10499 | case ISD::SETULT: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10500 | // Converting this to a max would handle NaNs incorrectly. |
Evan Cheng | 60108e9 | 2010-07-15 22:07:12 +0000 | [diff] [blame] | 10501 | if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10502 | break; |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10503 | Opcode = X86ISD::FMAX; |
Dan Gohman | 8d44b28 | 2009-09-03 20:34:31 +0000 | [diff] [blame] | 10504 | break; |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10505 | case ISD::SETOLE: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10506 | // Converting this to a max would handle comparisons between positive |
| 10507 | // and negative zero incorrectly, and swapping the operands would |
| 10508 | // cause it to handle NaNs incorrectly. |
| 10509 | if (!UnsafeFPMath && |
| 10510 | !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) { |
Evan Cheng | 60108e9 | 2010-07-15 22:07:12 +0000 | [diff] [blame] | 10511 | if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10512 | break; |
| 10513 | std::swap(LHS, RHS); |
| 10514 | } |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10515 | Opcode = X86ISD::FMAX; |
| 10516 | break; |
| 10517 | case ISD::SETULE: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10518 | // Converting this to a max would handle both negative zeros and NaNs |
| 10519 | // incorrectly, but we can swap the operands to fix both. |
| 10520 | std::swap(LHS, RHS); |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10521 | case ISD::SETOLT: |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10522 | case ISD::SETLT: |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10523 | case ISD::SETLE: |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10524 | Opcode = X86ISD::FMAX; |
| 10525 | break; |
| 10526 | } |
Chris Lattner | 83e6c99 | 2006-10-04 06:57:07 +0000 | [diff] [blame] | 10527 | } |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 10528 | |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10529 | if (Opcode) |
| 10530 | return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS); |
Chris Lattner | 83e6c99 | 2006-10-04 06:57:07 +0000 | [diff] [blame] | 10531 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10532 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10533 | // If this is a select between two integer constants, try to do some |
| 10534 | // optimizations. |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10535 | if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) { |
| 10536 | if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS)) |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10537 | // Don't do this for crazy integer types. |
| 10538 | if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) { |
| 10539 | // If this is efficiently invertible, canonicalize the LHSC/RHSC values |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10540 | // so that TrueC (the true value) is larger than FalseC. |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10541 | bool NeedsCondInvert = false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10542 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10543 | if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) && |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10544 | // Efficiently invertible. |
| 10545 | (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible. |
| 10546 | (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible. |
| 10547 | isa<ConstantSDNode>(Cond.getOperand(1))))) { |
| 10548 | NeedsCondInvert = true; |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10549 | std::swap(TrueC, FalseC); |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10550 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10551 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10552 | // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0. |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10553 | if (FalseC->getAPIntValue() == 0 && |
| 10554 | TrueC->getAPIntValue().isPowerOf2()) { |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10555 | if (NeedsCondInvert) // Invert the condition if needed. |
| 10556 | Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond, |
| 10557 | DAG.getConstant(1, Cond.getValueType())); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10558 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10559 | // Zero extend the condition if needed. |
| 10560 | Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10561 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10562 | unsigned ShAmt = TrueC->getAPIntValue().logBase2(); |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10563 | return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10564 | DAG.getConstant(ShAmt, MVT::i8)); |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10565 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10566 | |
Chris Lattner | 97a29a5 | 2009-03-13 05:22:11 +0000 | [diff] [blame] | 10567 | // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10568 | if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) { |
Chris Lattner | 97a29a5 | 2009-03-13 05:22:11 +0000 | [diff] [blame] | 10569 | if (NeedsCondInvert) // Invert the condition if needed. |
| 10570 | Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond, |
| 10571 | DAG.getConstant(1, Cond.getValueType())); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10572 | |
Chris Lattner | 97a29a5 | 2009-03-13 05:22:11 +0000 | [diff] [blame] | 10573 | // Zero extend the condition if needed. |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10574 | Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, |
| 10575 | FalseC->getValueType(0), Cond); |
Chris Lattner | 97a29a5 | 2009-03-13 05:22:11 +0000 | [diff] [blame] | 10576 | return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond, |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10577 | SDValue(FalseC, 0)); |
Chris Lattner | 97a29a5 | 2009-03-13 05:22:11 +0000 | [diff] [blame] | 10578 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10579 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10580 | // Optimize cases that will turn into an LEA instruction. This requires |
| 10581 | // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9). |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10582 | if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) { |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10583 | uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10584 | if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10585 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10586 | bool isFastMultiplier = false; |
| 10587 | if (Diff < 10) { |
| 10588 | switch ((unsigned char)Diff) { |
| 10589 | default: break; |
| 10590 | case 1: // result = add base, cond |
| 10591 | case 2: // result = lea base( , cond*2) |
| 10592 | case 3: // result = lea base(cond, cond*2) |
| 10593 | case 4: // result = lea base( , cond*4) |
| 10594 | case 5: // result = lea base(cond, cond*4) |
| 10595 | case 8: // result = lea base( , cond*8) |
| 10596 | case 9: // result = lea base(cond, cond*8) |
| 10597 | isFastMultiplier = true; |
| 10598 | break; |
| 10599 | } |
| 10600 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10601 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10602 | if (isFastMultiplier) { |
| 10603 | APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue(); |
| 10604 | if (NeedsCondInvert) // Invert the condition if needed. |
| 10605 | Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond, |
| 10606 | DAG.getConstant(1, Cond.getValueType())); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10607 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10608 | // Zero extend the condition if needed. |
| 10609 | Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0), |
| 10610 | Cond); |
| 10611 | // Scale the condition by the difference. |
| 10612 | if (Diff != 1) |
| 10613 | Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond, |
| 10614 | DAG.getConstant(Diff, Cond.getValueType())); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10615 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10616 | // Add the base if non-zero. |
| 10617 | if (FalseC->getAPIntValue() != 0) |
| 10618 | Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond, |
| 10619 | SDValue(FalseC, 0)); |
| 10620 | return Cond; |
| 10621 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10622 | } |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10623 | } |
| 10624 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10625 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 10626 | return SDValue(); |
Chris Lattner | 83e6c99 | 2006-10-04 06:57:07 +0000 | [diff] [blame] | 10627 | } |
| 10628 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10629 | /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL] |
| 10630 | static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG, |
| 10631 | TargetLowering::DAGCombinerInfo &DCI) { |
| 10632 | DebugLoc DL = N->getDebugLoc(); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10633 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10634 | // If the flag operand isn't dead, don't touch this CMOV. |
| 10635 | if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty()) |
| 10636 | return SDValue(); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10637 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10638 | // If this is a select between two integer constants, try to do some |
| 10639 | // optimizations. Note that the operands are ordered the opposite of SELECT |
| 10640 | // operands. |
| 10641 | if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(N->getOperand(1))) { |
| 10642 | if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(N->getOperand(0))) { |
| 10643 | // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is |
| 10644 | // larger than FalseC (the false value). |
| 10645 | X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10646 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10647 | if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) { |
| 10648 | CC = X86::GetOppositeBranchCondition(CC); |
| 10649 | std::swap(TrueC, FalseC); |
| 10650 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10651 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10652 | // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0. |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10653 | // This is efficient for any integer data type (including i8/i16) and |
| 10654 | // shift amount. |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10655 | if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) { |
| 10656 | SDValue Cond = N->getOperand(3); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10657 | Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8, |
| 10658 | DAG.getConstant(CC, MVT::i8), Cond); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10659 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10660 | // Zero extend the condition if needed. |
| 10661 | Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10662 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10663 | unsigned ShAmt = TrueC->getAPIntValue().logBase2(); |
| 10664 | Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10665 | DAG.getConstant(ShAmt, MVT::i8)); |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10666 | if (N->getNumValues() == 2) // Dead flag value? |
| 10667 | return DCI.CombineTo(N, Cond, SDValue()); |
| 10668 | return Cond; |
| 10669 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10670 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10671 | // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient |
| 10672 | // for any integer data type, including i8/i16. |
Chris Lattner | 97a29a5 | 2009-03-13 05:22:11 +0000 | [diff] [blame] | 10673 | if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) { |
| 10674 | SDValue Cond = N->getOperand(3); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10675 | Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8, |
| 10676 | DAG.getConstant(CC, MVT::i8), Cond); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10677 | |
Chris Lattner | 97a29a5 | 2009-03-13 05:22:11 +0000 | [diff] [blame] | 10678 | // Zero extend the condition if needed. |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10679 | Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, |
| 10680 | FalseC->getValueType(0), Cond); |
Chris Lattner | 97a29a5 | 2009-03-13 05:22:11 +0000 | [diff] [blame] | 10681 | Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond, |
| 10682 | SDValue(FalseC, 0)); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10683 | |
Chris Lattner | 97a29a5 | 2009-03-13 05:22:11 +0000 | [diff] [blame] | 10684 | if (N->getNumValues() == 2) // Dead flag value? |
| 10685 | return DCI.CombineTo(N, Cond, SDValue()); |
| 10686 | return Cond; |
| 10687 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10688 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10689 | // Optimize cases that will turn into an LEA instruction. This requires |
| 10690 | // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9). |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10691 | if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) { |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10692 | uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10693 | if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10694 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10695 | bool isFastMultiplier = false; |
| 10696 | if (Diff < 10) { |
| 10697 | switch ((unsigned char)Diff) { |
| 10698 | default: break; |
| 10699 | case 1: // result = add base, cond |
| 10700 | case 2: // result = lea base( , cond*2) |
| 10701 | case 3: // result = lea base(cond, cond*2) |
| 10702 | case 4: // result = lea base( , cond*4) |
| 10703 | case 5: // result = lea base(cond, cond*4) |
| 10704 | case 8: // result = lea base( , cond*8) |
| 10705 | case 9: // result = lea base(cond, cond*8) |
| 10706 | isFastMultiplier = true; |
| 10707 | break; |
| 10708 | } |
| 10709 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10710 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10711 | if (isFastMultiplier) { |
| 10712 | APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue(); |
| 10713 | SDValue Cond = N->getOperand(3); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10714 | Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8, |
| 10715 | DAG.getConstant(CC, MVT::i8), Cond); |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10716 | // Zero extend the condition if needed. |
| 10717 | Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0), |
| 10718 | Cond); |
| 10719 | // Scale the condition by the difference. |
| 10720 | if (Diff != 1) |
| 10721 | Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond, |
| 10722 | DAG.getConstant(Diff, Cond.getValueType())); |
| 10723 | |
| 10724 | // Add the base if non-zero. |
| 10725 | if (FalseC->getAPIntValue() != 0) |
| 10726 | Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond, |
| 10727 | SDValue(FalseC, 0)); |
| 10728 | if (N->getNumValues() == 2) // Dead flag value? |
| 10729 | return DCI.CombineTo(N, Cond, SDValue()); |
| 10730 | return Cond; |
| 10731 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10732 | } |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10733 | } |
| 10734 | } |
| 10735 | return SDValue(); |
| 10736 | } |
| 10737 | |
| 10738 | |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 10739 | /// PerformMulCombine - Optimize a single multiply with constant into two |
| 10740 | /// in order to implement it with two cheaper instructions, e.g. |
| 10741 | /// LEA + SHL, LEA + LEA. |
| 10742 | static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG, |
| 10743 | TargetLowering::DAGCombinerInfo &DCI) { |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 10744 | if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer()) |
| 10745 | return SDValue(); |
| 10746 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 10747 | EVT VT = N->getValueType(0); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10748 | if (VT != MVT::i64) |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 10749 | return SDValue(); |
| 10750 | |
| 10751 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1)); |
| 10752 | if (!C) |
| 10753 | return SDValue(); |
| 10754 | uint64_t MulAmt = C->getZExtValue(); |
| 10755 | if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9) |
| 10756 | return SDValue(); |
| 10757 | |
| 10758 | uint64_t MulAmt1 = 0; |
| 10759 | uint64_t MulAmt2 = 0; |
| 10760 | if ((MulAmt % 9) == 0) { |
| 10761 | MulAmt1 = 9; |
| 10762 | MulAmt2 = MulAmt / 9; |
| 10763 | } else if ((MulAmt % 5) == 0) { |
| 10764 | MulAmt1 = 5; |
| 10765 | MulAmt2 = MulAmt / 5; |
| 10766 | } else if ((MulAmt % 3) == 0) { |
| 10767 | MulAmt1 = 3; |
| 10768 | MulAmt2 = MulAmt / 3; |
| 10769 | } |
| 10770 | if (MulAmt2 && |
| 10771 | (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){ |
| 10772 | DebugLoc DL = N->getDebugLoc(); |
| 10773 | |
| 10774 | if (isPowerOf2_64(MulAmt2) && |
| 10775 | !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD)) |
| 10776 | // If second multiplifer is pow2, issue it first. We want the multiply by |
| 10777 | // 3, 5, or 9 to be folded into the addressing mode unless the lone use |
| 10778 | // is an add. |
| 10779 | std::swap(MulAmt1, MulAmt2); |
| 10780 | |
| 10781 | SDValue NewMul; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10782 | if (isPowerOf2_64(MulAmt1)) |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 10783 | NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10784 | DAG.getConstant(Log2_64(MulAmt1), MVT::i8)); |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 10785 | else |
Evan Cheng | 73f24c9 | 2009-03-30 21:36:47 +0000 | [diff] [blame] | 10786 | NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0), |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 10787 | DAG.getConstant(MulAmt1, VT)); |
| 10788 | |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10789 | if (isPowerOf2_64(MulAmt2)) |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 10790 | NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10791 | DAG.getConstant(Log2_64(MulAmt2), MVT::i8)); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10792 | else |
Evan Cheng | 73f24c9 | 2009-03-30 21:36:47 +0000 | [diff] [blame] | 10793 | NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul, |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 10794 | DAG.getConstant(MulAmt2, VT)); |
| 10795 | |
| 10796 | // Do not add new nodes to DAG combiner worklist. |
| 10797 | DCI.CombineTo(N, NewMul, false); |
| 10798 | } |
| 10799 | return SDValue(); |
| 10800 | } |
| 10801 | |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 10802 | static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) { |
| 10803 | SDValue N0 = N->getOperand(0); |
| 10804 | SDValue N1 = N->getOperand(1); |
| 10805 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
| 10806 | EVT VT = N0.getValueType(); |
| 10807 | |
| 10808 | // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2)) |
| 10809 | // since the result of setcc_c is all zero's or all ones. |
| 10810 | if (N1C && N0.getOpcode() == ISD::AND && |
| 10811 | N0.getOperand(1).getOpcode() == ISD::Constant) { |
| 10812 | SDValue N00 = N0.getOperand(0); |
| 10813 | if (N00.getOpcode() == X86ISD::SETCC_CARRY || |
| 10814 | ((N00.getOpcode() == ISD::ANY_EXTEND || |
| 10815 | N00.getOpcode() == ISD::ZERO_EXTEND) && |
| 10816 | N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) { |
| 10817 | APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); |
| 10818 | APInt ShAmt = N1C->getAPIntValue(); |
| 10819 | Mask = Mask.shl(ShAmt); |
| 10820 | if (Mask != 0) |
| 10821 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, |
| 10822 | N00, DAG.getConstant(Mask, VT)); |
| 10823 | } |
| 10824 | } |
| 10825 | |
| 10826 | return SDValue(); |
| 10827 | } |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 10828 | |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10829 | /// PerformShiftCombine - Transforms vector shift nodes to use vector shifts |
| 10830 | /// when possible. |
| 10831 | static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG, |
| 10832 | const X86Subtarget *Subtarget) { |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 10833 | EVT VT = N->getValueType(0); |
| 10834 | if (!VT.isVector() && VT.isInteger() && |
| 10835 | N->getOpcode() == ISD::SHL) |
| 10836 | return PerformSHLCombine(N, DAG); |
| 10837 | |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10838 | // On X86 with SSE2 support, we can transform this to a vector shift if |
| 10839 | // all elements are shifted by the same amount. We can't do this in legalize |
| 10840 | // because the a constant vector is typically transformed to a constant pool |
| 10841 | // so we have no knowledge of the shift amount. |
Nate Begeman | c2fd67f | 2009-01-26 03:15:31 +0000 | [diff] [blame] | 10842 | if (!Subtarget->hasSSE2()) |
| 10843 | return SDValue(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10844 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10845 | if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16) |
Nate Begeman | c2fd67f | 2009-01-26 03:15:31 +0000 | [diff] [blame] | 10846 | return SDValue(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10847 | |
Mon P Wang | 3becd09 | 2009-01-28 08:12:05 +0000 | [diff] [blame] | 10848 | SDValue ShAmtOp = N->getOperand(1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 10849 | EVT EltVT = VT.getVectorElementType(); |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10850 | DebugLoc DL = N->getDebugLoc(); |
Mon P Wang | efa4220 | 2009-09-03 19:56:25 +0000 | [diff] [blame] | 10851 | SDValue BaseShAmt = SDValue(); |
Mon P Wang | 3becd09 | 2009-01-28 08:12:05 +0000 | [diff] [blame] | 10852 | if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) { |
| 10853 | unsigned NumElts = VT.getVectorNumElements(); |
| 10854 | unsigned i = 0; |
| 10855 | for (; i != NumElts; ++i) { |
| 10856 | SDValue Arg = ShAmtOp.getOperand(i); |
| 10857 | if (Arg.getOpcode() == ISD::UNDEF) continue; |
| 10858 | BaseShAmt = Arg; |
| 10859 | break; |
| 10860 | } |
| 10861 | for (; i != NumElts; ++i) { |
| 10862 | SDValue Arg = ShAmtOp.getOperand(i); |
| 10863 | if (Arg.getOpcode() == ISD::UNDEF) continue; |
| 10864 | if (Arg != BaseShAmt) { |
| 10865 | return SDValue(); |
| 10866 | } |
| 10867 | } |
| 10868 | } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE && |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 10869 | cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) { |
Mon P Wang | efa4220 | 2009-09-03 19:56:25 +0000 | [diff] [blame] | 10870 | SDValue InVec = ShAmtOp.getOperand(0); |
| 10871 | if (InVec.getOpcode() == ISD::BUILD_VECTOR) { |
| 10872 | unsigned NumElts = InVec.getValueType().getVectorNumElements(); |
| 10873 | unsigned i = 0; |
| 10874 | for (; i != NumElts; ++i) { |
| 10875 | SDValue Arg = InVec.getOperand(i); |
| 10876 | if (Arg.getOpcode() == ISD::UNDEF) continue; |
| 10877 | BaseShAmt = Arg; |
| 10878 | break; |
| 10879 | } |
| 10880 | } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) { |
| 10881 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) { |
Evan Cheng | ae3ecf9 | 2010-02-16 21:09:44 +0000 | [diff] [blame] | 10882 | unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex(); |
Mon P Wang | efa4220 | 2009-09-03 19:56:25 +0000 | [diff] [blame] | 10883 | if (C->getZExtValue() == SplatIdx) |
| 10884 | BaseShAmt = InVec.getOperand(1); |
| 10885 | } |
| 10886 | } |
| 10887 | if (BaseShAmt.getNode() == 0) |
| 10888 | BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp, |
| 10889 | DAG.getIntPtrConstant(0)); |
Mon P Wang | 3becd09 | 2009-01-28 08:12:05 +0000 | [diff] [blame] | 10890 | } else |
Nate Begeman | c2fd67f | 2009-01-26 03:15:31 +0000 | [diff] [blame] | 10891 | return SDValue(); |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10892 | |
Mon P Wang | efa4220 | 2009-09-03 19:56:25 +0000 | [diff] [blame] | 10893 | // The shift amount is an i32. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10894 | if (EltVT.bitsGT(MVT::i32)) |
| 10895 | BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt); |
| 10896 | else if (EltVT.bitsLT(MVT::i32)) |
Mon P Wang | efa4220 | 2009-09-03 19:56:25 +0000 | [diff] [blame] | 10897 | BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt); |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10898 | |
Nate Begeman | c2fd67f | 2009-01-26 03:15:31 +0000 | [diff] [blame] | 10899 | // The shift amount is identical so we can do a vector shift. |
| 10900 | SDValue ValOp = N->getOperand(0); |
| 10901 | switch (N->getOpcode()) { |
| 10902 | default: |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 10903 | llvm_unreachable("Unknown shift opcode!"); |
Nate Begeman | c2fd67f | 2009-01-26 03:15:31 +0000 | [diff] [blame] | 10904 | break; |
| 10905 | case ISD::SHL: |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10906 | if (VT == MVT::v2i64) |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10907 | return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10908 | DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32), |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10909 | ValOp, BaseShAmt); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10910 | if (VT == MVT::v4i32) |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10911 | return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10912 | DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32), |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10913 | ValOp, BaseShAmt); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10914 | if (VT == MVT::v8i16) |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10915 | return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10916 | DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10917 | ValOp, BaseShAmt); |
Nate Begeman | c2fd67f | 2009-01-26 03:15:31 +0000 | [diff] [blame] | 10918 | break; |
| 10919 | case ISD::SRA: |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10920 | if (VT == MVT::v4i32) |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10921 | return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10922 | DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32), |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10923 | ValOp, BaseShAmt); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10924 | if (VT == MVT::v8i16) |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10925 | return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10926 | DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32), |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10927 | ValOp, BaseShAmt); |
Nate Begeman | c2fd67f | 2009-01-26 03:15:31 +0000 | [diff] [blame] | 10928 | break; |
| 10929 | case ISD::SRL: |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10930 | if (VT == MVT::v2i64) |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10931 | return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10932 | DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32), |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10933 | ValOp, BaseShAmt); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10934 | if (VT == MVT::v4i32) |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10935 | return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10936 | DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32), |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10937 | ValOp, BaseShAmt); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10938 | if (VT == MVT::v8i16) |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10939 | return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10940 | DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32), |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10941 | ValOp, BaseShAmt); |
Nate Begeman | c2fd67f | 2009-01-26 03:15:31 +0000 | [diff] [blame] | 10942 | break; |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10943 | } |
| 10944 | return SDValue(); |
| 10945 | } |
| 10946 | |
Evan Cheng | 760d194 | 2010-01-04 21:22:48 +0000 | [diff] [blame] | 10947 | static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG, |
Evan Cheng | 8b1190a | 2010-04-28 01:18:01 +0000 | [diff] [blame] | 10948 | TargetLowering::DAGCombinerInfo &DCI, |
Evan Cheng | 760d194 | 2010-01-04 21:22:48 +0000 | [diff] [blame] | 10949 | const X86Subtarget *Subtarget) { |
Evan Cheng | 39cfeec | 2010-04-28 02:25:18 +0000 | [diff] [blame] | 10950 | if (DCI.isBeforeLegalizeOps()) |
Evan Cheng | 8b1190a | 2010-04-28 01:18:01 +0000 | [diff] [blame] | 10951 | return SDValue(); |
| 10952 | |
Evan Cheng | 760d194 | 2010-01-04 21:22:48 +0000 | [diff] [blame] | 10953 | EVT VT = N->getValueType(0); |
Evan Cheng | 8b1190a | 2010-04-28 01:18:01 +0000 | [diff] [blame] | 10954 | if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64) |
Evan Cheng | 760d194 | 2010-01-04 21:22:48 +0000 | [diff] [blame] | 10955 | return SDValue(); |
| 10956 | |
| 10957 | // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c) |
| 10958 | SDValue N0 = N->getOperand(0); |
| 10959 | SDValue N1 = N->getOperand(1); |
| 10960 | if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL) |
| 10961 | std::swap(N0, N1); |
| 10962 | if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL) |
| 10963 | return SDValue(); |
Evan Cheng | 8b1190a | 2010-04-28 01:18:01 +0000 | [diff] [blame] | 10964 | if (!N0.hasOneUse() || !N1.hasOneUse()) |
| 10965 | return SDValue(); |
Evan Cheng | 760d194 | 2010-01-04 21:22:48 +0000 | [diff] [blame] | 10966 | |
| 10967 | SDValue ShAmt0 = N0.getOperand(1); |
| 10968 | if (ShAmt0.getValueType() != MVT::i8) |
| 10969 | return SDValue(); |
| 10970 | SDValue ShAmt1 = N1.getOperand(1); |
| 10971 | if (ShAmt1.getValueType() != MVT::i8) |
| 10972 | return SDValue(); |
| 10973 | if (ShAmt0.getOpcode() == ISD::TRUNCATE) |
| 10974 | ShAmt0 = ShAmt0.getOperand(0); |
| 10975 | if (ShAmt1.getOpcode() == ISD::TRUNCATE) |
| 10976 | ShAmt1 = ShAmt1.getOperand(0); |
| 10977 | |
| 10978 | DebugLoc DL = N->getDebugLoc(); |
| 10979 | unsigned Opc = X86ISD::SHLD; |
| 10980 | SDValue Op0 = N0.getOperand(0); |
| 10981 | SDValue Op1 = N1.getOperand(0); |
| 10982 | if (ShAmt0.getOpcode() == ISD::SUB) { |
| 10983 | Opc = X86ISD::SHRD; |
| 10984 | std::swap(Op0, Op1); |
| 10985 | std::swap(ShAmt0, ShAmt1); |
| 10986 | } |
| 10987 | |
Evan Cheng | 8b1190a | 2010-04-28 01:18:01 +0000 | [diff] [blame] | 10988 | unsigned Bits = VT.getSizeInBits(); |
Evan Cheng | 760d194 | 2010-01-04 21:22:48 +0000 | [diff] [blame] | 10989 | if (ShAmt1.getOpcode() == ISD::SUB) { |
| 10990 | SDValue Sum = ShAmt1.getOperand(0); |
| 10991 | if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) { |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 10992 | SDValue ShAmt1Op1 = ShAmt1.getOperand(1); |
| 10993 | if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE) |
| 10994 | ShAmt1Op1 = ShAmt1Op1.getOperand(0); |
| 10995 | if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0) |
Evan Cheng | 760d194 | 2010-01-04 21:22:48 +0000 | [diff] [blame] | 10996 | return DAG.getNode(Opc, DL, VT, |
| 10997 | Op0, Op1, |
| 10998 | DAG.getNode(ISD::TRUNCATE, DL, |
| 10999 | MVT::i8, ShAmt0)); |
| 11000 | } |
| 11001 | } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) { |
| 11002 | ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0); |
| 11003 | if (ShAmt0C && |
Evan Cheng | 8b1190a | 2010-04-28 01:18:01 +0000 | [diff] [blame] | 11004 | ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits) |
Evan Cheng | 760d194 | 2010-01-04 21:22:48 +0000 | [diff] [blame] | 11005 | return DAG.getNode(Opc, DL, VT, |
| 11006 | N0.getOperand(0), N1.getOperand(0), |
| 11007 | DAG.getNode(ISD::TRUNCATE, DL, |
| 11008 | MVT::i8, ShAmt0)); |
| 11009 | } |
| 11010 | |
| 11011 | return SDValue(); |
| 11012 | } |
| 11013 | |
Chris Lattner | 149a4e5 | 2008-02-22 02:09:43 +0000 | [diff] [blame] | 11014 | /// PerformSTORECombine - Do target-specific dag combines on STORE nodes. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11015 | static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG, |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11016 | const X86Subtarget *Subtarget) { |
Chris Lattner | 149a4e5 | 2008-02-22 02:09:43 +0000 | [diff] [blame] | 11017 | // Turn load->store of MMX types into GPR load/stores. This avoids clobbering |
| 11018 | // the FP state in cases where an emms may be missing. |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11019 | // A preferable solution to the general problem is to figure out the right |
| 11020 | // places to insert EMMS. This qualifies as a quick hack. |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11021 | |
| 11022 | // Similarly, turn load->store of i64 into double load/stores in 32-bit mode. |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 11023 | StoreSDNode *St = cast<StoreSDNode>(N); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 11024 | EVT VT = St->getValue().getValueType(); |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11025 | if (VT.getSizeInBits() != 64) |
| 11026 | return SDValue(); |
| 11027 | |
Devang Patel | 578efa9 | 2009-06-05 21:57:13 +0000 | [diff] [blame] | 11028 | const Function *F = DAG.getMachineFunction().getFunction(); |
| 11029 | bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 11030 | bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps |
Devang Patel | 578efa9 | 2009-06-05 21:57:13 +0000 | [diff] [blame] | 11031 | && Subtarget->hasSSE2(); |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11032 | if ((VT.isVector() || |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11033 | (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) && |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11034 | isa<LoadSDNode>(St->getValue()) && |
| 11035 | !cast<LoadSDNode>(St->getValue())->isVolatile() && |
| 11036 | St->getChain().hasOneUse() && !St->isVolatile()) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 11037 | SDNode* LdVal = St->getValue().getNode(); |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11038 | LoadSDNode *Ld = 0; |
| 11039 | int TokenFactorIndex = -1; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11040 | SmallVector<SDValue, 8> Ops; |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 11041 | SDNode* ChainVal = St->getChain().getNode(); |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11042 | // Must be a store of a load. We currently handle two cases: the load |
| 11043 | // is a direct child, and it's under an intervening TokenFactor. It is |
| 11044 | // possible to dig deeper under nested TokenFactors. |
Dale Johannesen | 14e2ea9 | 2008-02-25 22:29:22 +0000 | [diff] [blame] | 11045 | if (ChainVal == LdVal) |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11046 | Ld = cast<LoadSDNode>(St->getChain()); |
| 11047 | else if (St->getValue().hasOneUse() && |
| 11048 | ChainVal->getOpcode() == ISD::TokenFactor) { |
| 11049 | for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 11050 | if (ChainVal->getOperand(i).getNode() == LdVal) { |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11051 | TokenFactorIndex = i; |
| 11052 | Ld = cast<LoadSDNode>(St->getValue()); |
| 11053 | } else |
| 11054 | Ops.push_back(ChainVal->getOperand(i)); |
| 11055 | } |
| 11056 | } |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11057 | |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11058 | if (!Ld || !ISD::isNormalLoad(Ld)) |
| 11059 | return SDValue(); |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11060 | |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11061 | // If this is not the MMX case, i.e. we are just turning i64 load/store |
| 11062 | // into f64 load/store, avoid the transformation if there are multiple |
| 11063 | // uses of the loaded value. |
| 11064 | if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0)) |
| 11065 | return SDValue(); |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11066 | |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11067 | DebugLoc LdDL = Ld->getDebugLoc(); |
| 11068 | DebugLoc StDL = N->getDebugLoc(); |
| 11069 | // If we are a 64-bit capable x86, lower to a single movq load/store pair. |
| 11070 | // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store |
| 11071 | // pair instead. |
| 11072 | if (Subtarget->is64Bit() || F64IsLegal) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11073 | EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64; |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 11074 | SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(), |
| 11075 | Ld->getPointerInfo(), Ld->isVolatile(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 11076 | Ld->isNonTemporal(), Ld->getAlignment()); |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11077 | SDValue NewChain = NewLd.getValue(1); |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11078 | if (TokenFactorIndex != -1) { |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11079 | Ops.push_back(NewChain); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11080 | NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0], |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11081 | Ops.size()); |
| 11082 | } |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11083 | return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(), |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 11084 | St->getPointerInfo(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 11085 | St->isVolatile(), St->isNonTemporal(), |
| 11086 | St->getAlignment()); |
Chris Lattner | 149a4e5 | 2008-02-22 02:09:43 +0000 | [diff] [blame] | 11087 | } |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11088 | |
| 11089 | // Otherwise, lower to two pairs of 32-bit loads / stores. |
| 11090 | SDValue LoAddr = Ld->getBasePtr(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11091 | SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr, |
| 11092 | DAG.getConstant(4, MVT::i32)); |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11093 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11094 | SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr, |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 11095 | Ld->getPointerInfo(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 11096 | Ld->isVolatile(), Ld->isNonTemporal(), |
| 11097 | Ld->getAlignment()); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11098 | SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr, |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 11099 | Ld->getPointerInfo().getWithOffset(4), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 11100 | Ld->isVolatile(), Ld->isNonTemporal(), |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11101 | MinAlign(Ld->getAlignment(), 4)); |
| 11102 | |
| 11103 | SDValue NewChain = LoLd.getValue(1); |
| 11104 | if (TokenFactorIndex != -1) { |
| 11105 | Ops.push_back(LoLd); |
| 11106 | Ops.push_back(HiLd); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11107 | NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0], |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11108 | Ops.size()); |
| 11109 | } |
| 11110 | |
| 11111 | LoAddr = St->getBasePtr(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11112 | HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr, |
| 11113 | DAG.getConstant(4, MVT::i32)); |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11114 | |
| 11115 | SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr, |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 11116 | St->getPointerInfo(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 11117 | St->isVolatile(), St->isNonTemporal(), |
| 11118 | St->getAlignment()); |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11119 | SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr, |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 11120 | St->getPointerInfo().getWithOffset(4), |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11121 | St->isVolatile(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 11122 | St->isNonTemporal(), |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11123 | MinAlign(St->getAlignment(), 4)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11124 | return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt); |
Chris Lattner | 149a4e5 | 2008-02-22 02:09:43 +0000 | [diff] [blame] | 11125 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11126 | return SDValue(); |
Chris Lattner | 149a4e5 | 2008-02-22 02:09:43 +0000 | [diff] [blame] | 11127 | } |
| 11128 | |
Chris Lattner | 6cf7326 | 2008-01-25 06:14:17 +0000 | [diff] [blame] | 11129 | /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and |
| 11130 | /// X86ISD::FXOR nodes. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11131 | static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) { |
Chris Lattner | 6cf7326 | 2008-01-25 06:14:17 +0000 | [diff] [blame] | 11132 | assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR); |
| 11133 | // F[X]OR(0.0, x) -> x |
| 11134 | // F[X]OR(x, 0.0) -> x |
Chris Lattner | af723b9 | 2008-01-25 05:46:26 +0000 | [diff] [blame] | 11135 | if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0))) |
| 11136 | if (C->getValueAPF().isPosZero()) |
| 11137 | return N->getOperand(1); |
| 11138 | if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1))) |
| 11139 | if (C->getValueAPF().isPosZero()) |
| 11140 | return N->getOperand(0); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11141 | return SDValue(); |
Chris Lattner | af723b9 | 2008-01-25 05:46:26 +0000 | [diff] [blame] | 11142 | } |
| 11143 | |
| 11144 | /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11145 | static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) { |
Chris Lattner | af723b9 | 2008-01-25 05:46:26 +0000 | [diff] [blame] | 11146 | // FAND(0.0, x) -> 0.0 |
| 11147 | // FAND(x, 0.0) -> 0.0 |
| 11148 | if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0))) |
| 11149 | if (C->getValueAPF().isPosZero()) |
| 11150 | return N->getOperand(0); |
| 11151 | if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1))) |
| 11152 | if (C->getValueAPF().isPosZero()) |
| 11153 | return N->getOperand(1); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11154 | return SDValue(); |
Chris Lattner | af723b9 | 2008-01-25 05:46:26 +0000 | [diff] [blame] | 11155 | } |
| 11156 | |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 11157 | static SDValue PerformBTCombine(SDNode *N, |
| 11158 | SelectionDAG &DAG, |
| 11159 | TargetLowering::DAGCombinerInfo &DCI) { |
| 11160 | // BT ignores high bits in the bit index operand. |
| 11161 | SDValue Op1 = N->getOperand(1); |
| 11162 | if (Op1.hasOneUse()) { |
| 11163 | unsigned BitWidth = Op1.getValueSizeInBits(); |
| 11164 | APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth)); |
| 11165 | APInt KnownZero, KnownOne; |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 11166 | TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(), |
| 11167 | !DCI.isBeforeLegalizeOps()); |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 11168 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 11169 | if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) || |
| 11170 | TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO)) |
| 11171 | DCI.CommitTargetLoweringOpt(TLO); |
| 11172 | } |
| 11173 | return SDValue(); |
| 11174 | } |
Chris Lattner | 83e6c99 | 2006-10-04 06:57:07 +0000 | [diff] [blame] | 11175 | |
Eli Friedman | 7a5e555 | 2009-06-07 06:52:44 +0000 | [diff] [blame] | 11176 | static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) { |
| 11177 | SDValue Op = N->getOperand(0); |
| 11178 | if (Op.getOpcode() == ISD::BIT_CONVERT) |
| 11179 | Op = Op.getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 11180 | EVT VT = N->getValueType(0), OpVT = Op.getValueType(); |
Eli Friedman | 7a5e555 | 2009-06-07 06:52:44 +0000 | [diff] [blame] | 11181 | if (Op.getOpcode() == X86ISD::VZEXT_LOAD && |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 11182 | VT.getVectorElementType().getSizeInBits() == |
Eli Friedman | 7a5e555 | 2009-06-07 06:52:44 +0000 | [diff] [blame] | 11183 | OpVT.getVectorElementType().getSizeInBits()) { |
| 11184 | return DAG.getNode(ISD::BIT_CONVERT, N->getDebugLoc(), VT, Op); |
| 11185 | } |
| 11186 | return SDValue(); |
| 11187 | } |
| 11188 | |
Evan Cheng | 2e489c4 | 2009-12-16 00:53:11 +0000 | [diff] [blame] | 11189 | static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) { |
| 11190 | // (i32 zext (and (i8 x86isd::setcc_carry), 1)) -> |
| 11191 | // (and (i32 x86isd::setcc_carry), 1) |
| 11192 | // This eliminates the zext. This transformation is necessary because |
| 11193 | // ISD::SETCC is always legalized to i8. |
| 11194 | DebugLoc dl = N->getDebugLoc(); |
| 11195 | SDValue N0 = N->getOperand(0); |
| 11196 | EVT VT = N->getValueType(0); |
| 11197 | if (N0.getOpcode() == ISD::AND && |
| 11198 | N0.hasOneUse() && |
| 11199 | N0.getOperand(0).hasOneUse()) { |
| 11200 | SDValue N00 = N0.getOperand(0); |
| 11201 | if (N00.getOpcode() != X86ISD::SETCC_CARRY) |
| 11202 | return SDValue(); |
| 11203 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); |
| 11204 | if (!C || C->getZExtValue() != 1) |
| 11205 | return SDValue(); |
| 11206 | return DAG.getNode(ISD::AND, dl, VT, |
| 11207 | DAG.getNode(X86ISD::SETCC_CARRY, dl, VT, |
| 11208 | N00.getOperand(0), N00.getOperand(1)), |
| 11209 | DAG.getConstant(1, VT)); |
| 11210 | } |
| 11211 | |
| 11212 | return SDValue(); |
| 11213 | } |
| 11214 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11215 | SDValue X86TargetLowering::PerformDAGCombine(SDNode *N, |
Evan Cheng | 9dd93b3 | 2008-11-05 06:03:38 +0000 | [diff] [blame] | 11216 | DAGCombinerInfo &DCI) const { |
Evan Cheng | 206ee9d | 2006-07-07 08:33:52 +0000 | [diff] [blame] | 11217 | SelectionDAG &DAG = DCI.DAG; |
| 11218 | switch (N->getOpcode()) { |
| 11219 | default: break; |
Dan Gohman | 1bbf72b | 2010-03-15 23:23:03 +0000 | [diff] [blame] | 11220 | case ISD::EXTRACT_VECTOR_ELT: |
| 11221 | return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this); |
Chris Lattner | af723b9 | 2008-01-25 05:46:26 +0000 | [diff] [blame] | 11222 | case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget); |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 11223 | case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI); |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 11224 | case ISD::MUL: return PerformMulCombine(N, DAG, DCI); |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 11225 | case ISD::SHL: |
| 11226 | case ISD::SRA: |
| 11227 | case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget); |
Evan Cheng | 8b1190a | 2010-04-28 01:18:01 +0000 | [diff] [blame] | 11228 | case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget); |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 11229 | case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget); |
Chris Lattner | 6cf7326 | 2008-01-25 06:14:17 +0000 | [diff] [blame] | 11230 | case X86ISD::FXOR: |
Chris Lattner | af723b9 | 2008-01-25 05:46:26 +0000 | [diff] [blame] | 11231 | case X86ISD::FOR: return PerformFORCombine(N, DAG); |
| 11232 | case X86ISD::FAND: return PerformFANDCombine(N, DAG); |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 11233 | case X86ISD::BT: return PerformBTCombine(N, DAG, DCI); |
Eli Friedman | 7a5e555 | 2009-06-07 06:52:44 +0000 | [diff] [blame] | 11234 | case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG); |
Evan Cheng | 2e489c4 | 2009-12-16 00:53:11 +0000 | [diff] [blame] | 11235 | case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG); |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 11236 | case X86ISD::SHUFPS: // Handle all target specific shuffles |
| 11237 | case X86ISD::SHUFPD: |
Bruno Cardoso Lopes | aace0f2 | 2010-09-04 02:36:07 +0000 | [diff] [blame] | 11238 | case X86ISD::PALIGN: |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 11239 | case X86ISD::PUNPCKHBW: |
| 11240 | case X86ISD::PUNPCKHWD: |
| 11241 | case X86ISD::PUNPCKHDQ: |
| 11242 | case X86ISD::PUNPCKHQDQ: |
| 11243 | case X86ISD::UNPCKHPS: |
| 11244 | case X86ISD::UNPCKHPD: |
| 11245 | case X86ISD::PUNPCKLBW: |
| 11246 | case X86ISD::PUNPCKLWD: |
| 11247 | case X86ISD::PUNPCKLDQ: |
| 11248 | case X86ISD::PUNPCKLQDQ: |
| 11249 | case X86ISD::UNPCKLPS: |
| 11250 | case X86ISD::UNPCKLPD: |
| 11251 | case X86ISD::MOVHLPS: |
| 11252 | case X86ISD::MOVLHPS: |
| 11253 | case X86ISD::PSHUFD: |
| 11254 | case X86ISD::PSHUFHW: |
| 11255 | case X86ISD::PSHUFLW: |
| 11256 | case X86ISD::MOVSS: |
| 11257 | case X86ISD::MOVSD: |
| 11258 | case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this); |
Evan Cheng | 206ee9d | 2006-07-07 08:33:52 +0000 | [diff] [blame] | 11259 | } |
| 11260 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11261 | return SDValue(); |
Evan Cheng | 206ee9d | 2006-07-07 08:33:52 +0000 | [diff] [blame] | 11262 | } |
| 11263 | |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 11264 | /// isTypeDesirableForOp - Return true if the target has native support for |
| 11265 | /// the specified value type and it is 'desirable' to use the type for the |
| 11266 | /// given node type. e.g. On x86 i16 is legal, but undesirable since i16 |
| 11267 | /// instruction encodings are longer and some i16 instructions are slow. |
| 11268 | bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const { |
| 11269 | if (!isTypeLegal(VT)) |
| 11270 | return false; |
Evan Cheng | 2bce5f4b | 2010-04-28 08:30:49 +0000 | [diff] [blame] | 11271 | if (VT != MVT::i16) |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 11272 | return true; |
| 11273 | |
| 11274 | switch (Opc) { |
| 11275 | default: |
| 11276 | return true; |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 11277 | case ISD::LOAD: |
| 11278 | case ISD::SIGN_EXTEND: |
| 11279 | case ISD::ZERO_EXTEND: |
| 11280 | case ISD::ANY_EXTEND: |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 11281 | case ISD::SHL: |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 11282 | case ISD::SRL: |
| 11283 | case ISD::SUB: |
| 11284 | case ISD::ADD: |
| 11285 | case ISD::MUL: |
| 11286 | case ISD::AND: |
| 11287 | case ISD::OR: |
| 11288 | case ISD::XOR: |
| 11289 | return false; |
| 11290 | } |
| 11291 | } |
| 11292 | |
| 11293 | /// IsDesirableToPromoteOp - This method query the target whether it is |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 11294 | /// beneficial for dag combiner to promote the specified node. If true, it |
| 11295 | /// should return the desired promotion type by reference. |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 11296 | bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const { |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 11297 | EVT VT = Op.getValueType(); |
| 11298 | if (VT != MVT::i16) |
| 11299 | return false; |
| 11300 | |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 11301 | bool Promote = false; |
| 11302 | bool Commute = false; |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 11303 | switch (Op.getOpcode()) { |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 11304 | default: break; |
| 11305 | case ISD::LOAD: { |
| 11306 | LoadSDNode *LD = cast<LoadSDNode>(Op); |
| 11307 | // If the non-extending load has a single use and it's not live out, then it |
| 11308 | // might be folded. |
Evan Cheng | 2bce5f4b | 2010-04-28 08:30:49 +0000 | [diff] [blame] | 11309 | if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&& |
| 11310 | Op.hasOneUse()*/) { |
| 11311 | for (SDNode::use_iterator UI = Op.getNode()->use_begin(), |
| 11312 | UE = Op.getNode()->use_end(); UI != UE; ++UI) { |
| 11313 | // The only case where we'd want to promote LOAD (rather then it being |
| 11314 | // promoted as an operand is when it's only use is liveout. |
| 11315 | if (UI->getOpcode() != ISD::CopyToReg) |
| 11316 | return false; |
| 11317 | } |
| 11318 | } |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 11319 | Promote = true; |
| 11320 | break; |
| 11321 | } |
| 11322 | case ISD::SIGN_EXTEND: |
| 11323 | case ISD::ZERO_EXTEND: |
| 11324 | case ISD::ANY_EXTEND: |
| 11325 | Promote = true; |
| 11326 | break; |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 11327 | case ISD::SHL: |
Evan Cheng | 2bce5f4b | 2010-04-28 08:30:49 +0000 | [diff] [blame] | 11328 | case ISD::SRL: { |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 11329 | SDValue N0 = Op.getOperand(0); |
| 11330 | // Look out for (store (shl (load), x)). |
Evan Cheng | c82c20b | 2010-04-24 04:44:57 +0000 | [diff] [blame] | 11331 | if (MayFoldLoad(N0) && MayFoldIntoStore(Op)) |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 11332 | return false; |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 11333 | Promote = true; |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 11334 | break; |
| 11335 | } |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 11336 | case ISD::ADD: |
| 11337 | case ISD::MUL: |
| 11338 | case ISD::AND: |
| 11339 | case ISD::OR: |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 11340 | case ISD::XOR: |
| 11341 | Commute = true; |
| 11342 | // fallthrough |
| 11343 | case ISD::SUB: { |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 11344 | SDValue N0 = Op.getOperand(0); |
| 11345 | SDValue N1 = Op.getOperand(1); |
Evan Cheng | c82c20b | 2010-04-24 04:44:57 +0000 | [diff] [blame] | 11346 | if (!Commute && MayFoldLoad(N1)) |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 11347 | return false; |
| 11348 | // Avoid disabling potential load folding opportunities. |
Evan Cheng | c82c20b | 2010-04-24 04:44:57 +0000 | [diff] [blame] | 11349 | if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op))) |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 11350 | return false; |
Evan Cheng | c82c20b | 2010-04-24 04:44:57 +0000 | [diff] [blame] | 11351 | if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op))) |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 11352 | return false; |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 11353 | Promote = true; |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 11354 | } |
| 11355 | } |
| 11356 | |
| 11357 | PVT = MVT::i32; |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 11358 | return Promote; |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 11359 | } |
| 11360 | |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 11361 | //===----------------------------------------------------------------------===// |
| 11362 | // X86 Inline Assembly Support |
| 11363 | //===----------------------------------------------------------------------===// |
| 11364 | |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11365 | static bool LowerToBSwap(CallInst *CI) { |
| 11366 | // FIXME: this should verify that we are targetting a 486 or better. If not, |
| 11367 | // we will turn this bswap into something that will be lowered to logical ops |
| 11368 | // instead of emitting the bswap asm. For now, we don't support 486 or lower |
| 11369 | // so don't worry about this. |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 11370 | |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11371 | // Verify this is a simple bswap. |
Gabor Greif | e1c2b9c | 2010-06-30 13:03:37 +0000 | [diff] [blame] | 11372 | if (CI->getNumArgOperands() != 1 || |
Gabor Greif | 1cfe44a | 2010-06-26 11:51:52 +0000 | [diff] [blame] | 11373 | CI->getType() != CI->getArgOperand(0)->getType() || |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 11374 | !CI->getType()->isIntegerTy()) |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11375 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 11376 | |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11377 | const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType()); |
| 11378 | if (!Ty || Ty->getBitWidth() % 16 != 0) |
| 11379 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 11380 | |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11381 | // Okay, we can do this xform, do so now. |
| 11382 | const Type *Tys[] = { Ty }; |
| 11383 | Module *M = CI->getParent()->getParent()->getParent(); |
| 11384 | Constant *Int = Intrinsic::getDeclaration(M, Intrinsic::bswap, Tys, 1); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 11385 | |
Gabor Greif | 1cfe44a | 2010-06-26 11:51:52 +0000 | [diff] [blame] | 11386 | Value *Op = CI->getArgOperand(0); |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11387 | Op = CallInst::Create(Int, Op, CI->getName(), CI); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 11388 | |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11389 | CI->replaceAllUsesWith(Op); |
| 11390 | CI->eraseFromParent(); |
| 11391 | return true; |
| 11392 | } |
| 11393 | |
| 11394 | bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const { |
| 11395 | InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue()); |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11396 | InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints(); |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11397 | |
| 11398 | std::string AsmStr = IA->getAsmString(); |
| 11399 | |
| 11400 | // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a" |
Benjamin Kramer | d4f1959 | 2010-01-11 18:03:24 +0000 | [diff] [blame] | 11401 | SmallVector<StringRef, 4> AsmPieces; |
Peter Collingbourne | 9836118 | 2010-11-13 19:54:23 +0000 | [diff] [blame] | 11402 | SplitString(AsmStr, AsmPieces, ";\n"); |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11403 | |
| 11404 | switch (AsmPieces.size()) { |
| 11405 | default: return false; |
| 11406 | case 1: |
| 11407 | AsmStr = AsmPieces[0]; |
| 11408 | AsmPieces.clear(); |
| 11409 | SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace. |
| 11410 | |
| 11411 | // bswap $0 |
| 11412 | if (AsmPieces.size() == 2 && |
| 11413 | (AsmPieces[0] == "bswap" || |
| 11414 | AsmPieces[0] == "bswapq" || |
| 11415 | AsmPieces[0] == "bswapl") && |
| 11416 | (AsmPieces[1] == "$0" || |
| 11417 | AsmPieces[1] == "${0:q}")) { |
| 11418 | // No need to check constraints, nothing other than the equivalent of |
| 11419 | // "=r,0" would be valid here. |
| 11420 | return LowerToBSwap(CI); |
| 11421 | } |
| 11422 | // rorw $$8, ${0:w} --> llvm.bswap.i16 |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 11423 | if (CI->getType()->isIntegerTy(16) && |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11424 | AsmPieces.size() == 3 && |
Dan Gohman | 0ef701e | 2010-03-04 19:58:08 +0000 | [diff] [blame] | 11425 | (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") && |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11426 | AsmPieces[1] == "$$8," && |
| 11427 | AsmPieces[2] == "${0:w}" && |
Dan Gohman | 0ef701e | 2010-03-04 19:58:08 +0000 | [diff] [blame] | 11428 | IA->getConstraintString().compare(0, 5, "=r,0,") == 0) { |
| 11429 | AsmPieces.clear(); |
Benjamin Kramer | 018cbd5 | 2010-03-12 13:54:59 +0000 | [diff] [blame] | 11430 | const std::string &Constraints = IA->getConstraintString(); |
| 11431 | SplitString(StringRef(Constraints).substr(5), AsmPieces, ","); |
Dan Gohman | 0ef701e | 2010-03-04 19:58:08 +0000 | [diff] [blame] | 11432 | std::sort(AsmPieces.begin(), AsmPieces.end()); |
| 11433 | if (AsmPieces.size() == 4 && |
| 11434 | AsmPieces[0] == "~{cc}" && |
| 11435 | AsmPieces[1] == "~{dirflag}" && |
| 11436 | AsmPieces[2] == "~{flags}" && |
| 11437 | AsmPieces[3] == "~{fpsr}") { |
| 11438 | return LowerToBSwap(CI); |
| 11439 | } |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11440 | } |
| 11441 | break; |
| 11442 | case 3: |
Peter Collingbourne | 948cf02 | 2010-11-13 19:54:30 +0000 | [diff] [blame] | 11443 | if (CI->getType()->isIntegerTy(32) && |
| 11444 | IA->getConstraintString().compare(0, 5, "=r,0,") == 0) { |
| 11445 | SmallVector<StringRef, 4> Words; |
| 11446 | SplitString(AsmPieces[0], Words, " \t,"); |
| 11447 | if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" && |
| 11448 | Words[2] == "${0:w}") { |
| 11449 | Words.clear(); |
| 11450 | SplitString(AsmPieces[1], Words, " \t,"); |
| 11451 | if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" && |
| 11452 | Words[2] == "$0") { |
| 11453 | Words.clear(); |
| 11454 | SplitString(AsmPieces[2], Words, " \t,"); |
| 11455 | if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" && |
| 11456 | Words[2] == "${0:w}") { |
| 11457 | AsmPieces.clear(); |
| 11458 | const std::string &Constraints = IA->getConstraintString(); |
| 11459 | SplitString(StringRef(Constraints).substr(5), AsmPieces, ","); |
| 11460 | std::sort(AsmPieces.begin(), AsmPieces.end()); |
| 11461 | if (AsmPieces.size() == 4 && |
| 11462 | AsmPieces[0] == "~{cc}" && |
| 11463 | AsmPieces[1] == "~{dirflag}" && |
| 11464 | AsmPieces[2] == "~{flags}" && |
| 11465 | AsmPieces[3] == "~{fpsr}") { |
| 11466 | return LowerToBSwap(CI); |
| 11467 | } |
| 11468 | } |
| 11469 | } |
| 11470 | } |
| 11471 | } |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 11472 | if (CI->getType()->isIntegerTy(64) && |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 11473 | Constraints.size() >= 2 && |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11474 | Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" && |
| 11475 | Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") { |
| 11476 | // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64 |
Benjamin Kramer | d4f1959 | 2010-01-11 18:03:24 +0000 | [diff] [blame] | 11477 | SmallVector<StringRef, 4> Words; |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11478 | SplitString(AsmPieces[0], Words, " \t"); |
| 11479 | if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") { |
| 11480 | Words.clear(); |
| 11481 | SplitString(AsmPieces[1], Words, " \t"); |
| 11482 | if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") { |
| 11483 | Words.clear(); |
| 11484 | SplitString(AsmPieces[2], Words, " \t,"); |
| 11485 | if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" && |
| 11486 | Words[2] == "%edx") { |
| 11487 | return LowerToBSwap(CI); |
| 11488 | } |
| 11489 | } |
| 11490 | } |
| 11491 | } |
| 11492 | break; |
| 11493 | } |
| 11494 | return false; |
| 11495 | } |
| 11496 | |
| 11497 | |
| 11498 | |
Chris Lattner | f4dff84 | 2006-07-11 02:54:03 +0000 | [diff] [blame] | 11499 | /// getConstraintType - Given a constraint letter, return the type of |
| 11500 | /// constraint it is for this target. |
| 11501 | X86TargetLowering::ConstraintType |
Chris Lattner | 4234f57 | 2007-03-25 02:14:49 +0000 | [diff] [blame] | 11502 | X86TargetLowering::getConstraintType(const std::string &Constraint) const { |
| 11503 | if (Constraint.size() == 1) { |
| 11504 | switch (Constraint[0]) { |
Chris Lattner | 4234f57 | 2007-03-25 02:14:49 +0000 | [diff] [blame] | 11505 | case 'R': |
Chris Lattner | 4234f57 | 2007-03-25 02:14:49 +0000 | [diff] [blame] | 11506 | case 'q': |
| 11507 | case 'Q': |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11508 | case 'f': |
| 11509 | case 't': |
| 11510 | case 'u': |
Dale Johannesen | 2ffbcac | 2008-04-01 00:57:48 +0000 | [diff] [blame] | 11511 | case 'y': |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11512 | case 'x': |
Chris Lattner | 4234f57 | 2007-03-25 02:14:49 +0000 | [diff] [blame] | 11513 | case 'Y': |
| 11514 | return C_RegisterClass; |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11515 | case 'a': |
| 11516 | case 'b': |
| 11517 | case 'c': |
| 11518 | case 'd': |
| 11519 | case 'S': |
| 11520 | case 'D': |
| 11521 | case 'A': |
| 11522 | return C_Register; |
| 11523 | case 'I': |
| 11524 | case 'J': |
| 11525 | case 'K': |
| 11526 | case 'L': |
| 11527 | case 'M': |
| 11528 | case 'N': |
| 11529 | case 'G': |
| 11530 | case 'C': |
Dale Johannesen | 78e3e52 | 2009-02-12 20:58:09 +0000 | [diff] [blame] | 11531 | case 'e': |
| 11532 | case 'Z': |
| 11533 | return C_Other; |
Chris Lattner | 4234f57 | 2007-03-25 02:14:49 +0000 | [diff] [blame] | 11534 | default: |
| 11535 | break; |
| 11536 | } |
Chris Lattner | f4dff84 | 2006-07-11 02:54:03 +0000 | [diff] [blame] | 11537 | } |
Chris Lattner | 4234f57 | 2007-03-25 02:14:49 +0000 | [diff] [blame] | 11538 | return TargetLowering::getConstraintType(Constraint); |
Chris Lattner | f4dff84 | 2006-07-11 02:54:03 +0000 | [diff] [blame] | 11539 | } |
| 11540 | |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11541 | /// Examine constraint type and operand type and determine a weight value. |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 11542 | /// This object must already have been set up with the operand type |
| 11543 | /// and the current alternative constraint selected. |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11544 | TargetLowering::ConstraintWeight |
| 11545 | X86TargetLowering::getSingleConstraintMatchWeight( |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 11546 | AsmOperandInfo &info, const char *constraint) const { |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11547 | ConstraintWeight weight = CW_Invalid; |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 11548 | Value *CallOperandVal = info.CallOperandVal; |
| 11549 | // If we don't have a value, we can't do a match, |
| 11550 | // but allow it at the lowest weight. |
| 11551 | if (CallOperandVal == NULL) |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11552 | return CW_Default; |
| 11553 | const Type *type = CallOperandVal->getType(); |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 11554 | // Look at the constraint type. |
| 11555 | switch (*constraint) { |
| 11556 | default: |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11557 | weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint); |
| 11558 | case 'R': |
| 11559 | case 'q': |
| 11560 | case 'Q': |
| 11561 | case 'a': |
| 11562 | case 'b': |
| 11563 | case 'c': |
| 11564 | case 'd': |
| 11565 | case 'S': |
| 11566 | case 'D': |
| 11567 | case 'A': |
| 11568 | if (CallOperandVal->getType()->isIntegerTy()) |
| 11569 | weight = CW_SpecificReg; |
| 11570 | break; |
| 11571 | case 'f': |
| 11572 | case 't': |
| 11573 | case 'u': |
| 11574 | if (type->isFloatingPointTy()) |
| 11575 | weight = CW_SpecificReg; |
| 11576 | break; |
| 11577 | case 'y': |
| 11578 | if (type->isX86_MMXTy() && !DisableMMX && Subtarget->hasMMX()) |
| 11579 | weight = CW_SpecificReg; |
| 11580 | break; |
| 11581 | case 'x': |
| 11582 | case 'Y': |
| 11583 | if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) |
| 11584 | weight = CW_Register; |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 11585 | break; |
| 11586 | case 'I': |
| 11587 | if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) { |
| 11588 | if (C->getZExtValue() <= 31) |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11589 | weight = CW_Constant; |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 11590 | } |
| 11591 | break; |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11592 | case 'J': |
| 11593 | if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) { |
| 11594 | if (C->getZExtValue() <= 63) |
| 11595 | weight = CW_Constant; |
| 11596 | } |
| 11597 | break; |
| 11598 | case 'K': |
| 11599 | if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) { |
| 11600 | if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f)) |
| 11601 | weight = CW_Constant; |
| 11602 | } |
| 11603 | break; |
| 11604 | case 'L': |
| 11605 | if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) { |
| 11606 | if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff)) |
| 11607 | weight = CW_Constant; |
| 11608 | } |
| 11609 | break; |
| 11610 | case 'M': |
| 11611 | if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) { |
| 11612 | if (C->getZExtValue() <= 3) |
| 11613 | weight = CW_Constant; |
| 11614 | } |
| 11615 | break; |
| 11616 | case 'N': |
| 11617 | if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) { |
| 11618 | if (C->getZExtValue() <= 0xff) |
| 11619 | weight = CW_Constant; |
| 11620 | } |
| 11621 | break; |
| 11622 | case 'G': |
| 11623 | case 'C': |
| 11624 | if (dyn_cast<ConstantFP>(CallOperandVal)) { |
| 11625 | weight = CW_Constant; |
| 11626 | } |
| 11627 | break; |
| 11628 | case 'e': |
| 11629 | if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) { |
| 11630 | if ((C->getSExtValue() >= -0x80000000LL) && |
| 11631 | (C->getSExtValue() <= 0x7fffffffLL)) |
| 11632 | weight = CW_Constant; |
| 11633 | } |
| 11634 | break; |
| 11635 | case 'Z': |
| 11636 | if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) { |
| 11637 | if (C->getZExtValue() <= 0xffffffff) |
| 11638 | weight = CW_Constant; |
| 11639 | } |
| 11640 | break; |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 11641 | } |
| 11642 | return weight; |
| 11643 | } |
| 11644 | |
Dale Johannesen | ba2a0b9 | 2008-01-29 02:21:21 +0000 | [diff] [blame] | 11645 | /// LowerXConstraint - try to replace an X constraint, which matches anything, |
| 11646 | /// with another that has more specific requirements based on the type of the |
| 11647 | /// corresponding operand. |
Chris Lattner | 5e76423 | 2008-04-26 23:02:14 +0000 | [diff] [blame] | 11648 | const char *X86TargetLowering:: |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 11649 | LowerXConstraint(EVT ConstraintVT) const { |
Chris Lattner | 5e76423 | 2008-04-26 23:02:14 +0000 | [diff] [blame] | 11650 | // FP X constraints get lowered to SSE1/2 registers if available, otherwise |
| 11651 | // 'f' like normal targets. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 11652 | if (ConstraintVT.isFloatingPoint()) { |
Dale Johannesen | ba2a0b9 | 2008-01-29 02:21:21 +0000 | [diff] [blame] | 11653 | if (Subtarget->hasSSE2()) |
Chris Lattner | 5e76423 | 2008-04-26 23:02:14 +0000 | [diff] [blame] | 11654 | return "Y"; |
| 11655 | if (Subtarget->hasSSE1()) |
| 11656 | return "x"; |
| 11657 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 11658 | |
Chris Lattner | 5e76423 | 2008-04-26 23:02:14 +0000 | [diff] [blame] | 11659 | return TargetLowering::LowerXConstraint(ConstraintVT); |
Dale Johannesen | ba2a0b9 | 2008-01-29 02:21:21 +0000 | [diff] [blame] | 11660 | } |
| 11661 | |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 11662 | /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops |
| 11663 | /// vector. If it is invalid, don't add anything to Ops. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11664 | void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op, |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 11665 | char Constraint, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11666 | std::vector<SDValue>&Ops, |
Chris Lattner | 5e76423 | 2008-04-26 23:02:14 +0000 | [diff] [blame] | 11667 | SelectionDAG &DAG) const { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11668 | SDValue Result(0, 0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 11669 | |
Chris Lattner | 22aaf1d | 2006-10-31 20:13:11 +0000 | [diff] [blame] | 11670 | switch (Constraint) { |
| 11671 | default: break; |
Devang Patel | 84f7fd2 | 2007-03-17 00:13:28 +0000 | [diff] [blame] | 11672 | case 'I': |
Chris Lattner | 188b9fe | 2007-03-25 01:57:35 +0000 | [diff] [blame] | 11673 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 11674 | if (C->getZExtValue() <= 31) { |
| 11675 | Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType()); |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 11676 | break; |
| 11677 | } |
Devang Patel | 84f7fd2 | 2007-03-17 00:13:28 +0000 | [diff] [blame] | 11678 | } |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 11679 | return; |
Evan Cheng | 364091e | 2008-09-22 23:57:37 +0000 | [diff] [blame] | 11680 | case 'J': |
| 11681 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) { |
Chris Lattner | 2e06dd2 | 2009-06-15 04:39:05 +0000 | [diff] [blame] | 11682 | if (C->getZExtValue() <= 63) { |
Chris Lattner | e493515 | 2009-06-15 04:01:39 +0000 | [diff] [blame] | 11683 | Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType()); |
| 11684 | break; |
| 11685 | } |
| 11686 | } |
| 11687 | return; |
| 11688 | case 'K': |
| 11689 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) { |
Chris Lattner | 2e06dd2 | 2009-06-15 04:39:05 +0000 | [diff] [blame] | 11690 | if ((int8_t)C->getSExtValue() == C->getSExtValue()) { |
Evan Cheng | 364091e | 2008-09-22 23:57:37 +0000 | [diff] [blame] | 11691 | Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType()); |
| 11692 | break; |
| 11693 | } |
| 11694 | } |
| 11695 | return; |
Chris Lattner | 188b9fe | 2007-03-25 01:57:35 +0000 | [diff] [blame] | 11696 | case 'N': |
| 11697 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 11698 | if (C->getZExtValue() <= 255) { |
| 11699 | Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType()); |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 11700 | break; |
| 11701 | } |
Chris Lattner | 188b9fe | 2007-03-25 01:57:35 +0000 | [diff] [blame] | 11702 | } |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 11703 | return; |
Dale Johannesen | 78e3e52 | 2009-02-12 20:58:09 +0000 | [diff] [blame] | 11704 | case 'e': { |
| 11705 | // 32-bit signed value |
| 11706 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) { |
Dan Gohman | 7720cb3 | 2010-06-18 14:01:07 +0000 | [diff] [blame] | 11707 | if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()), |
| 11708 | C->getSExtValue())) { |
Dale Johannesen | 78e3e52 | 2009-02-12 20:58:09 +0000 | [diff] [blame] | 11709 | // Widen to 64 bits here to get it sign extended. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11710 | Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64); |
Dale Johannesen | 78e3e52 | 2009-02-12 20:58:09 +0000 | [diff] [blame] | 11711 | break; |
| 11712 | } |
| 11713 | // FIXME gcc accepts some relocatable values here too, but only in certain |
| 11714 | // memory models; it's complicated. |
| 11715 | } |
| 11716 | return; |
| 11717 | } |
| 11718 | case 'Z': { |
| 11719 | // 32-bit unsigned value |
| 11720 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) { |
Dan Gohman | 7720cb3 | 2010-06-18 14:01:07 +0000 | [diff] [blame] | 11721 | if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()), |
| 11722 | C->getZExtValue())) { |
Dale Johannesen | 78e3e52 | 2009-02-12 20:58:09 +0000 | [diff] [blame] | 11723 | Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType()); |
| 11724 | break; |
| 11725 | } |
| 11726 | } |
| 11727 | // FIXME gcc accepts some relocatable values here too, but only in certain |
| 11728 | // memory models; it's complicated. |
| 11729 | return; |
| 11730 | } |
Chris Lattner | dc43a88 | 2007-05-03 16:52:29 +0000 | [diff] [blame] | 11731 | case 'i': { |
Chris Lattner | 22aaf1d | 2006-10-31 20:13:11 +0000 | [diff] [blame] | 11732 | // Literal immediates are always ok. |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 11733 | if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) { |
Dale Johannesen | 78e3e52 | 2009-02-12 20:58:09 +0000 | [diff] [blame] | 11734 | // Widen to 64 bits here to get it sign extended. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11735 | Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64); |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 11736 | break; |
| 11737 | } |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 11738 | |
Dale Johannesen | e5ff9ef | 2010-06-24 20:14:51 +0000 | [diff] [blame] | 11739 | // In any sort of PIC mode addresses need to be computed at runtime by |
| 11740 | // adding in a register or some sort of table lookup. These can't |
| 11741 | // be used as immediates. |
Dale Johannesen | e2b448c | 2010-07-06 23:27:00 +0000 | [diff] [blame] | 11742 | if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC()) |
Dale Johannesen | e5ff9ef | 2010-06-24 20:14:51 +0000 | [diff] [blame] | 11743 | return; |
| 11744 | |
Chris Lattner | dc43a88 | 2007-05-03 16:52:29 +0000 | [diff] [blame] | 11745 | // If we are in non-pic codegen mode, we allow the address of a global (with |
| 11746 | // an optional displacement) to be used with 'i'. |
Chris Lattner | 4992196 | 2009-05-08 18:23:14 +0000 | [diff] [blame] | 11747 | GlobalAddressSDNode *GA = 0; |
Chris Lattner | dc43a88 | 2007-05-03 16:52:29 +0000 | [diff] [blame] | 11748 | int64_t Offset = 0; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 11749 | |
Chris Lattner | 4992196 | 2009-05-08 18:23:14 +0000 | [diff] [blame] | 11750 | // Match either (GA), (GA+C), (GA+C1+C2), etc. |
| 11751 | while (1) { |
| 11752 | if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) { |
| 11753 | Offset += GA->getOffset(); |
| 11754 | break; |
| 11755 | } else if (Op.getOpcode() == ISD::ADD) { |
| 11756 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { |
| 11757 | Offset += C->getZExtValue(); |
| 11758 | Op = Op.getOperand(0); |
| 11759 | continue; |
| 11760 | } |
| 11761 | } else if (Op.getOpcode() == ISD::SUB) { |
| 11762 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { |
| 11763 | Offset += -C->getZExtValue(); |
| 11764 | Op = Op.getOperand(0); |
| 11765 | continue; |
| 11766 | } |
Chris Lattner | dc43a88 | 2007-05-03 16:52:29 +0000 | [diff] [blame] | 11767 | } |
Dale Johannesen | 76a1e2e | 2009-07-07 00:18:49 +0000 | [diff] [blame] | 11768 | |
Chris Lattner | 4992196 | 2009-05-08 18:23:14 +0000 | [diff] [blame] | 11769 | // Otherwise, this isn't something we can handle, reject it. |
| 11770 | return; |
Chris Lattner | dc43a88 | 2007-05-03 16:52:29 +0000 | [diff] [blame] | 11771 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 11772 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 11773 | const GlobalValue *GV = GA->getGlobal(); |
Dale Johannesen | 76a1e2e | 2009-07-07 00:18:49 +0000 | [diff] [blame] | 11774 | // If we require an extra load to get this address, as in PIC mode, we |
| 11775 | // can't accept it. |
Chris Lattner | 36c2501 | 2009-07-10 07:34:39 +0000 | [diff] [blame] | 11776 | if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV, |
| 11777 | getTargetMachine()))) |
Dale Johannesen | 76a1e2e | 2009-07-07 00:18:49 +0000 | [diff] [blame] | 11778 | return; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 11779 | |
Devang Patel | 0d881da | 2010-07-06 22:08:15 +0000 | [diff] [blame] | 11780 | Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(), |
| 11781 | GA->getValueType(0), Offset); |
Chris Lattner | 4992196 | 2009-05-08 18:23:14 +0000 | [diff] [blame] | 11782 | break; |
Chris Lattner | 22aaf1d | 2006-10-31 20:13:11 +0000 | [diff] [blame] | 11783 | } |
Chris Lattner | dc43a88 | 2007-05-03 16:52:29 +0000 | [diff] [blame] | 11784 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 11785 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 11786 | if (Result.getNode()) { |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 11787 | Ops.push_back(Result); |
| 11788 | return; |
| 11789 | } |
Dale Johannesen | 1784d16 | 2010-06-25 21:55:36 +0000 | [diff] [blame] | 11790 | return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG); |
Chris Lattner | 22aaf1d | 2006-10-31 20:13:11 +0000 | [diff] [blame] | 11791 | } |
| 11792 | |
Chris Lattner | 259e97c | 2006-01-31 19:43:35 +0000 | [diff] [blame] | 11793 | std::vector<unsigned> X86TargetLowering:: |
Chris Lattner | 1efa40f | 2006-02-22 00:56:39 +0000 | [diff] [blame] | 11794 | getRegClassForInlineAsmConstraint(const std::string &Constraint, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 11795 | EVT VT) const { |
Chris Lattner | 259e97c | 2006-01-31 19:43:35 +0000 | [diff] [blame] | 11796 | if (Constraint.size() == 1) { |
| 11797 | // FIXME: not handling fp-stack yet! |
Chris Lattner | 259e97c | 2006-01-31 19:43:35 +0000 | [diff] [blame] | 11798 | switch (Constraint[0]) { // GCC X86 Constraint Letters |
Chris Lattner | f4dff84 | 2006-07-11 02:54:03 +0000 | [diff] [blame] | 11799 | default: break; // Unknown constraint letter |
Evan Cheng | 47e9fab | 2009-07-17 22:13:25 +0000 | [diff] [blame] | 11800 | case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode. |
| 11801 | if (Subtarget->is64Bit()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11802 | if (VT == MVT::i32) |
Evan Cheng | 47e9fab | 2009-07-17 22:13:25 +0000 | [diff] [blame] | 11803 | return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, |
| 11804 | X86::ESI, X86::EDI, X86::R8D, X86::R9D, |
| 11805 | X86::R10D,X86::R11D,X86::R12D, |
| 11806 | X86::R13D,X86::R14D,X86::R15D, |
| 11807 | X86::EBP, X86::ESP, 0); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11808 | else if (VT == MVT::i16) |
Evan Cheng | 47e9fab | 2009-07-17 22:13:25 +0000 | [diff] [blame] | 11809 | return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, |
| 11810 | X86::SI, X86::DI, X86::R8W,X86::R9W, |
| 11811 | X86::R10W,X86::R11W,X86::R12W, |
| 11812 | X86::R13W,X86::R14W,X86::R15W, |
| 11813 | X86::BP, X86::SP, 0); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11814 | else if (VT == MVT::i8) |
Evan Cheng | 47e9fab | 2009-07-17 22:13:25 +0000 | [diff] [blame] | 11815 | return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, |
| 11816 | X86::SIL, X86::DIL, X86::R8B,X86::R9B, |
| 11817 | X86::R10B,X86::R11B,X86::R12B, |
| 11818 | X86::R13B,X86::R14B,X86::R15B, |
| 11819 | X86::BPL, X86::SPL, 0); |
| 11820 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11821 | else if (VT == MVT::i64) |
Evan Cheng | 47e9fab | 2009-07-17 22:13:25 +0000 | [diff] [blame] | 11822 | return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, |
| 11823 | X86::RSI, X86::RDI, X86::R8, X86::R9, |
| 11824 | X86::R10, X86::R11, X86::R12, |
| 11825 | X86::R13, X86::R14, X86::R15, |
| 11826 | X86::RBP, X86::RSP, 0); |
| 11827 | |
| 11828 | break; |
| 11829 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 11830 | // 32-bit fallthrough |
Chris Lattner | 259e97c | 2006-01-31 19:43:35 +0000 | [diff] [blame] | 11831 | case 'Q': // Q_REGS |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11832 | if (VT == MVT::i32) |
Chris Lattner | 80a7ecc | 2006-05-06 00:29:37 +0000 | [diff] [blame] | 11833 | return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11834 | else if (VT == MVT::i16) |
Chris Lattner | 80a7ecc | 2006-05-06 00:29:37 +0000 | [diff] [blame] | 11835 | return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11836 | else if (VT == MVT::i8) |
Evan Cheng | 1291438 | 2007-08-13 23:27:11 +0000 | [diff] [blame] | 11837 | return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11838 | else if (VT == MVT::i64) |
Chris Lattner | 03e6c70 | 2007-11-04 06:51:12 +0000 | [diff] [blame] | 11839 | return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0); |
| 11840 | break; |
Chris Lattner | 259e97c | 2006-01-31 19:43:35 +0000 | [diff] [blame] | 11841 | } |
| 11842 | } |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 11843 | |
Chris Lattner | 1efa40f | 2006-02-22 00:56:39 +0000 | [diff] [blame] | 11844 | return std::vector<unsigned>(); |
Chris Lattner | 259e97c | 2006-01-31 19:43:35 +0000 | [diff] [blame] | 11845 | } |
Chris Lattner | f76d180 | 2006-07-31 23:26:50 +0000 | [diff] [blame] | 11846 | |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 11847 | std::pair<unsigned, const TargetRegisterClass*> |
Chris Lattner | f76d180 | 2006-07-31 23:26:50 +0000 | [diff] [blame] | 11848 | X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 11849 | EVT VT) const { |
Chris Lattner | ad043e8 | 2007-04-09 05:11:28 +0000 | [diff] [blame] | 11850 | // First, see if this is a constraint that directly corresponds to an LLVM |
| 11851 | // register class. |
| 11852 | if (Constraint.size() == 1) { |
| 11853 | // GCC Constraint Letters |
| 11854 | switch (Constraint[0]) { |
| 11855 | default: break; |
Chris Lattner | 0f65cad | 2007-04-09 05:49:22 +0000 | [diff] [blame] | 11856 | case 'r': // GENERAL_REGS |
Chris Lattner | 0f65cad | 2007-04-09 05:49:22 +0000 | [diff] [blame] | 11857 | case 'l': // INDEX_REGS |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11858 | if (VT == MVT::i8) |
Chris Lattner | 0f65cad | 2007-04-09 05:49:22 +0000 | [diff] [blame] | 11859 | return std::make_pair(0U, X86::GR8RegisterClass); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11860 | if (VT == MVT::i16) |
Chris Lattner | 1fa7198 | 2008-10-17 18:15:05 +0000 | [diff] [blame] | 11861 | return std::make_pair(0U, X86::GR16RegisterClass); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11862 | if (VT == MVT::i32 || !Subtarget->is64Bit()) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 11863 | return std::make_pair(0U, X86::GR32RegisterClass); |
Chris Lattner | 1fa7198 | 2008-10-17 18:15:05 +0000 | [diff] [blame] | 11864 | return std::make_pair(0U, X86::GR64RegisterClass); |
Dale Johannesen | 5f3663e | 2009-10-07 22:47:20 +0000 | [diff] [blame] | 11865 | case 'R': // LEGACY_REGS |
| 11866 | if (VT == MVT::i8) |
| 11867 | return std::make_pair(0U, X86::GR8_NOREXRegisterClass); |
| 11868 | if (VT == MVT::i16) |
| 11869 | return std::make_pair(0U, X86::GR16_NOREXRegisterClass); |
| 11870 | if (VT == MVT::i32 || !Subtarget->is64Bit()) |
| 11871 | return std::make_pair(0U, X86::GR32_NOREXRegisterClass); |
| 11872 | return std::make_pair(0U, X86::GR64_NOREXRegisterClass); |
Chris Lattner | fce84ac | 2008-03-11 19:06:29 +0000 | [diff] [blame] | 11873 | case 'f': // FP Stack registers. |
| 11874 | // If SSE is enabled for this VT, use f80 to ensure the isel moves the |
| 11875 | // value to the correct fpstack register class. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11876 | if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT)) |
Chris Lattner | fce84ac | 2008-03-11 19:06:29 +0000 | [diff] [blame] | 11877 | return std::make_pair(0U, X86::RFP32RegisterClass); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11878 | if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT)) |
Chris Lattner | fce84ac | 2008-03-11 19:06:29 +0000 | [diff] [blame] | 11879 | return std::make_pair(0U, X86::RFP64RegisterClass); |
| 11880 | return std::make_pair(0U, X86::RFP80RegisterClass); |
Chris Lattner | 6c284d7 | 2007-04-12 04:14:49 +0000 | [diff] [blame] | 11881 | case 'y': // MMX_REGS if MMX allowed. |
| 11882 | if (!Subtarget->hasMMX()) break; |
| 11883 | return std::make_pair(0U, X86::VR64RegisterClass); |
Chris Lattner | 0f65cad | 2007-04-09 05:49:22 +0000 | [diff] [blame] | 11884 | case 'Y': // SSE_REGS if SSE2 allowed |
| 11885 | if (!Subtarget->hasSSE2()) break; |
| 11886 | // FALL THROUGH. |
| 11887 | case 'x': // SSE_REGS if SSE1 allowed |
| 11888 | if (!Subtarget->hasSSE1()) break; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 11889 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11890 | switch (VT.getSimpleVT().SimpleTy) { |
Chris Lattner | 0f65cad | 2007-04-09 05:49:22 +0000 | [diff] [blame] | 11891 | default: break; |
| 11892 | // Scalar SSE types. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11893 | case MVT::f32: |
| 11894 | case MVT::i32: |
Chris Lattner | ad043e8 | 2007-04-09 05:11:28 +0000 | [diff] [blame] | 11895 | return std::make_pair(0U, X86::FR32RegisterClass); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11896 | case MVT::f64: |
| 11897 | case MVT::i64: |
Chris Lattner | ad043e8 | 2007-04-09 05:11:28 +0000 | [diff] [blame] | 11898 | return std::make_pair(0U, X86::FR64RegisterClass); |
Chris Lattner | 0f65cad | 2007-04-09 05:49:22 +0000 | [diff] [blame] | 11899 | // Vector types. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11900 | case MVT::v16i8: |
| 11901 | case MVT::v8i16: |
| 11902 | case MVT::v4i32: |
| 11903 | case MVT::v2i64: |
| 11904 | case MVT::v4f32: |
| 11905 | case MVT::v2f64: |
Chris Lattner | 0f65cad | 2007-04-09 05:49:22 +0000 | [diff] [blame] | 11906 | return std::make_pair(0U, X86::VR128RegisterClass); |
| 11907 | } |
Chris Lattner | ad043e8 | 2007-04-09 05:11:28 +0000 | [diff] [blame] | 11908 | break; |
| 11909 | } |
| 11910 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 11911 | |
Chris Lattner | f76d180 | 2006-07-31 23:26:50 +0000 | [diff] [blame] | 11912 | // Use the default implementation in TargetLowering to convert the register |
| 11913 | // constraint into a member of a register class. |
| 11914 | std::pair<unsigned, const TargetRegisterClass*> Res; |
| 11915 | Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT); |
Chris Lattner | 1a60aa7 | 2006-10-31 19:42:44 +0000 | [diff] [blame] | 11916 | |
| 11917 | // Not found as a standard register? |
| 11918 | if (Res.second == 0) { |
Chris Lattner | 56d77c7 | 2009-09-13 22:41:48 +0000 | [diff] [blame] | 11919 | // Map st(0) -> st(7) -> ST0 |
| 11920 | if (Constraint.size() == 7 && Constraint[0] == '{' && |
| 11921 | tolower(Constraint[1]) == 's' && |
| 11922 | tolower(Constraint[2]) == 't' && |
| 11923 | Constraint[3] == '(' && |
| 11924 | (Constraint[4] >= '0' && Constraint[4] <= '7') && |
| 11925 | Constraint[5] == ')' && |
| 11926 | Constraint[6] == '}') { |
Daniel Dunbar | a279bc3 | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 11927 | |
Chris Lattner | 56d77c7 | 2009-09-13 22:41:48 +0000 | [diff] [blame] | 11928 | Res.first = X86::ST0+Constraint[4]-'0'; |
| 11929 | Res.second = X86::RFP80RegisterClass; |
| 11930 | return Res; |
| 11931 | } |
Daniel Dunbar | a279bc3 | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 11932 | |
Chris Lattner | 56d77c7 | 2009-09-13 22:41:48 +0000 | [diff] [blame] | 11933 | // GCC allows "st(0)" to be called just plain "st". |
Benjamin Kramer | 05872ea | 2009-11-12 20:36:59 +0000 | [diff] [blame] | 11934 | if (StringRef("{st}").equals_lower(Constraint)) { |
Chris Lattner | 1a60aa7 | 2006-10-31 19:42:44 +0000 | [diff] [blame] | 11935 | Res.first = X86::ST0; |
Chris Lattner | 9b4baf1 | 2007-09-24 05:27:37 +0000 | [diff] [blame] | 11936 | Res.second = X86::RFP80RegisterClass; |
Chris Lattner | 56d77c7 | 2009-09-13 22:41:48 +0000 | [diff] [blame] | 11937 | return Res; |
Chris Lattner | 1a60aa7 | 2006-10-31 19:42:44 +0000 | [diff] [blame] | 11938 | } |
Chris Lattner | 56d77c7 | 2009-09-13 22:41:48 +0000 | [diff] [blame] | 11939 | |
| 11940 | // flags -> EFLAGS |
Benjamin Kramer | 05872ea | 2009-11-12 20:36:59 +0000 | [diff] [blame] | 11941 | if (StringRef("{flags}").equals_lower(Constraint)) { |
Chris Lattner | 56d77c7 | 2009-09-13 22:41:48 +0000 | [diff] [blame] | 11942 | Res.first = X86::EFLAGS; |
| 11943 | Res.second = X86::CCRRegisterClass; |
| 11944 | return Res; |
| 11945 | } |
Daniel Dunbar | a279bc3 | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 11946 | |
Dale Johannesen | 330169f | 2008-11-13 21:52:36 +0000 | [diff] [blame] | 11947 | // 'A' means EAX + EDX. |
| 11948 | if (Constraint == "A") { |
| 11949 | Res.first = X86::EAX; |
Dan Gohman | 68a31c2 | 2009-07-30 17:02:08 +0000 | [diff] [blame] | 11950 | Res.second = X86::GR32_ADRegisterClass; |
Chris Lattner | 56d77c7 | 2009-09-13 22:41:48 +0000 | [diff] [blame] | 11951 | return Res; |
Dale Johannesen | 330169f | 2008-11-13 21:52:36 +0000 | [diff] [blame] | 11952 | } |
Chris Lattner | 1a60aa7 | 2006-10-31 19:42:44 +0000 | [diff] [blame] | 11953 | return Res; |
| 11954 | } |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 11955 | |
Chris Lattner | f76d180 | 2006-07-31 23:26:50 +0000 | [diff] [blame] | 11956 | // Otherwise, check to see if this is a register class of the wrong value |
| 11957 | // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to |
| 11958 | // turn into {ax},{dx}. |
| 11959 | if (Res.second->hasType(VT)) |
| 11960 | return Res; // Correct type already, nothing to do. |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 11961 | |
Chris Lattner | f76d180 | 2006-07-31 23:26:50 +0000 | [diff] [blame] | 11962 | // All of the single-register GCC register classes map their values onto |
| 11963 | // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we |
| 11964 | // really want an 8-bit or 32-bit register, map to the appropriate register |
| 11965 | // class and return the appropriate register. |
Chris Lattner | 6ba50a9 | 2008-08-26 06:19:02 +0000 | [diff] [blame] | 11966 | if (Res.second == X86::GR16RegisterClass) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11967 | if (VT == MVT::i8) { |
Chris Lattner | 6ba50a9 | 2008-08-26 06:19:02 +0000 | [diff] [blame] | 11968 | unsigned DestReg = 0; |
| 11969 | switch (Res.first) { |
| 11970 | default: break; |
| 11971 | case X86::AX: DestReg = X86::AL; break; |
| 11972 | case X86::DX: DestReg = X86::DL; break; |
| 11973 | case X86::CX: DestReg = X86::CL; break; |
| 11974 | case X86::BX: DestReg = X86::BL; break; |
| 11975 | } |
| 11976 | if (DestReg) { |
| 11977 | Res.first = DestReg; |
Duncan Sands | 005e798 | 2009-04-21 09:44:39 +0000 | [diff] [blame] | 11978 | Res.second = X86::GR8RegisterClass; |
Chris Lattner | 6ba50a9 | 2008-08-26 06:19:02 +0000 | [diff] [blame] | 11979 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11980 | } else if (VT == MVT::i32) { |
Chris Lattner | 6ba50a9 | 2008-08-26 06:19:02 +0000 | [diff] [blame] | 11981 | unsigned DestReg = 0; |
| 11982 | switch (Res.first) { |
| 11983 | default: break; |
| 11984 | case X86::AX: DestReg = X86::EAX; break; |
| 11985 | case X86::DX: DestReg = X86::EDX; break; |
| 11986 | case X86::CX: DestReg = X86::ECX; break; |
| 11987 | case X86::BX: DestReg = X86::EBX; break; |
| 11988 | case X86::SI: DestReg = X86::ESI; break; |
| 11989 | case X86::DI: DestReg = X86::EDI; break; |
| 11990 | case X86::BP: DestReg = X86::EBP; break; |
| 11991 | case X86::SP: DestReg = X86::ESP; break; |
| 11992 | } |
| 11993 | if (DestReg) { |
| 11994 | Res.first = DestReg; |
Duncan Sands | 005e798 | 2009-04-21 09:44:39 +0000 | [diff] [blame] | 11995 | Res.second = X86::GR32RegisterClass; |
Chris Lattner | 6ba50a9 | 2008-08-26 06:19:02 +0000 | [diff] [blame] | 11996 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11997 | } else if (VT == MVT::i64) { |
Chris Lattner | 6ba50a9 | 2008-08-26 06:19:02 +0000 | [diff] [blame] | 11998 | unsigned DestReg = 0; |
| 11999 | switch (Res.first) { |
| 12000 | default: break; |
| 12001 | case X86::AX: DestReg = X86::RAX; break; |
| 12002 | case X86::DX: DestReg = X86::RDX; break; |
| 12003 | case X86::CX: DestReg = X86::RCX; break; |
| 12004 | case X86::BX: DestReg = X86::RBX; break; |
| 12005 | case X86::SI: DestReg = X86::RSI; break; |
| 12006 | case X86::DI: DestReg = X86::RDI; break; |
| 12007 | case X86::BP: DestReg = X86::RBP; break; |
| 12008 | case X86::SP: DestReg = X86::RSP; break; |
| 12009 | } |
| 12010 | if (DestReg) { |
| 12011 | Res.first = DestReg; |
Duncan Sands | 005e798 | 2009-04-21 09:44:39 +0000 | [diff] [blame] | 12012 | Res.second = X86::GR64RegisterClass; |
Chris Lattner | 6ba50a9 | 2008-08-26 06:19:02 +0000 | [diff] [blame] | 12013 | } |
Chris Lattner | f76d180 | 2006-07-31 23:26:50 +0000 | [diff] [blame] | 12014 | } |
Chris Lattner | 6ba50a9 | 2008-08-26 06:19:02 +0000 | [diff] [blame] | 12015 | } else if (Res.second == X86::FR32RegisterClass || |
| 12016 | Res.second == X86::FR64RegisterClass || |
| 12017 | Res.second == X86::VR128RegisterClass) { |
| 12018 | // Handle references to XMM physical registers that got mapped into the |
| 12019 | // wrong class. This can happen with constraints like {xmm0} where the |
| 12020 | // target independent register mapper will just pick the first match it can |
| 12021 | // find, ignoring the required type. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 12022 | if (VT == MVT::f32) |
Chris Lattner | 6ba50a9 | 2008-08-26 06:19:02 +0000 | [diff] [blame] | 12023 | Res.second = X86::FR32RegisterClass; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 12024 | else if (VT == MVT::f64) |
Chris Lattner | 6ba50a9 | 2008-08-26 06:19:02 +0000 | [diff] [blame] | 12025 | Res.second = X86::FR64RegisterClass; |
| 12026 | else if (X86::VR128RegisterClass->hasType(VT)) |
| 12027 | Res.second = X86::VR128RegisterClass; |
Chris Lattner | f76d180 | 2006-07-31 23:26:50 +0000 | [diff] [blame] | 12028 | } |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 12029 | |
Chris Lattner | f76d180 | 2006-07-31 23:26:50 +0000 | [diff] [blame] | 12030 | return Res; |
| 12031 | } |