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 { |
Anton Korobeynikov | d0c3817 | 2010-11-18 21:19:35 +0000 | [diff] [blame] | 1175 | const TargetFrameInfo *TFI = MF.getTarget().getFrameInfo(); |
| 1176 | |
| 1177 | unsigned FPDiff = TFI->hasFP(MF) ? 1 : 0; |
Evan Cheng | 70017e4 | 2010-07-24 00:39:05 +0000 | [diff] [blame] | 1178 | switch (RC->getID()) { |
| 1179 | default: |
| 1180 | return 0; |
| 1181 | case X86::GR32RegClassID: |
| 1182 | return 4 - FPDiff; |
| 1183 | case X86::GR64RegClassID: |
| 1184 | return 8 - FPDiff; |
| 1185 | case X86::VR128RegClassID: |
| 1186 | return Subtarget->is64Bit() ? 10 : 4; |
| 1187 | case X86::VR64RegClassID: |
| 1188 | return 4; |
| 1189 | } |
| 1190 | } |
| 1191 | |
Eric Christopher | f7a0c7b | 2010-07-06 05:18:56 +0000 | [diff] [blame] | 1192 | bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace, |
| 1193 | unsigned &Offset) const { |
| 1194 | if (!Subtarget->isTargetLinux()) |
| 1195 | return false; |
| 1196 | |
| 1197 | if (Subtarget->is64Bit()) { |
| 1198 | // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs: |
| 1199 | Offset = 0x28; |
| 1200 | if (getTargetMachine().getCodeModel() == CodeModel::Kernel) |
| 1201 | AddressSpace = 256; |
| 1202 | else |
| 1203 | AddressSpace = 257; |
| 1204 | } else { |
| 1205 | // %gs:0x14 on i386 |
| 1206 | Offset = 0x14; |
| 1207 | AddressSpace = 256; |
| 1208 | } |
| 1209 | return true; |
| 1210 | } |
| 1211 | |
| 1212 | |
Chris Lattner | 2b02a44 | 2007-02-25 08:29:00 +0000 | [diff] [blame] | 1213 | //===----------------------------------------------------------------------===// |
| 1214 | // Return Value Calling Convention Implementation |
| 1215 | //===----------------------------------------------------------------------===// |
| 1216 | |
Chris Lattner | 59ed56b | 2007-02-28 04:55:35 +0000 | [diff] [blame] | 1217 | #include "X86GenCallingConv.inc" |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 1218 | |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 1219 | bool |
Kenneth Uildriks | b4997ae | 2009-11-07 02:11:54 +0000 | [diff] [blame] | 1220 | X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv, bool isVarArg, |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1221 | const SmallVectorImpl<ISD::OutputArg> &Outs, |
Dan Gohman | c9af33c | 2010-07-06 22:19:37 +0000 | [diff] [blame] | 1222 | LLVMContext &Context) const { |
Kenneth Uildriks | b4997ae | 2009-11-07 02:11:54 +0000 | [diff] [blame] | 1223 | SmallVector<CCValAssign, 16> RVLocs; |
| 1224 | CCState CCInfo(CallConv, isVarArg, getTargetMachine(), |
Dan Gohman | c9af33c | 2010-07-06 22:19:37 +0000 | [diff] [blame] | 1225 | RVLocs, Context); |
Dan Gohman | 84023e0 | 2010-07-10 09:00:22 +0000 | [diff] [blame] | 1226 | return CCInfo.CheckReturn(Outs, RetCC_X86); |
Kenneth Uildriks | b4997ae | 2009-11-07 02:11:54 +0000 | [diff] [blame] | 1227 | } |
| 1228 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1229 | SDValue |
| 1230 | X86TargetLowering::LowerReturn(SDValue Chain, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 1231 | CallingConv::ID CallConv, bool isVarArg, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1232 | const SmallVectorImpl<ISD::OutputArg> &Outs, |
Dan Gohman | c940365 | 2010-07-07 15:54:55 +0000 | [diff] [blame] | 1233 | const SmallVectorImpl<SDValue> &OutVals, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 1234 | DebugLoc dl, SelectionDAG &DAG) const { |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 1235 | MachineFunction &MF = DAG.getMachineFunction(); |
| 1236 | X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1237 | |
Chris Lattner | 9774c91 | 2007-02-27 05:28:59 +0000 | [diff] [blame] | 1238 | SmallVector<CCValAssign, 16> RVLocs; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1239 | CCState CCInfo(CallConv, isVarArg, getTargetMachine(), |
| 1240 | RVLocs, *DAG.getContext()); |
| 1241 | CCInfo.AnalyzeReturn(Outs, RetCC_X86); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1242 | |
Evan Cheng | dcea163 | 2010-02-04 02:40:39 +0000 | [diff] [blame] | 1243 | // Add the regs to the liveout set for the function. |
| 1244 | MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo(); |
| 1245 | for (unsigned i = 0; i != RVLocs.size(); ++i) |
| 1246 | if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg())) |
| 1247 | MRI.addLiveOut(RVLocs[i].getLocReg()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1248 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1249 | SDValue Flag; |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 1250 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1251 | SmallVector<SDValue, 6> RetOps; |
Chris Lattner | 447ff68 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1252 | RetOps.push_back(Chain); // Operand #0 = Chain (updated below) |
| 1253 | // Operand #1 = Bytes To Pop |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 1254 | RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(), |
| 1255 | MVT::i16)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1256 | |
Chris Lattner | 2a9bdd7 | 2007-02-25 09:12:39 +0000 | [diff] [blame] | 1257 | // Copy the result values into the output registers. |
Chris Lattner | 8e6da15 | 2008-03-10 21:08:41 +0000 | [diff] [blame] | 1258 | for (unsigned i = 0; i != RVLocs.size(); ++i) { |
| 1259 | CCValAssign &VA = RVLocs[i]; |
| 1260 | assert(VA.isRegLoc() && "Can only return in registers!"); |
Dan Gohman | c940365 | 2010-07-07 15:54:55 +0000 | [diff] [blame] | 1261 | SDValue ValToCopy = OutVals[i]; |
Dale Johannesen | c76d23f | 2010-07-23 00:30:35 +0000 | [diff] [blame] | 1262 | EVT ValVT = ValToCopy.getValueType(); |
| 1263 | |
Dale Johannesen | c451051 | 2010-09-24 19:05:48 +0000 | [diff] [blame] | 1264 | // If this is x86-64, and we disabled SSE, we can't return FP values, |
| 1265 | // or SSE or MMX vectors. |
| 1266 | if ((ValVT == MVT::f32 || ValVT == MVT::f64 || |
| 1267 | VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) && |
| 1268 | (Subtarget->is64Bit() && !Subtarget->hasSSE1())) { |
Dale Johannesen | c76d23f | 2010-07-23 00:30:35 +0000 | [diff] [blame] | 1269 | report_fatal_error("SSE register return with SSE disabled"); |
| 1270 | } |
| 1271 | // Likewise we can't return F64 values with SSE1 only. gcc does so, but |
| 1272 | // llvm-gcc has never done it right and no one has noticed, so this |
| 1273 | // should be OK for now. |
| 1274 | if (ValVT == MVT::f64 && |
Chris Lattner | 8306968 | 2010-08-26 05:51:22 +0000 | [diff] [blame] | 1275 | (Subtarget->is64Bit() && !Subtarget->hasSSE2())) |
Dale Johannesen | c76d23f | 2010-07-23 00:30:35 +0000 | [diff] [blame] | 1276 | report_fatal_error("SSE2 register return with SSE2 disabled"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1277 | |
Chris Lattner | 447ff68 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1278 | // Returns in ST0/ST1 are handled specially: these are pushed as operands to |
| 1279 | // the RET instruction and handled by the FP Stackifier. |
Dan Gohman | 37eed79 | 2009-02-04 17:28:58 +0000 | [diff] [blame] | 1280 | if (VA.getLocReg() == X86::ST0 || |
| 1281 | VA.getLocReg() == X86::ST1) { |
Chris Lattner | 447ff68 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1282 | // If this is a copy from an xmm register to ST(0), use an FPExtend to |
| 1283 | // change the value to the FP stack register class. |
Dan Gohman | 37eed79 | 2009-02-04 17:28:58 +0000 | [diff] [blame] | 1284 | if (isScalarFPTypeInSSEReg(VA.getValVT())) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1285 | ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy); |
Chris Lattner | 447ff68 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1286 | RetOps.push_back(ValToCopy); |
| 1287 | // Don't emit a copytoreg. |
| 1288 | continue; |
| 1289 | } |
Dale Johannesen | a68f901 | 2008-06-24 22:01:44 +0000 | [diff] [blame] | 1290 | |
Evan Cheng | 242b38b | 2009-02-23 09:03:22 +0000 | [diff] [blame] | 1291 | // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64 |
| 1292 | // which is returned in RAX / RDX. |
Evan Cheng | 6140a8b | 2009-02-22 08:05:12 +0000 | [diff] [blame] | 1293 | if (Subtarget->is64Bit()) { |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 1294 | if (ValVT == MVT::x86mmx) { |
Chris Lattner | 97a2a56 | 2010-08-26 05:24:29 +0000 | [diff] [blame] | 1295 | if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) { |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 1296 | ValToCopy = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, ValToCopy); |
Eric Christopher | 90eb402 | 2010-07-22 00:26:08 +0000 | [diff] [blame] | 1297 | ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, |
| 1298 | ValToCopy); |
Chris Lattner | 97a2a56 | 2010-08-26 05:24:29 +0000 | [diff] [blame] | 1299 | // If we don't have SSE2 available, convert to v4f32 so the generated |
| 1300 | // register is legal. |
| 1301 | if (!Subtarget->hasSSE2()) |
| 1302 | ValToCopy = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32,ValToCopy); |
| 1303 | } |
Evan Cheng | 242b38b | 2009-02-23 09:03:22 +0000 | [diff] [blame] | 1304 | } |
Evan Cheng | 6140a8b | 2009-02-22 08:05:12 +0000 | [diff] [blame] | 1305 | } |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 1306 | |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 1307 | Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag); |
Chris Lattner | 2a9bdd7 | 2007-02-25 09:12:39 +0000 | [diff] [blame] | 1308 | Flag = Chain.getValue(1); |
| 1309 | } |
Dan Gohman | 61a9213 | 2008-04-21 23:59:07 +0000 | [diff] [blame] | 1310 | |
| 1311 | // The x86-64 ABI for returning structs by value requires that we copy |
| 1312 | // the sret argument into %rax for the return. We saved the argument into |
| 1313 | // a virtual register in the entry block, so now we copy the value out |
| 1314 | // and into %rax. |
| 1315 | if (Subtarget->is64Bit() && |
| 1316 | DAG.getMachineFunction().getFunction()->hasStructRetAttr()) { |
| 1317 | MachineFunction &MF = DAG.getMachineFunction(); |
| 1318 | X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>(); |
| 1319 | unsigned Reg = FuncInfo->getSRetReturnReg(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 1320 | assert(Reg && |
Zhongxing Xu | c2798a1 | 2010-05-26 08:10:02 +0000 | [diff] [blame] | 1321 | "SRetReturnReg should have been set in LowerFormalArguments()."); |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 1322 | SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy()); |
Dan Gohman | 61a9213 | 2008-04-21 23:59:07 +0000 | [diff] [blame] | 1323 | |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 1324 | Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag); |
Dan Gohman | 61a9213 | 2008-04-21 23:59:07 +0000 | [diff] [blame] | 1325 | Flag = Chain.getValue(1); |
Dan Gohman | 0032681 | 2009-10-12 16:36:12 +0000 | [diff] [blame] | 1326 | |
| 1327 | // RAX now acts like a return value. |
Evan Cheng | dcea163 | 2010-02-04 02:40:39 +0000 | [diff] [blame] | 1328 | MRI.addLiveOut(X86::RAX); |
Dan Gohman | 61a9213 | 2008-04-21 23:59:07 +0000 | [diff] [blame] | 1329 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1330 | |
Chris Lattner | 447ff68 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1331 | RetOps[0] = Chain; // Update chain. |
| 1332 | |
| 1333 | // Add the flag if we have it. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1334 | if (Flag.getNode()) |
Chris Lattner | 447ff68 | 2008-03-11 03:23:40 +0000 | [diff] [blame] | 1335 | RetOps.push_back(Flag); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1336 | |
| 1337 | return DAG.getNode(X86ISD::RET_FLAG, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1338 | MVT::Other, &RetOps[0], RetOps.size()); |
Chris Lattner | 2a9bdd7 | 2007-02-25 09:12:39 +0000 | [diff] [blame] | 1339 | } |
| 1340 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1341 | /// LowerCallResult - Lower the result values of a call into the |
| 1342 | /// appropriate copies out of appropriate physical registers. |
| 1343 | /// |
| 1344 | SDValue |
| 1345 | X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 1346 | CallingConv::ID CallConv, bool isVarArg, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1347 | const SmallVectorImpl<ISD::InputArg> &Ins, |
| 1348 | DebugLoc dl, SelectionDAG &DAG, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 1349 | SmallVectorImpl<SDValue> &InVals) const { |
Chris Lattner | 2a9bdd7 | 2007-02-25 09:12:39 +0000 | [diff] [blame] | 1350 | |
Chris Lattner | e32bbf6 | 2007-02-28 07:09:55 +0000 | [diff] [blame] | 1351 | // Assign locations to each value returned by this call. |
Chris Lattner | 9774c91 | 2007-02-27 05:28:59 +0000 | [diff] [blame] | 1352 | SmallVector<CCValAssign, 16> RVLocs; |
Torok Edwin | 3f142c3 | 2009-02-01 18:15:56 +0000 | [diff] [blame] | 1353 | bool Is64Bit = Subtarget->is64Bit(); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1354 | CCState CCInfo(CallConv, isVarArg, getTargetMachine(), |
Owen Anderson | e922c02 | 2009-07-22 00:24:57 +0000 | [diff] [blame] | 1355 | RVLocs, *DAG.getContext()); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1356 | CCInfo.AnalyzeCallResult(Ins, RetCC_X86); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1357 | |
Chris Lattner | 3085e15 | 2007-02-25 08:59:22 +0000 | [diff] [blame] | 1358 | // Copy all of the result registers out of their specified physreg. |
Chris Lattner | 8e6da15 | 2008-03-10 21:08:41 +0000 | [diff] [blame] | 1359 | for (unsigned i = 0; i != RVLocs.size(); ++i) { |
Dan Gohman | 37eed79 | 2009-02-04 17:28:58 +0000 | [diff] [blame] | 1360 | CCValAssign &VA = RVLocs[i]; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1361 | EVT CopyVT = VA.getValVT(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1362 | |
Torok Edwin | 3f142c3 | 2009-02-01 18:15:56 +0000 | [diff] [blame] | 1363 | // 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] | 1364 | if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) && |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1365 | ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) { |
Chris Lattner | 75361b6 | 2010-04-07 22:58:41 +0000 | [diff] [blame] | 1366 | report_fatal_error("SSE register return with SSE disabled"); |
Torok Edwin | 3f142c3 | 2009-02-01 18:15:56 +0000 | [diff] [blame] | 1367 | } |
| 1368 | |
Evan Cheng | 79fb3b4 | 2009-02-20 20:43:02 +0000 | [diff] [blame] | 1369 | SDValue Val; |
Jakob Stoklund Olesen | d737fca | 2010-07-10 04:04:25 +0000 | [diff] [blame] | 1370 | |
| 1371 | // If this is a call to a function that returns an fp value on the floating |
| 1372 | // point stack, we must guarantee the the value is popped from the stack, so |
| 1373 | // a CopyFromReg is not good enough - the copy instruction may be eliminated |
| 1374 | // if the return value is not used. We use the FpGET_ST0 instructions |
| 1375 | // instead. |
| 1376 | if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) { |
| 1377 | // If we prefer to use the value in xmm registers, copy it out as f80 and |
| 1378 | // use a truncate to move it from fp stack reg to xmm reg. |
| 1379 | if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80; |
| 1380 | bool isST0 = VA.getLocReg() == X86::ST0; |
| 1381 | unsigned Opc = 0; |
| 1382 | if (CopyVT == MVT::f32) Opc = isST0 ? X86::FpGET_ST0_32:X86::FpGET_ST1_32; |
| 1383 | if (CopyVT == MVT::f64) Opc = isST0 ? X86::FpGET_ST0_64:X86::FpGET_ST1_64; |
| 1384 | if (CopyVT == MVT::f80) Opc = isST0 ? X86::FpGET_ST0_80:X86::FpGET_ST1_80; |
| 1385 | SDValue Ops[] = { Chain, InFlag }; |
| 1386 | Chain = SDValue(DAG.getMachineNode(Opc, dl, CopyVT, MVT::Other, MVT::Flag, |
| 1387 | Ops, 2), 1); |
| 1388 | Val = Chain.getValue(0); |
| 1389 | |
| 1390 | // Round the f80 to the right size, which also moves it to the appropriate |
| 1391 | // xmm register. |
| 1392 | if (CopyVT != VA.getValVT()) |
| 1393 | Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val, |
| 1394 | // This truncation won't change the value. |
| 1395 | DAG.getIntPtrConstant(1)); |
| 1396 | } else if (Is64Bit && CopyVT.isVector() && CopyVT.getSizeInBits() == 64) { |
Evan Cheng | 242b38b | 2009-02-23 09:03:22 +0000 | [diff] [blame] | 1397 | // For x86-64, MMX values are returned in XMM0 / XMM1 except for v1i64. |
| 1398 | if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) { |
| 1399 | Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1400 | MVT::v2i64, InFlag).getValue(1); |
Evan Cheng | 242b38b | 2009-02-23 09:03:22 +0000 | [diff] [blame] | 1401 | Val = Chain.getValue(0); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1402 | Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64, |
| 1403 | Val, DAG.getConstant(0, MVT::i64)); |
Evan Cheng | 242b38b | 2009-02-23 09:03:22 +0000 | [diff] [blame] | 1404 | } else { |
| 1405 | Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1406 | MVT::i64, InFlag).getValue(1); |
Evan Cheng | 242b38b | 2009-02-23 09:03:22 +0000 | [diff] [blame] | 1407 | Val = Chain.getValue(0); |
| 1408 | } |
Evan Cheng | 79fb3b4 | 2009-02-20 20:43:02 +0000 | [diff] [blame] | 1409 | Val = DAG.getNode(ISD::BIT_CONVERT, dl, CopyVT, Val); |
| 1410 | } else { |
| 1411 | Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), |
| 1412 | CopyVT, InFlag).getValue(1); |
| 1413 | Val = Chain.getValue(0); |
| 1414 | } |
Chris Lattner | 8e6da15 | 2008-03-10 21:08:41 +0000 | [diff] [blame] | 1415 | InFlag = Chain.getValue(2); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1416 | InVals.push_back(Val); |
Chris Lattner | 3085e15 | 2007-02-25 08:59:22 +0000 | [diff] [blame] | 1417 | } |
Duncan Sands | 4bdcb61 | 2008-07-02 17:40:58 +0000 | [diff] [blame] | 1418 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1419 | return Chain; |
Chris Lattner | 2b02a44 | 2007-02-25 08:29:00 +0000 | [diff] [blame] | 1420 | } |
| 1421 | |
| 1422 | |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 1423 | //===----------------------------------------------------------------------===// |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 1424 | // C & StdCall & Fast Calling Convention implementation |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 1425 | //===----------------------------------------------------------------------===// |
Anton Korobeynikov | b10308e | 2007-01-28 13:31:35 +0000 | [diff] [blame] | 1426 | // StdCall calling convention seems to be standard for many Windows' API |
| 1427 | // routines and around. It differs from C calling convention just a little: |
| 1428 | // callee should clean up the stack, not caller. Symbols should be also |
| 1429 | // decorated in some fancy way :) It doesn't support any vector arguments. |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 1430 | // For info on fast calling convention see Fast Calling Convention (tail call) |
| 1431 | // implementation LowerX86_32FastCCCallTo. |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 1432 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1433 | /// CallIsStructReturn - Determines whether a call uses struct return |
Arnold Schwaighofer | 16a3e52 | 2008-02-26 17:50:59 +0000 | [diff] [blame] | 1434 | /// semantics. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1435 | static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) { |
| 1436 | if (Outs.empty()) |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1437 | return false; |
Duncan Sands | 276dcbd | 2008-03-21 09:14:45 +0000 | [diff] [blame] | 1438 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1439 | return Outs[0].Flags.isSRet(); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1440 | } |
| 1441 | |
Dan Gohman | 7e77b0f | 2009-08-01 19:14:37 +0000 | [diff] [blame] | 1442 | /// ArgsAreStructReturn - Determines whether a function uses struct |
Arnold Schwaighofer | 16a3e52 | 2008-02-26 17:50:59 +0000 | [diff] [blame] | 1443 | /// return semantics. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1444 | static bool |
| 1445 | ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) { |
| 1446 | if (Ins.empty()) |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1447 | return false; |
Duncan Sands | 276dcbd | 2008-03-21 09:14:45 +0000 | [diff] [blame] | 1448 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1449 | return Ins[0].Flags.isSRet(); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1450 | } |
| 1451 | |
Arnold Schwaighofer | 16a3e52 | 2008-02-26 17:50:59 +0000 | [diff] [blame] | 1452 | /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified |
| 1453 | /// by "Src" to address "Dst" with size and alignment information specified by |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 1454 | /// the specific parameter attribute. The copy will be passed as a byval |
| 1455 | /// function parameter. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1456 | static SDValue |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1457 | CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain, |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 1458 | ISD::ArgFlagsTy Flags, SelectionDAG &DAG, |
| 1459 | DebugLoc dl) { |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 1460 | SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 1461 | |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 1462 | return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(), |
Mon P Wang | 20adc9d | 2010-04-04 03:10:48 +0000 | [diff] [blame] | 1463 | /*isVolatile*/false, /*AlwaysInline=*/true, |
Chris Lattner | fc448ff | 2010-09-21 18:51:21 +0000 | [diff] [blame] | 1464 | MachinePointerInfo(), MachinePointerInfo()); |
Arnold Schwaighofer | c8ab8cd | 2008-01-11 16:49:42 +0000 | [diff] [blame] | 1465 | } |
| 1466 | |
Chris Lattner | 2968943 | 2010-03-11 00:22:57 +0000 | [diff] [blame] | 1467 | /// IsTailCallConvention - Return true if the calling convention is one that |
| 1468 | /// supports tail call optimization. |
| 1469 | static bool IsTailCallConvention(CallingConv::ID CC) { |
| 1470 | return (CC == CallingConv::Fast || CC == CallingConv::GHC); |
| 1471 | } |
| 1472 | |
Evan Cheng | 0c439eb | 2010-01-27 00:07:07 +0000 | [diff] [blame] | 1473 | /// FuncIsMadeTailCallSafe - Return true if the function is being made into |
| 1474 | /// a tailcall target by changing its ABI. |
| 1475 | static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) { |
Chris Lattner | 2968943 | 2010-03-11 00:22:57 +0000 | [diff] [blame] | 1476 | return GuaranteedTailCallOpt && IsTailCallConvention(CC); |
Evan Cheng | 0c439eb | 2010-01-27 00:07:07 +0000 | [diff] [blame] | 1477 | } |
| 1478 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1479 | SDValue |
| 1480 | X86TargetLowering::LowerMemArgument(SDValue Chain, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 1481 | CallingConv::ID CallConv, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1482 | const SmallVectorImpl<ISD::InputArg> &Ins, |
| 1483 | DebugLoc dl, SelectionDAG &DAG, |
| 1484 | const CCValAssign &VA, |
| 1485 | MachineFrameInfo *MFI, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 1486 | unsigned i) const { |
Rafael Espindola | 7effac5 | 2007-09-14 15:48:13 +0000 | [diff] [blame] | 1487 | // Create the nodes corresponding to a load from this parameter slot. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1488 | ISD::ArgFlagsTy Flags = Ins[i].Flags; |
Evan Cheng | 0c439eb | 2010-01-27 00:07:07 +0000 | [diff] [blame] | 1489 | bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv); |
Duncan Sands | 276dcbd | 2008-03-21 09:14:45 +0000 | [diff] [blame] | 1490 | bool isImmutable = !AlwaysUseMutable && !Flags.isByVal(); |
Anton Korobeynikov | 2247276 | 2009-08-14 18:19:10 +0000 | [diff] [blame] | 1491 | EVT ValVT; |
| 1492 | |
| 1493 | // If value is passed by pointer we have address passed instead of the value |
| 1494 | // itself. |
| 1495 | if (VA.getLocInfo() == CCValAssign::Indirect) |
| 1496 | ValVT = VA.getLocVT(); |
| 1497 | else |
| 1498 | ValVT = VA.getValVT(); |
Evan Cheng | e70bb59 | 2008-01-10 02:24:25 +0000 | [diff] [blame] | 1499 | |
Arnold Schwaighofer | 865c681 | 2008-02-26 09:19:59 +0000 | [diff] [blame] | 1500 | // 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] | 1501 | // changed with more analysis. |
Arnold Schwaighofer | 865c681 | 2008-02-26 09:19:59 +0000 | [diff] [blame] | 1502 | // In case of tail call optimization mark all arguments mutable. Since they |
| 1503 | // 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] | 1504 | if (Flags.isByVal()) { |
| 1505 | int FI = MFI->CreateFixedObject(Flags.getByValSize(), |
Evan Cheng | ed2ae13 | 2010-07-03 00:40:23 +0000 | [diff] [blame] | 1506 | VA.getLocMemOffset(), isImmutable); |
Evan Cheng | 90567c3 | 2010-02-02 23:58:13 +0000 | [diff] [blame] | 1507 | return DAG.getFrameIndex(FI, getPointerTy()); |
| 1508 | } else { |
| 1509 | int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8, |
Evan Cheng | ed2ae13 | 2010-07-03 00:40:23 +0000 | [diff] [blame] | 1510 | VA.getLocMemOffset(), isImmutable); |
Evan Cheng | 90567c3 | 2010-02-02 23:58:13 +0000 | [diff] [blame] | 1511 | SDValue FIN = DAG.getFrameIndex(FI, getPointerTy()); |
| 1512 | return DAG.getLoad(ValVT, dl, Chain, FIN, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 1513 | MachinePointerInfo::getFixedStack(FI), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 1514 | false, false, 0); |
Evan Cheng | 90567c3 | 2010-02-02 23:58:13 +0000 | [diff] [blame] | 1515 | } |
Rafael Espindola | 7effac5 | 2007-09-14 15:48:13 +0000 | [diff] [blame] | 1516 | } |
| 1517 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1518 | SDValue |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1519 | X86TargetLowering::LowerFormalArguments(SDValue Chain, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 1520 | CallingConv::ID CallConv, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1521 | bool isVarArg, |
| 1522 | const SmallVectorImpl<ISD::InputArg> &Ins, |
| 1523 | DebugLoc dl, |
| 1524 | SelectionDAG &DAG, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 1525 | SmallVectorImpl<SDValue> &InVals) |
| 1526 | const { |
Evan Cheng | 1bc7804 | 2006-04-26 01:20:17 +0000 | [diff] [blame] | 1527 | MachineFunction &MF = DAG.getMachineFunction(); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1528 | X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1529 | |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1530 | const Function* Fn = MF.getFunction(); |
| 1531 | if (Fn->hasExternalLinkage() && |
| 1532 | Subtarget->isTargetCygMing() && |
| 1533 | Fn->getName() == "main") |
| 1534 | FuncInfo->setForceFramePointer(true); |
| 1535 | |
Evan Cheng | 1bc7804 | 2006-04-26 01:20:17 +0000 | [diff] [blame] | 1536 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1537 | bool Is64Bit = Subtarget->is64Bit(); |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1538 | bool IsWin64 = Subtarget->isTargetWin64(); |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 1539 | |
Chris Lattner | 2968943 | 2010-03-11 00:22:57 +0000 | [diff] [blame] | 1540 | assert(!(isVarArg && IsTailCallConvention(CallConv)) && |
| 1541 | "Var args not supported with calling convention fastcc or ghc"); |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 1542 | |
Chris Lattner | 638402b | 2007-02-28 07:00:42 +0000 | [diff] [blame] | 1543 | // Assign locations to all of the incoming arguments. |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1544 | SmallVector<CCValAssign, 16> ArgLocs; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1545 | CCState CCInfo(CallConv, isVarArg, getTargetMachine(), |
| 1546 | ArgLocs, *DAG.getContext()); |
Duncan Sands | 4590766 | 2010-10-31 13:21:44 +0000 | [diff] [blame] | 1547 | CCInfo.AnalyzeFormalArguments(Ins, CC_X86); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1548 | |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1549 | unsigned LastVal = ~0U; |
Anton Korobeynikov | 4ab1553 | 2009-08-03 08:13:56 +0000 | [diff] [blame] | 1550 | SDValue ArgValue; |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1551 | for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { |
| 1552 | CCValAssign &VA = ArgLocs[i]; |
| 1553 | // TODO: If an arg is passed in two places (e.g. reg and stack), skip later |
| 1554 | // places. |
| 1555 | assert(VA.getValNo() != LastVal && |
| 1556 | "Don't support value assigned to multiple locs yet"); |
| 1557 | LastVal = VA.getValNo(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1558 | |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1559 | if (VA.isRegLoc()) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1560 | EVT RegVT = VA.getLocVT(); |
Devang Patel | 8a84e44 | 2009-01-05 17:31:22 +0000 | [diff] [blame] | 1561 | TargetRegisterClass *RC = NULL; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1562 | if (RegVT == MVT::i32) |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1563 | RC = X86::GR32RegisterClass; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1564 | else if (Is64Bit && RegVT == MVT::i64) |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1565 | RC = X86::GR64RegisterClass; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1566 | else if (RegVT == MVT::f32) |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1567 | RC = X86::FR32RegisterClass; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1568 | else if (RegVT == MVT::f64) |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1569 | RC = X86::FR64RegisterClass; |
Bruno Cardoso Lopes | ac09835 | 2010-08-05 23:35:51 +0000 | [diff] [blame] | 1570 | else if (RegVT.isVector() && RegVT.getSizeInBits() == 256) |
| 1571 | RC = X86::VR256RegisterClass; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1572 | else if (RegVT.isVector() && RegVT.getSizeInBits() == 128) |
Evan Cheng | ee472b1 | 2008-04-25 07:56:45 +0000 | [diff] [blame] | 1573 | RC = X86::VR128RegisterClass; |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 1574 | else if (RegVT == MVT::x86mmx) |
Anton Korobeynikov | 80cb8aa | 2009-08-03 08:13:24 +0000 | [diff] [blame] | 1575 | RC = X86::VR64RegisterClass; |
| 1576 | else |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1577 | llvm_unreachable("Unknown argument type!"); |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 1578 | |
Dan Gohman | 7e77b0f | 2009-08-01 19:14:37 +0000 | [diff] [blame] | 1579 | unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1580 | ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1581 | |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1582 | // If this is an 8 or 16-bit value, it is really passed promoted to 32 |
| 1583 | // bits. Insert an assert[sz]ext to capture this, then truncate to the |
| 1584 | // right size. |
| 1585 | if (VA.getLocInfo() == CCValAssign::SExt) |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 1586 | ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue, |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1587 | DAG.getValueType(VA.getValVT())); |
| 1588 | else if (VA.getLocInfo() == CCValAssign::ZExt) |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 1589 | ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue, |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1590 | DAG.getValueType(VA.getValVT())); |
Anton Korobeynikov | 80cb8aa | 2009-08-03 08:13:24 +0000 | [diff] [blame] | 1591 | else if (VA.getLocInfo() == CCValAssign::BCvt) |
Anton Korobeynikov | 6dde14b | 2009-08-03 08:14:14 +0000 | [diff] [blame] | 1592 | ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getValVT(), ArgValue); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1593 | |
Anton Korobeynikov | 4ab1553 | 2009-08-03 08:13:56 +0000 | [diff] [blame] | 1594 | if (VA.isExtInLoc()) { |
Anton Korobeynikov | 80cb8aa | 2009-08-03 08:13:24 +0000 | [diff] [blame] | 1595 | // Handle MMX values passed in XMM regs. |
| 1596 | if (RegVT.isVector()) { |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 1597 | ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), |
| 1598 | ArgValue); |
Anton Korobeynikov | 80cb8aa | 2009-08-03 08:13:24 +0000 | [diff] [blame] | 1599 | } else |
| 1600 | ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue); |
Evan Cheng | 44c0fd1 | 2008-04-25 20:13:28 +0000 | [diff] [blame] | 1601 | } |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1602 | } else { |
| 1603 | assert(VA.isMemLoc()); |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1604 | ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i); |
Evan Cheng | 1bc7804 | 2006-04-26 01:20:17 +0000 | [diff] [blame] | 1605 | } |
Anton Korobeynikov | 4ab1553 | 2009-08-03 08:13:56 +0000 | [diff] [blame] | 1606 | |
| 1607 | // If value is passed via pointer - do a load. |
| 1608 | if (VA.getLocInfo() == CCValAssign::Indirect) |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 1609 | ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue, |
| 1610 | MachinePointerInfo(), false, false, 0); |
Anton Korobeynikov | 4ab1553 | 2009-08-03 08:13:56 +0000 | [diff] [blame] | 1611 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1612 | InVals.push_back(ArgValue); |
Evan Cheng | 1bc7804 | 2006-04-26 01:20:17 +0000 | [diff] [blame] | 1613 | } |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 1614 | |
Dan Gohman | 61a9213 | 2008-04-21 23:59:07 +0000 | [diff] [blame] | 1615 | // The x86-64 ABI for returning structs by value requires that we copy |
| 1616 | // the sret argument into %rax for the return. Save the argument into |
| 1617 | // 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] | 1618 | if (Is64Bit && MF.getFunction()->hasStructRetAttr()) { |
Dan Gohman | 61a9213 | 2008-04-21 23:59:07 +0000 | [diff] [blame] | 1619 | X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>(); |
| 1620 | unsigned Reg = FuncInfo->getSRetReturnReg(); |
| 1621 | if (!Reg) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1622 | Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64)); |
Dan Gohman | 61a9213 | 2008-04-21 23:59:07 +0000 | [diff] [blame] | 1623 | FuncInfo->setSRetReturnReg(Reg); |
| 1624 | } |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1625 | SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1626 | Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain); |
Dan Gohman | 61a9213 | 2008-04-21 23:59:07 +0000 | [diff] [blame] | 1627 | } |
| 1628 | |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1629 | unsigned StackSize = CCInfo.getNextStackOffset(); |
Evan Cheng | 0c439eb | 2010-01-27 00:07:07 +0000 | [diff] [blame] | 1630 | // Align stack specially for tail calls. |
| 1631 | if (FuncIsMadeTailCallSafe(CallConv)) |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 1632 | StackSize = GetAlignedArgumentStackSize(StackSize, DAG); |
Evan Cheng | 25caf63 | 2006-05-23 21:06:34 +0000 | [diff] [blame] | 1633 | |
Evan Cheng | 1bc7804 | 2006-04-26 01:20:17 +0000 | [diff] [blame] | 1634 | // If the function takes variable number of arguments, make a frame index for |
| 1635 | // 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] | 1636 | if (isVarArg) { |
Anton Korobeynikov | e7beda1 | 2010-10-03 22:52:07 +0000 | [diff] [blame] | 1637 | if (!IsWin64 && (Is64Bit || (CallConv != CallingConv::X86_FastCall && |
| 1638 | CallConv != CallingConv::X86_ThisCall))) { |
Jakob Stoklund Olesen | b2eeed7 | 2010-07-29 17:42:27 +0000 | [diff] [blame] | 1639 | FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true)); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1640 | } |
| 1641 | if (Is64Bit) { |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1642 | unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0; |
| 1643 | |
| 1644 | // FIXME: We should really autogenerate these arrays |
| 1645 | static const unsigned GPR64ArgRegsWin64[] = { |
| 1646 | X86::RCX, X86::RDX, X86::R8, X86::R9 |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1647 | }; |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1648 | static const unsigned GPR64ArgRegs64Bit[] = { |
| 1649 | X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9 |
| 1650 | }; |
| 1651 | static const unsigned XMMArgRegs64Bit[] = { |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1652 | X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3, |
| 1653 | X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7 |
| 1654 | }; |
Anton Korobeynikov | e7beda1 | 2010-10-03 22:52:07 +0000 | [diff] [blame] | 1655 | const unsigned *GPR64ArgRegs; |
| 1656 | unsigned NumXMMRegs = 0; |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1657 | |
| 1658 | if (IsWin64) { |
Anton Korobeynikov | e7beda1 | 2010-10-03 22:52:07 +0000 | [diff] [blame] | 1659 | // The XMM registers which might contain var arg parameters are shadowed |
| 1660 | // in their paired GPR. So we only need to save the GPR to their home |
| 1661 | // slots. |
| 1662 | TotalNumIntRegs = 4; |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1663 | GPR64ArgRegs = GPR64ArgRegsWin64; |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1664 | } else { |
| 1665 | TotalNumIntRegs = 6; TotalNumXMMRegs = 8; |
| 1666 | GPR64ArgRegs = GPR64ArgRegs64Bit; |
Anton Korobeynikov | e7beda1 | 2010-10-03 22:52:07 +0000 | [diff] [blame] | 1667 | |
| 1668 | NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs); |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1669 | } |
| 1670 | unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs, |
| 1671 | TotalNumIntRegs); |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1672 | |
Devang Patel | 578efa9 | 2009-06-05 21:57:13 +0000 | [diff] [blame] | 1673 | bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat); |
Evan Cheng | c7ce29b | 2009-02-13 22:36:38 +0000 | [diff] [blame] | 1674 | assert(!(NumXMMRegs && !Subtarget->hasSSE1()) && |
Torok Edwin | 3f142c3 | 2009-02-01 18:15:56 +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 | assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) && |
Evan Cheng | c7ce29b | 2009-02-13 22:36:38 +0000 | [diff] [blame] | 1677 | "SSE register cannot be used when SSE is disabled!"); |
Devang Patel | 578efa9 | 2009-06-05 21:57:13 +0000 | [diff] [blame] | 1678 | if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasSSE1()) |
Torok Edwin | 3f142c3 | 2009-02-01 18:15:56 +0000 | [diff] [blame] | 1679 | // Kernel mode asks for SSE to be disabled, so don't push them |
| 1680 | // on the stack. |
| 1681 | TotalNumXMMRegs = 0; |
Bill Wendling | f9abd7e | 2009-03-11 22:30:01 +0000 | [diff] [blame] | 1682 | |
Anton Korobeynikov | e7beda1 | 2010-10-03 22:52:07 +0000 | [diff] [blame] | 1683 | if (IsWin64) { |
Cameron Esfahani | ec37b00 | 2010-10-08 19:24:18 +0000 | [diff] [blame] | 1684 | const TargetFrameInfo &TFI = *getTargetMachine().getFrameInfo(); |
| 1685 | // Get to the caller-allocated home save location. Add 8 to account |
| 1686 | // for the return address. |
| 1687 | int HomeOffset = TFI.getOffsetOfLocalArea() + 8; |
Anton Korobeynikov | e7beda1 | 2010-10-03 22:52:07 +0000 | [diff] [blame] | 1688 | FuncInfo->setRegSaveFrameIndex( |
Cameron Esfahani | ec37b00 | 2010-10-08 19:24:18 +0000 | [diff] [blame] | 1689 | MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false)); |
Anton Korobeynikov | e7beda1 | 2010-10-03 22:52:07 +0000 | [diff] [blame] | 1690 | FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex()); |
| 1691 | } else { |
| 1692 | // For X86-64, if there are vararg parameters that are passed via |
| 1693 | // registers, then we must store them to their spots on the stack so they |
| 1694 | // may be loaded by deferencing the result of va_next. |
| 1695 | FuncInfo->setVarArgsGPOffset(NumIntRegs * 8); |
| 1696 | FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16); |
| 1697 | FuncInfo->setRegSaveFrameIndex( |
| 1698 | MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16, |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 1699 | false)); |
Anton Korobeynikov | e7beda1 | 2010-10-03 22:52:07 +0000 | [diff] [blame] | 1700 | } |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1701 | |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1702 | // Store the integer parameter registers. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1703 | SmallVector<SDValue, 8> MemOps; |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 1704 | SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(), |
| 1705 | getPointerTy()); |
| 1706 | unsigned Offset = FuncInfo->getVarArgsGPOffset(); |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1707 | for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) { |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 1708 | SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN, |
| 1709 | DAG.getIntPtrConstant(Offset)); |
Bob Wilson | 998e125 | 2009-04-20 18:36:57 +0000 | [diff] [blame] | 1710 | unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs], |
| 1711 | X86::GR64RegisterClass); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1712 | SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1713 | SDValue Store = |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 1714 | DAG.getStore(Val.getValue(1), dl, Val, FIN, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 1715 | MachinePointerInfo::getFixedStack( |
| 1716 | FuncInfo->getRegSaveFrameIndex(), Offset), |
| 1717 | false, false, 0); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1718 | MemOps.push_back(Store); |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 1719 | Offset += 8; |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1720 | } |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 1721 | |
Dan Gohman | face41a | 2009-08-16 21:24:25 +0000 | [diff] [blame] | 1722 | if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) { |
| 1723 | // Now store the XMM (fp + vector) parameter registers. |
| 1724 | SmallVector<SDValue, 11> SaveXMMOps; |
| 1725 | SaveXMMOps.push_back(Chain); |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 1726 | |
Dan Gohman | face41a | 2009-08-16 21:24:25 +0000 | [diff] [blame] | 1727 | unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass); |
| 1728 | SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8); |
| 1729 | SaveXMMOps.push_back(ALVal); |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 1730 | |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 1731 | SaveXMMOps.push_back(DAG.getIntPtrConstant( |
| 1732 | FuncInfo->getRegSaveFrameIndex())); |
| 1733 | SaveXMMOps.push_back(DAG.getIntPtrConstant( |
| 1734 | FuncInfo->getVarArgsFPOffset())); |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 1735 | |
Dan Gohman | face41a | 2009-08-16 21:24:25 +0000 | [diff] [blame] | 1736 | for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) { |
Anton Korobeynikov | e7beda1 | 2010-10-03 22:52:07 +0000 | [diff] [blame] | 1737 | unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs], |
Dan Gohman | face41a | 2009-08-16 21:24:25 +0000 | [diff] [blame] | 1738 | X86::VR128RegisterClass); |
| 1739 | SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32); |
| 1740 | SaveXMMOps.push_back(Val); |
| 1741 | } |
| 1742 | MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl, |
| 1743 | MVT::Other, |
| 1744 | &SaveXMMOps[0], SaveXMMOps.size())); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1745 | } |
Dan Gohman | face41a | 2009-08-16 21:24:25 +0000 | [diff] [blame] | 1746 | |
| 1747 | if (!MemOps.empty()) |
| 1748 | Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, |
| 1749 | &MemOps[0], MemOps.size()); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1750 | } |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 1751 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1752 | |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1753 | // Some CCs need callee pop. |
Dan Gohman | 4d3d6e1 | 2010-05-27 18:43:40 +0000 | [diff] [blame] | 1754 | if (Subtarget->IsCalleePop(isVarArg, CallConv)) { |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 1755 | FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything. |
Anton Korobeynikov | b10308e | 2007-01-28 13:31:35 +0000 | [diff] [blame] | 1756 | } else { |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 1757 | FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing. |
Chris Lattner | f39f771 | 2007-02-28 05:46:49 +0000 | [diff] [blame] | 1758 | // 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] | 1759 | if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins)) |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 1760 | FuncInfo->setBytesToPopOnReturn(4); |
Anton Korobeynikov | b10308e | 2007-01-28 13:31:35 +0000 | [diff] [blame] | 1761 | } |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 1762 | |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1763 | if (!Is64Bit) { |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 1764 | // RegSaveFrameIndex is X86-64 only. |
| 1765 | FuncInfo->setRegSaveFrameIndex(0xAAAAAAA); |
Anton Korobeynikov | ded05e3 | 2010-05-16 09:08:45 +0000 | [diff] [blame] | 1766 | if (CallConv == CallingConv::X86_FastCall || |
| 1767 | CallConv == CallingConv::X86_ThisCall) |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 1768 | // fastcc functions can't have varargs. |
| 1769 | FuncInfo->setVarArgsFrameIndex(0xAAAAAAA); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1770 | } |
Evan Cheng | 25caf63 | 2006-05-23 21:06:34 +0000 | [diff] [blame] | 1771 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1772 | return Chain; |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 1773 | } |
| 1774 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1775 | SDValue |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1776 | X86TargetLowering::LowerMemOpCallTo(SDValue Chain, |
| 1777 | SDValue StackPtr, SDValue Arg, |
| 1778 | DebugLoc dl, SelectionDAG &DAG, |
Evan Cheng | dffbd83 | 2008-01-10 00:09:10 +0000 | [diff] [blame] | 1779 | const CCValAssign &VA, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 1780 | ISD::ArgFlagsTy Flags) const { |
Anton Korobeynikov | c7c62bb | 2010-09-02 22:31:32 +0000 | [diff] [blame] | 1781 | const unsigned FirstStackArgOffset = (Subtarget->isTargetWin64() ? 32 : 0); |
| 1782 | unsigned LocMemOffset = FirstStackArgOffset + VA.getLocMemOffset(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1783 | SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 1784 | PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff); |
Chris Lattner | fc448ff | 2010-09-21 18:51:21 +0000 | [diff] [blame] | 1785 | if (Flags.isByVal()) |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 1786 | return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl); |
Chris Lattner | fc448ff | 2010-09-21 18:51:21 +0000 | [diff] [blame] | 1787 | |
| 1788 | return DAG.getStore(Chain, dl, Arg, PtrOff, |
| 1789 | MachinePointerInfo::getStack(LocMemOffset), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 1790 | false, false, 0); |
Evan Cheng | dffbd83 | 2008-01-10 00:09:10 +0000 | [diff] [blame] | 1791 | } |
| 1792 | |
Bill Wendling | 64e8732 | 2009-01-16 19:25:27 +0000 | [diff] [blame] | 1793 | /// EmitTailCallLoadRetAddr - Emit a load of return address if tail call |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 1794 | /// optimization is performed and it is required. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1795 | SDValue |
| 1796 | X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG, |
Evan Cheng | ddc419c | 2010-01-26 19:04:47 +0000 | [diff] [blame] | 1797 | SDValue &OutRetAddr, SDValue Chain, |
| 1798 | bool IsTailCall, bool Is64Bit, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 1799 | int FPDiff, DebugLoc dl) const { |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 1800 | // Adjust the Return address stack slot. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1801 | EVT VT = getPointerTy(); |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 1802 | OutRetAddr = getReturnAddressFrameIndex(DAG); |
Bill Wendling | 64e8732 | 2009-01-16 19:25:27 +0000 | [diff] [blame] | 1803 | |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 1804 | // Load the "old" Return address. |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 1805 | OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(), |
| 1806 | false, false, 0); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1807 | return SDValue(OutRetAddr.getNode(), 1); |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 1808 | } |
| 1809 | |
| 1810 | /// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call |
| 1811 | /// optimization is performed and it is required (FPDiff!=0). |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1812 | static SDValue |
| 1813 | EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1814 | SDValue Chain, SDValue RetAddrFrIdx, |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 1815 | bool Is64Bit, int FPDiff, DebugLoc dl) { |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 1816 | // Store the return address to the appropriate stack slot. |
| 1817 | if (!FPDiff) return Chain; |
| 1818 | // Calculate the new stack slot for the return address. |
| 1819 | int SlotSize = Is64Bit ? 8 : 4; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1820 | int NewReturnAddrFI = |
Evan Cheng | ed2ae13 | 2010-07-03 00:40:23 +0000 | [diff] [blame] | 1821 | MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1822 | EVT VT = Is64Bit ? MVT::i64 : MVT::i32; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1823 | SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1824 | Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 1825 | MachinePointerInfo::getFixedStack(NewReturnAddrFI), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 1826 | false, false, 0); |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 1827 | return Chain; |
| 1828 | } |
| 1829 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1830 | SDValue |
Evan Cheng | 022d9e1 | 2010-02-02 23:55:14 +0000 | [diff] [blame] | 1831 | X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 1832 | CallingConv::ID CallConv, bool isVarArg, |
Evan Cheng | 0c439eb | 2010-01-27 00:07:07 +0000 | [diff] [blame] | 1833 | bool &isTailCall, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1834 | const SmallVectorImpl<ISD::OutputArg> &Outs, |
Dan Gohman | c940365 | 2010-07-07 15:54:55 +0000 | [diff] [blame] | 1835 | const SmallVectorImpl<SDValue> &OutVals, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1836 | const SmallVectorImpl<ISD::InputArg> &Ins, |
| 1837 | DebugLoc dl, SelectionDAG &DAG, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 1838 | SmallVectorImpl<SDValue> &InVals) const { |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1839 | MachineFunction &MF = DAG.getMachineFunction(); |
| 1840 | bool Is64Bit = Subtarget->is64Bit(); |
| 1841 | bool IsStructRet = CallIsStructReturn(Outs); |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 1842 | bool IsSibcall = false; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1843 | |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 1844 | if (isTailCall) { |
Evan Cheng | 0c439eb | 2010-01-27 00:07:07 +0000 | [diff] [blame] | 1845 | // Check if it's really possible to do a tail call. |
Evan Cheng | a375d47 | 2010-03-15 18:54:48 +0000 | [diff] [blame] | 1846 | isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv, |
| 1847 | isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(), |
Dan Gohman | c940365 | 2010-07-07 15:54:55 +0000 | [diff] [blame] | 1848 | Outs, OutVals, Ins, DAG); |
Evan Cheng | f22f9b3 | 2010-02-06 03:28:46 +0000 | [diff] [blame] | 1849 | |
| 1850 | // Sibcalls are automatically detected tailcalls which do not require |
| 1851 | // ABI changes. |
Dan Gohman | 1797ed5 | 2010-02-08 20:27:50 +0000 | [diff] [blame] | 1852 | if (!GuaranteedTailCallOpt && isTailCall) |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 1853 | IsSibcall = true; |
Evan Cheng | f22f9b3 | 2010-02-06 03:28:46 +0000 | [diff] [blame] | 1854 | |
| 1855 | if (isTailCall) |
| 1856 | ++NumTailCalls; |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 1857 | } |
Evan Cheng | 0c439eb | 2010-01-27 00:07:07 +0000 | [diff] [blame] | 1858 | |
Chris Lattner | 2968943 | 2010-03-11 00:22:57 +0000 | [diff] [blame] | 1859 | assert(!(isVarArg && IsTailCallConvention(CallConv)) && |
| 1860 | "Var args not supported with calling convention fastcc or ghc"); |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 1861 | |
Chris Lattner | 638402b | 2007-02-28 07:00:42 +0000 | [diff] [blame] | 1862 | // Analyze operands of the call, assigning locations to each operand. |
Chris Lattner | 423c5f4 | 2007-02-28 05:31:48 +0000 | [diff] [blame] | 1863 | SmallVector<CCValAssign, 16> ArgLocs; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1864 | CCState CCInfo(CallConv, isVarArg, getTargetMachine(), |
| 1865 | ArgLocs, *DAG.getContext()); |
Duncan Sands | 4590766 | 2010-10-31 13:21:44 +0000 | [diff] [blame] | 1866 | CCInfo.AnalyzeCallOperands(Outs, CC_X86); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1867 | |
Chris Lattner | 423c5f4 | 2007-02-28 05:31:48 +0000 | [diff] [blame] | 1868 | // Get a count of how many bytes are to be pushed on the stack. |
| 1869 | unsigned NumBytes = CCInfo.getNextStackOffset(); |
Evan Cheng | f22f9b3 | 2010-02-06 03:28:46 +0000 | [diff] [blame] | 1870 | if (IsSibcall) |
Evan Cheng | b2c9290 | 2010-02-02 02:22:50 +0000 | [diff] [blame] | 1871 | // This is a sibcall. The memory operands are available in caller's |
| 1872 | // own caller's stack. |
| 1873 | NumBytes = 0; |
Chris Lattner | 2968943 | 2010-03-11 00:22:57 +0000 | [diff] [blame] | 1874 | else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv)) |
Evan Cheng | f22f9b3 | 2010-02-06 03:28:46 +0000 | [diff] [blame] | 1875 | NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 1876 | |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1877 | int FPDiff = 0; |
Evan Cheng | f22f9b3 | 2010-02-06 03:28:46 +0000 | [diff] [blame] | 1878 | if (isTailCall && !IsSibcall) { |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1879 | // Lower arguments at fp - stackoffset + fpdiff. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1880 | unsigned NumBytesCallerPushed = |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1881 | MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn(); |
| 1882 | FPDiff = NumBytesCallerPushed - NumBytes; |
| 1883 | |
| 1884 | // Set the delta of movement of the returnaddr stackslot. |
| 1885 | // But only set if delta is greater than previous delta. |
| 1886 | if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta())) |
| 1887 | MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff); |
| 1888 | } |
| 1889 | |
Evan Cheng | f22f9b3 | 2010-02-06 03:28:46 +0000 | [diff] [blame] | 1890 | if (!IsSibcall) |
| 1891 | Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true)); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 1892 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1893 | SDValue RetAddrFrIdx; |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 1894 | // Load return adress for tail calls. |
Evan Cheng | f22f9b3 | 2010-02-06 03:28:46 +0000 | [diff] [blame] | 1895 | if (isTailCall && FPDiff) |
| 1896 | Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall, |
| 1897 | Is64Bit, FPDiff, dl); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1898 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1899 | SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass; |
| 1900 | SmallVector<SDValue, 8> MemOpChains; |
| 1901 | SDValue StackPtr; |
Chris Lattner | 423c5f4 | 2007-02-28 05:31:48 +0000 | [diff] [blame] | 1902 | |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 1903 | // Walk the register/memloc assignments, inserting copies/loads. In the case |
| 1904 | // of tail call optimization arguments are handle later. |
Chris Lattner | 423c5f4 | 2007-02-28 05:31:48 +0000 | [diff] [blame] | 1905 | for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { |
| 1906 | CCValAssign &VA = ArgLocs[i]; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1907 | EVT RegVT = VA.getLocVT(); |
Dan Gohman | c940365 | 2010-07-07 15:54:55 +0000 | [diff] [blame] | 1908 | SDValue Arg = OutVals[i]; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1909 | ISD::ArgFlagsTy Flags = Outs[i].Flags; |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 1910 | bool isByVal = Flags.isByVal(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1911 | |
Chris Lattner | 423c5f4 | 2007-02-28 05:31:48 +0000 | [diff] [blame] | 1912 | // Promote the value if needed. |
| 1913 | switch (VA.getLocInfo()) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1914 | default: llvm_unreachable("Unknown loc info!"); |
Chris Lattner | 423c5f4 | 2007-02-28 05:31:48 +0000 | [diff] [blame] | 1915 | case CCValAssign::Full: break; |
| 1916 | case CCValAssign::SExt: |
Anton Korobeynikov | 80cb8aa | 2009-08-03 08:13:24 +0000 | [diff] [blame] | 1917 | Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg); |
Chris Lattner | 423c5f4 | 2007-02-28 05:31:48 +0000 | [diff] [blame] | 1918 | break; |
| 1919 | case CCValAssign::ZExt: |
Anton Korobeynikov | 80cb8aa | 2009-08-03 08:13:24 +0000 | [diff] [blame] | 1920 | Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg); |
Chris Lattner | 423c5f4 | 2007-02-28 05:31:48 +0000 | [diff] [blame] | 1921 | break; |
| 1922 | case CCValAssign::AExt: |
Anton Korobeynikov | 80cb8aa | 2009-08-03 08:13:24 +0000 | [diff] [blame] | 1923 | if (RegVT.isVector() && RegVT.getSizeInBits() == 128) { |
| 1924 | // Special case: passing MMX values in XMM registers. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1925 | Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg); |
| 1926 | Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg); |
| 1927 | Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg); |
Anton Korobeynikov | 80cb8aa | 2009-08-03 08:13:24 +0000 | [diff] [blame] | 1928 | } else |
| 1929 | Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg); |
| 1930 | break; |
| 1931 | case CCValAssign::BCvt: |
| 1932 | Arg = DAG.getNode(ISD::BIT_CONVERT, dl, RegVT, Arg); |
Chris Lattner | 423c5f4 | 2007-02-28 05:31:48 +0000 | [diff] [blame] | 1933 | break; |
Anton Korobeynikov | 4ab1553 | 2009-08-03 08:13:56 +0000 | [diff] [blame] | 1934 | case CCValAssign::Indirect: { |
| 1935 | // Store the argument. |
| 1936 | SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT()); |
Evan Cheng | ff89dcb | 2009-10-18 18:16:27 +0000 | [diff] [blame] | 1937 | int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex(); |
Anton Korobeynikov | 4ab1553 | 2009-08-03 08:13:56 +0000 | [diff] [blame] | 1938 | Chain = DAG.getStore(Chain, dl, Arg, SpillSlot, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 1939 | MachinePointerInfo::getFixedStack(FI), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 1940 | false, false, 0); |
Anton Korobeynikov | 4ab1553 | 2009-08-03 08:13:56 +0000 | [diff] [blame] | 1941 | Arg = SpillSlot; |
| 1942 | break; |
| 1943 | } |
Evan Cheng | 6b5783d | 2006-05-25 18:56:34 +0000 | [diff] [blame] | 1944 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1945 | |
Chris Lattner | 423c5f4 | 2007-02-28 05:31:48 +0000 | [diff] [blame] | 1946 | if (VA.isRegLoc()) { |
| 1947 | RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg)); |
Anton Korobeynikov | c52bedb | 2010-08-27 14:43:06 +0000 | [diff] [blame] | 1948 | if (isVarArg && Subtarget->isTargetWin64()) { |
| 1949 | // Win64 ABI requires argument XMM reg to be copied to the corresponding |
| 1950 | // shadow reg if callee is a varargs function. |
| 1951 | unsigned ShadowReg = 0; |
| 1952 | switch (VA.getLocReg()) { |
| 1953 | case X86::XMM0: ShadowReg = X86::RCX; break; |
| 1954 | case X86::XMM1: ShadowReg = X86::RDX; break; |
| 1955 | case X86::XMM2: ShadowReg = X86::R8; break; |
| 1956 | case X86::XMM3: ShadowReg = X86::R9; break; |
| 1957 | } |
| 1958 | if (ShadowReg) |
| 1959 | RegsToPass.push_back(std::make_pair(ShadowReg, Arg)); |
| 1960 | } |
Evan Cheng | f22f9b3 | 2010-02-06 03:28:46 +0000 | [diff] [blame] | 1961 | } else if (!IsSibcall && (!isTailCall || isByVal)) { |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 1962 | assert(VA.isMemLoc()); |
| 1963 | if (StackPtr.getNode() == 0) |
| 1964 | StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy()); |
| 1965 | MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg, |
| 1966 | dl, DAG, VA, Flags)); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 1967 | } |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 1968 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1969 | |
Evan Cheng | 32fe103 | 2006-05-25 00:59:30 +0000 | [diff] [blame] | 1970 | if (!MemOpChains.empty()) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1971 | Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 1972 | &MemOpChains[0], MemOpChains.size()); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 1973 | |
Evan Cheng | 347d5f7 | 2006-04-28 21:29:37 +0000 | [diff] [blame] | 1974 | // Build a sequence of copy-to-reg nodes chained together with token chain |
| 1975 | // and flag operands which copy the outgoing args into registers. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1976 | SDValue InFlag; |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 1977 | // Tail call byval lowering might overwrite argument registers so in case of |
| 1978 | // tail call optimization the copies to registers are lowered later. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1979 | if (!isTailCall) |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 1980 | for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1981 | Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first, |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 1982 | RegsToPass[i].second, InFlag); |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 1983 | InFlag = Chain.getValue(1); |
| 1984 | } |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 1985 | |
Chris Lattner | 88e1fd5 | 2009-07-09 04:24:46 +0000 | [diff] [blame] | 1986 | if (Subtarget->isPICStyleGOT()) { |
Chris Lattner | b133a0a | 2009-07-09 02:55:47 +0000 | [diff] [blame] | 1987 | // ELF / PIC requires GOT in the EBX register before function calls via PLT |
| 1988 | // GOT pointer. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 1989 | if (!isTailCall) { |
Chris Lattner | b133a0a | 2009-07-09 02:55:47 +0000 | [diff] [blame] | 1990 | Chain = DAG.getCopyToReg(Chain, dl, X86::EBX, |
| 1991 | DAG.getNode(X86ISD::GlobalBaseReg, |
Chris Lattner | c7f3ace | 2010-04-02 20:16:16 +0000 | [diff] [blame] | 1992 | DebugLoc(), getPointerTy()), |
Chris Lattner | b133a0a | 2009-07-09 02:55:47 +0000 | [diff] [blame] | 1993 | InFlag); |
| 1994 | InFlag = Chain.getValue(1); |
| 1995 | } else { |
| 1996 | // If we are tail calling and generating PIC/GOT style code load the |
| 1997 | // address of the callee into ECX. The value in ecx is used as target of |
| 1998 | // the tail jump. This is done to circumvent the ebx/callee-saved problem |
| 1999 | // for tail calls on PIC/GOT architectures. Normally we would just put the |
| 2000 | // address of GOT into ebx and then call target@PLT. But for tail calls |
| 2001 | // ebx would be restored (since ebx is callee saved) before jumping to the |
| 2002 | // target@PLT. |
| 2003 | |
| 2004 | // Note: The actual moving to ECX is done further down. |
| 2005 | GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee); |
| 2006 | if (G && !G->getGlobal()->hasHiddenVisibility() && |
| 2007 | !G->getGlobal()->hasProtectedVisibility()) |
| 2008 | Callee = LowerGlobalAddress(Callee, DAG); |
| 2009 | else if (isa<ExternalSymbolSDNode>(Callee)) |
Chris Lattner | 15a380a | 2009-07-09 04:39:06 +0000 | [diff] [blame] | 2010 | Callee = LowerExternalSymbol(Callee, DAG); |
Chris Lattner | b133a0a | 2009-07-09 02:55:47 +0000 | [diff] [blame] | 2011 | } |
Anton Korobeynikov | 7f70559 | 2007-01-12 19:20:47 +0000 | [diff] [blame] | 2012 | } |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 2013 | |
Nate Begeman | c8ea673 | 2010-07-21 20:49:52 +0000 | [diff] [blame] | 2014 | if (Is64Bit && isVarArg && !Subtarget->isTargetWin64()) { |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2015 | // From AMD64 ABI document: |
| 2016 | // For calls that may call functions that use varargs or stdargs |
| 2017 | // (prototype-less calls or calls to functions containing ellipsis (...) in |
| 2018 | // the declaration) %al is used as hidden argument to specify the number |
| 2019 | // of SSE registers used. The contents of %al do not need to match exactly |
| 2020 | // the number of registers, but must be an ubound on the number of SSE |
| 2021 | // registers used and is in the range 0 - 8 inclusive. |
Anton Korobeynikov | 998a5bc | 2008-04-27 23:15:03 +0000 | [diff] [blame] | 2022 | |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2023 | // Count the number of XMM registers allocated. |
| 2024 | static const unsigned XMMArgRegs[] = { |
| 2025 | X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3, |
| 2026 | X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7 |
| 2027 | }; |
| 2028 | unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2029 | assert((Subtarget->hasSSE1() || !NumXMMRegs) |
Torok Edwin | 3f142c3 | 2009-02-01 18:15:56 +0000 | [diff] [blame] | 2030 | && "SSE registers cannot be used when SSE is disabled"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2031 | |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 2032 | Chain = DAG.getCopyToReg(Chain, dl, X86::AL, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2033 | DAG.getConstant(NumXMMRegs, MVT::i8), InFlag); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2034 | InFlag = Chain.getValue(1); |
| 2035 | } |
| 2036 | |
Arnold Schwaighofer | 865c681 | 2008-02-26 09:19:59 +0000 | [diff] [blame] | 2037 | |
Arnold Schwaighofer | c8ab8cd | 2008-01-11 16:49:42 +0000 | [diff] [blame] | 2038 | // For tail calls lower the arguments to the 'real' stack slot. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2039 | if (isTailCall) { |
| 2040 | // Force all the incoming stack arguments to be loaded from the stack |
| 2041 | // before any new outgoing arguments are stored to the stack, because the |
| 2042 | // outgoing stack slots may alias the incoming argument stack slots, and |
| 2043 | // the alias isn't otherwise explicit. This is slightly more conservative |
| 2044 | // than necessary, because it means that each store effectively depends |
| 2045 | // on every argument instead of just those arguments it would clobber. |
| 2046 | SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain); |
| 2047 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2048 | SmallVector<SDValue, 8> MemOpChains2; |
| 2049 | SDValue FIN; |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2050 | int FI = 0; |
Arnold Schwaighofer | 865c681 | 2008-02-26 09:19:59 +0000 | [diff] [blame] | 2051 | // Do not flag preceeding copytoreg stuff together with the following stuff. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2052 | InFlag = SDValue(); |
Dan Gohman | 1797ed5 | 2010-02-08 20:27:50 +0000 | [diff] [blame] | 2053 | if (GuaranteedTailCallOpt) { |
Evan Cheng | b2c9290 | 2010-02-02 02:22:50 +0000 | [diff] [blame] | 2054 | for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { |
| 2055 | CCValAssign &VA = ArgLocs[i]; |
| 2056 | if (VA.isRegLoc()) |
| 2057 | continue; |
Arnold Schwaighofer | c8ab8cd | 2008-01-11 16:49:42 +0000 | [diff] [blame] | 2058 | assert(VA.isMemLoc()); |
Dan Gohman | c940365 | 2010-07-07 15:54:55 +0000 | [diff] [blame] | 2059 | SDValue Arg = OutVals[i]; |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2060 | ISD::ArgFlagsTy Flags = Outs[i].Flags; |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2061 | // Create frame index. |
| 2062 | int32_t Offset = VA.getLocMemOffset()+FPDiff; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2063 | uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8; |
Evan Cheng | ed2ae13 | 2010-07-03 00:40:23 +0000 | [diff] [blame] | 2064 | FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true); |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 2065 | FIN = DAG.getFrameIndex(FI, getPointerTy()); |
Arnold Schwaighofer | c8ab8cd | 2008-01-11 16:49:42 +0000 | [diff] [blame] | 2066 | |
Duncan Sands | 276dcbd | 2008-03-21 09:14:45 +0000 | [diff] [blame] | 2067 | if (Flags.isByVal()) { |
Evan Cheng | 8e5712b | 2008-01-12 01:08:07 +0000 | [diff] [blame] | 2068 | // Copy relative to framepointer. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2069 | SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset()); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2070 | if (StackPtr.getNode() == 0) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2071 | StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 2072 | getPointerTy()); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 2073 | Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source); |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 2074 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2075 | MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN, |
| 2076 | ArgChain, |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 2077 | Flags, DAG, dl)); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2078 | } else { |
Evan Cheng | 8e5712b | 2008-01-12 01:08:07 +0000 | [diff] [blame] | 2079 | // Store relative to framepointer. |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 2080 | MemOpChains2.push_back( |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2081 | DAG.getStore(ArgChain, dl, Arg, FIN, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 2082 | MachinePointerInfo::getFixedStack(FI), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 2083 | false, false, 0)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2084 | } |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2085 | } |
| 2086 | } |
| 2087 | |
| 2088 | if (!MemOpChains2.empty()) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2089 | Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, |
Arnold Schwaighofer | 719eb02 | 2008-01-11 14:34:56 +0000 | [diff] [blame] | 2090 | &MemOpChains2[0], MemOpChains2.size()); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2091 | |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 2092 | // Copy arguments to their registers. |
| 2093 | for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2094 | Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first, |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 2095 | RegsToPass[i].second, InFlag); |
Arnold Schwaighofer | 30e62c0 | 2008-04-30 09:16:33 +0000 | [diff] [blame] | 2096 | InFlag = Chain.getValue(1); |
| 2097 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2098 | InFlag =SDValue(); |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 2099 | |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2100 | // Store the return address to the appropriate stack slot. |
Arnold Schwaighofer | 4b5324a | 2008-04-12 18:11:06 +0000 | [diff] [blame] | 2101 | Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit, |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 2102 | FPDiff, dl); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2103 | } |
| 2104 | |
Jeffrey Yasskin | d1ba06b | 2009-11-16 22:41:33 +0000 | [diff] [blame] | 2105 | if (getTargetMachine().getCodeModel() == CodeModel::Large) { |
| 2106 | assert(Is64Bit && "Large code model is only legal in 64-bit mode."); |
| 2107 | // In the 64-bit large code model, we have to make all calls |
| 2108 | // through a register, since the call instruction's 32-bit |
| 2109 | // pc-relative offset may not be large enough to hold the whole |
| 2110 | // address. |
| 2111 | } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) { |
Jeffrey Yasskin | d1ba06b | 2009-11-16 22:41:33 +0000 | [diff] [blame] | 2112 | // If the callee is a GlobalAddress node (quite common, every direct call |
| 2113 | // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack |
| 2114 | // it. |
| 2115 | |
Anton Korobeynikov | 2b2bc68 | 2006-12-22 22:29:05 +0000 | [diff] [blame] | 2116 | // We should use extra load for direct calls to dllimported functions in |
| 2117 | // non-JIT mode. |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 2118 | const GlobalValue *GV = G->getGlobal(); |
Chris Lattner | 754b765 | 2009-07-10 05:48:03 +0000 | [diff] [blame] | 2119 | if (!GV->hasDLLImportLinkage()) { |
Chris Lattner | 48a7d02 | 2009-07-09 05:02:21 +0000 | [diff] [blame] | 2120 | unsigned char OpFlags = 0; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2121 | |
Chris Lattner | 48a7d02 | 2009-07-09 05:02:21 +0000 | [diff] [blame] | 2122 | // On ELF targets, in both X86-64 and X86-32 mode, direct calls to |
| 2123 | // external symbols most go through the PLT in PIC mode. If the symbol |
| 2124 | // has hidden or protected visibility, or if it is static or local, then |
| 2125 | // we don't need to use the PLT - we can directly call it. |
| 2126 | if (Subtarget->isTargetELF() && |
| 2127 | getTargetMachine().getRelocationModel() == Reloc::PIC_ && |
Chris Lattner | 74e726e | 2009-07-09 05:27:35 +0000 | [diff] [blame] | 2128 | GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) { |
Chris Lattner | 48a7d02 | 2009-07-09 05:02:21 +0000 | [diff] [blame] | 2129 | OpFlags = X86II::MO_PLT; |
Chris Lattner | 3b67e9b | 2009-07-10 20:47:30 +0000 | [diff] [blame] | 2130 | } else if (Subtarget->isPICStyleStubAny() && |
Chris Lattner | 8094578 | 2010-09-27 06:34:01 +0000 | [diff] [blame] | 2131 | (GV->isDeclaration() || GV->isWeakForLinker()) && |
| 2132 | Subtarget->getDarwinVers() < 9) { |
Chris Lattner | 74e726e | 2009-07-09 05:27:35 +0000 | [diff] [blame] | 2133 | // PC-relative references to external symbols should go through $stub, |
| 2134 | // unless we're building with the leopard linker or later, which |
| 2135 | // automatically synthesizes these stubs. |
| 2136 | OpFlags = X86II::MO_DARWIN_STUB; |
| 2137 | } |
Chris Lattner | 48a7d02 | 2009-07-09 05:02:21 +0000 | [diff] [blame] | 2138 | |
Devang Patel | 0d881da | 2010-07-06 22:08:15 +0000 | [diff] [blame] | 2139 | Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), |
Chris Lattner | 48a7d02 | 2009-07-09 05:02:21 +0000 | [diff] [blame] | 2140 | G->getOffset(), OpFlags); |
| 2141 | } |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 2142 | } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) { |
Chris Lattner | 48a7d02 | 2009-07-09 05:02:21 +0000 | [diff] [blame] | 2143 | unsigned char OpFlags = 0; |
| 2144 | |
| 2145 | // On ELF targets, in either X86-64 or X86-32 mode, direct calls to external |
| 2146 | // symbols should go through the PLT. |
| 2147 | if (Subtarget->isTargetELF() && |
Chris Lattner | 74e726e | 2009-07-09 05:27:35 +0000 | [diff] [blame] | 2148 | getTargetMachine().getRelocationModel() == Reloc::PIC_) { |
Chris Lattner | 48a7d02 | 2009-07-09 05:02:21 +0000 | [diff] [blame] | 2149 | OpFlags = X86II::MO_PLT; |
Chris Lattner | 3b67e9b | 2009-07-10 20:47:30 +0000 | [diff] [blame] | 2150 | } else if (Subtarget->isPICStyleStubAny() && |
Chris Lattner | 8094578 | 2010-09-27 06:34:01 +0000 | [diff] [blame] | 2151 | Subtarget->getDarwinVers() < 9) { |
Chris Lattner | 74e726e | 2009-07-09 05:27:35 +0000 | [diff] [blame] | 2152 | // PC-relative references to external symbols should go through $stub, |
| 2153 | // unless we're building with the leopard linker or later, which |
| 2154 | // automatically synthesizes these stubs. |
| 2155 | OpFlags = X86II::MO_DARWIN_STUB; |
| 2156 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2157 | |
Chris Lattner | 48a7d02 | 2009-07-09 05:02:21 +0000 | [diff] [blame] | 2158 | Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(), |
| 2159 | OpFlags); |
Jeffrey Yasskin | d1ba06b | 2009-11-16 22:41:33 +0000 | [diff] [blame] | 2160 | } |
| 2161 | |
Chris Lattner | d96d072 | 2007-02-25 06:40:16 +0000 | [diff] [blame] | 2162 | // Returns a chain & a flag for retval copy to use. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2163 | SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2164 | SmallVector<SDValue, 8> Ops; |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2165 | |
Evan Cheng | f22f9b3 | 2010-02-06 03:28:46 +0000 | [diff] [blame] | 2166 | if (!IsSibcall && isTailCall) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2167 | Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true), |
| 2168 | DAG.getIntPtrConstant(0, true), InFlag); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2169 | InFlag = Chain.getValue(1); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2170 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2171 | |
Nate Begeman | 4c5dcf5 | 2006-02-17 00:03:04 +0000 | [diff] [blame] | 2172 | Ops.push_back(Chain); |
| 2173 | Ops.push_back(Callee); |
Evan Cheng | b69d113 | 2006-06-14 18:17:40 +0000 | [diff] [blame] | 2174 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2175 | if (isTailCall) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2176 | Ops.push_back(DAG.getConstant(FPDiff, MVT::i32)); |
Evan Cheng | f468471 | 2007-02-21 21:18:14 +0000 | [diff] [blame] | 2177 | |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2178 | // Add argument registers to the end of the list so that they are known live |
| 2179 | // into the call. |
Evan Cheng | 9b44944 | 2008-01-07 23:08:23 +0000 | [diff] [blame] | 2180 | for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) |
| 2181 | Ops.push_back(DAG.getRegister(RegsToPass[i].first, |
| 2182 | RegsToPass[i].second.getValueType())); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2183 | |
Evan Cheng | 586ccac | 2008-03-18 23:36:35 +0000 | [diff] [blame] | 2184 | // Add an implicit use GOT pointer in EBX. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2185 | if (!isTailCall && Subtarget->isPICStyleGOT()) |
Evan Cheng | 586ccac | 2008-03-18 23:36:35 +0000 | [diff] [blame] | 2186 | Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy())); |
| 2187 | |
Anton Korobeynikov | 3a1e54a | 2010-08-17 21:06:07 +0000 | [diff] [blame] | 2188 | // Add an implicit use of AL for non-Windows x86 64-bit vararg functions. |
| 2189 | if (Is64Bit && isVarArg && !Subtarget->isTargetWin64()) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2190 | Ops.push_back(DAG.getRegister(X86::AL, MVT::i8)); |
Evan Cheng | 586ccac | 2008-03-18 23:36:35 +0000 | [diff] [blame] | 2191 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2192 | if (InFlag.getNode()) |
Evan Cheng | 347d5f7 | 2006-04-28 21:29:37 +0000 | [diff] [blame] | 2193 | Ops.push_back(InFlag); |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 2194 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2195 | if (isTailCall) { |
Dale Johannesen | 88004c2 | 2010-06-05 00:30:45 +0000 | [diff] [blame] | 2196 | // We used to do: |
| 2197 | //// If this is the first return lowered for this function, add the regs |
| 2198 | //// to the liveout set for the function. |
| 2199 | // This isn't right, although it's probably harmless on x86; liveouts |
| 2200 | // should be computed from returns not tail calls. Consider a void |
| 2201 | // function making a tail call to a function returning int. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2202 | return DAG.getNode(X86ISD::TC_RETURN, dl, |
| 2203 | NodeTys, &Ops[0], Ops.size()); |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2204 | } |
| 2205 | |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 2206 | Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size()); |
Evan Cheng | 347d5f7 | 2006-04-28 21:29:37 +0000 | [diff] [blame] | 2207 | InFlag = Chain.getValue(1); |
Evan Cheng | d90eb7f | 2006-01-05 00:27:02 +0000 | [diff] [blame] | 2208 | |
Chris Lattner | 2d29709 | 2006-05-23 18:50:38 +0000 | [diff] [blame] | 2209 | // Create the CALLSEQ_END node. |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2210 | unsigned NumBytesForCalleeToPush; |
Dan Gohman | 4d3d6e1 | 2010-05-27 18:43:40 +0000 | [diff] [blame] | 2211 | if (Subtarget->IsCalleePop(isVarArg, CallConv)) |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2212 | NumBytesForCalleeToPush = NumBytes; // Callee pops everything |
Chris Lattner | 2968943 | 2010-03-11 00:22:57 +0000 | [diff] [blame] | 2213 | else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet) |
Dan Gohman | f451cb8 | 2010-02-10 16:03:48 +0000 | [diff] [blame] | 2214 | // If this is a call to a struct-return function, the callee |
Anton Korobeynikov | b10308e | 2007-01-28 13:31:35 +0000 | [diff] [blame] | 2215 | // pops the hidden struct pointer, so we have to push it back. |
| 2216 | // This is common for Darwin/X86, Linux & Mingw32 targets. |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 2217 | NumBytesForCalleeToPush = 4; |
Gordon Henriksen | 8673766 | 2008-01-05 16:56:59 +0000 | [diff] [blame] | 2218 | else |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 2219 | NumBytesForCalleeToPush = 0; // Callee pops nothing. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2220 | |
Gordon Henriksen | ae636f8 | 2008-01-03 16:47:34 +0000 | [diff] [blame] | 2221 | // Returns a flag for retval copy to use. |
Evan Cheng | f22f9b3 | 2010-02-06 03:28:46 +0000 | [diff] [blame] | 2222 | if (!IsSibcall) { |
| 2223 | Chain = DAG.getCALLSEQ_END(Chain, |
| 2224 | DAG.getIntPtrConstant(NumBytes, true), |
| 2225 | DAG.getIntPtrConstant(NumBytesForCalleeToPush, |
| 2226 | true), |
| 2227 | InFlag); |
| 2228 | InFlag = Chain.getValue(1); |
| 2229 | } |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 2230 | |
Chris Lattner | 3085e15 | 2007-02-25 08:59:22 +0000 | [diff] [blame] | 2231 | // Handle result values, copying them out of physregs into vregs that we |
| 2232 | // return. |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2233 | return LowerCallResult(Chain, InFlag, CallConv, isVarArg, |
| 2234 | Ins, dl, DAG, InVals); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 2235 | } |
| 2236 | |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 2237 | |
| 2238 | //===----------------------------------------------------------------------===// |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 2239 | // Fast Calling Convention (tail call) implementation |
| 2240 | //===----------------------------------------------------------------------===// |
| 2241 | |
| 2242 | // Like std call, callee cleans arguments, convention except that ECX is |
| 2243 | // reserved for storing the tail called function address. Only 2 registers are |
| 2244 | // free for argument passing (inreg). Tail call optimization is performed |
| 2245 | // provided: |
| 2246 | // * tailcallopt is enabled |
| 2247 | // * caller/callee are fastcc |
Arnold Schwaighofer | a2a4b47 | 2008-02-26 10:21:54 +0000 | [diff] [blame] | 2248 | // On X86_64 architecture with GOT-style position independent code only local |
| 2249 | // (within module) calls are supported at the moment. |
Arnold Schwaighofer | 48abc5c | 2007-10-12 21:30:57 +0000 | [diff] [blame] | 2250 | // To keep the stack aligned according to platform abi the function |
| 2251 | // GetAlignedArgumentStackSize ensures that argument delta is always multiples |
| 2252 | // of stack alignment. (Dynamic linkers need this - darwin's dyld for example) |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 2253 | // If a tail called function callee has more arguments than the caller the |
| 2254 | // 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] | 2255 | // 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] | 2256 | // original REtADDR, but before the saved framepointer or the spilled registers |
| 2257 | // e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4) |
| 2258 | // stack layout: |
| 2259 | // arg1 |
| 2260 | // arg2 |
| 2261 | // RETADDR |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2262 | // [ new RETADDR |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 2263 | // move area ] |
| 2264 | // (possible EBP) |
| 2265 | // ESI |
| 2266 | // EDI |
| 2267 | // local1 .. |
| 2268 | |
| 2269 | /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned |
| 2270 | /// for a 16 byte align requirement. |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 2271 | unsigned |
| 2272 | X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize, |
| 2273 | SelectionDAG& DAG) const { |
Evan Cheng | e9ac9e6 | 2008-09-07 09:07:23 +0000 | [diff] [blame] | 2274 | MachineFunction &MF = DAG.getMachineFunction(); |
| 2275 | const TargetMachine &TM = MF.getTarget(); |
| 2276 | const TargetFrameInfo &TFI = *TM.getFrameInfo(); |
| 2277 | unsigned StackAlignment = TFI.getStackAlignment(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2278 | uint64_t AlignMask = StackAlignment - 1; |
Evan Cheng | e9ac9e6 | 2008-09-07 09:07:23 +0000 | [diff] [blame] | 2279 | int64_t Offset = StackSize; |
Anton Korobeynikov | bff66b0 | 2008-09-09 18:22:57 +0000 | [diff] [blame] | 2280 | uint64_t SlotSize = TD->getPointerSize(); |
Evan Cheng | e9ac9e6 | 2008-09-07 09:07:23 +0000 | [diff] [blame] | 2281 | if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) { |
| 2282 | // Number smaller than 12 so just add the difference. |
| 2283 | Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask)); |
| 2284 | } else { |
| 2285 | // Mask out lower bits, add stackalignment once plus the 12 bytes. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2286 | Offset = ((~AlignMask) & Offset) + StackAlignment + |
Evan Cheng | e9ac9e6 | 2008-09-07 09:07:23 +0000 | [diff] [blame] | 2287 | (StackAlignment-SlotSize); |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 2288 | } |
Evan Cheng | e9ac9e6 | 2008-09-07 09:07:23 +0000 | [diff] [blame] | 2289 | return Offset; |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 2290 | } |
| 2291 | |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 2292 | /// MatchingStackOffset - Return true if the given stack call argument is |
| 2293 | /// already available in the same position (relatively) of the caller's |
| 2294 | /// incoming argument stack. |
| 2295 | static |
| 2296 | bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags, |
| 2297 | MachineFrameInfo *MFI, const MachineRegisterInfo *MRI, |
| 2298 | const X86InstrInfo *TII) { |
Evan Cheng | 4cae133 | 2010-03-05 08:38:04 +0000 | [diff] [blame] | 2299 | unsigned Bytes = Arg.getValueType().getSizeInBits() / 8; |
| 2300 | int FI = INT_MAX; |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 2301 | if (Arg.getOpcode() == ISD::CopyFromReg) { |
| 2302 | unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg(); |
| 2303 | if (!VR || TargetRegisterInfo::isPhysicalRegister(VR)) |
| 2304 | return false; |
| 2305 | MachineInstr *Def = MRI->getVRegDef(VR); |
| 2306 | if (!Def) |
| 2307 | return false; |
| 2308 | if (!Flags.isByVal()) { |
| 2309 | if (!TII->isLoadFromStackSlot(Def, FI)) |
| 2310 | return false; |
| 2311 | } else { |
| 2312 | unsigned Opcode = Def->getOpcode(); |
| 2313 | if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) && |
| 2314 | Def->getOperand(1).isFI()) { |
| 2315 | FI = Def->getOperand(1).getIndex(); |
Evan Cheng | 4cae133 | 2010-03-05 08:38:04 +0000 | [diff] [blame] | 2316 | Bytes = Flags.getByValSize(); |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 2317 | } else |
| 2318 | return false; |
| 2319 | } |
Evan Cheng | 4cae133 | 2010-03-05 08:38:04 +0000 | [diff] [blame] | 2320 | } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) { |
| 2321 | if (Flags.isByVal()) |
| 2322 | // 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] | 2323 | // dereferenced. e.g. |
Evan Cheng | 4cae133 | 2010-03-05 08:38:04 +0000 | [diff] [blame] | 2324 | // define @foo(%struct.X* %A) { |
| 2325 | // tail call @bar(%struct.X* byval %A) |
| 2326 | // } |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 2327 | return false; |
| 2328 | SDValue Ptr = Ld->getBasePtr(); |
| 2329 | FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr); |
| 2330 | if (!FINode) |
| 2331 | return false; |
| 2332 | FI = FINode->getIndex(); |
Evan Cheng | 4cae133 | 2010-03-05 08:38:04 +0000 | [diff] [blame] | 2333 | } else |
| 2334 | return false; |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 2335 | |
Evan Cheng | 4cae133 | 2010-03-05 08:38:04 +0000 | [diff] [blame] | 2336 | assert(FI != INT_MAX); |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 2337 | if (!MFI->isFixedObjectIndex(FI)) |
| 2338 | return false; |
Evan Cheng | 4cae133 | 2010-03-05 08:38:04 +0000 | [diff] [blame] | 2339 | return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI); |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 2340 | } |
| 2341 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2342 | /// IsEligibleForTailCallOptimization - Check whether the call is eligible |
| 2343 | /// for tail call optimization. Targets which want to do tail call |
| 2344 | /// optimization should implement this function. |
| 2345 | bool |
| 2346 | X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee, |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 2347 | CallingConv::ID CalleeCC, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2348 | bool isVarArg, |
Evan Cheng | a375d47 | 2010-03-15 18:54:48 +0000 | [diff] [blame] | 2349 | bool isCalleeStructRet, |
| 2350 | bool isCallerStructRet, |
Evan Cheng | b171245 | 2010-01-27 06:25:16 +0000 | [diff] [blame] | 2351 | const SmallVectorImpl<ISD::OutputArg> &Outs, |
Dan Gohman | c940365 | 2010-07-07 15:54:55 +0000 | [diff] [blame] | 2352 | const SmallVectorImpl<SDValue> &OutVals, |
Evan Cheng | b171245 | 2010-01-27 06:25:16 +0000 | [diff] [blame] | 2353 | const SmallVectorImpl<ISD::InputArg> &Ins, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 2354 | SelectionDAG& DAG) const { |
Chris Lattner | 2968943 | 2010-03-11 00:22:57 +0000 | [diff] [blame] | 2355 | if (!IsTailCallConvention(CalleeCC) && |
Evan Cheng | b171245 | 2010-01-27 06:25:16 +0000 | [diff] [blame] | 2356 | CalleeCC != CallingConv::C) |
| 2357 | return false; |
| 2358 | |
Evan Cheng | 7096ae4 | 2010-01-29 06:45:59 +0000 | [diff] [blame] | 2359 | // If -tailcallopt is specified, make fastcc functions tail-callable. |
Evan Cheng | 2c12cb4 | 2010-03-26 16:26:03 +0000 | [diff] [blame] | 2360 | const MachineFunction &MF = DAG.getMachineFunction(); |
Evan Cheng | 7096ae4 | 2010-01-29 06:45:59 +0000 | [diff] [blame] | 2361 | const Function *CallerF = DAG.getMachineFunction().getFunction(); |
Evan Cheng | 1361796 | 2010-04-30 01:12:32 +0000 | [diff] [blame] | 2362 | CallingConv::ID CallerCC = CallerF->getCallingConv(); |
| 2363 | bool CCMatch = CallerCC == CalleeCC; |
| 2364 | |
Dan Gohman | 1797ed5 | 2010-02-08 20:27:50 +0000 | [diff] [blame] | 2365 | if (GuaranteedTailCallOpt) { |
Evan Cheng | 1361796 | 2010-04-30 01:12:32 +0000 | [diff] [blame] | 2366 | if (IsTailCallConvention(CalleeCC) && CCMatch) |
Evan Cheng | 843bd69 | 2010-01-31 06:44:49 +0000 | [diff] [blame] | 2367 | return true; |
| 2368 | return false; |
| 2369 | } |
| 2370 | |
Dale Johannesen | 2f05cc0 | 2010-05-28 23:24:28 +0000 | [diff] [blame] | 2371 | // Look for obvious safe cases to perform tail call optimization that do not |
| 2372 | // require ABI changes. This is what gcc calls sibcall. |
Evan Cheng | b2c9290 | 2010-02-02 02:22:50 +0000 | [diff] [blame] | 2373 | |
Evan Cheng | 2c12cb4 | 2010-03-26 16:26:03 +0000 | [diff] [blame] | 2374 | // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to |
| 2375 | // emit a special epilogue. |
| 2376 | if (RegInfo->needsStackRealignment(MF)) |
| 2377 | return false; |
| 2378 | |
Eric Christopher | 90eb402 | 2010-07-22 00:26:08 +0000 | [diff] [blame] | 2379 | // Do not sibcall optimize vararg calls unless the call site is not passing |
| 2380 | // any arguments. |
Evan Cheng | 3c262ee | 2010-03-26 02:13:13 +0000 | [diff] [blame] | 2381 | if (isVarArg && !Outs.empty()) |
Evan Cheng | 843bd69 | 2010-01-31 06:44:49 +0000 | [diff] [blame] | 2382 | return false; |
| 2383 | |
Evan Cheng | a375d47 | 2010-03-15 18:54:48 +0000 | [diff] [blame] | 2384 | // Also avoid sibcall optimization if either caller or callee uses struct |
| 2385 | // return semantics. |
| 2386 | if (isCalleeStructRet || isCallerStructRet) |
| 2387 | return false; |
| 2388 | |
Evan Cheng | f5b9d6c | 2010-03-20 02:58:15 +0000 | [diff] [blame] | 2389 | // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack. |
| 2390 | // Therefore if it's not used by the call it is not safe to optimize this into |
| 2391 | // a sibcall. |
| 2392 | bool Unused = false; |
| 2393 | for (unsigned i = 0, e = Ins.size(); i != e; ++i) { |
| 2394 | if (!Ins[i].Used) { |
| 2395 | Unused = true; |
| 2396 | break; |
| 2397 | } |
| 2398 | } |
| 2399 | if (Unused) { |
| 2400 | SmallVector<CCValAssign, 16> RVLocs; |
| 2401 | CCState CCInfo(CalleeCC, false, getTargetMachine(), |
| 2402 | RVLocs, *DAG.getContext()); |
| 2403 | CCInfo.AnalyzeCallResult(Ins, RetCC_X86); |
Evan Cheng | 1361796 | 2010-04-30 01:12:32 +0000 | [diff] [blame] | 2404 | for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) { |
Evan Cheng | f5b9d6c | 2010-03-20 02:58:15 +0000 | [diff] [blame] | 2405 | CCValAssign &VA = RVLocs[i]; |
| 2406 | if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) |
| 2407 | return false; |
| 2408 | } |
| 2409 | } |
| 2410 | |
Evan Cheng | 1361796 | 2010-04-30 01:12:32 +0000 | [diff] [blame] | 2411 | // If the calling conventions do not match, then we'd better make sure the |
| 2412 | // results are returned in the same way as what the caller expects. |
| 2413 | if (!CCMatch) { |
| 2414 | SmallVector<CCValAssign, 16> RVLocs1; |
| 2415 | CCState CCInfo1(CalleeCC, false, getTargetMachine(), |
| 2416 | RVLocs1, *DAG.getContext()); |
| 2417 | CCInfo1.AnalyzeCallResult(Ins, RetCC_X86); |
| 2418 | |
| 2419 | SmallVector<CCValAssign, 16> RVLocs2; |
| 2420 | CCState CCInfo2(CallerCC, false, getTargetMachine(), |
| 2421 | RVLocs2, *DAG.getContext()); |
| 2422 | CCInfo2.AnalyzeCallResult(Ins, RetCC_X86); |
| 2423 | |
| 2424 | if (RVLocs1.size() != RVLocs2.size()) |
| 2425 | return false; |
| 2426 | for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) { |
| 2427 | if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc()) |
| 2428 | return false; |
| 2429 | if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo()) |
| 2430 | return false; |
| 2431 | if (RVLocs1[i].isRegLoc()) { |
| 2432 | if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg()) |
| 2433 | return false; |
| 2434 | } else { |
| 2435 | if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset()) |
| 2436 | return false; |
| 2437 | } |
| 2438 | } |
| 2439 | } |
| 2440 | |
Evan Cheng | a6bff98 | 2010-01-30 01:22:00 +0000 | [diff] [blame] | 2441 | // If the callee takes no arguments then go on to check the results of the |
| 2442 | // call. |
| 2443 | if (!Outs.empty()) { |
| 2444 | // Check if stack adjustment is needed. For now, do not do this if any |
| 2445 | // argument is passed on the stack. |
| 2446 | SmallVector<CCValAssign, 16> ArgLocs; |
| 2447 | CCState CCInfo(CalleeCC, isVarArg, getTargetMachine(), |
| 2448 | ArgLocs, *DAG.getContext()); |
Duncan Sands | 4590766 | 2010-10-31 13:21:44 +0000 | [diff] [blame] | 2449 | CCInfo.AnalyzeCallOperands(Outs, CC_X86); |
Evan Cheng | b2c9290 | 2010-02-02 02:22:50 +0000 | [diff] [blame] | 2450 | if (CCInfo.getNextStackOffset()) { |
| 2451 | MachineFunction &MF = DAG.getMachineFunction(); |
| 2452 | if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn()) |
| 2453 | return false; |
| 2454 | if (Subtarget->isTargetWin64()) |
| 2455 | // Win64 ABI has additional complications. |
| 2456 | return false; |
| 2457 | |
| 2458 | // Check if the arguments are already laid out in the right way as |
| 2459 | // the caller's fixed stack objects. |
| 2460 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 2461 | const MachineRegisterInfo *MRI = &MF.getRegInfo(); |
| 2462 | const X86InstrInfo *TII = |
| 2463 | ((X86TargetMachine&)getTargetMachine()).getInstrInfo(); |
Evan Cheng | b2c9290 | 2010-02-02 02:22:50 +0000 | [diff] [blame] | 2464 | for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { |
| 2465 | CCValAssign &VA = ArgLocs[i]; |
Dan Gohman | c940365 | 2010-07-07 15:54:55 +0000 | [diff] [blame] | 2466 | SDValue Arg = OutVals[i]; |
Evan Cheng | b2c9290 | 2010-02-02 02:22:50 +0000 | [diff] [blame] | 2467 | ISD::ArgFlagsTy Flags = Outs[i].Flags; |
Evan Cheng | b2c9290 | 2010-02-02 02:22:50 +0000 | [diff] [blame] | 2468 | if (VA.getLocInfo() == CCValAssign::Indirect) |
| 2469 | return false; |
| 2470 | if (!VA.isRegLoc()) { |
Evan Cheng | 5f94193 | 2010-02-05 02:21:12 +0000 | [diff] [blame] | 2471 | if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags, |
| 2472 | MFI, MRI, TII)) |
Evan Cheng | b2c9290 | 2010-02-02 02:22:50 +0000 | [diff] [blame] | 2473 | return false; |
| 2474 | } |
| 2475 | } |
| 2476 | } |
Evan Cheng | 9c04467 | 2010-05-29 01:35:22 +0000 | [diff] [blame] | 2477 | |
| 2478 | // If the tailcall address may be in a register, then make sure it's |
| 2479 | // possible to register allocate for it. In 32-bit, the call address can |
| 2480 | // 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] | 2481 | // callee-saved registers are restored. These happen to be the same |
| 2482 | // registers used to pass 'inreg' arguments so watch out for those. |
| 2483 | if (!Subtarget->is64Bit() && |
| 2484 | !isa<GlobalAddressSDNode>(Callee) && |
Evan Cheng | 9c04467 | 2010-05-29 01:35:22 +0000 | [diff] [blame] | 2485 | !isa<ExternalSymbolSDNode>(Callee)) { |
Evan Cheng | 9c04467 | 2010-05-29 01:35:22 +0000 | [diff] [blame] | 2486 | unsigned NumInRegs = 0; |
| 2487 | for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { |
| 2488 | CCValAssign &VA = ArgLocs[i]; |
Evan Cheng | dedd974 | 2010-07-14 06:44:01 +0000 | [diff] [blame] | 2489 | if (!VA.isRegLoc()) |
| 2490 | continue; |
| 2491 | unsigned Reg = VA.getLocReg(); |
| 2492 | switch (Reg) { |
| 2493 | default: break; |
| 2494 | case X86::EAX: case X86::EDX: case X86::ECX: |
| 2495 | if (++NumInRegs == 3) |
Evan Cheng | 9c04467 | 2010-05-29 01:35:22 +0000 | [diff] [blame] | 2496 | return false; |
Evan Cheng | dedd974 | 2010-07-14 06:44:01 +0000 | [diff] [blame] | 2497 | break; |
Evan Cheng | 9c04467 | 2010-05-29 01:35:22 +0000 | [diff] [blame] | 2498 | } |
| 2499 | } |
| 2500 | } |
Evan Cheng | a6bff98 | 2010-01-30 01:22:00 +0000 | [diff] [blame] | 2501 | } |
Evan Cheng | b171245 | 2010-01-27 06:25:16 +0000 | [diff] [blame] | 2502 | |
Dale Johannesen | d155d7e | 2010-10-25 22:17:05 +0000 | [diff] [blame] | 2503 | // An stdcall caller is expected to clean up its arguments; the callee |
Dale Johannesen | 0e03456 | 2010-11-12 00:43:18 +0000 | [diff] [blame] | 2504 | // isn't going to do that. |
Dale Johannesen | d155d7e | 2010-10-25 22:17:05 +0000 | [diff] [blame] | 2505 | if (!CCMatch && CallerCC==CallingConv::X86_StdCall) |
| 2506 | return false; |
| 2507 | |
Evan Cheng | 86809cc | 2010-02-03 03:28:02 +0000 | [diff] [blame] | 2508 | return true; |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 2509 | } |
| 2510 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 2511 | FastISel * |
Dan Gohman | a4160c3 | 2010-07-07 16:29:44 +0000 | [diff] [blame] | 2512 | X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const { |
| 2513 | return X86::createFastISel(funcInfo); |
Dan Gohman | d9f3c48 | 2008-08-19 21:32:53 +0000 | [diff] [blame] | 2514 | } |
| 2515 | |
| 2516 | |
Chris Lattner | fcf1a3d | 2007-02-28 06:10:12 +0000 | [diff] [blame] | 2517 | //===----------------------------------------------------------------------===// |
| 2518 | // Other Lowering Hooks |
| 2519 | //===----------------------------------------------------------------------===// |
| 2520 | |
Bruno Cardoso Lopes | e654b56 | 2010-09-01 00:51:36 +0000 | [diff] [blame] | 2521 | static bool MayFoldLoad(SDValue Op) { |
| 2522 | return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode()); |
| 2523 | } |
| 2524 | |
| 2525 | static bool MayFoldIntoStore(SDValue Op) { |
| 2526 | return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin()); |
| 2527 | } |
| 2528 | |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 2529 | static bool isTargetShuffle(unsigned Opcode) { |
| 2530 | switch(Opcode) { |
| 2531 | default: return false; |
| 2532 | case X86ISD::PSHUFD: |
| 2533 | case X86ISD::PSHUFHW: |
| 2534 | case X86ISD::PSHUFLW: |
| 2535 | case X86ISD::SHUFPD: |
Bruno Cardoso Lopes | aace0f2 | 2010-09-04 02:36:07 +0000 | [diff] [blame] | 2536 | case X86ISD::PALIGN: |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 2537 | case X86ISD::SHUFPS: |
| 2538 | case X86ISD::MOVLHPS: |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 2539 | case X86ISD::MOVLHPD: |
Bruno Cardoso Lopes | 7ff30bb | 2010-08-31 21:38:49 +0000 | [diff] [blame] | 2540 | case X86ISD::MOVHLPS: |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 2541 | case X86ISD::MOVLPS: |
| 2542 | case X86ISD::MOVLPD: |
Bruno Cardoso Lopes | 5023ef2 | 2010-08-31 22:22:11 +0000 | [diff] [blame] | 2543 | case X86ISD::MOVSHDUP: |
Bruno Cardoso Lopes | 013bb3d | 2010-08-31 22:35:05 +0000 | [diff] [blame] | 2544 | case X86ISD::MOVSLDUP: |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 2545 | case X86ISD::MOVDDUP: |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 2546 | case X86ISD::MOVSS: |
| 2547 | case X86ISD::MOVSD: |
Bruno Cardoso Lopes | 3722f00 | 2010-09-02 05:23:12 +0000 | [diff] [blame] | 2548 | case X86ISD::UNPCKLPS: |
Bruno Cardoso Lopes | be8b084 | 2010-09-03 20:10:35 +0000 | [diff] [blame] | 2549 | case X86ISD::UNPCKLPD: |
Bruno Cardoso Lopes | 3722f00 | 2010-09-02 05:23:12 +0000 | [diff] [blame] | 2550 | case X86ISD::PUNPCKLWD: |
| 2551 | case X86ISD::PUNPCKLBW: |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 2552 | case X86ISD::PUNPCKLDQ: |
Bruno Cardoso Lopes | be8b084 | 2010-09-03 20:10:35 +0000 | [diff] [blame] | 2553 | case X86ISD::PUNPCKLQDQ: |
Bruno Cardoso Lopes | 3722f00 | 2010-09-02 05:23:12 +0000 | [diff] [blame] | 2554 | case X86ISD::UNPCKHPS: |
Bruno Cardoso Lopes | be8b084 | 2010-09-03 20:10:35 +0000 | [diff] [blame] | 2555 | case X86ISD::UNPCKHPD: |
Bruno Cardoso Lopes | 3722f00 | 2010-09-02 05:23:12 +0000 | [diff] [blame] | 2556 | case X86ISD::PUNPCKHWD: |
| 2557 | case X86ISD::PUNPCKHBW: |
| 2558 | case X86ISD::PUNPCKHDQ: |
Bruno Cardoso Lopes | be8b084 | 2010-09-03 20:10:35 +0000 | [diff] [blame] | 2559 | case X86ISD::PUNPCKHQDQ: |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 2560 | return true; |
| 2561 | } |
| 2562 | return false; |
| 2563 | } |
| 2564 | |
Bruno Cardoso Lopes | 3efc077 | 2010-08-23 20:41:02 +0000 | [diff] [blame] | 2565 | static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT, |
Bruno Cardoso Lopes | 5023ef2 | 2010-08-31 22:22:11 +0000 | [diff] [blame] | 2566 | SDValue V1, SelectionDAG &DAG) { |
| 2567 | switch(Opc) { |
| 2568 | default: llvm_unreachable("Unknown x86 shuffle node"); |
| 2569 | case X86ISD::MOVSHDUP: |
Bruno Cardoso Lopes | 013bb3d | 2010-08-31 22:35:05 +0000 | [diff] [blame] | 2570 | case X86ISD::MOVSLDUP: |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 2571 | case X86ISD::MOVDDUP: |
Bruno Cardoso Lopes | 5023ef2 | 2010-08-31 22:22:11 +0000 | [diff] [blame] | 2572 | return DAG.getNode(Opc, dl, VT, V1); |
| 2573 | } |
| 2574 | |
| 2575 | return SDValue(); |
| 2576 | } |
| 2577 | |
| 2578 | static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT, |
Bruno Cardoso Lopes | 8878e21 | 2010-08-24 01:16:15 +0000 | [diff] [blame] | 2579 | SDValue V1, unsigned TargetMask, SelectionDAG &DAG) { |
Bruno Cardoso Lopes | 3efc077 | 2010-08-23 20:41:02 +0000 | [diff] [blame] | 2580 | switch(Opc) { |
| 2581 | default: llvm_unreachable("Unknown x86 shuffle node"); |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 2582 | case X86ISD::PSHUFD: |
Bruno Cardoso Lopes | 3efc077 | 2010-08-23 20:41:02 +0000 | [diff] [blame] | 2583 | case X86ISD::PSHUFHW: |
| 2584 | case X86ISD::PSHUFLW: |
| 2585 | return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8)); |
| 2586 | } |
| 2587 | |
| 2588 | return SDValue(); |
| 2589 | } |
Chris Lattner | fcf1a3d | 2007-02-28 06:10:12 +0000 | [diff] [blame] | 2590 | |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 2591 | static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT, |
| 2592 | SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) { |
| 2593 | switch(Opc) { |
| 2594 | default: llvm_unreachable("Unknown x86 shuffle node"); |
Bruno Cardoso Lopes | aace0f2 | 2010-09-04 02:36:07 +0000 | [diff] [blame] | 2595 | case X86ISD::PALIGN: |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 2596 | case X86ISD::SHUFPD: |
| 2597 | case X86ISD::SHUFPS: |
| 2598 | return DAG.getNode(Opc, dl, VT, V1, V2, |
| 2599 | DAG.getConstant(TargetMask, MVT::i8)); |
| 2600 | } |
| 2601 | return SDValue(); |
| 2602 | } |
| 2603 | |
| 2604 | static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT, |
| 2605 | SDValue V1, SDValue V2, SelectionDAG &DAG) { |
| 2606 | switch(Opc) { |
| 2607 | default: llvm_unreachable("Unknown x86 shuffle node"); |
| 2608 | case X86ISD::MOVLHPS: |
Bruno Cardoso Lopes | f2db5b4 | 2010-08-31 21:15:21 +0000 | [diff] [blame] | 2609 | case X86ISD::MOVLHPD: |
Bruno Cardoso Lopes | 7ff30bb | 2010-08-31 21:38:49 +0000 | [diff] [blame] | 2610 | case X86ISD::MOVHLPS: |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 2611 | case X86ISD::MOVLPS: |
| 2612 | case X86ISD::MOVLPD: |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 2613 | case X86ISD::MOVSS: |
| 2614 | case X86ISD::MOVSD: |
Bruno Cardoso Lopes | 3722f00 | 2010-09-02 05:23:12 +0000 | [diff] [blame] | 2615 | case X86ISD::UNPCKLPS: |
Bruno Cardoso Lopes | be8b084 | 2010-09-03 20:10:35 +0000 | [diff] [blame] | 2616 | case X86ISD::UNPCKLPD: |
Bruno Cardoso Lopes | 3722f00 | 2010-09-02 05:23:12 +0000 | [diff] [blame] | 2617 | case X86ISD::PUNPCKLWD: |
| 2618 | case X86ISD::PUNPCKLBW: |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 2619 | case X86ISD::PUNPCKLDQ: |
Bruno Cardoso Lopes | be8b084 | 2010-09-03 20:10:35 +0000 | [diff] [blame] | 2620 | case X86ISD::PUNPCKLQDQ: |
Bruno Cardoso Lopes | 3722f00 | 2010-09-02 05:23:12 +0000 | [diff] [blame] | 2621 | case X86ISD::UNPCKHPS: |
Bruno Cardoso Lopes | be8b084 | 2010-09-03 20:10:35 +0000 | [diff] [blame] | 2622 | case X86ISD::UNPCKHPD: |
Bruno Cardoso Lopes | 3722f00 | 2010-09-02 05:23:12 +0000 | [diff] [blame] | 2623 | case X86ISD::PUNPCKHWD: |
| 2624 | case X86ISD::PUNPCKHBW: |
| 2625 | case X86ISD::PUNPCKHDQ: |
Bruno Cardoso Lopes | be8b084 | 2010-09-03 20:10:35 +0000 | [diff] [blame] | 2626 | case X86ISD::PUNPCKHQDQ: |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 2627 | return DAG.getNode(Opc, dl, VT, V1, V2); |
| 2628 | } |
| 2629 | return SDValue(); |
| 2630 | } |
| 2631 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 2632 | SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const { |
Anton Korobeynikov | a2780e1 | 2007-08-15 17:12:32 +0000 | [diff] [blame] | 2633 | MachineFunction &MF = DAG.getMachineFunction(); |
| 2634 | X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>(); |
| 2635 | int ReturnAddrIndex = FuncInfo->getRAIndex(); |
| 2636 | |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 2637 | if (ReturnAddrIndex == 0) { |
| 2638 | // Set up a frame object for the return address. |
Bill Wendling | 64e8732 | 2009-01-16 19:25:27 +0000 | [diff] [blame] | 2639 | uint64_t SlotSize = TD->getPointerSize(); |
David Greene | 3f2bf85 | 2009-11-12 20:49:22 +0000 | [diff] [blame] | 2640 | ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize, |
Evan Cheng | ed2ae13 | 2010-07-03 00:40:23 +0000 | [diff] [blame] | 2641 | false); |
Anton Korobeynikov | a2780e1 | 2007-08-15 17:12:32 +0000 | [diff] [blame] | 2642 | FuncInfo->setRAIndex(ReturnAddrIndex); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 2643 | } |
| 2644 | |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 2645 | return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy()); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 2646 | } |
| 2647 | |
| 2648 | |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 2649 | bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M, |
| 2650 | bool hasSymbolicDisplacement) { |
| 2651 | // Offset should fit into 32 bit immediate field. |
Benjamin Kramer | 34247a0 | 2010-03-29 21:13:41 +0000 | [diff] [blame] | 2652 | if (!isInt<32>(Offset)) |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 2653 | return false; |
| 2654 | |
| 2655 | // If we don't have a symbolic displacement - we don't have any extra |
| 2656 | // restrictions. |
| 2657 | if (!hasSymbolicDisplacement) |
| 2658 | return true; |
| 2659 | |
| 2660 | // FIXME: Some tweaks might be needed for medium code model. |
| 2661 | if (M != CodeModel::Small && M != CodeModel::Kernel) |
| 2662 | return false; |
| 2663 | |
| 2664 | // For small code model we assume that latest object is 16MB before end of 31 |
| 2665 | // bits boundary. We may also accept pretty large negative constants knowing |
| 2666 | // that all objects are in the positive half of address space. |
| 2667 | if (M == CodeModel::Small && Offset < 16*1024*1024) |
| 2668 | return true; |
| 2669 | |
| 2670 | // For kernel code model we know that all object resist in the negative half |
| 2671 | // of 32bits address space. We may not accept negative offsets, since they may |
| 2672 | // be just off and we may accept pretty large positive ones. |
| 2673 | if (M == CodeModel::Kernel && Offset > 0) |
| 2674 | return true; |
| 2675 | |
| 2676 | return false; |
| 2677 | } |
| 2678 | |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2679 | /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86 |
| 2680 | /// specific condition code, returning the condition code and the LHS/RHS of the |
| 2681 | /// comparison to make. |
| 2682 | static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP, |
| 2683 | SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) { |
Evan Cheng | d9558e0 | 2006-01-06 00:43:03 +0000 | [diff] [blame] | 2684 | if (!isFP) { |
Chris Lattner | bfd68a7 | 2006-09-13 17:04:54 +0000 | [diff] [blame] | 2685 | if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) { |
| 2686 | if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) { |
| 2687 | // X > -1 -> X == 0, jump !sign. |
| 2688 | RHS = DAG.getConstant(0, RHS.getValueType()); |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2689 | return X86::COND_NS; |
Chris Lattner | bfd68a7 | 2006-09-13 17:04:54 +0000 | [diff] [blame] | 2690 | } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) { |
| 2691 | // X < 0 -> X == 0, jump on sign. |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2692 | return X86::COND_S; |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 2693 | } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) { |
Dan Gohman | 5f6913c | 2007-09-17 14:49:27 +0000 | [diff] [blame] | 2694 | // X < 1 -> X <= 0 |
| 2695 | RHS = DAG.getConstant(0, RHS.getValueType()); |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2696 | return X86::COND_LE; |
Chris Lattner | bfd68a7 | 2006-09-13 17:04:54 +0000 | [diff] [blame] | 2697 | } |
Chris Lattner | f957051 | 2006-09-13 03:22:10 +0000 | [diff] [blame] | 2698 | } |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 2699 | |
Evan Cheng | d9558e0 | 2006-01-06 00:43:03 +0000 | [diff] [blame] | 2700 | switch (SetCCOpcode) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 2701 | default: llvm_unreachable("Invalid integer condition!"); |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2702 | case ISD::SETEQ: return X86::COND_E; |
| 2703 | case ISD::SETGT: return X86::COND_G; |
| 2704 | case ISD::SETGE: return X86::COND_GE; |
| 2705 | case ISD::SETLT: return X86::COND_L; |
| 2706 | case ISD::SETLE: return X86::COND_LE; |
| 2707 | case ISD::SETNE: return X86::COND_NE; |
| 2708 | case ISD::SETULT: return X86::COND_B; |
| 2709 | case ISD::SETUGT: return X86::COND_A; |
| 2710 | case ISD::SETULE: return X86::COND_BE; |
| 2711 | case ISD::SETUGE: return X86::COND_AE; |
Evan Cheng | d9558e0 | 2006-01-06 00:43:03 +0000 | [diff] [blame] | 2712 | } |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2713 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2714 | |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2715 | // 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] | 2716 | |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2717 | // If LHS is a foldable load, but RHS is not, flip the condition. |
| 2718 | if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) && |
| 2719 | !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) { |
| 2720 | SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode); |
| 2721 | std::swap(LHS, RHS); |
Evan Cheng | 4d46d0a | 2008-08-28 23:48:31 +0000 | [diff] [blame] | 2722 | } |
| 2723 | |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2724 | switch (SetCCOpcode) { |
| 2725 | default: break; |
| 2726 | case ISD::SETOLT: |
| 2727 | case ISD::SETOLE: |
| 2728 | case ISD::SETUGT: |
| 2729 | case ISD::SETUGE: |
| 2730 | std::swap(LHS, RHS); |
| 2731 | break; |
| 2732 | } |
| 2733 | |
| 2734 | // On a floating point condition, the flags are set as follows: |
| 2735 | // ZF PF CF op |
| 2736 | // 0 | 0 | 0 | X > Y |
| 2737 | // 0 | 0 | 1 | X < Y |
| 2738 | // 1 | 0 | 0 | X == Y |
| 2739 | // 1 | 1 | 1 | unordered |
| 2740 | switch (SetCCOpcode) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 2741 | default: llvm_unreachable("Condcode should be pre-legalized away"); |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2742 | case ISD::SETUEQ: |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2743 | case ISD::SETEQ: return X86::COND_E; |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2744 | case ISD::SETOLT: // flipped |
| 2745 | case ISD::SETOGT: |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2746 | case ISD::SETGT: return X86::COND_A; |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2747 | case ISD::SETOLE: // flipped |
| 2748 | case ISD::SETOGE: |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2749 | case ISD::SETGE: return X86::COND_AE; |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2750 | case ISD::SETUGT: // flipped |
| 2751 | case ISD::SETULT: |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2752 | case ISD::SETLT: return X86::COND_B; |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2753 | case ISD::SETUGE: // flipped |
| 2754 | case ISD::SETULE: |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2755 | case ISD::SETLE: return X86::COND_BE; |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2756 | case ISD::SETONE: |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 2757 | case ISD::SETNE: return X86::COND_NE; |
| 2758 | case ISD::SETUO: return X86::COND_P; |
| 2759 | case ISD::SETO: return X86::COND_NP; |
Dan Gohman | 1a49295 | 2009-10-20 16:22:37 +0000 | [diff] [blame] | 2760 | case ISD::SETOEQ: |
| 2761 | case ISD::SETUNE: return X86::COND_INVALID; |
Chris Lattner | 4c78e02 | 2008-12-23 23:42:27 +0000 | [diff] [blame] | 2762 | } |
Evan Cheng | d9558e0 | 2006-01-06 00:43:03 +0000 | [diff] [blame] | 2763 | } |
| 2764 | |
Evan Cheng | 4a46080 | 2006-01-11 00:33:36 +0000 | [diff] [blame] | 2765 | /// hasFPCMov - is there a floating point cmov for the specific X86 condition |
| 2766 | /// code. Current x86 isa includes the following FP cmov instructions: |
Evan Cheng | aaca22c | 2006-01-10 20:26:56 +0000 | [diff] [blame] | 2767 | /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu. |
Evan Cheng | 4a46080 | 2006-01-11 00:33:36 +0000 | [diff] [blame] | 2768 | static bool hasFPCMov(unsigned X86CC) { |
Evan Cheng | aaca22c | 2006-01-10 20:26:56 +0000 | [diff] [blame] | 2769 | switch (X86CC) { |
| 2770 | default: |
| 2771 | return false; |
Chris Lattner | 7fbe972 | 2006-10-20 17:42:20 +0000 | [diff] [blame] | 2772 | case X86::COND_B: |
| 2773 | case X86::COND_BE: |
| 2774 | case X86::COND_E: |
| 2775 | case X86::COND_P: |
| 2776 | case X86::COND_A: |
| 2777 | case X86::COND_AE: |
| 2778 | case X86::COND_NE: |
| 2779 | case X86::COND_NP: |
Evan Cheng | aaca22c | 2006-01-10 20:26:56 +0000 | [diff] [blame] | 2780 | return true; |
| 2781 | } |
| 2782 | } |
| 2783 | |
Evan Cheng | eb2f969 | 2009-10-27 19:56:55 +0000 | [diff] [blame] | 2784 | /// isFPImmLegal - Returns true if the target can instruction select the |
| 2785 | /// specified FP immediate natively. If false, the legalizer will |
| 2786 | /// materialize the FP immediate as a load from a constant pool. |
Evan Cheng | a1eaa3c | 2009-10-28 01:43:28 +0000 | [diff] [blame] | 2787 | bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const { |
Evan Cheng | eb2f969 | 2009-10-27 19:56:55 +0000 | [diff] [blame] | 2788 | for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) { |
| 2789 | if (Imm.bitwiseIsEqual(LegalFPImmediates[i])) |
| 2790 | return true; |
| 2791 | } |
| 2792 | return false; |
| 2793 | } |
| 2794 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2795 | /// isUndefOrInRange - Return true if Val is undef or if its value falls within |
| 2796 | /// the specified range (L, H]. |
| 2797 | static bool isUndefOrInRange(int Val, int Low, int Hi) { |
| 2798 | return (Val < 0) || (Val >= Low && Val < Hi); |
| 2799 | } |
| 2800 | |
| 2801 | /// isUndefOrEqual - Val is either less than zero (undef) or equal to the |
| 2802 | /// specified value. |
| 2803 | static bool isUndefOrEqual(int Val, int CmpVal) { |
| 2804 | if (Val < 0 || Val == CmpVal) |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 2805 | return true; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2806 | return false; |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 2807 | } |
| 2808 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2809 | /// isPSHUFDMask - Return true if the node specifies a shuffle of elements that |
| 2810 | /// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference |
| 2811 | /// the second operand. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2812 | static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) { |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 2813 | if (VT == MVT::v4f32 || VT == MVT::v4i32 ) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2814 | 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] | 2815 | if (VT == MVT::v2f64 || VT == MVT::v2i64) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2816 | return (Mask[0] < 2 && Mask[1] < 2); |
| 2817 | return false; |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 2818 | } |
| 2819 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2820 | bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) { |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2821 | SmallVector<int, 8> M; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2822 | N->getMask(M); |
| 2823 | return ::isPSHUFDMask(M, N->getValueType(0)); |
| 2824 | } |
Evan Cheng | 0188ecb | 2006-03-22 18:59:22 +0000 | [diff] [blame] | 2825 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2826 | /// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that |
| 2827 | /// is suitable for input to PSHUFHW. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2828 | static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2829 | if (VT != MVT::v8i16) |
Evan Cheng | 0188ecb | 2006-03-22 18:59:22 +0000 | [diff] [blame] | 2830 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2831 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2832 | // Lower quadword copied in order or undef. |
| 2833 | for (int i = 0; i != 4; ++i) |
| 2834 | if (Mask[i] >= 0 && Mask[i] != i) |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 2835 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2836 | |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 2837 | // Upper quadword shuffled. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2838 | for (int i = 4; i != 8; ++i) |
| 2839 | if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7)) |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 2840 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2841 | |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 2842 | return true; |
| 2843 | } |
| 2844 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2845 | bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) { |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2846 | SmallVector<int, 8> M; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2847 | N->getMask(M); |
| 2848 | return ::isPSHUFHWMask(M, N->getValueType(0)); |
| 2849 | } |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 2850 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2851 | /// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that |
| 2852 | /// is suitable for input to PSHUFLW. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2853 | static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2854 | if (VT != MVT::v8i16) |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 2855 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2856 | |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 2857 | // Upper quadword copied in order. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2858 | for (int i = 4; i != 8; ++i) |
| 2859 | if (Mask[i] >= 0 && Mask[i] != i) |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 2860 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2861 | |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 2862 | // Lower quadword shuffled. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2863 | for (int i = 0; i != 4; ++i) |
| 2864 | if (Mask[i] >= 4) |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 2865 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2866 | |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 2867 | return true; |
Nate Begeman | b706d29 | 2009-04-24 03:42:54 +0000 | [diff] [blame] | 2868 | } |
| 2869 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2870 | bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) { |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2871 | SmallVector<int, 8> M; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2872 | N->getMask(M); |
| 2873 | return ::isPSHUFLWMask(M, N->getValueType(0)); |
| 2874 | } |
| 2875 | |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 2876 | /// isPALIGNRMask - Return true if the node specifies a shuffle of elements that |
| 2877 | /// is suitable for input to PALIGNR. |
| 2878 | static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT, |
| 2879 | bool hasSSSE3) { |
| 2880 | int i, e = VT.getVectorNumElements(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 2881 | |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 2882 | // Do not handle v2i64 / v2f64 shuffles with palignr. |
| 2883 | if (e < 4 || !hasSSSE3) |
| 2884 | return false; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 2885 | |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 2886 | for (i = 0; i != e; ++i) |
| 2887 | if (Mask[i] >= 0) |
| 2888 | break; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 2889 | |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 2890 | // All undef, not a palignr. |
| 2891 | if (i == e) |
| 2892 | return false; |
| 2893 | |
| 2894 | // Determine if it's ok to perform a palignr with only the LHS, since we |
| 2895 | // don't have access to the actual shuffle elements to see if RHS is undef. |
| 2896 | bool Unary = Mask[i] < (int)e; |
| 2897 | bool NeedsUnary = false; |
| 2898 | |
| 2899 | int s = Mask[i] - i; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 2900 | |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 2901 | // Check the rest of the elements to see if they are consecutive. |
| 2902 | for (++i; i != e; ++i) { |
| 2903 | int m = Mask[i]; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 2904 | if (m < 0) |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 2905 | continue; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 2906 | |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 2907 | Unary = Unary && (m < (int)e); |
| 2908 | NeedsUnary = NeedsUnary || (m < s); |
| 2909 | |
| 2910 | if (NeedsUnary && !Unary) |
| 2911 | return false; |
| 2912 | if (Unary && m != ((s+i) & (e-1))) |
| 2913 | return false; |
| 2914 | if (!Unary && m != (s+i)) |
| 2915 | return false; |
| 2916 | } |
| 2917 | return true; |
| 2918 | } |
| 2919 | |
| 2920 | bool X86::isPALIGNRMask(ShuffleVectorSDNode *N) { |
| 2921 | SmallVector<int, 8> M; |
| 2922 | N->getMask(M); |
| 2923 | return ::isPALIGNRMask(M, N->getValueType(0), true); |
| 2924 | } |
| 2925 | |
Evan Cheng | 14aed5e | 2006-03-24 01:18:28 +0000 | [diff] [blame] | 2926 | /// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand |
| 2927 | /// specifies a shuffle of elements that is suitable for input to SHUFP*. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2928 | static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2929 | int NumElems = VT.getVectorNumElements(); |
| 2930 | if (NumElems != 2 && NumElems != 4) |
| 2931 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2932 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2933 | int Half = NumElems / 2; |
| 2934 | for (int i = 0; i < Half; ++i) |
| 2935 | if (!isUndefOrInRange(Mask[i], 0, NumElems)) |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 2936 | return false; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2937 | for (int i = Half; i < NumElems; ++i) |
| 2938 | if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2)) |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 2939 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2940 | |
Evan Cheng | 14aed5e | 2006-03-24 01:18:28 +0000 | [diff] [blame] | 2941 | return true; |
| 2942 | } |
| 2943 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2944 | bool X86::isSHUFPMask(ShuffleVectorSDNode *N) { |
| 2945 | SmallVector<int, 8> M; |
| 2946 | N->getMask(M); |
| 2947 | return ::isSHUFPMask(M, N->getValueType(0)); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 2948 | } |
| 2949 | |
Evan Cheng | 213d2cf | 2007-05-17 18:45:50 +0000 | [diff] [blame] | 2950 | /// isCommutedSHUFP - Returns true if the shuffle mask is exactly |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 2951 | /// the reverse of what x86 shuffles want. x86 shuffles requires the lower |
| 2952 | /// half elements to come from vector 1 (which would equal the dest.) and |
| 2953 | /// the upper half to come from vector 2. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2954 | static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2955 | int NumElems = VT.getVectorNumElements(); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2956 | |
| 2957 | if (NumElems != 2 && NumElems != 4) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2958 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 2959 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2960 | int Half = NumElems / 2; |
| 2961 | for (int i = 0; i < Half; ++i) |
| 2962 | if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2)) |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 2963 | return false; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2964 | for (int i = Half; i < NumElems; ++i) |
| 2965 | if (!isUndefOrInRange(Mask[i], 0, NumElems)) |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 2966 | return false; |
| 2967 | return true; |
| 2968 | } |
| 2969 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2970 | static bool isCommutedSHUFP(ShuffleVectorSDNode *N) { |
| 2971 | SmallVector<int, 8> M; |
| 2972 | N->getMask(M); |
| 2973 | return isCommutedSHUFPMask(M, N->getValueType(0)); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 2974 | } |
| 2975 | |
Evan Cheng | 2c0dbd0 | 2006-03-24 02:58:06 +0000 | [diff] [blame] | 2976 | /// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand |
| 2977 | /// specifies a shuffle of elements that is suitable for input to MOVHLPS. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2978 | bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) { |
| 2979 | if (N->getValueType(0).getVectorNumElements() != 4) |
Evan Cheng | 2c0dbd0 | 2006-03-24 02:58:06 +0000 | [diff] [blame] | 2980 | return false; |
| 2981 | |
Evan Cheng | 2064a2b | 2006-03-28 06:50:32 +0000 | [diff] [blame] | 2982 | // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3 |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2983 | return isUndefOrEqual(N->getMaskElt(0), 6) && |
| 2984 | isUndefOrEqual(N->getMaskElt(1), 7) && |
| 2985 | isUndefOrEqual(N->getMaskElt(2), 2) && |
| 2986 | isUndefOrEqual(N->getMaskElt(3), 3); |
Evan Cheng | 6e56e2c | 2006-11-07 22:14:24 +0000 | [diff] [blame] | 2987 | } |
| 2988 | |
Nate Begeman | 0b10b91 | 2009-11-07 23:17:15 +0000 | [diff] [blame] | 2989 | /// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form |
| 2990 | /// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef, |
| 2991 | /// <2, 3, 2, 3> |
| 2992 | bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) { |
| 2993 | unsigned NumElems = N->getValueType(0).getVectorNumElements(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 2994 | |
Nate Begeman | 0b10b91 | 2009-11-07 23:17:15 +0000 | [diff] [blame] | 2995 | if (NumElems != 4) |
| 2996 | return false; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 2997 | |
Nate Begeman | 0b10b91 | 2009-11-07 23:17:15 +0000 | [diff] [blame] | 2998 | return isUndefOrEqual(N->getMaskElt(0), 2) && |
| 2999 | isUndefOrEqual(N->getMaskElt(1), 3) && |
| 3000 | isUndefOrEqual(N->getMaskElt(2), 2) && |
| 3001 | isUndefOrEqual(N->getMaskElt(3), 3); |
| 3002 | } |
| 3003 | |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3004 | /// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand |
| 3005 | /// 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] | 3006 | bool X86::isMOVLPMask(ShuffleVectorSDNode *N) { |
| 3007 | unsigned NumElems = N->getValueType(0).getVectorNumElements(); |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3008 | |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3009 | if (NumElems != 2 && NumElems != 4) |
| 3010 | return false; |
| 3011 | |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 3012 | for (unsigned i = 0; i < NumElems/2; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3013 | if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems)) |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 3014 | return false; |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3015 | |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 3016 | for (unsigned i = NumElems/2; i < NumElems; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3017 | if (!isUndefOrEqual(N->getMaskElt(i), i)) |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 3018 | return false; |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3019 | |
| 3020 | return true; |
| 3021 | } |
| 3022 | |
Nate Begeman | 0b10b91 | 2009-11-07 23:17:15 +0000 | [diff] [blame] | 3023 | /// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand |
| 3024 | /// specifies a shuffle of elements that is suitable for input to MOVLHPS. |
| 3025 | bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3026 | unsigned NumElems = N->getValueType(0).getVectorNumElements(); |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3027 | |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3028 | if (NumElems != 2 && NumElems != 4) |
| 3029 | return false; |
| 3030 | |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 3031 | for (unsigned i = 0; i < NumElems/2; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3032 | if (!isUndefOrEqual(N->getMaskElt(i), i)) |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 3033 | return false; |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3034 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3035 | for (unsigned i = 0; i < NumElems/2; ++i) |
| 3036 | if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems)) |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 3037 | return false; |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3038 | |
| 3039 | return true; |
| 3040 | } |
| 3041 | |
Evan Cheng | 0038e59 | 2006-03-28 00:39:58 +0000 | [diff] [blame] | 3042 | /// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand |
| 3043 | /// specifies a shuffle of elements that is suitable for input to UNPCKL. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3044 | static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT, |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 3045 | bool V2IsSplat = false) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3046 | int NumElts = VT.getVectorNumElements(); |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 3047 | if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16) |
Evan Cheng | 0038e59 | 2006-03-28 00:39:58 +0000 | [diff] [blame] | 3048 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3049 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3050 | for (int i = 0, j = 0; i != NumElts; i += 2, ++j) { |
| 3051 | int BitI = Mask[i]; |
| 3052 | int BitI1 = Mask[i+1]; |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 3053 | if (!isUndefOrEqual(BitI, j)) |
| 3054 | return false; |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3055 | if (V2IsSplat) { |
Mon P Wang | 7bcaefa | 2009-02-04 01:16:59 +0000 | [diff] [blame] | 3056 | if (!isUndefOrEqual(BitI1, NumElts)) |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3057 | return false; |
| 3058 | } else { |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 3059 | if (!isUndefOrEqual(BitI1, j + NumElts)) |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3060 | return false; |
| 3061 | } |
Evan Cheng | 0038e59 | 2006-03-28 00:39:58 +0000 | [diff] [blame] | 3062 | } |
Evan Cheng | 0038e59 | 2006-03-28 00:39:58 +0000 | [diff] [blame] | 3063 | return true; |
| 3064 | } |
| 3065 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3066 | bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) { |
| 3067 | SmallVector<int, 8> M; |
| 3068 | N->getMask(M); |
| 3069 | return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3070 | } |
| 3071 | |
Evan Cheng | 4fcb922 | 2006-03-28 02:43:26 +0000 | [diff] [blame] | 3072 | /// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand |
| 3073 | /// specifies a shuffle of elements that is suitable for input to UNPCKH. |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3074 | static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT, |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 3075 | bool V2IsSplat = false) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3076 | int NumElts = VT.getVectorNumElements(); |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 3077 | if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16) |
Evan Cheng | 4fcb922 | 2006-03-28 02:43:26 +0000 | [diff] [blame] | 3078 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3079 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3080 | for (int i = 0, j = 0; i != NumElts; i += 2, ++j) { |
| 3081 | int BitI = Mask[i]; |
| 3082 | int BitI1 = Mask[i+1]; |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 3083 | if (!isUndefOrEqual(BitI, j + NumElts/2)) |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 3084 | return false; |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3085 | if (V2IsSplat) { |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 3086 | if (isUndefOrEqual(BitI1, NumElts)) |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3087 | return false; |
| 3088 | } else { |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 3089 | if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts)) |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3090 | return false; |
| 3091 | } |
Evan Cheng | 4fcb922 | 2006-03-28 02:43:26 +0000 | [diff] [blame] | 3092 | } |
Evan Cheng | 4fcb922 | 2006-03-28 02:43:26 +0000 | [diff] [blame] | 3093 | return true; |
| 3094 | } |
| 3095 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3096 | bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) { |
| 3097 | SmallVector<int, 8> M; |
| 3098 | N->getMask(M); |
| 3099 | return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3100 | } |
| 3101 | |
Evan Cheng | 1d5a8cc | 2006-04-05 07:20:06 +0000 | [diff] [blame] | 3102 | /// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form |
| 3103 | /// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef, |
| 3104 | /// <0, 0, 1, 1> |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3105 | static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3106 | int NumElems = VT.getVectorNumElements(); |
Bill Wendling | 2f9bb1a | 2007-04-24 21:16:55 +0000 | [diff] [blame] | 3107 | if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16) |
Evan Cheng | 1d5a8cc | 2006-04-05 07:20:06 +0000 | [diff] [blame] | 3108 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3109 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3110 | for (int i = 0, j = 0; i != NumElems; i += 2, ++j) { |
| 3111 | int BitI = Mask[i]; |
| 3112 | int BitI1 = Mask[i+1]; |
Evan Cheng | c5cdff2 | 2006-04-07 21:53:05 +0000 | [diff] [blame] | 3113 | if (!isUndefOrEqual(BitI, j)) |
| 3114 | return false; |
| 3115 | if (!isUndefOrEqual(BitI1, j)) |
| 3116 | return false; |
Evan Cheng | 1d5a8cc | 2006-04-05 07:20:06 +0000 | [diff] [blame] | 3117 | } |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 3118 | return true; |
Nate Begeman | b706d29 | 2009-04-24 03:42:54 +0000 | [diff] [blame] | 3119 | } |
| 3120 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3121 | bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) { |
| 3122 | SmallVector<int, 8> M; |
| 3123 | N->getMask(M); |
| 3124 | return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0)); |
| 3125 | } |
| 3126 | |
Bill Wendling | 2f9bb1a | 2007-04-24 21:16:55 +0000 | [diff] [blame] | 3127 | /// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form |
| 3128 | /// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef, |
| 3129 | /// <2, 2, 3, 3> |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3130 | static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3131 | int NumElems = VT.getVectorNumElements(); |
Bill Wendling | 2f9bb1a | 2007-04-24 21:16:55 +0000 | [diff] [blame] | 3132 | if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16) |
| 3133 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3134 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3135 | for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) { |
| 3136 | int BitI = Mask[i]; |
| 3137 | int BitI1 = Mask[i+1]; |
Bill Wendling | 2f9bb1a | 2007-04-24 21:16:55 +0000 | [diff] [blame] | 3138 | if (!isUndefOrEqual(BitI, j)) |
| 3139 | return false; |
| 3140 | if (!isUndefOrEqual(BitI1, j)) |
| 3141 | return false; |
| 3142 | } |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 3143 | return true; |
Nate Begeman | b706d29 | 2009-04-24 03:42:54 +0000 | [diff] [blame] | 3144 | } |
| 3145 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3146 | bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) { |
| 3147 | SmallVector<int, 8> M; |
| 3148 | N->getMask(M); |
| 3149 | return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0)); |
| 3150 | } |
| 3151 | |
Evan Cheng | 017dcc6 | 2006-04-21 01:05:10 +0000 | [diff] [blame] | 3152 | /// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand |
| 3153 | /// specifies a shuffle of elements that is suitable for input to MOVSS, |
| 3154 | /// MOVSD, and MOVD, i.e. setting the lowest element. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3155 | static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) { |
Eli Friedman | 1041553 | 2009-06-06 06:05:10 +0000 | [diff] [blame] | 3156 | if (VT.getVectorElementType().getSizeInBits() < 32) |
Evan Cheng | d6d1cbd | 2006-04-11 00:19:04 +0000 | [diff] [blame] | 3157 | return false; |
Eli Friedman | 1041553 | 2009-06-06 06:05:10 +0000 | [diff] [blame] | 3158 | |
| 3159 | int NumElts = VT.getVectorNumElements(); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3160 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3161 | if (!isUndefOrEqual(Mask[0], NumElts)) |
Evan Cheng | d6d1cbd | 2006-04-11 00:19:04 +0000 | [diff] [blame] | 3162 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3163 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3164 | for (int i = 1; i < NumElts; ++i) |
| 3165 | if (!isUndefOrEqual(Mask[i], i)) |
Evan Cheng | d6d1cbd | 2006-04-11 00:19:04 +0000 | [diff] [blame] | 3166 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3167 | |
Evan Cheng | d6d1cbd | 2006-04-11 00:19:04 +0000 | [diff] [blame] | 3168 | return true; |
| 3169 | } |
Evan Cheng | 1d5a8cc | 2006-04-05 07:20:06 +0000 | [diff] [blame] | 3170 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3171 | bool X86::isMOVLMask(ShuffleVectorSDNode *N) { |
| 3172 | SmallVector<int, 8> M; |
| 3173 | N->getMask(M); |
| 3174 | return ::isMOVLMask(M, N->getValueType(0)); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3175 | } |
| 3176 | |
Evan Cheng | 017dcc6 | 2006-04-21 01:05:10 +0000 | [diff] [blame] | 3177 | /// isCommutedMOVL - Returns true if the shuffle mask is except the reverse |
| 3178 | /// 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] | 3179 | /// 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] | 3180 | static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT, |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3181 | bool V2IsSplat = false, bool V2IsUndef = false) { |
| 3182 | int NumOps = VT.getVectorNumElements(); |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 3183 | if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16) |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3184 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3185 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3186 | if (!isUndefOrEqual(Mask[0], 0)) |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3187 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3188 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3189 | for (int i = 1; i < NumOps; ++i) |
| 3190 | if (!(isUndefOrEqual(Mask[i], i+NumOps) || |
| 3191 | (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) || |
| 3192 | (V2IsSplat && isUndefOrEqual(Mask[i], NumOps)))) |
Evan Cheng | 8cf723d | 2006-09-08 01:50:06 +0000 | [diff] [blame] | 3193 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3194 | |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3195 | return true; |
| 3196 | } |
| 3197 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3198 | static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false, |
Evan Cheng | 8cf723d | 2006-09-08 01:50:06 +0000 | [diff] [blame] | 3199 | bool V2IsUndef = false) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3200 | SmallVector<int, 8> M; |
| 3201 | N->getMask(M); |
| 3202 | return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3203 | } |
| 3204 | |
Evan Cheng | d953947 | 2006-04-14 21:59:03 +0000 | [diff] [blame] | 3205 | /// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand |
| 3206 | /// specifies a shuffle of elements that is suitable for input to MOVSHDUP. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3207 | bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N) { |
| 3208 | if (N->getValueType(0).getVectorNumElements() != 4) |
Evan Cheng | d953947 | 2006-04-14 21:59:03 +0000 | [diff] [blame] | 3209 | return false; |
| 3210 | |
| 3211 | // Expect 1, 1, 3, 3 |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 3212 | for (unsigned i = 0; i < 2; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3213 | int Elt = N->getMaskElt(i); |
| 3214 | if (Elt >= 0 && Elt != 1) |
| 3215 | return false; |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 3216 | } |
Evan Cheng | 57ebe9f | 2006-04-15 05:37:34 +0000 | [diff] [blame] | 3217 | |
| 3218 | bool HasHi = false; |
Evan Cheng | d953947 | 2006-04-14 21:59:03 +0000 | [diff] [blame] | 3219 | for (unsigned i = 2; i < 4; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3220 | int Elt = N->getMaskElt(i); |
| 3221 | if (Elt >= 0 && Elt != 3) |
| 3222 | return false; |
| 3223 | if (Elt == 3) |
| 3224 | HasHi = true; |
Evan Cheng | d953947 | 2006-04-14 21:59:03 +0000 | [diff] [blame] | 3225 | } |
Evan Cheng | 57ebe9f | 2006-04-15 05:37:34 +0000 | [diff] [blame] | 3226 | // Don't use movshdup if it can be done with a shufps. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3227 | // FIXME: verify that matching u, u, 3, 3 is what we want. |
Evan Cheng | 57ebe9f | 2006-04-15 05:37:34 +0000 | [diff] [blame] | 3228 | return HasHi; |
Evan Cheng | d953947 | 2006-04-14 21:59:03 +0000 | [diff] [blame] | 3229 | } |
| 3230 | |
| 3231 | /// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand |
| 3232 | /// specifies a shuffle of elements that is suitable for input to MOVSLDUP. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3233 | bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N) { |
| 3234 | if (N->getValueType(0).getVectorNumElements() != 4) |
Evan Cheng | d953947 | 2006-04-14 21:59:03 +0000 | [diff] [blame] | 3235 | return false; |
| 3236 | |
| 3237 | // Expect 0, 0, 2, 2 |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3238 | for (unsigned i = 0; i < 2; ++i) |
| 3239 | if (N->getMaskElt(i) > 0) |
| 3240 | return false; |
Evan Cheng | 57ebe9f | 2006-04-15 05:37:34 +0000 | [diff] [blame] | 3241 | |
| 3242 | bool HasHi = false; |
Evan Cheng | d953947 | 2006-04-14 21:59:03 +0000 | [diff] [blame] | 3243 | for (unsigned i = 2; i < 4; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3244 | int Elt = N->getMaskElt(i); |
| 3245 | if (Elt >= 0 && Elt != 2) |
| 3246 | return false; |
| 3247 | if (Elt == 2) |
| 3248 | HasHi = true; |
Evan Cheng | d953947 | 2006-04-14 21:59:03 +0000 | [diff] [blame] | 3249 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3250 | // Don't use movsldup if it can be done with a shufps. |
Evan Cheng | 57ebe9f | 2006-04-15 05:37:34 +0000 | [diff] [blame] | 3251 | return HasHi; |
Evan Cheng | d953947 | 2006-04-14 21:59:03 +0000 | [diff] [blame] | 3252 | } |
| 3253 | |
Evan Cheng | 0b457f0 | 2008-09-25 20:50:48 +0000 | [diff] [blame] | 3254 | /// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand |
| 3255 | /// specifies a shuffle of elements that is suitable for input to MOVDDUP. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3256 | bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) { |
| 3257 | int e = N->getValueType(0).getVectorNumElements() / 2; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3258 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3259 | for (int i = 0; i < e; ++i) |
| 3260 | if (!isUndefOrEqual(N->getMaskElt(i), i)) |
Evan Cheng | 0b457f0 | 2008-09-25 20:50:48 +0000 | [diff] [blame] | 3261 | return false; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3262 | for (int i = 0; i < e; ++i) |
| 3263 | if (!isUndefOrEqual(N->getMaskElt(e+i), i)) |
Evan Cheng | 0b457f0 | 2008-09-25 20:50:48 +0000 | [diff] [blame] | 3264 | return false; |
| 3265 | return true; |
| 3266 | } |
| 3267 | |
Evan Cheng | 63d3300 | 2006-03-22 08:01:21 +0000 | [diff] [blame] | 3268 | /// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 3269 | /// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions. |
Evan Cheng | 63d3300 | 2006-03-22 08:01:21 +0000 | [diff] [blame] | 3270 | unsigned X86::getShuffleSHUFImmediate(SDNode *N) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3271 | ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N); |
| 3272 | int NumOperands = SVOp->getValueType(0).getVectorNumElements(); |
| 3273 | |
Evan Cheng | b9df0ca | 2006-03-22 02:53:00 +0000 | [diff] [blame] | 3274 | unsigned Shift = (NumOperands == 4) ? 2 : 1; |
| 3275 | unsigned Mask = 0; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3276 | for (int i = 0; i < NumOperands; ++i) { |
| 3277 | int Val = SVOp->getMaskElt(NumOperands-i-1); |
| 3278 | if (Val < 0) Val = 0; |
Evan Cheng | 14aed5e | 2006-03-24 01:18:28 +0000 | [diff] [blame] | 3279 | if (Val >= NumOperands) Val -= NumOperands; |
Evan Cheng | 63d3300 | 2006-03-22 08:01:21 +0000 | [diff] [blame] | 3280 | Mask |= Val; |
Evan Cheng | 36b27f3 | 2006-03-28 23:41:33 +0000 | [diff] [blame] | 3281 | if (i != NumOperands - 1) |
| 3282 | Mask <<= Shift; |
| 3283 | } |
Evan Cheng | 63d3300 | 2006-03-22 08:01:21 +0000 | [diff] [blame] | 3284 | return Mask; |
| 3285 | } |
| 3286 | |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 3287 | /// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 3288 | /// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction. |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 3289 | unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3290 | ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N); |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 3291 | unsigned Mask = 0; |
| 3292 | // 8 nodes, but we only care about the last 4. |
| 3293 | for (unsigned i = 7; i >= 4; --i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3294 | int Val = SVOp->getMaskElt(i); |
| 3295 | if (Val >= 0) |
Mon P Wang | 7bcaefa | 2009-02-04 01:16:59 +0000 | [diff] [blame] | 3296 | Mask |= (Val - 4); |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 3297 | if (i != 4) |
| 3298 | Mask <<= 2; |
| 3299 | } |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 3300 | return Mask; |
| 3301 | } |
| 3302 | |
| 3303 | /// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 3304 | /// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction. |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 3305 | unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3306 | ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N); |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 3307 | unsigned Mask = 0; |
| 3308 | // 8 nodes, but we only care about the first 4. |
| 3309 | for (int i = 3; i >= 0; --i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3310 | int Val = SVOp->getMaskElt(i); |
| 3311 | if (Val >= 0) |
| 3312 | Mask |= Val; |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 3313 | if (i != 0) |
| 3314 | Mask <<= 2; |
| 3315 | } |
Evan Cheng | 506d3df | 2006-03-29 23:07:14 +0000 | [diff] [blame] | 3316 | return Mask; |
| 3317 | } |
| 3318 | |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 3319 | /// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle |
| 3320 | /// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction. |
| 3321 | unsigned X86::getShufflePALIGNRImmediate(SDNode *N) { |
| 3322 | ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N); |
| 3323 | EVT VVT = N->getValueType(0); |
| 3324 | unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3; |
| 3325 | int Val = 0; |
| 3326 | |
| 3327 | unsigned i, e; |
| 3328 | for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) { |
| 3329 | Val = SVOp->getMaskElt(i); |
| 3330 | if (Val >= 0) |
| 3331 | break; |
| 3332 | } |
| 3333 | return (Val - i) * EltSize; |
| 3334 | } |
| 3335 | |
Evan Cheng | 37b7387 | 2009-07-30 08:33:02 +0000 | [diff] [blame] | 3336 | /// isZeroNode - Returns true if Elt is a constant zero or a floating point |
| 3337 | /// constant +0.0. |
| 3338 | bool X86::isZeroNode(SDValue Elt) { |
| 3339 | return ((isa<ConstantSDNode>(Elt) && |
Dan Gohman | e368b46 | 2010-06-18 14:22:04 +0000 | [diff] [blame] | 3340 | cast<ConstantSDNode>(Elt)->isNullValue()) || |
Evan Cheng | 37b7387 | 2009-07-30 08:33:02 +0000 | [diff] [blame] | 3341 | (isa<ConstantFPSDNode>(Elt) && |
| 3342 | cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero())); |
| 3343 | } |
| 3344 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3345 | /// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in |
| 3346 | /// their permute mask. |
| 3347 | static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp, |
| 3348 | SelectionDAG &DAG) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3349 | EVT VT = SVOp->getValueType(0); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3350 | unsigned NumElems = VT.getVectorNumElements(); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3351 | SmallVector<int, 8> MaskVec; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3352 | |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3353 | for (unsigned i = 0; i != NumElems; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3354 | int idx = SVOp->getMaskElt(i); |
| 3355 | if (idx < 0) |
| 3356 | MaskVec.push_back(idx); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3357 | else if (idx < (int)NumElems) |
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 | else |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3360 | MaskVec.push_back(idx - NumElems); |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3361 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3362 | return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1), |
| 3363 | SVOp->getOperand(0), &MaskVec[0]); |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3364 | } |
| 3365 | |
Evan Cheng | 779ccea | 2007-12-07 21:30:01 +0000 | [diff] [blame] | 3366 | /// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming |
| 3367 | /// the two vector operands have swapped position. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3368 | static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) { |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3369 | unsigned NumElems = VT.getVectorNumElements(); |
| 3370 | for (unsigned i = 0; i != NumElems; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3371 | int idx = Mask[i]; |
| 3372 | if (idx < 0) |
Evan Cheng | 8a86c3f | 2007-12-07 08:07:39 +0000 | [diff] [blame] | 3373 | continue; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3374 | else if (idx < (int)NumElems) |
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 | else |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3377 | Mask[i] = idx - NumElems; |
Evan Cheng | 8a86c3f | 2007-12-07 08:07:39 +0000 | [diff] [blame] | 3378 | } |
Evan Cheng | 8a86c3f | 2007-12-07 08:07:39 +0000 | [diff] [blame] | 3379 | } |
| 3380 | |
Evan Cheng | 533a0aa | 2006-04-19 20:35:22 +0000 | [diff] [blame] | 3381 | /// ShouldXformToMOVHLPS - Return true if the node should be transformed to |
| 3382 | /// match movhlps. The lower half elements should come from upper half of |
| 3383 | /// 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] | 3384 | /// half of V2 (and in order). |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3385 | static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) { |
| 3386 | if (Op->getValueType(0).getVectorNumElements() != 4) |
Evan Cheng | 533a0aa | 2006-04-19 20:35:22 +0000 | [diff] [blame] | 3387 | return false; |
| 3388 | for (unsigned i = 0, e = 2; i != e; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3389 | if (!isUndefOrEqual(Op->getMaskElt(i), i+2)) |
Evan Cheng | 533a0aa | 2006-04-19 20:35:22 +0000 | [diff] [blame] | 3390 | return false; |
| 3391 | for (unsigned i = 2; i != 4; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3392 | if (!isUndefOrEqual(Op->getMaskElt(i), i+4)) |
Evan Cheng | 533a0aa | 2006-04-19 20:35:22 +0000 | [diff] [blame] | 3393 | return false; |
| 3394 | return true; |
| 3395 | } |
| 3396 | |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3397 | /// isScalarLoadToVector - Returns true if the node is a scalar load that |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 3398 | /// is promoted to a vector. It also returns the LoadSDNode by reference if |
| 3399 | /// required. |
| 3400 | static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) { |
Evan Cheng | 0b457f0 | 2008-09-25 20:50:48 +0000 | [diff] [blame] | 3401 | if (N->getOpcode() != ISD::SCALAR_TO_VECTOR) |
| 3402 | return false; |
| 3403 | N = N->getOperand(0).getNode(); |
| 3404 | if (!ISD::isNON_EXTLoad(N)) |
| 3405 | return false; |
| 3406 | if (LD) |
| 3407 | *LD = cast<LoadSDNode>(N); |
| 3408 | return true; |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3409 | } |
| 3410 | |
Evan Cheng | 533a0aa | 2006-04-19 20:35:22 +0000 | [diff] [blame] | 3411 | /// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to |
| 3412 | /// match movlp{s|d}. The lower half elements should come from lower half of |
| 3413 | /// V1 (and in order), and the upper half elements should come from the upper |
| 3414 | /// half of V2 (and in order). And since V1 will become the source of the |
| 3415 | /// 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] | 3416 | static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2, |
| 3417 | ShuffleVectorSDNode *Op) { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 3418 | if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1)) |
Evan Cheng | 533a0aa | 2006-04-19 20:35:22 +0000 | [diff] [blame] | 3419 | return false; |
Evan Cheng | 23425f5 | 2006-10-09 21:39:25 +0000 | [diff] [blame] | 3420 | // Is V2 is a vector load, don't do this transformation. We will try to use |
| 3421 | // load folding shufps op. |
| 3422 | if (ISD::isNON_EXTLoad(V2)) |
| 3423 | return false; |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3424 | |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3425 | unsigned NumElems = Op->getValueType(0).getVectorNumElements(); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3426 | |
Evan Cheng | 533a0aa | 2006-04-19 20:35:22 +0000 | [diff] [blame] | 3427 | if (NumElems != 2 && NumElems != 4) |
| 3428 | return false; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3429 | for (unsigned i = 0, e = NumElems/2; i != e; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3430 | if (!isUndefOrEqual(Op->getMaskElt(i), i)) |
Evan Cheng | 533a0aa | 2006-04-19 20:35:22 +0000 | [diff] [blame] | 3431 | return false; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3432 | for (unsigned i = NumElems/2; i != NumElems; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3433 | if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems)) |
Evan Cheng | 533a0aa | 2006-04-19 20:35:22 +0000 | [diff] [blame] | 3434 | return false; |
| 3435 | return true; |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3436 | } |
| 3437 | |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3438 | /// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are |
| 3439 | /// all the same. |
| 3440 | static bool isSplatVector(SDNode *N) { |
| 3441 | if (N->getOpcode() != ISD::BUILD_VECTOR) |
| 3442 | return false; |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3443 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3444 | SDValue SplatValue = N->getOperand(0); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3445 | for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i) |
| 3446 | if (N->getOperand(i) != SplatValue) |
Evan Cheng | 5ced1d8 | 2006-04-06 23:23:56 +0000 | [diff] [blame] | 3447 | return false; |
| 3448 | return true; |
| 3449 | } |
| 3450 | |
Evan Cheng | 213d2cf | 2007-05-17 18:45:50 +0000 | [diff] [blame] | 3451 | /// 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] | 3452 | /// to an zero vector. |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3453 | /// FIXME: move to dag combiner / method on ShuffleVectorSDNode |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3454 | static bool isZeroShuffle(ShuffleVectorSDNode *N) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3455 | SDValue V1 = N->getOperand(0); |
| 3456 | SDValue V2 = N->getOperand(1); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3457 | unsigned NumElems = N->getValueType(0).getVectorNumElements(); |
| 3458 | for (unsigned i = 0; i != NumElems; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3459 | int Idx = N->getMaskElt(i); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3460 | if (Idx >= (int)NumElems) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3461 | unsigned Opc = V2.getOpcode(); |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 3462 | if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode())) |
| 3463 | continue; |
Evan Cheng | 37b7387 | 2009-07-30 08:33:02 +0000 | [diff] [blame] | 3464 | if (Opc != ISD::BUILD_VECTOR || |
| 3465 | !X86::isZeroNode(V2.getOperand(Idx-NumElems))) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3466 | return false; |
| 3467 | } else if (Idx >= 0) { |
| 3468 | unsigned Opc = V1.getOpcode(); |
| 3469 | if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode())) |
| 3470 | continue; |
Evan Cheng | 37b7387 | 2009-07-30 08:33:02 +0000 | [diff] [blame] | 3471 | if (Opc != ISD::BUILD_VECTOR || |
| 3472 | !X86::isZeroNode(V1.getOperand(Idx))) |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 3473 | return false; |
Evan Cheng | 213d2cf | 2007-05-17 18:45:50 +0000 | [diff] [blame] | 3474 | } |
| 3475 | } |
| 3476 | return true; |
| 3477 | } |
| 3478 | |
| 3479 | /// getZeroVector - Returns a vector of specified type with all zero elements. |
| 3480 | /// |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3481 | static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG, |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 3482 | DebugLoc dl) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3483 | assert(VT.isVector() && "Expected a vector type"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3484 | |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 3485 | // Always build SSE zero vectors as <4 x i32> bitcasted |
Bruno Cardoso Lopes | 8c05a85 | 2010-08-12 02:06:36 +0000 | [diff] [blame] | 3486 | // to their dest type. This ensures they get CSE'd. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3487 | SDValue Vec; |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 3488 | if (VT.getSizeInBits() == 128) { // SSE |
Bruno Cardoso Lopes | 8c05a85 | 2010-08-12 02:06:36 +0000 | [diff] [blame] | 3489 | if (HasSSE2) { // SSE2 |
| 3490 | SDValue Cst = DAG.getTargetConstant(0, MVT::i32); |
| 3491 | Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst); |
| 3492 | } else { // SSE1 |
| 3493 | SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32); |
| 3494 | Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst); |
| 3495 | } |
| 3496 | } else if (VT.getSizeInBits() == 256) { // AVX |
| 3497 | // 256-bit logic and arithmetic instructions in AVX are |
| 3498 | // all floating-point, no support for integer ops. Default |
| 3499 | // to emitting fp zeroed vectors then. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3500 | SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32); |
Bruno Cardoso Lopes | 8c05a85 | 2010-08-12 02:06:36 +0000 | [diff] [blame] | 3501 | SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst }; |
| 3502 | Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8); |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3503 | } |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 3504 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec); |
Evan Cheng | 213d2cf | 2007-05-17 18:45:50 +0000 | [diff] [blame] | 3505 | } |
| 3506 | |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 3507 | /// getOnesVector - Returns a vector of specified type with all bits set. |
| 3508 | /// |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3509 | static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3510 | assert(VT.isVector() && "Expected a vector type"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3511 | |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 3512 | // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest |
| 3513 | // type. This ensures they get CSE'd. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3514 | SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3515 | SDValue Vec; |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 3516 | 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] | 3517 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec); |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 3518 | } |
| 3519 | |
| 3520 | |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3521 | /// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements |
| 3522 | /// that point to V2 points to its first element. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3523 | static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3524 | EVT VT = SVOp->getValueType(0); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3525 | unsigned NumElems = VT.getVectorNumElements(); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3526 | |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3527 | bool Changed = false; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3528 | SmallVector<int, 8> MaskVec; |
| 3529 | SVOp->getMask(MaskVec); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3530 | |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 3531 | for (unsigned i = 0; i != NumElems; ++i) { |
| 3532 | if (MaskVec[i] > (int)NumElems) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3533 | MaskVec[i] = NumElems; |
| 3534 | Changed = true; |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3535 | } |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3536 | } |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3537 | if (Changed) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3538 | return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0), |
| 3539 | SVOp->getOperand(1), &MaskVec[0]); |
| 3540 | return SDValue(SVOp, 0); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3541 | } |
| 3542 | |
Evan Cheng | 017dcc6 | 2006-04-21 01:05:10 +0000 | [diff] [blame] | 3543 | /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd |
| 3544 | /// operation of specified width. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3545 | static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1, |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3546 | SDValue V2) { |
| 3547 | unsigned NumElems = VT.getVectorNumElements(); |
| 3548 | SmallVector<int, 8> Mask; |
| 3549 | Mask.push_back(NumElems); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3550 | for (unsigned i = 1; i != NumElems; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3551 | Mask.push_back(i); |
| 3552 | return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3553 | } |
| 3554 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3555 | /// getUnpackl - Returns a vector_shuffle node for an unpackl operation. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3556 | static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1, |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3557 | SDValue V2) { |
| 3558 | unsigned NumElems = VT.getVectorNumElements(); |
| 3559 | SmallVector<int, 8> Mask; |
Evan Cheng | c575ca2 | 2006-04-17 20:43:08 +0000 | [diff] [blame] | 3560 | for (unsigned i = 0, e = NumElems/2; i != e; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3561 | Mask.push_back(i); |
| 3562 | Mask.push_back(i + NumElems); |
Evan Cheng | c575ca2 | 2006-04-17 20:43:08 +0000 | [diff] [blame] | 3563 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3564 | return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]); |
Evan Cheng | c575ca2 | 2006-04-17 20:43:08 +0000 | [diff] [blame] | 3565 | } |
| 3566 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3567 | /// getUnpackhMask - Returns a vector_shuffle node for an unpackh operation. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3568 | static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1, |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3569 | SDValue V2) { |
| 3570 | unsigned NumElems = VT.getVectorNumElements(); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3571 | unsigned Half = NumElems/2; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3572 | SmallVector<int, 8> Mask; |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3573 | for (unsigned i = 0; i != Half; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3574 | Mask.push_back(i + Half); |
| 3575 | Mask.push_back(i + NumElems + Half); |
Evan Cheng | 39623da | 2006-04-20 08:58:49 +0000 | [diff] [blame] | 3576 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3577 | return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]); |
Chris Lattner | 6209804 | 2008-03-09 01:05:04 +0000 | [diff] [blame] | 3578 | } |
| 3579 | |
Bruno Cardoso Lopes | bb0a948 | 2010-08-13 17:50:47 +0000 | [diff] [blame] | 3580 | /// PromoteSplat - Promote a splat of v4i32, v8i16 or v16i8 to v4f32. |
| 3581 | static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3582 | EVT PVT = MVT::v4f32; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3583 | EVT VT = SV->getValueType(0); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3584 | DebugLoc dl = SV->getDebugLoc(); |
| 3585 | SDValue V1 = SV->getOperand(0); |
| 3586 | int NumElems = VT.getVectorNumElements(); |
| 3587 | int EltNo = SV->getSplatIndex(); |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 3588 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3589 | // unpack elements to the correct location |
| 3590 | while (NumElems > 4) { |
| 3591 | if (EltNo < NumElems/2) { |
| 3592 | V1 = getUnpackl(DAG, dl, VT, V1, V1); |
| 3593 | } else { |
| 3594 | V1 = getUnpackh(DAG, dl, VT, V1, V1); |
| 3595 | EltNo -= NumElems/2; |
| 3596 | } |
| 3597 | NumElems >>= 1; |
| 3598 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 3599 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3600 | // Perform the splat. |
| 3601 | int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo }; |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 3602 | V1 = DAG.getNode(ISD::BIT_CONVERT, dl, PVT, V1); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3603 | V1 = DAG.getVectorShuffle(PVT, dl, V1, DAG.getUNDEF(PVT), &SplatMask[0]); |
| 3604 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, V1); |
Evan Cheng | c575ca2 | 2006-04-17 20:43:08 +0000 | [diff] [blame] | 3605 | } |
| 3606 | |
Evan Cheng | ba05f72 | 2006-04-21 23:03:30 +0000 | [diff] [blame] | 3607 | /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 3608 | /// vector of zero or undef vector. This produces a shuffle where the low |
| 3609 | /// element of V2 is swizzled into the zero/undef vector, landing at element |
| 3610 | /// 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] | 3611 | static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx, |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3612 | bool isZero, bool HasSSE2, |
| 3613 | SelectionDAG &DAG) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3614 | EVT VT = V2.getValueType(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3615 | SDValue V1 = isZero |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3616 | ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT); |
| 3617 | unsigned NumElems = VT.getVectorNumElements(); |
| 3618 | SmallVector<int, 16> MaskVec; |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 3619 | for (unsigned i = 0; i != NumElems; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3620 | // If this is the insertion idx, put the low elt of V2 here. |
| 3621 | MaskVec.push_back(i == Idx ? NumElems : i); |
| 3622 | return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]); |
Evan Cheng | 017dcc6 | 2006-04-21 01:05:10 +0000 | [diff] [blame] | 3623 | } |
| 3624 | |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3625 | /// getShuffleScalarElt - Returns the scalar element that will make up the ith |
| 3626 | /// element of the result of the vector shuffle. |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 3627 | SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG, |
| 3628 | unsigned Depth) { |
| 3629 | if (Depth == 6) |
| 3630 | return SDValue(); // Limit search depth. |
| 3631 | |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3632 | SDValue V = SDValue(N, 0); |
| 3633 | EVT VT = V.getValueType(); |
| 3634 | unsigned Opcode = V.getOpcode(); |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3635 | |
| 3636 | // Recurse into ISD::VECTOR_SHUFFLE node to find scalars. |
| 3637 | if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) { |
| 3638 | Index = SV->getMaskElt(Index); |
| 3639 | |
| 3640 | if (Index < 0) |
| 3641 | return DAG.getUNDEF(VT.getVectorElementType()); |
| 3642 | |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 3643 | int NumElems = VT.getVectorNumElements(); |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3644 | SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1); |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 3645 | return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1); |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 3646 | } |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3647 | |
| 3648 | // Recurse into target specific vector shuffles to find scalars. |
| 3649 | if (isTargetShuffle(Opcode)) { |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 3650 | int NumElems = VT.getVectorNumElements(); |
| 3651 | SmallVector<unsigned, 16> ShuffleMask; |
| 3652 | SDValue ImmN; |
| 3653 | |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3654 | switch(Opcode) { |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 3655 | case X86ISD::SHUFPS: |
| 3656 | case X86ISD::SHUFPD: |
| 3657 | ImmN = N->getOperand(N->getNumOperands()-1); |
| 3658 | DecodeSHUFPSMask(NumElems, |
| 3659 | cast<ConstantSDNode>(ImmN)->getZExtValue(), |
| 3660 | ShuffleMask); |
| 3661 | break; |
| 3662 | case X86ISD::PUNPCKHBW: |
| 3663 | case X86ISD::PUNPCKHWD: |
| 3664 | case X86ISD::PUNPCKHDQ: |
| 3665 | case X86ISD::PUNPCKHQDQ: |
| 3666 | DecodePUNPCKHMask(NumElems, ShuffleMask); |
| 3667 | break; |
| 3668 | case X86ISD::UNPCKHPS: |
| 3669 | case X86ISD::UNPCKHPD: |
| 3670 | DecodeUNPCKHPMask(NumElems, ShuffleMask); |
| 3671 | break; |
| 3672 | case X86ISD::PUNPCKLBW: |
| 3673 | case X86ISD::PUNPCKLWD: |
| 3674 | case X86ISD::PUNPCKLDQ: |
| 3675 | case X86ISD::PUNPCKLQDQ: |
| 3676 | DecodePUNPCKLMask(NumElems, ShuffleMask); |
| 3677 | break; |
| 3678 | case X86ISD::UNPCKLPS: |
| 3679 | case X86ISD::UNPCKLPD: |
| 3680 | DecodeUNPCKLPMask(NumElems, ShuffleMask); |
| 3681 | break; |
| 3682 | case X86ISD::MOVHLPS: |
| 3683 | DecodeMOVHLPSMask(NumElems, ShuffleMask); |
| 3684 | break; |
| 3685 | case X86ISD::MOVLHPS: |
| 3686 | DecodeMOVLHPSMask(NumElems, ShuffleMask); |
| 3687 | break; |
| 3688 | case X86ISD::PSHUFD: |
| 3689 | ImmN = N->getOperand(N->getNumOperands()-1); |
| 3690 | DecodePSHUFMask(NumElems, |
| 3691 | cast<ConstantSDNode>(ImmN)->getZExtValue(), |
| 3692 | ShuffleMask); |
| 3693 | break; |
| 3694 | case X86ISD::PSHUFHW: |
| 3695 | ImmN = N->getOperand(N->getNumOperands()-1); |
| 3696 | DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), |
| 3697 | ShuffleMask); |
| 3698 | break; |
| 3699 | case X86ISD::PSHUFLW: |
| 3700 | ImmN = N->getOperand(N->getNumOperands()-1); |
| 3701 | DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), |
| 3702 | ShuffleMask); |
| 3703 | break; |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3704 | case X86ISD::MOVSS: |
Bruno Cardoso Lopes | 20a07f4 | 2010-08-31 02:26:40 +0000 | [diff] [blame] | 3705 | case X86ISD::MOVSD: { |
| 3706 | // The index 0 always comes from the first element of the second source, |
| 3707 | // this is why MOVSS and MOVSD are used in the first place. The other |
| 3708 | // elements come from the other positions of the first source vector. |
| 3709 | unsigned OpNum = (Index == 0) ? 1 : 0; |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 3710 | return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG, |
| 3711 | Depth+1); |
Bruno Cardoso Lopes | 20a07f4 | 2010-08-31 02:26:40 +0000 | [diff] [blame] | 3712 | } |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3713 | default: |
| 3714 | assert("not implemented for target shuffle node"); |
| 3715 | return SDValue(); |
| 3716 | } |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 3717 | |
| 3718 | Index = ShuffleMask[Index]; |
| 3719 | if (Index < 0) |
| 3720 | return DAG.getUNDEF(VT.getVectorElementType()); |
| 3721 | |
| 3722 | SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1); |
| 3723 | return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, |
| 3724 | Depth+1); |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3725 | } |
| 3726 | |
| 3727 | // Actual nodes that may contain scalar elements |
| 3728 | if (Opcode == ISD::BIT_CONVERT) { |
| 3729 | V = V.getOperand(0); |
| 3730 | EVT SrcVT = V.getValueType(); |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 3731 | unsigned NumElems = VT.getVectorNumElements(); |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3732 | |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 3733 | if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems) |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3734 | return SDValue(); |
| 3735 | } |
| 3736 | |
| 3737 | if (V.getOpcode() == ISD::SCALAR_TO_VECTOR) |
| 3738 | return (Index == 0) ? V.getOperand(0) |
| 3739 | : DAG.getUNDEF(VT.getVectorElementType()); |
| 3740 | |
| 3741 | if (V.getOpcode() == ISD::BUILD_VECTOR) |
| 3742 | return V.getOperand(Index); |
| 3743 | |
| 3744 | return SDValue(); |
| 3745 | } |
| 3746 | |
| 3747 | /// getNumOfConsecutiveZeros - Return the number of elements of a vector |
| 3748 | /// shuffle operation which come from a consecutively from a zero. The |
| 3749 | /// search can start in two diferent directions, from left or right. |
| 3750 | static |
| 3751 | unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems, |
| 3752 | bool ZerosFromLeft, SelectionDAG &DAG) { |
| 3753 | int i = 0; |
| 3754 | |
| 3755 | while (i < NumElems) { |
| 3756 | unsigned Index = ZerosFromLeft ? i : NumElems-i-1; |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 3757 | SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0); |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3758 | if (!(Elt.getNode() && |
| 3759 | (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt)))) |
| 3760 | break; |
| 3761 | ++i; |
| 3762 | } |
| 3763 | |
| 3764 | return i; |
| 3765 | } |
| 3766 | |
| 3767 | /// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to |
| 3768 | /// MaskE correspond consecutively to elements from one of the vector operands, |
| 3769 | /// starting from its index OpIdx. Also tell OpNum which source vector operand. |
| 3770 | static |
| 3771 | bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE, |
| 3772 | int OpIdx, int NumElems, unsigned &OpNum) { |
| 3773 | bool SeenV1 = false; |
| 3774 | bool SeenV2 = false; |
| 3775 | |
| 3776 | for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) { |
| 3777 | int Idx = SVOp->getMaskElt(i); |
| 3778 | // Ignore undef indicies |
| 3779 | if (Idx < 0) |
| 3780 | continue; |
| 3781 | |
| 3782 | if (Idx < NumElems) |
| 3783 | SeenV1 = true; |
| 3784 | else |
| 3785 | SeenV2 = true; |
| 3786 | |
| 3787 | // Only accept consecutive elements from the same vector |
| 3788 | if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2)) |
| 3789 | return false; |
| 3790 | } |
| 3791 | |
| 3792 | OpNum = SeenV1 ? 0 : 1; |
| 3793 | return true; |
| 3794 | } |
| 3795 | |
| 3796 | /// isVectorShiftRight - Returns true if the shuffle can be implemented as a |
| 3797 | /// logical left shift of a vector. |
| 3798 | static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG, |
| 3799 | bool &isLeft, SDValue &ShVal, unsigned &ShAmt) { |
| 3800 | unsigned NumElems = SVOp->getValueType(0).getVectorNumElements(); |
| 3801 | unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems, |
| 3802 | false /* check zeros from right */, DAG); |
| 3803 | unsigned OpSrc; |
| 3804 | |
| 3805 | if (!NumZeros) |
| 3806 | return false; |
| 3807 | |
| 3808 | // Considering the elements in the mask that are not consecutive zeros, |
| 3809 | // check if they consecutively come from only one of the source vectors. |
| 3810 | // |
| 3811 | // V1 = {X, A, B, C} 0 |
| 3812 | // \ \ \ / |
| 3813 | // vector_shuffle V1, V2 <1, 2, 3, X> |
| 3814 | // |
| 3815 | if (!isShuffleMaskConsecutive(SVOp, |
| 3816 | 0, // Mask Start Index |
| 3817 | NumElems-NumZeros-1, // Mask End Index |
| 3818 | NumZeros, // Where to start looking in the src vector |
| 3819 | NumElems, // Number of elements in vector |
| 3820 | OpSrc)) // Which source operand ? |
| 3821 | return false; |
| 3822 | |
| 3823 | isLeft = false; |
| 3824 | ShAmt = NumZeros; |
| 3825 | ShVal = SVOp->getOperand(OpSrc); |
| 3826 | return true; |
| 3827 | } |
| 3828 | |
| 3829 | /// isVectorShiftLeft - Returns true if the shuffle can be implemented as a |
| 3830 | /// logical left shift of a vector. |
| 3831 | static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG, |
| 3832 | bool &isLeft, SDValue &ShVal, unsigned &ShAmt) { |
| 3833 | unsigned NumElems = SVOp->getValueType(0).getVectorNumElements(); |
| 3834 | unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems, |
| 3835 | true /* check zeros from left */, DAG); |
| 3836 | unsigned OpSrc; |
| 3837 | |
| 3838 | if (!NumZeros) |
| 3839 | return false; |
| 3840 | |
| 3841 | // Considering the elements in the mask that are not consecutive zeros, |
| 3842 | // check if they consecutively come from only one of the source vectors. |
| 3843 | // |
| 3844 | // 0 { A, B, X, X } = V2 |
| 3845 | // / \ / / |
| 3846 | // vector_shuffle V1, V2 <X, X, 4, 5> |
| 3847 | // |
| 3848 | if (!isShuffleMaskConsecutive(SVOp, |
| 3849 | NumZeros, // Mask Start Index |
| 3850 | NumElems-1, // Mask End Index |
| 3851 | 0, // Where to start looking in the src vector |
| 3852 | NumElems, // Number of elements in vector |
| 3853 | OpSrc)) // Which source operand ? |
| 3854 | return false; |
| 3855 | |
| 3856 | isLeft = true; |
| 3857 | ShAmt = NumZeros; |
| 3858 | ShVal = SVOp->getOperand(OpSrc); |
| 3859 | return true; |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 3860 | } |
| 3861 | |
| 3862 | /// isVectorShift - Returns true if the shuffle can be implemented as a |
| 3863 | /// logical left or right shift of a vector. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3864 | static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3865 | bool &isLeft, SDValue &ShVal, unsigned &ShAmt) { |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3866 | if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) || |
| 3867 | isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt)) |
| 3868 | return true; |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 3869 | |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 3870 | return false; |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 3871 | } |
| 3872 | |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3873 | /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8. |
| 3874 | /// |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3875 | static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros, |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3876 | unsigned NumNonZero, unsigned NumZero, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 3877 | SelectionDAG &DAG, |
| 3878 | const TargetLowering &TLI) { |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3879 | if (NumNonZero > 8) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3880 | return SDValue(); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3881 | |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 3882 | DebugLoc dl = Op.getDebugLoc(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3883 | SDValue V(0, 0); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3884 | bool First = true; |
| 3885 | for (unsigned i = 0; i < 16; ++i) { |
| 3886 | bool ThisIsNonZero = (NonZeros & (1 << i)) != 0; |
| 3887 | if (ThisIsNonZero && First) { |
| 3888 | if (NumZero) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3889 | V = getZeroVector(MVT::v8i16, true, DAG, dl); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3890 | else |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3891 | V = DAG.getUNDEF(MVT::v8i16); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3892 | First = false; |
| 3893 | } |
| 3894 | |
| 3895 | if ((i & 1) != 0) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3896 | SDValue ThisElt(0, 0), LastElt(0, 0); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3897 | bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0; |
| 3898 | if (LastIsNonZero) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3899 | LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3900 | MVT::i16, Op.getOperand(i-1)); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3901 | } |
| 3902 | if (ThisIsNonZero) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3903 | ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i)); |
| 3904 | ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16, |
| 3905 | ThisElt, DAG.getConstant(8, MVT::i8)); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3906 | if (LastIsNonZero) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3907 | ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3908 | } else |
| 3909 | ThisElt = LastElt; |
| 3910 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3911 | if (ThisElt.getNode()) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3912 | V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3913 | DAG.getIntPtrConstant(i/2)); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3914 | } |
| 3915 | } |
| 3916 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3917 | return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3918 | } |
| 3919 | |
Bill Wendling | a348c56 | 2007-03-22 18:42:45 +0000 | [diff] [blame] | 3920 | /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16. |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3921 | /// |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3922 | static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 3923 | unsigned NumNonZero, unsigned NumZero, |
| 3924 | SelectionDAG &DAG, |
| 3925 | const TargetLowering &TLI) { |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3926 | if (NumNonZero > 4) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3927 | return SDValue(); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3928 | |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 3929 | DebugLoc dl = Op.getDebugLoc(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3930 | SDValue V(0, 0); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3931 | bool First = true; |
| 3932 | for (unsigned i = 0; i < 8; ++i) { |
| 3933 | bool isNonZero = (NonZeros & (1 << i)) != 0; |
| 3934 | if (isNonZero) { |
| 3935 | if (First) { |
| 3936 | if (NumZero) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3937 | V = getZeroVector(MVT::v8i16, true, DAG, dl); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3938 | else |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3939 | V = DAG.getUNDEF(MVT::v8i16); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3940 | First = false; |
| 3941 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3942 | V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3943 | MVT::v8i16, V, Op.getOperand(i), |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3944 | DAG.getIntPtrConstant(i)); |
Evan Cheng | c78d3b4 | 2006-04-24 18:01:45 +0000 | [diff] [blame] | 3945 | } |
| 3946 | } |
| 3947 | |
| 3948 | return V; |
| 3949 | } |
| 3950 | |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 3951 | /// getVShift - Return a vector logical shift node. |
| 3952 | /// |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3953 | static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp, |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 3954 | unsigned NumBits, SelectionDAG &DAG, |
| 3955 | const TargetLowering &TLI, DebugLoc dl) { |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 3956 | EVT ShVT = MVT::v2i64; |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 3957 | unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL; |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 3958 | SrcOp = DAG.getNode(ISD::BIT_CONVERT, dl, ShVT, SrcOp); |
| 3959 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, |
| 3960 | DAG.getNode(Opc, dl, ShVT, SrcOp, |
Gabor Greif | 327ef03 | 2008-08-28 23:19:51 +0000 | [diff] [blame] | 3961 | DAG.getConstant(NumBits, TLI.getShiftAmountTy()))); |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 3962 | } |
| 3963 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3964 | SDValue |
Evan Cheng | c363094 | 2009-12-09 21:00:30 +0000 | [diff] [blame] | 3965 | X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 3966 | SelectionDAG &DAG) const { |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 3967 | |
Evan Cheng | c363094 | 2009-12-09 21:00:30 +0000 | [diff] [blame] | 3968 | // Check if the scalar load can be widened into a vector load. And if |
| 3969 | // the address is "base + cst" see if the cst can be "absorbed" into |
| 3970 | // the shuffle mask. |
| 3971 | if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) { |
| 3972 | SDValue Ptr = LD->getBasePtr(); |
| 3973 | if (!ISD::isNormalLoad(LD) || LD->isVolatile()) |
| 3974 | return SDValue(); |
| 3975 | EVT PVT = LD->getValueType(0); |
| 3976 | if (PVT != MVT::i32 && PVT != MVT::f32) |
| 3977 | return SDValue(); |
| 3978 | |
| 3979 | int FI = -1; |
| 3980 | int64_t Offset = 0; |
| 3981 | if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) { |
| 3982 | FI = FINode->getIndex(); |
| 3983 | Offset = 0; |
| 3984 | } else if (Ptr.getOpcode() == ISD::ADD && |
| 3985 | isa<ConstantSDNode>(Ptr.getOperand(1)) && |
| 3986 | isa<FrameIndexSDNode>(Ptr.getOperand(0))) { |
| 3987 | FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex(); |
| 3988 | Offset = Ptr.getConstantOperandVal(1); |
| 3989 | Ptr = Ptr.getOperand(0); |
| 3990 | } else { |
| 3991 | return SDValue(); |
| 3992 | } |
| 3993 | |
| 3994 | SDValue Chain = LD->getChain(); |
| 3995 | // Make sure the stack object alignment is at least 16. |
| 3996 | MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo(); |
| 3997 | if (DAG.InferPtrAlignment(Ptr) < 16) { |
| 3998 | if (MFI->isFixedObjectIndex(FI)) { |
Eric Christopher | e9625cf | 2010-01-23 06:02:43 +0000 | [diff] [blame] | 3999 | // Can't change the alignment. FIXME: It's possible to compute |
| 4000 | // the exact stack offset and reference FI + adjust offset instead. |
| 4001 | // If someone *really* cares about this. That's the way to implement it. |
| 4002 | return SDValue(); |
Evan Cheng | c363094 | 2009-12-09 21:00:30 +0000 | [diff] [blame] | 4003 | } else { |
| 4004 | MFI->setObjectAlignment(FI, 16); |
| 4005 | } |
| 4006 | } |
| 4007 | |
| 4008 | // (Offset % 16) must be multiple of 4. Then address is then |
| 4009 | // Ptr + (Offset & ~15). |
| 4010 | if (Offset < 0) |
| 4011 | return SDValue(); |
| 4012 | if ((Offset % 16) & 3) |
| 4013 | return SDValue(); |
| 4014 | int64_t StartOffset = Offset & ~15; |
| 4015 | if (StartOffset) |
| 4016 | Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(), |
| 4017 | Ptr,DAG.getConstant(StartOffset, Ptr.getValueType())); |
| 4018 | |
| 4019 | int EltNo = (Offset - StartOffset) >> 2; |
| 4020 | int Mask[4] = { EltNo, EltNo, EltNo, EltNo }; |
| 4021 | EVT VT = (PVT == MVT::i32) ? MVT::v4i32 : MVT::v4f32; |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 4022 | SDValue V1 = DAG.getLoad(VT, dl, Chain, Ptr, |
| 4023 | LD->getPointerInfo().getWithOffset(StartOffset), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 4024 | false, false, 0); |
Evan Cheng | c363094 | 2009-12-09 21:00:30 +0000 | [diff] [blame] | 4025 | // Canonicalize it to a v4i32 shuffle. |
| 4026 | V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32, V1); |
| 4027 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, |
| 4028 | DAG.getVectorShuffle(MVT::v4i32, dl, V1, |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 4029 | DAG.getUNDEF(MVT::v4i32),&Mask[0])); |
Evan Cheng | c363094 | 2009-12-09 21:00:30 +0000 | [diff] [blame] | 4030 | } |
| 4031 | |
| 4032 | return SDValue(); |
| 4033 | } |
| 4034 | |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 4035 | /// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a |
| 4036 | /// 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] | 4037 | /// load which has the same value as a build_vector whose operands are 'elts'. |
| 4038 | /// |
| 4039 | /// 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] | 4040 | /// |
Nate Begeman | 1449f29 | 2010-03-24 22:19:06 +0000 | [diff] [blame] | 4041 | /// FIXME: we'd also like to handle the case where the last elements are zero |
| 4042 | /// rather than undef via VZEXT_LOAD, but we do not detect that case today. |
| 4043 | /// There's even a handy isZeroNode for that purpose. |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4044 | static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts, |
Chris Lattner | 8864155 | 2010-09-22 00:34:38 +0000 | [diff] [blame] | 4045 | DebugLoc &DL, SelectionDAG &DAG) { |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4046 | EVT EltVT = VT.getVectorElementType(); |
| 4047 | unsigned NumElems = Elts.size(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 4048 | |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4049 | LoadSDNode *LDBase = NULL; |
| 4050 | unsigned LastLoadedElt = -1U; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 4051 | |
Nate Begeman | 1449f29 | 2010-03-24 22:19:06 +0000 | [diff] [blame] | 4052 | // 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] | 4053 | // 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] | 4054 | // non-consecutive, bail out. |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4055 | for (unsigned i = 0; i < NumElems; ++i) { |
| 4056 | SDValue Elt = Elts[i]; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 4057 | |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4058 | if (!Elt.getNode() || |
| 4059 | (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode()))) |
| 4060 | return SDValue(); |
| 4061 | if (!LDBase) { |
| 4062 | if (Elt.getNode()->getOpcode() == ISD::UNDEF) |
| 4063 | return SDValue(); |
| 4064 | LDBase = cast<LoadSDNode>(Elt.getNode()); |
| 4065 | LastLoadedElt = i; |
| 4066 | continue; |
| 4067 | } |
| 4068 | if (Elt.getOpcode() == ISD::UNDEF) |
| 4069 | continue; |
| 4070 | |
| 4071 | LoadSDNode *LD = cast<LoadSDNode>(Elt); |
| 4072 | if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i)) |
| 4073 | return SDValue(); |
| 4074 | LastLoadedElt = i; |
| 4075 | } |
Nate Begeman | 1449f29 | 2010-03-24 22:19:06 +0000 | [diff] [blame] | 4076 | |
| 4077 | // If we have found an entire vector of loads and undefs, then return a large |
| 4078 | // load of the entire vector width starting at the base pointer. If we found |
| 4079 | // consecutive loads for the low half, generate a vzext_load node. |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4080 | if (LastLoadedElt == NumElems - 1) { |
| 4081 | if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16) |
Chris Lattner | 8864155 | 2010-09-22 00:34:38 +0000 | [diff] [blame] | 4082 | return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(), |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 4083 | LDBase->getPointerInfo(), |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4084 | LDBase->isVolatile(), LDBase->isNonTemporal(), 0); |
Chris Lattner | 8864155 | 2010-09-22 00:34:38 +0000 | [diff] [blame] | 4085 | return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(), |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 4086 | LDBase->getPointerInfo(), |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4087 | LDBase->isVolatile(), LDBase->isNonTemporal(), |
| 4088 | LDBase->getAlignment()); |
| 4089 | } else if (NumElems == 4 && LastLoadedElt == 1) { |
| 4090 | SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other); |
| 4091 | SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() }; |
Chris Lattner | 8864155 | 2010-09-22 00:34:38 +0000 | [diff] [blame] | 4092 | SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, |
| 4093 | Ops, 2, MVT::i32, |
| 4094 | LDBase->getMemOperand()); |
| 4095 | return DAG.getNode(ISD::BIT_CONVERT, DL, VT, ResNode); |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4096 | } |
| 4097 | return SDValue(); |
| 4098 | } |
| 4099 | |
Evan Cheng | c363094 | 2009-12-09 21:00:30 +0000 | [diff] [blame] | 4100 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 4101 | X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const { |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 4102 | DebugLoc dl = Op.getDebugLoc(); |
Chris Lattner | 6e80e44 | 2010-08-28 17:15:43 +0000 | [diff] [blame] | 4103 | // All zero's are handled with pxor in SSE2 and above, xorps in SSE1. |
| 4104 | // 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] | 4105 | // vpxor in 128-bit and xor{pd,ps} in 256-bit, but no 256 version of pcmpeqd |
| 4106 | // is present, so AllOnes is ignored. |
| 4107 | if (ISD::isBuildVectorAllZeros(Op.getNode()) || |
| 4108 | (Op.getValueType().getSizeInBits() != 256 && |
| 4109 | ISD::isBuildVectorAllOnes(Op.getNode()))) { |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 4110 | // Canonicalize this to <4 x i32> (SSE) to |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 4111 | // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are |
| 4112 | // eliminated on x86-32 hosts. |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 4113 | if (Op.getValueType() == MVT::v4i32) |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 4114 | return Op; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4115 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4116 | if (ISD::isBuildVectorAllOnes(Op.getNode())) |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4117 | return getOnesVector(Op.getValueType(), DAG, dl); |
| 4118 | return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl); |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 4119 | } |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4120 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4121 | EVT VT = Op.getValueType(); |
| 4122 | EVT ExtVT = VT.getVectorElementType(); |
| 4123 | unsigned EVTBits = ExtVT.getSizeInBits(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4124 | |
| 4125 | unsigned NumElems = Op.getNumOperands(); |
| 4126 | unsigned NumZero = 0; |
| 4127 | unsigned NumNonZero = 0; |
| 4128 | unsigned NonZeros = 0; |
Chris Lattner | c9517fb | 2008-03-08 22:48:29 +0000 | [diff] [blame] | 4129 | bool IsAllConstants = true; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4130 | SmallSet<SDValue, 8> Values; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4131 | for (unsigned i = 0; i < NumElems; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4132 | SDValue Elt = Op.getOperand(i); |
Evan Cheng | db2d524 | 2007-12-12 06:45:40 +0000 | [diff] [blame] | 4133 | if (Elt.getOpcode() == ISD::UNDEF) |
| 4134 | continue; |
| 4135 | Values.insert(Elt); |
| 4136 | if (Elt.getOpcode() != ISD::Constant && |
| 4137 | Elt.getOpcode() != ISD::ConstantFP) |
Chris Lattner | c9517fb | 2008-03-08 22:48:29 +0000 | [diff] [blame] | 4138 | IsAllConstants = false; |
Evan Cheng | 37b7387 | 2009-07-30 08:33:02 +0000 | [diff] [blame] | 4139 | if (X86::isZeroNode(Elt)) |
Evan Cheng | db2d524 | 2007-12-12 06:45:40 +0000 | [diff] [blame] | 4140 | NumZero++; |
| 4141 | else { |
| 4142 | NonZeros |= (1 << i); |
| 4143 | NumNonZero++; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4144 | } |
| 4145 | } |
| 4146 | |
Chris Lattner | 97a2a56 | 2010-08-26 05:24:29 +0000 | [diff] [blame] | 4147 | // All undef vector. Return an UNDEF. All zero vectors were handled above. |
| 4148 | if (NumNonZero == 0) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 4149 | return DAG.getUNDEF(VT); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4150 | |
Chris Lattner | 67f453a | 2008-03-09 05:42:06 +0000 | [diff] [blame] | 4151 | // Special case for single non-zero, non-undef, element. |
Eli Friedman | 1041553 | 2009-06-06 06:05:10 +0000 | [diff] [blame] | 4152 | if (NumNonZero == 1) { |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4153 | unsigned Idx = CountTrailingZeros_32(NonZeros); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4154 | SDValue Item = Op.getOperand(Idx); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4155 | |
Chris Lattner | 6209804 | 2008-03-09 01:05:04 +0000 | [diff] [blame] | 4156 | // If this is an insertion of an i64 value on x86-32, and if the top bits of |
| 4157 | // the value are obviously zero, truncate the value to i32 and do the |
| 4158 | // insertion that way. Only do this if the value is non-constant or if the |
| 4159 | // value is a constant being inserted into element 0. It is cheaper to do |
| 4160 | // a constant pool load than it is to do a movd + shuffle. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4161 | if (ExtVT == MVT::i64 && !Subtarget->is64Bit() && |
Chris Lattner | 6209804 | 2008-03-09 01:05:04 +0000 | [diff] [blame] | 4162 | (!IsAllConstants || Idx == 0)) { |
| 4163 | if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) { |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 4164 | // Handle SSE only. |
| 4165 | assert(VT == MVT::v2i64 && "Expected an SSE value type!"); |
| 4166 | EVT VecVT = MVT::v4i32; |
| 4167 | unsigned VecElts = 4; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4168 | |
Chris Lattner | 6209804 | 2008-03-09 01:05:04 +0000 | [diff] [blame] | 4169 | // Truncate the value (which may itself be a constant) to i32, and |
| 4170 | // convert it to a vector with movd (S2V+shuffle to zero extend). |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4171 | Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4172 | Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item); |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 4173 | Item = getShuffleVectorZeroOrUndef(Item, 0, true, |
| 4174 | Subtarget->hasSSE2(), DAG); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4175 | |
Chris Lattner | 6209804 | 2008-03-09 01:05:04 +0000 | [diff] [blame] | 4176 | // Now we have our 32-bit value zero extended in the low element of |
| 4177 | // a vector. If Idx != 0, swizzle it into place. |
| 4178 | if (Idx != 0) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4179 | SmallVector<int, 4> Mask; |
| 4180 | Mask.push_back(Idx); |
| 4181 | for (unsigned i = 1; i != VecElts; ++i) |
| 4182 | Mask.push_back(i); |
| 4183 | Item = DAG.getVectorShuffle(VecVT, dl, Item, |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4184 | DAG.getUNDEF(Item.getValueType()), |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4185 | &Mask[0]); |
Chris Lattner | 6209804 | 2008-03-09 01:05:04 +0000 | [diff] [blame] | 4186 | } |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4187 | return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Item); |
Chris Lattner | 6209804 | 2008-03-09 01:05:04 +0000 | [diff] [blame] | 4188 | } |
| 4189 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4190 | |
Chris Lattner | 19f7969 | 2008-03-08 22:59:52 +0000 | [diff] [blame] | 4191 | // If we have a constant or non-constant insertion into the low element of |
| 4192 | // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into |
| 4193 | // 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] | 4194 | // depending on what the source datatype is. |
| 4195 | if (Idx == 0) { |
| 4196 | if (NumZero == 0) { |
| 4197 | return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4198 | } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 || |
| 4199 | (ExtVT == MVT::i64 && Subtarget->is64Bit())) { |
Eli Friedman | 1041553 | 2009-06-06 06:05:10 +0000 | [diff] [blame] | 4200 | Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item); |
| 4201 | // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector. |
| 4202 | return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(), |
| 4203 | DAG); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4204 | } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) { |
| 4205 | Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item); |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 4206 | assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!"); |
| 4207 | EVT MiddleVT = MVT::v4i32; |
Eli Friedman | 1041553 | 2009-06-06 06:05:10 +0000 | [diff] [blame] | 4208 | Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item); |
| 4209 | Item = getShuffleVectorZeroOrUndef(Item, 0, true, |
| 4210 | Subtarget->hasSSE2(), DAG); |
| 4211 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Item); |
| 4212 | } |
Chris Lattner | c9517fb | 2008-03-08 22:48:29 +0000 | [diff] [blame] | 4213 | } |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 4214 | |
| 4215 | // Is it a vector logical left shift? |
| 4216 | if (NumElems == 2 && Idx == 1 && |
Evan Cheng | 37b7387 | 2009-07-30 08:33:02 +0000 | [diff] [blame] | 4217 | X86::isZeroNode(Op.getOperand(0)) && |
| 4218 | !X86::isZeroNode(Op.getOperand(1))) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4219 | unsigned NumBits = VT.getSizeInBits(); |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 4220 | return getVShift(true, VT, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4221 | DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, |
Dale Johannesen | b300d2a | 2009-02-07 00:55:49 +0000 | [diff] [blame] | 4222 | VT, Op.getOperand(1)), |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4223 | NumBits/2, DAG, *this, dl); |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 4224 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4225 | |
Chris Lattner | c9517fb | 2008-03-08 22:48:29 +0000 | [diff] [blame] | 4226 | if (IsAllConstants) // Otherwise, it's better to do a constpool load. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4227 | return SDValue(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4228 | |
Chris Lattner | 19f7969 | 2008-03-08 22:59:52 +0000 | [diff] [blame] | 4229 | // Otherwise, if this is a vector with i32 or f32 elements, and the element |
| 4230 | // is a non-constant being inserted into an element other than the low one, |
| 4231 | // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka |
| 4232 | // movd/movss) to move this into the low element, then shuffle it into |
| 4233 | // place. |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4234 | if (EVTBits == 32) { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4235 | Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4236 | |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4237 | // 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] | 4238 | Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, |
| 4239 | Subtarget->hasSSE2(), DAG); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4240 | SmallVector<int, 8> MaskVec; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4241 | for (unsigned i = 0; i < NumElems; i++) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4242 | MaskVec.push_back(i == Idx ? 0 : 1); |
| 4243 | return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4244 | } |
| 4245 | } |
| 4246 | |
Chris Lattner | 67f453a | 2008-03-09 05:42:06 +0000 | [diff] [blame] | 4247 | // Splat is obviously ok. Let legalizer expand it to a shuffle. |
Evan Cheng | c363094 | 2009-12-09 21:00:30 +0000 | [diff] [blame] | 4248 | if (Values.size() == 1) { |
| 4249 | if (EVTBits == 32) { |
| 4250 | // Instead of a shuffle like this: |
| 4251 | // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0> |
| 4252 | // Check if it's possible to issue this instead. |
| 4253 | // shuffle (vload ptr)), undef, <1, 1, 1, 1> |
| 4254 | unsigned Idx = CountTrailingZeros_32(NonZeros); |
| 4255 | SDValue Item = Op.getOperand(Idx); |
| 4256 | if (Op.getNode()->isOnlyUserOf(Item.getNode())) |
| 4257 | return LowerAsSplatVectorLoad(Item, VT, dl, DAG); |
| 4258 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4259 | return SDValue(); |
Evan Cheng | c363094 | 2009-12-09 21:00:30 +0000 | [diff] [blame] | 4260 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4261 | |
Dan Gohman | a394117 | 2007-07-24 22:55:08 +0000 | [diff] [blame] | 4262 | // A vector full of immediates; various special cases are already |
| 4263 | // handled, so this is best done with a single constant-pool load. |
Chris Lattner | c9517fb | 2008-03-08 22:48:29 +0000 | [diff] [blame] | 4264 | if (IsAllConstants) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4265 | return SDValue(); |
Dan Gohman | a394117 | 2007-07-24 22:55:08 +0000 | [diff] [blame] | 4266 | |
Bill Wendling | 2f9bb1a | 2007-04-24 21:16:55 +0000 | [diff] [blame] | 4267 | // Let legalizer expand 2-wide build_vectors. |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4268 | if (EVTBits == 64) { |
| 4269 | if (NumNonZero == 1) { |
| 4270 | // One half is zero or undef. |
| 4271 | unsigned Idx = CountTrailingZeros_32(NonZeros); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4272 | SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4273 | Op.getOperand(Idx)); |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 4274 | return getShuffleVectorZeroOrUndef(V2, Idx, true, |
| 4275 | Subtarget->hasSSE2(), DAG); |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4276 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4277 | return SDValue(); |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4278 | } |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4279 | |
| 4280 | // 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] | 4281 | if (EVTBits == 8 && NumElems == 16) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4282 | SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG, |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 4283 | *this); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4284 | if (V.getNode()) return V; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4285 | } |
| 4286 | |
Bill Wendling | 826f36f | 2007-03-28 00:57:11 +0000 | [diff] [blame] | 4287 | if (EVTBits == 16 && NumElems == 8) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4288 | SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG, |
Chris Lattner | 97a2a56 | 2010-08-26 05:24:29 +0000 | [diff] [blame] | 4289 | *this); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4290 | if (V.getNode()) return V; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4291 | } |
| 4292 | |
| 4293 | // 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] | 4294 | SmallVector<SDValue, 8> V; |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 4295 | V.resize(NumElems); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4296 | if (NumElems == 4 && NumZero > 0) { |
| 4297 | for (unsigned i = 0; i < 4; ++i) { |
| 4298 | bool isZero = !(NonZeros & (1 << i)); |
| 4299 | if (isZero) |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4300 | V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4301 | else |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4302 | 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] | 4303 | } |
| 4304 | |
| 4305 | for (unsigned i = 0; i < 2; ++i) { |
| 4306 | switch ((NonZeros & (0x3 << i*2)) >> (i*2)) { |
| 4307 | default: break; |
| 4308 | case 0: |
| 4309 | V[i] = V[i*2]; // Must be a zero vector. |
| 4310 | break; |
| 4311 | case 1: |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4312 | 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] | 4313 | break; |
| 4314 | case 2: |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4315 | 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] | 4316 | break; |
| 4317 | case 3: |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4318 | 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] | 4319 | break; |
| 4320 | } |
| 4321 | } |
| 4322 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4323 | SmallVector<int, 8> MaskVec; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4324 | bool Reverse = (NonZeros & 0x3) == 2; |
| 4325 | for (unsigned i = 0; i < 2; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4326 | MaskVec.push_back(Reverse ? 1-i : i); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4327 | Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2; |
| 4328 | for (unsigned i = 0; i < 2; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4329 | MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems); |
| 4330 | return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4331 | } |
| 4332 | |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4333 | if (Values.size() > 1 && VT.getSizeInBits() == 128) { |
| 4334 | // Check for a build vector of consecutive loads. |
| 4335 | for (unsigned i = 0; i < NumElems; ++i) |
| 4336 | V[i] = Op.getOperand(i); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 4337 | |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 4338 | // Check for elements which are consecutive loads. |
| 4339 | SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG); |
| 4340 | if (LD.getNode()) |
| 4341 | return LD; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 4342 | |
| 4343 | // 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] | 4344 | if (getSubtarget()->hasSSE41()) { |
Chris Lattner | 24faf61 | 2010-08-28 17:59:08 +0000 | [diff] [blame] | 4345 | SDValue Result; |
| 4346 | if (Op.getOperand(0).getOpcode() != ISD::UNDEF) |
| 4347 | Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0)); |
| 4348 | else |
| 4349 | Result = DAG.getUNDEF(VT); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 4350 | |
Chris Lattner | 24faf61 | 2010-08-28 17:59:08 +0000 | [diff] [blame] | 4351 | for (unsigned i = 1; i < NumElems; ++i) { |
| 4352 | if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue; |
| 4353 | Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result, |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4354 | Op.getOperand(i), DAG.getIntPtrConstant(i)); |
Chris Lattner | 24faf61 | 2010-08-28 17:59:08 +0000 | [diff] [blame] | 4355 | } |
| 4356 | return Result; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4357 | } |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 4358 | |
Chris Lattner | 6e80e44 | 2010-08-28 17:15:43 +0000 | [diff] [blame] | 4359 | // Otherwise, expand into a number of unpckl*, start by extending each of |
| 4360 | // our (non-undef) elements to the full vector width with the element in the |
| 4361 | // bottom slot of the vector (which generates no code for SSE). |
| 4362 | for (unsigned i = 0; i < NumElems; ++i) { |
| 4363 | if (Op.getOperand(i).getOpcode() != ISD::UNDEF) |
| 4364 | V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i)); |
| 4365 | else |
| 4366 | V[i] = DAG.getUNDEF(VT); |
| 4367 | } |
| 4368 | |
| 4369 | // Next, we iteratively mix elements, e.g. for v4f32: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4370 | // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0> |
| 4371 | // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1> |
| 4372 | // Step 2: unpcklps X, Y ==> <3, 2, 1, 0> |
Chris Lattner | 6e80e44 | 2010-08-28 17:15:43 +0000 | [diff] [blame] | 4373 | unsigned EltStride = NumElems >> 1; |
| 4374 | while (EltStride != 0) { |
Chris Lattner | 3ddcc43 | 2010-08-28 17:28:30 +0000 | [diff] [blame] | 4375 | for (unsigned i = 0; i < EltStride; ++i) { |
| 4376 | // If V[i+EltStride] is undef and this is the first round of mixing, |
| 4377 | // then it is safe to just drop this shuffle: V[i] is already in the |
| 4378 | // right place, the one element (since it's the first round) being |
| 4379 | // inserted as undef can be dropped. This isn't safe for successive |
| 4380 | // rounds because they will permute elements within both vectors. |
| 4381 | if (V[i+EltStride].getOpcode() == ISD::UNDEF && |
| 4382 | EltStride == NumElems/2) |
| 4383 | continue; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 4384 | |
Chris Lattner | 6e80e44 | 2010-08-28 17:15:43 +0000 | [diff] [blame] | 4385 | V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]); |
Chris Lattner | 3ddcc43 | 2010-08-28 17:28:30 +0000 | [diff] [blame] | 4386 | } |
Chris Lattner | 6e80e44 | 2010-08-28 17:15:43 +0000 | [diff] [blame] | 4387 | EltStride >>= 1; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4388 | } |
| 4389 | return V[0]; |
| 4390 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4391 | return SDValue(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 4392 | } |
| 4393 | |
Mon P Wang | eb38ebf | 2010-01-24 00:05:03 +0000 | [diff] [blame] | 4394 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 4395 | X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const { |
Mon P Wang | eb38ebf | 2010-01-24 00:05:03 +0000 | [diff] [blame] | 4396 | // We support concatenate two MMX registers and place them in a MMX |
| 4397 | // register. This is better than doing a stack convert. |
| 4398 | DebugLoc dl = Op.getDebugLoc(); |
| 4399 | EVT ResVT = Op.getValueType(); |
| 4400 | assert(Op.getNumOperands() == 2); |
| 4401 | assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 || |
| 4402 | ResVT == MVT::v8i16 || ResVT == MVT::v16i8); |
| 4403 | int Mask[2]; |
| 4404 | SDValue InVec = DAG.getNode(ISD::BIT_CONVERT,dl, MVT::v1i64, Op.getOperand(0)); |
| 4405 | SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec); |
| 4406 | InVec = Op.getOperand(1); |
| 4407 | if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) { |
| 4408 | unsigned NumElts = ResVT.getVectorNumElements(); |
| 4409 | VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, ResVT, VecOp); |
| 4410 | VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp, |
| 4411 | InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1)); |
| 4412 | } else { |
| 4413 | InVec = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v1i64, InVec); |
| 4414 | SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec); |
| 4415 | Mask[0] = 0; Mask[1] = 2; |
| 4416 | VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask); |
| 4417 | } |
| 4418 | return DAG.getNode(ISD::BIT_CONVERT, dl, ResVT, VecOp); |
| 4419 | } |
| 4420 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4421 | // v8i16 shuffles - Prefer shuffles in the following order: |
| 4422 | // 1. [all] pshuflw, pshufhw, optional move |
| 4423 | // 2. [ssse3] 1 x pshufb |
| 4424 | // 3. [ssse3] 2 x pshufb + 1 x por |
| 4425 | // 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw) |
Bruno Cardoso Lopes | bf8154a | 2010-08-21 01:32:18 +0000 | [diff] [blame] | 4426 | SDValue |
| 4427 | X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op, |
| 4428 | SelectionDAG &DAG) const { |
| 4429 | ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4430 | SDValue V1 = SVOp->getOperand(0); |
| 4431 | SDValue V2 = SVOp->getOperand(1); |
| 4432 | DebugLoc dl = SVOp->getDebugLoc(); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4433 | SmallVector<int, 8> MaskVals; |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4434 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4435 | // Determine if more than 1 of the words in each of the low and high quadwords |
| 4436 | // of the result come from the same quadword of one of the two inputs. Undef |
| 4437 | // mask values count as coming from any quadword, for better codegen. |
| 4438 | SmallVector<unsigned, 4> LoQuad(4); |
| 4439 | SmallVector<unsigned, 4> HiQuad(4); |
| 4440 | BitVector InputQuads(4); |
| 4441 | for (unsigned i = 0; i < 8; ++i) { |
| 4442 | SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4443 | int EltIdx = SVOp->getMaskElt(i); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4444 | MaskVals.push_back(EltIdx); |
| 4445 | if (EltIdx < 0) { |
| 4446 | ++Quad[0]; |
| 4447 | ++Quad[1]; |
| 4448 | ++Quad[2]; |
| 4449 | ++Quad[3]; |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4450 | continue; |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4451 | } |
| 4452 | ++Quad[EltIdx / 4]; |
| 4453 | InputQuads.set(EltIdx / 4); |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4454 | } |
Bill Wendling | e85dc49 | 2008-08-21 22:35:37 +0000 | [diff] [blame] | 4455 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4456 | int BestLoQuad = -1; |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4457 | unsigned MaxQuad = 1; |
| 4458 | for (unsigned i = 0; i < 4; ++i) { |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4459 | if (LoQuad[i] > MaxQuad) { |
| 4460 | BestLoQuad = i; |
| 4461 | MaxQuad = LoQuad[i]; |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4462 | } |
Evan Cheng | 8a86c3f | 2007-12-07 08:07:39 +0000 | [diff] [blame] | 4463 | } |
| 4464 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4465 | int BestHiQuad = -1; |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4466 | MaxQuad = 1; |
| 4467 | for (unsigned i = 0; i < 4; ++i) { |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4468 | if (HiQuad[i] > MaxQuad) { |
| 4469 | BestHiQuad = i; |
| 4470 | MaxQuad = HiQuad[i]; |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4471 | } |
| 4472 | } |
| 4473 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4474 | // 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] | 4475 | // 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] | 4476 | // single pshufb instruction is necessary. If There are more than 2 input |
| 4477 | // quads, disable the next transformation since it does not help SSSE3. |
| 4478 | bool V1Used = InputQuads[0] || InputQuads[1]; |
| 4479 | bool V2Used = InputQuads[2] || InputQuads[3]; |
Bruno Cardoso Lopes | bf8154a | 2010-08-21 01:32:18 +0000 | [diff] [blame] | 4480 | if (Subtarget->hasSSSE3()) { |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4481 | if (InputQuads.count() == 2 && V1Used && V2Used) { |
| 4482 | BestLoQuad = InputQuads.find_first(); |
| 4483 | BestHiQuad = InputQuads.find_next(BestLoQuad); |
| 4484 | } |
| 4485 | if (InputQuads.count() > 2) { |
| 4486 | BestLoQuad = -1; |
| 4487 | BestHiQuad = -1; |
| 4488 | } |
| 4489 | } |
Bill Wendling | e85dc49 | 2008-08-21 22:35:37 +0000 | [diff] [blame] | 4490 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4491 | // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update |
| 4492 | // the shuffle mask. If a quad is scored as -1, that means that it contains |
| 4493 | // words from all 4 input quadwords. |
| 4494 | SDValue NewV; |
| 4495 | if (BestLoQuad >= 0 || BestHiQuad >= 0) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4496 | SmallVector<int, 8> MaskV; |
| 4497 | MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad); |
| 4498 | MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4499 | NewV = DAG.getVectorShuffle(MVT::v2i64, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4500 | DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V1), |
| 4501 | DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V2), &MaskV[0]); |
| 4502 | NewV = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, NewV); |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4503 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4504 | // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the |
| 4505 | // source words for the shuffle, to aid later transformations. |
| 4506 | bool AllWordsInNewV = true; |
Mon P Wang | 37b9a19 | 2009-03-11 06:35:11 +0000 | [diff] [blame] | 4507 | bool InOrder[2] = { true, true }; |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4508 | for (unsigned i = 0; i != 8; ++i) { |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4509 | int idx = MaskVals[i]; |
Mon P Wang | 37b9a19 | 2009-03-11 06:35:11 +0000 | [diff] [blame] | 4510 | if (idx != (int)i) |
| 4511 | InOrder[i/4] = false; |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4512 | if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad) |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4513 | continue; |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4514 | AllWordsInNewV = false; |
| 4515 | break; |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4516 | } |
Bill Wendling | e85dc49 | 2008-08-21 22:35:37 +0000 | [diff] [blame] | 4517 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4518 | bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV; |
| 4519 | if (AllWordsInNewV) { |
| 4520 | for (int i = 0; i != 8; ++i) { |
| 4521 | int idx = MaskVals[i]; |
| 4522 | if (idx < 0) |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4523 | continue; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4524 | idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4; |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4525 | if ((idx != i) && idx < 4) |
| 4526 | pshufhw = false; |
| 4527 | if ((idx != i) && idx > 3) |
| 4528 | pshuflw = false; |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4529 | } |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4530 | V1 = NewV; |
| 4531 | V2Used = false; |
| 4532 | BestLoQuad = 0; |
| 4533 | BestHiQuad = 1; |
Evan Cheng | 8a86c3f | 2007-12-07 08:07:39 +0000 | [diff] [blame] | 4534 | } |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4535 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4536 | // If we've eliminated the use of V2, and the new mask is a pshuflw or |
| 4537 | // 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] | 4538 | if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) { |
Bruno Cardoso Lopes | 3efc077 | 2010-08-23 20:41:02 +0000 | [diff] [blame] | 4539 | unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW; |
| 4540 | unsigned TargetMask = 0; |
| 4541 | NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4542 | DAG.getUNDEF(MVT::v8i16), &MaskVals[0]); |
Bruno Cardoso Lopes | 3efc077 | 2010-08-23 20:41:02 +0000 | [diff] [blame] | 4543 | TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()): |
| 4544 | X86::getShufflePSHUFLWImmediate(NewV.getNode()); |
| 4545 | V1 = NewV.getOperand(0); |
Bruno Cardoso Lopes | 8878e21 | 2010-08-24 01:16:15 +0000 | [diff] [blame] | 4546 | return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG); |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4547 | } |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4548 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4549 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4550 | // If we have SSSE3, and all words of the result are from 1 input vector, |
| 4551 | // case 2 is generated, otherwise case 3 is generated. If no SSSE3 |
| 4552 | // is present, fall back to case 4. |
Bruno Cardoso Lopes | bf8154a | 2010-08-21 01:32:18 +0000 | [diff] [blame] | 4553 | if (Subtarget->hasSSSE3()) { |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4554 | SmallVector<SDValue,16> pshufbMask; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4555 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4556 | // 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] | 4557 | // 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] | 4558 | // mask, and elements that come from V1 in the V2 mask, so that the two |
| 4559 | // results can be OR'd together. |
| 4560 | bool TwoInputs = V1Used && V2Used; |
| 4561 | for (unsigned i = 0; i != 8; ++i) { |
| 4562 | int EltIdx = MaskVals[i] * 2; |
| 4563 | if (TwoInputs && (EltIdx >= 16)) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4564 | pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8)); |
| 4565 | pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4566 | continue; |
| 4567 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4568 | pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8)); |
| 4569 | pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4570 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4571 | V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V1); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4572 | V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1, |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 4573 | DAG.getNode(ISD::BUILD_VECTOR, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4574 | MVT::v16i8, &pshufbMask[0], 16)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4575 | if (!TwoInputs) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4576 | return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4577 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4578 | // Calculate the shuffle mask for the second input, shuffle it, and |
| 4579 | // OR it with the first shuffled input. |
| 4580 | pshufbMask.clear(); |
| 4581 | for (unsigned i = 0; i != 8; ++i) { |
| 4582 | int EltIdx = MaskVals[i] * 2; |
| 4583 | if (EltIdx < 16) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4584 | pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8)); |
| 4585 | pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4586 | continue; |
| 4587 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4588 | pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8)); |
| 4589 | pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4590 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4591 | V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V2); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4592 | V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2, |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 4593 | DAG.getNode(ISD::BUILD_VECTOR, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4594 | MVT::v16i8, &pshufbMask[0], 16)); |
| 4595 | V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2); |
| 4596 | return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4597 | } |
| 4598 | |
| 4599 | // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order, |
| 4600 | // and update MaskVals with new element order. |
| 4601 | BitVector InOrder(8); |
| 4602 | if (BestLoQuad >= 0) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4603 | SmallVector<int, 8> MaskV; |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4604 | for (int i = 0; i != 4; ++i) { |
| 4605 | int idx = MaskVals[i]; |
| 4606 | if (idx < 0) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4607 | MaskV.push_back(-1); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4608 | InOrder.set(i); |
| 4609 | } else if ((idx / 4) == BestLoQuad) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4610 | MaskV.push_back(idx & 3); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4611 | InOrder.set(i); |
| 4612 | } else { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4613 | MaskV.push_back(-1); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4614 | } |
| 4615 | } |
| 4616 | for (unsigned i = 4; i != 8; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4617 | MaskV.push_back(i); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4618 | NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16), |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4619 | &MaskV[0]); |
Bruno Cardoso Lopes | 8878e21 | 2010-08-24 01:16:15 +0000 | [diff] [blame] | 4620 | |
| 4621 | if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) |
| 4622 | NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16, |
| 4623 | NewV.getOperand(0), |
| 4624 | X86::getShufflePSHUFLWImmediate(NewV.getNode()), |
| 4625 | DAG); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4626 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4627 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4628 | // If BestHi >= 0, generate a pshufhw to put the high elements in order, |
| 4629 | // and update MaskVals with the new element order. |
| 4630 | if (BestHiQuad >= 0) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4631 | SmallVector<int, 8> MaskV; |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4632 | for (unsigned i = 0; i != 4; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4633 | MaskV.push_back(i); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4634 | for (unsigned i = 4; i != 8; ++i) { |
| 4635 | int idx = MaskVals[i]; |
| 4636 | if (idx < 0) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4637 | MaskV.push_back(-1); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4638 | InOrder.set(i); |
| 4639 | } else if ((idx / 4) == BestHiQuad) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4640 | MaskV.push_back((idx & 3) + 4); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4641 | InOrder.set(i); |
| 4642 | } else { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4643 | MaskV.push_back(-1); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4644 | } |
| 4645 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4646 | NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16), |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4647 | &MaskV[0]); |
Bruno Cardoso Lopes | 8878e21 | 2010-08-24 01:16:15 +0000 | [diff] [blame] | 4648 | |
| 4649 | if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) |
| 4650 | NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16, |
| 4651 | NewV.getOperand(0), |
| 4652 | X86::getShufflePSHUFHWImmediate(NewV.getNode()), |
| 4653 | DAG); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4654 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4655 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4656 | // In case BestHi & BestLo were both -1, which means each quadword has a word |
| 4657 | // from each of the four input quadwords, calculate the InOrder bitvector now |
| 4658 | // before falling through to the insert/extract cleanup. |
| 4659 | if (BestLoQuad == -1 && BestHiQuad == -1) { |
| 4660 | NewV = V1; |
| 4661 | for (int i = 0; i != 8; ++i) |
| 4662 | if (MaskVals[i] < 0 || MaskVals[i] == i) |
| 4663 | InOrder.set(i); |
| 4664 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4665 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4666 | // The other elements are put in the right place using pextrw and pinsrw. |
| 4667 | for (unsigned i = 0; i != 8; ++i) { |
| 4668 | if (InOrder[i]) |
| 4669 | continue; |
| 4670 | int EltIdx = MaskVals[i]; |
| 4671 | if (EltIdx < 0) |
| 4672 | continue; |
| 4673 | SDValue ExtOp = (EltIdx < 8) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4674 | ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1, |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4675 | DAG.getIntPtrConstant(EltIdx)) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4676 | : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2, |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4677 | DAG.getIntPtrConstant(EltIdx - 8)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4678 | NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp, |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4679 | DAG.getIntPtrConstant(i)); |
| 4680 | } |
| 4681 | return NewV; |
| 4682 | } |
| 4683 | |
| 4684 | // v16i8 shuffles - Prefer shuffles in the following order: |
| 4685 | // 1. [ssse3] 1 x pshufb |
| 4686 | // 2. [ssse3] 2 x pshufb + 1 x por |
| 4687 | // 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw |
| 4688 | static |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4689 | SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 4690 | SelectionDAG &DAG, |
| 4691 | const X86TargetLowering &TLI) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4692 | SDValue V1 = SVOp->getOperand(0); |
| 4693 | SDValue V2 = SVOp->getOperand(1); |
| 4694 | DebugLoc dl = SVOp->getDebugLoc(); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4695 | SmallVector<int, 16> MaskVals; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4696 | SVOp->getMask(MaskVals); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4697 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4698 | // 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] | 4699 | // 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] | 4700 | // present, fall back to case 3. |
| 4701 | // FIXME: kill V2Only once shuffles are canonizalized by getNode. |
| 4702 | bool V1Only = true; |
| 4703 | bool V2Only = true; |
| 4704 | for (unsigned i = 0; i < 16; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4705 | int EltIdx = MaskVals[i]; |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4706 | if (EltIdx < 0) |
| 4707 | continue; |
| 4708 | if (EltIdx < 16) |
| 4709 | V2Only = false; |
| 4710 | else |
| 4711 | V1Only = false; |
| 4712 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4713 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4714 | // If SSSE3, use 1 pshufb instruction per vector with elements in the result. |
| 4715 | if (TLI.getSubtarget()->hasSSSE3()) { |
| 4716 | SmallVector<SDValue,16> pshufbMask; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4717 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4718 | // If all result elements are from one input vector, then only translate |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4719 | // undef mask values to 0x80 (zero out result) in the pshufb mask. |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4720 | // |
| 4721 | // Otherwise, we have elements from both input vectors, and must zero out |
| 4722 | // elements that come from V2 in the first mask, and V1 in the second mask |
| 4723 | // so that we can OR them together. |
| 4724 | bool TwoInputs = !(V1Only || V2Only); |
| 4725 | for (unsigned i = 0; i != 16; ++i) { |
| 4726 | int EltIdx = MaskVals[i]; |
| 4727 | if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4728 | pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4729 | continue; |
| 4730 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4731 | pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4732 | } |
| 4733 | // If all the elements are from V2, assign it to V1 and return after |
| 4734 | // building the first pshufb. |
| 4735 | if (V2Only) |
| 4736 | V1 = V2; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4737 | V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1, |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 4738 | DAG.getNode(ISD::BUILD_VECTOR, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4739 | MVT::v16i8, &pshufbMask[0], 16)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4740 | if (!TwoInputs) |
| 4741 | return V1; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4742 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4743 | // Calculate the shuffle mask for the second input, shuffle it, and |
| 4744 | // OR it with the first shuffled input. |
| 4745 | pshufbMask.clear(); |
| 4746 | for (unsigned i = 0; i != 16; ++i) { |
| 4747 | int EltIdx = MaskVals[i]; |
| 4748 | if (EltIdx < 16) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4749 | pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4750 | continue; |
| 4751 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4752 | pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4753 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4754 | V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2, |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 4755 | DAG.getNode(ISD::BUILD_VECTOR, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4756 | MVT::v16i8, &pshufbMask[0], 16)); |
| 4757 | return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4758 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4759 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4760 | // No SSSE3 - Calculate in place words and then fix all out of place words |
| 4761 | // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from |
| 4762 | // the 16 different words that comprise the two doublequadword input vectors. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4763 | V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1); |
| 4764 | V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V2); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4765 | SDValue NewV = V2Only ? V2 : V1; |
| 4766 | for (int i = 0; i != 8; ++i) { |
| 4767 | int Elt0 = MaskVals[i*2]; |
| 4768 | int Elt1 = MaskVals[i*2+1]; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4769 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4770 | // This word of the result is all undef, skip it. |
| 4771 | if (Elt0 < 0 && Elt1 < 0) |
| 4772 | continue; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4773 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4774 | // This word of the result is already in the correct place, skip it. |
| 4775 | if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1)) |
| 4776 | continue; |
| 4777 | if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17)) |
| 4778 | continue; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4779 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4780 | SDValue Elt0Src = Elt0 < 16 ? V1 : V2; |
| 4781 | SDValue Elt1Src = Elt1 < 16 ? V1 : V2; |
| 4782 | SDValue InsElt; |
Mon P Wang | 6b3ef69 | 2009-03-11 18:47:57 +0000 | [diff] [blame] | 4783 | |
| 4784 | // If Elt0 and Elt1 are defined, are consecutive, and can be load |
| 4785 | // using a single extract together, load it and store it. |
| 4786 | if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4787 | InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src, |
Mon P Wang | 6b3ef69 | 2009-03-11 18:47:57 +0000 | [diff] [blame] | 4788 | DAG.getIntPtrConstant(Elt1 / 2)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4789 | 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] | 4790 | DAG.getIntPtrConstant(i)); |
| 4791 | continue; |
| 4792 | } |
| 4793 | |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4794 | // 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] | 4795 | // source byte is not also odd, shift the extracted word left 8 bits |
| 4796 | // 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] | 4797 | if (Elt1 >= 0) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4798 | InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src, |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4799 | DAG.getIntPtrConstant(Elt1 / 2)); |
| 4800 | if ((Elt1 & 1) == 0) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4801 | InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt, |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4802 | DAG.getConstant(8, TLI.getShiftAmountTy())); |
Mon P Wang | 6b3ef69 | 2009-03-11 18:47:57 +0000 | [diff] [blame] | 4803 | else if (Elt0 >= 0) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4804 | InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt, |
| 4805 | DAG.getConstant(0xFF00, MVT::i16)); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4806 | } |
| 4807 | // If Elt0 is defined, extract it from the appropriate source. If the |
| 4808 | // source byte is not also even, shift the extracted word right 8 bits. If |
| 4809 | // Elt1 was also defined, OR the extracted values together before |
| 4810 | // inserting them in the result. |
| 4811 | if (Elt0 >= 0) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4812 | SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4813 | Elt0Src, DAG.getIntPtrConstant(Elt0 / 2)); |
| 4814 | if ((Elt0 & 1) != 0) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4815 | InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0, |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4816 | DAG.getConstant(8, TLI.getShiftAmountTy())); |
Mon P Wang | 6b3ef69 | 2009-03-11 18:47:57 +0000 | [diff] [blame] | 4817 | else if (Elt1 >= 0) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4818 | InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0, |
| 4819 | DAG.getConstant(0x00FF, MVT::i16)); |
| 4820 | InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0) |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4821 | : InsElt0; |
| 4822 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4823 | NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt, |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 4824 | DAG.getIntPtrConstant(i)); |
| 4825 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4826 | return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, NewV); |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4827 | } |
| 4828 | |
Evan Cheng | 7a831ce | 2007-12-15 03:00:47 +0000 | [diff] [blame] | 4829 | /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide |
Bruno Cardoso Lopes | 0a7dd4f | 2010-09-08 18:12:31 +0000 | [diff] [blame] | 4830 | /// 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] | 4831 | /// done when every pair / quad of shuffle mask elements point to elements in |
| 4832 | /// the right sequence. e.g. |
Bruno Cardoso Lopes | 0a7dd4f | 2010-09-08 18:12:31 +0000 | [diff] [blame] | 4833 | /// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15> |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4834 | static |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4835 | SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp, |
Bruno Cardoso Lopes | 90462b4 | 2010-09-07 21:03:14 +0000 | [diff] [blame] | 4836 | SelectionDAG &DAG, DebugLoc dl) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4837 | EVT VT = SVOp->getValueType(0); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4838 | SDValue V1 = SVOp->getOperand(0); |
| 4839 | SDValue V2 = SVOp->getOperand(1); |
| 4840 | unsigned NumElems = VT.getVectorNumElements(); |
Evan Cheng | 7a831ce | 2007-12-15 03:00:47 +0000 | [diff] [blame] | 4841 | unsigned NewWidth = (NumElems == 4) ? 2 : 4; |
Bruno Cardoso Lopes | 0a7dd4f | 2010-09-08 18:12:31 +0000 | [diff] [blame] | 4842 | EVT NewVT; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4843 | switch (VT.getSimpleVT().SimpleTy) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 4844 | default: assert(false && "Unexpected!"); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4845 | case MVT::v4f32: NewVT = MVT::v2f64; break; |
| 4846 | case MVT::v4i32: NewVT = MVT::v2i64; break; |
| 4847 | case MVT::v8i16: NewVT = MVT::v4i32; break; |
| 4848 | case MVT::v16i8: NewVT = MVT::v4i32; break; |
Evan Cheng | 7a831ce | 2007-12-15 03:00:47 +0000 | [diff] [blame] | 4849 | } |
| 4850 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4851 | int Scale = NumElems / NewWidth; |
| 4852 | SmallVector<int, 8> MaskVec; |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4853 | for (unsigned i = 0; i < NumElems; i += Scale) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4854 | int StartIdx = -1; |
| 4855 | for (int j = 0; j < Scale; ++j) { |
| 4856 | int EltIdx = SVOp->getMaskElt(i+j); |
| 4857 | if (EltIdx < 0) |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4858 | continue; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4859 | if (StartIdx == -1) |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4860 | StartIdx = EltIdx - (EltIdx % Scale); |
| 4861 | if (EltIdx != StartIdx + j) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4862 | return SDValue(); |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4863 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4864 | if (StartIdx == -1) |
| 4865 | MaskVec.push_back(-1); |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 4866 | else |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4867 | MaskVec.push_back(StartIdx / Scale); |
Evan Cheng | 8a86c3f | 2007-12-07 08:07:39 +0000 | [diff] [blame] | 4868 | } |
| 4869 | |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4870 | V1 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V1); |
| 4871 | V2 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V2); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4872 | return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]); |
Evan Cheng | 8a86c3f | 2007-12-07 08:07:39 +0000 | [diff] [blame] | 4873 | } |
| 4874 | |
Evan Cheng | d880b97 | 2008-05-09 21:53:03 +0000 | [diff] [blame] | 4875 | /// getVZextMovL - Return a zero-extending vector move low node. |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4876 | /// |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4877 | static SDValue getVZextMovL(EVT VT, EVT OpVT, |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4878 | SDValue SrcOp, SelectionDAG &DAG, |
| 4879 | const X86Subtarget *Subtarget, DebugLoc dl) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4880 | if (VT == MVT::v2f64 || VT == MVT::v4f32) { |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4881 | LoadSDNode *LD = NULL; |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4882 | if (!isScalarLoadToVector(SrcOp.getNode(), &LD)) |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4883 | LD = dyn_cast<LoadSDNode>(SrcOp); |
| 4884 | if (!LD) { |
| 4885 | // movssrr and movsdrr do not clear top bits. Try to use movd, movq |
| 4886 | // instead. |
Owen Anderson | 766b5ef | 2009-08-11 21:59:30 +0000 | [diff] [blame] | 4887 | MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32; |
Duncan Sands | cdfad36 | 2010-11-03 12:17:33 +0000 | [diff] [blame] | 4888 | if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) && |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4889 | SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR && |
| 4890 | SrcOp.getOperand(0).getOpcode() == ISD::BIT_CONVERT && |
Owen Anderson | 766b5ef | 2009-08-11 21:59:30 +0000 | [diff] [blame] | 4891 | SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) { |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4892 | // PR2108 |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4893 | OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32; |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4894 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, |
| 4895 | DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT, |
| 4896 | DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, |
| 4897 | OpVT, |
Gabor Greif | 327ef03 | 2008-08-28 23:19:51 +0000 | [diff] [blame] | 4898 | SrcOp.getOperand(0) |
| 4899 | .getOperand(0)))); |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4900 | } |
| 4901 | } |
| 4902 | } |
| 4903 | |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4904 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, |
| 4905 | DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4906 | DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 4907 | OpVT, SrcOp))); |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 4908 | } |
| 4909 | |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4910 | /// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of |
| 4911 | /// shuffles. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4912 | static SDValue |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4913 | LowerVECTOR_SHUFFLE_4wide(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) { |
| 4914 | SDValue V1 = SVOp->getOperand(0); |
| 4915 | SDValue V2 = SVOp->getOperand(1); |
| 4916 | DebugLoc dl = SVOp->getDebugLoc(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4917 | EVT VT = SVOp->getValueType(0); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4918 | |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4919 | SmallVector<std::pair<int, int>, 8> Locs; |
Rafael Espindola | 833a990 | 2008-08-28 18:32:53 +0000 | [diff] [blame] | 4920 | Locs.resize(4); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4921 | SmallVector<int, 8> Mask1(4U, -1); |
| 4922 | SmallVector<int, 8> PermMask; |
| 4923 | SVOp->getMask(PermMask); |
| 4924 | |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4925 | unsigned NumHi = 0; |
| 4926 | unsigned NumLo = 0; |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4927 | for (unsigned i = 0; i != 4; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4928 | int Idx = PermMask[i]; |
| 4929 | if (Idx < 0) { |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4930 | Locs[i] = std::make_pair(-1, -1); |
| 4931 | } else { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4932 | assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!"); |
| 4933 | if (Idx < 4) { |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4934 | Locs[i] = std::make_pair(0, NumLo); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4935 | Mask1[NumLo] = Idx; |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4936 | NumLo++; |
| 4937 | } else { |
| 4938 | Locs[i] = std::make_pair(1, NumHi); |
| 4939 | if (2+NumHi < 4) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4940 | Mask1[2+NumHi] = Idx; |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4941 | NumHi++; |
| 4942 | } |
| 4943 | } |
| 4944 | } |
Evan Cheng | 5e6ebaf | 2008-07-23 00:22:17 +0000 | [diff] [blame] | 4945 | |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4946 | if (NumLo <= 2 && NumHi <= 2) { |
Evan Cheng | 5e6ebaf | 2008-07-23 00:22:17 +0000 | [diff] [blame] | 4947 | // If no more than two elements come from either vector. This can be |
| 4948 | // implemented with two shuffles. First shuffle gather the elements. |
| 4949 | // The second shuffle, which takes the first shuffle as both of its |
| 4950 | // vector operands, put the elements into the right order. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4951 | V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]); |
Evan Cheng | 5e6ebaf | 2008-07-23 00:22:17 +0000 | [diff] [blame] | 4952 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4953 | SmallVector<int, 8> Mask2(4U, -1); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 4954 | |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4955 | for (unsigned i = 0; i != 4; ++i) { |
| 4956 | if (Locs[i].first == -1) |
| 4957 | continue; |
| 4958 | else { |
| 4959 | unsigned Idx = (i < 2) ? 0 : 4; |
| 4960 | Idx += Locs[i].first * 2 + Locs[i].second; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4961 | Mask2[i] = Idx; |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 4962 | } |
| 4963 | } |
| 4964 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4965 | return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]); |
Evan Cheng | 5e6ebaf | 2008-07-23 00:22:17 +0000 | [diff] [blame] | 4966 | } else if (NumLo == 3 || NumHi == 3) { |
| 4967 | // Otherwise, we must have three elements from one vector, call it X, and |
| 4968 | // one element from the other, call it Y. First, use a shufps to build an |
| 4969 | // intermediate vector with the one element from Y and the element from X |
| 4970 | // that will be in the same half in the final destination (the indexes don't |
| 4971 | // matter). Then, use a shufps to build the final vector, taking the half |
| 4972 | // containing the element from Y from the intermediate, and the other half |
| 4973 | // from X. |
| 4974 | if (NumHi == 3) { |
| 4975 | // Normalize it so the 3 elements come from V1. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4976 | CommuteVectorShuffleMask(PermMask, VT); |
Evan Cheng | 5e6ebaf | 2008-07-23 00:22:17 +0000 | [diff] [blame] | 4977 | std::swap(V1, V2); |
| 4978 | } |
| 4979 | |
| 4980 | // Find the element from V2. |
| 4981 | unsigned HiIndex; |
| 4982 | for (HiIndex = 0; HiIndex < 3; ++HiIndex) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4983 | int Val = PermMask[HiIndex]; |
| 4984 | if (Val < 0) |
Evan Cheng | 5e6ebaf | 2008-07-23 00:22:17 +0000 | [diff] [blame] | 4985 | continue; |
Evan Cheng | 5e6ebaf | 2008-07-23 00:22:17 +0000 | [diff] [blame] | 4986 | if (Val >= 4) |
| 4987 | break; |
| 4988 | } |
| 4989 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4990 | Mask1[0] = PermMask[HiIndex]; |
| 4991 | Mask1[1] = -1; |
| 4992 | Mask1[2] = PermMask[HiIndex^1]; |
| 4993 | Mask1[3] = -1; |
| 4994 | V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]); |
Evan Cheng | 5e6ebaf | 2008-07-23 00:22:17 +0000 | [diff] [blame] | 4995 | |
| 4996 | if (HiIndex >= 2) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 4997 | Mask1[0] = PermMask[0]; |
| 4998 | Mask1[1] = PermMask[1]; |
| 4999 | Mask1[2] = HiIndex & 1 ? 6 : 4; |
| 5000 | Mask1[3] = HiIndex & 1 ? 4 : 6; |
| 5001 | return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]); |
Evan Cheng | 5e6ebaf | 2008-07-23 00:22:17 +0000 | [diff] [blame] | 5002 | } else { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5003 | Mask1[0] = HiIndex & 1 ? 2 : 0; |
| 5004 | Mask1[1] = HiIndex & 1 ? 0 : 2; |
| 5005 | Mask1[2] = PermMask[2]; |
| 5006 | Mask1[3] = PermMask[3]; |
| 5007 | if (Mask1[2] >= 0) |
| 5008 | Mask1[2] += 4; |
| 5009 | if (Mask1[3] >= 0) |
| 5010 | Mask1[3] += 4; |
| 5011 | return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]); |
Evan Cheng | 5e6ebaf | 2008-07-23 00:22:17 +0000 | [diff] [blame] | 5012 | } |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 5013 | } |
| 5014 | |
| 5015 | // Break it into (shuffle shuffle_hi, shuffle_lo). |
| 5016 | Locs.clear(); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5017 | SmallVector<int,8> LoMask(4U, -1); |
| 5018 | SmallVector<int,8> HiMask(4U, -1); |
| 5019 | |
| 5020 | SmallVector<int,8> *MaskPtr = &LoMask; |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 5021 | unsigned MaskIdx = 0; |
| 5022 | unsigned LoIdx = 0; |
| 5023 | unsigned HiIdx = 2; |
| 5024 | for (unsigned i = 0; i != 4; ++i) { |
| 5025 | if (i == 2) { |
| 5026 | MaskPtr = &HiMask; |
| 5027 | MaskIdx = 1; |
| 5028 | LoIdx = 0; |
| 5029 | HiIdx = 2; |
| 5030 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5031 | int Idx = PermMask[i]; |
| 5032 | if (Idx < 0) { |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 5033 | Locs[i] = std::make_pair(-1, -1); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5034 | } else if (Idx < 4) { |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 5035 | Locs[i] = std::make_pair(MaskIdx, LoIdx); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5036 | (*MaskPtr)[LoIdx] = Idx; |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 5037 | LoIdx++; |
| 5038 | } else { |
| 5039 | Locs[i] = std::make_pair(MaskIdx, HiIdx); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5040 | (*MaskPtr)[HiIdx] = Idx; |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 5041 | HiIdx++; |
| 5042 | } |
| 5043 | } |
| 5044 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5045 | SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]); |
| 5046 | SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]); |
| 5047 | SmallVector<int, 8> MaskOps; |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 5048 | for (unsigned i = 0; i != 4; ++i) { |
| 5049 | if (Locs[i].first == -1) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5050 | MaskOps.push_back(-1); |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 5051 | } else { |
| 5052 | unsigned Idx = Locs[i].first * 4 + Locs[i].second; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5053 | MaskOps.push_back(Idx); |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 5054 | } |
| 5055 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5056 | return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]); |
Evan Cheng | ace3c17 | 2008-07-22 21:13:36 +0000 | [diff] [blame] | 5057 | } |
| 5058 | |
Bruno Cardoso Lopes | 2a44606 | 2010-09-03 20:20:02 +0000 | [diff] [blame] | 5059 | static bool MayFoldVectorLoad(SDValue V) { |
| 5060 | if (V.hasOneUse() && V.getOpcode() == ISD::BIT_CONVERT) |
| 5061 | V = V.getOperand(0); |
| 5062 | if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR) |
| 5063 | V = V.getOperand(0); |
| 5064 | if (MayFoldLoad(V)) |
| 5065 | return true; |
| 5066 | return false; |
| 5067 | } |
| 5068 | |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 5069 | // FIXME: the version above should always be used. Since there's |
| 5070 | // a bug where several vector shuffles can't be folded because the |
| 5071 | // DAG is not updated during lowering and a node claims to have two |
| 5072 | // uses while it only has one, use this version, and let isel match |
| 5073 | // another instruction if the load really happens to have more than |
| 5074 | // one use. Remove this version after this bug get fixed. |
Evan Cheng | 835580f | 2010-10-07 20:50:20 +0000 | [diff] [blame] | 5075 | // rdar://8434668, PR8156 |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 5076 | static bool RelaxedMayFoldVectorLoad(SDValue V) { |
| 5077 | if (V.hasOneUse() && V.getOpcode() == ISD::BIT_CONVERT) |
| 5078 | V = V.getOperand(0); |
| 5079 | if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR) |
| 5080 | V = V.getOperand(0); |
| 5081 | if (ISD::isNormalLoad(V.getNode())) |
| 5082 | return true; |
| 5083 | return false; |
| 5084 | } |
| 5085 | |
| 5086 | /// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by |
| 5087 | /// a vector extract, and if both can be later optimized into a single load. |
| 5088 | /// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked |
| 5089 | /// here because otherwise a target specific shuffle node is going to be |
| 5090 | /// emitted for this shuffle, and the optimization not done. |
| 5091 | /// FIXME: This is probably not the best approach, but fix the problem |
| 5092 | /// until the right path is decided. |
| 5093 | static |
| 5094 | bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG, |
| 5095 | const TargetLowering &TLI) { |
| 5096 | EVT VT = V.getValueType(); |
| 5097 | ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V); |
| 5098 | |
| 5099 | // Be sure that the vector shuffle is present in a pattern like this: |
| 5100 | // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr) |
| 5101 | if (!V.hasOneUse()) |
| 5102 | return false; |
| 5103 | |
| 5104 | SDNode *N = *V.getNode()->use_begin(); |
| 5105 | if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT) |
| 5106 | return false; |
| 5107 | |
| 5108 | SDValue EltNo = N->getOperand(1); |
| 5109 | if (!isa<ConstantSDNode>(EltNo)) |
| 5110 | return false; |
| 5111 | |
| 5112 | // If the bit convert changed the number of elements, it is unsafe |
| 5113 | // to examine the mask. |
| 5114 | bool HasShuffleIntoBitcast = false; |
| 5115 | if (V.getOpcode() == ISD::BIT_CONVERT) { |
| 5116 | EVT SrcVT = V.getOperand(0).getValueType(); |
| 5117 | if (SrcVT.getVectorNumElements() != VT.getVectorNumElements()) |
| 5118 | return false; |
| 5119 | V = V.getOperand(0); |
| 5120 | HasShuffleIntoBitcast = true; |
| 5121 | } |
| 5122 | |
| 5123 | // Select the input vector, guarding against out of range extract vector. |
| 5124 | unsigned NumElems = VT.getVectorNumElements(); |
| 5125 | unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue(); |
| 5126 | int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt); |
| 5127 | V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1); |
| 5128 | |
| 5129 | // Skip one more bit_convert if necessary |
| 5130 | if (V.getOpcode() == ISD::BIT_CONVERT) |
| 5131 | V = V.getOperand(0); |
| 5132 | |
| 5133 | if (ISD::isNormalLoad(V.getNode())) { |
| 5134 | // Is the original load suitable? |
| 5135 | LoadSDNode *LN0 = cast<LoadSDNode>(V); |
| 5136 | |
| 5137 | // FIXME: avoid the multi-use bug that is preventing lots of |
| 5138 | // of foldings to be detected, this is still wrong of course, but |
| 5139 | // give the temporary desired behavior, and if it happens that |
| 5140 | // the load has real more uses, during isel it will not fold, and |
| 5141 | // will generate poor code. |
| 5142 | if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse() |
| 5143 | return false; |
| 5144 | |
| 5145 | if (!HasShuffleIntoBitcast) |
| 5146 | return true; |
| 5147 | |
| 5148 | // If there's a bitcast before the shuffle, check if the load type and |
| 5149 | // alignment is valid. |
| 5150 | unsigned Align = LN0->getAlignment(); |
| 5151 | unsigned NewAlign = |
| 5152 | TLI.getTargetData()->getABITypeAlignment( |
| 5153 | VT.getTypeForEVT(*DAG.getContext())); |
| 5154 | |
| 5155 | if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT)) |
| 5156 | return false; |
| 5157 | } |
| 5158 | |
| 5159 | return true; |
| 5160 | } |
| 5161 | |
Bruno Cardoso Lopes | f2db5b4 | 2010-08-31 21:15:21 +0000 | [diff] [blame] | 5162 | static |
Evan Cheng | 835580f | 2010-10-07 20:50:20 +0000 | [diff] [blame] | 5163 | SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) { |
| 5164 | EVT VT = Op.getValueType(); |
| 5165 | |
| 5166 | // Canonizalize to v2f64. |
| 5167 | V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, V1); |
| 5168 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, |
| 5169 | getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64, |
| 5170 | V1, DAG)); |
| 5171 | } |
| 5172 | |
| 5173 | static |
Bruno Cardoso Lopes | f2db5b4 | 2010-08-31 21:15:21 +0000 | [diff] [blame] | 5174 | SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, |
| 5175 | bool HasSSE2) { |
| 5176 | SDValue V1 = Op.getOperand(0); |
| 5177 | SDValue V2 = Op.getOperand(1); |
| 5178 | EVT VT = Op.getValueType(); |
| 5179 | |
| 5180 | assert(VT != MVT::v2i64 && "unsupported shuffle type"); |
| 5181 | |
| 5182 | if (HasSSE2 && VT == MVT::v2f64) |
| 5183 | return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG); |
| 5184 | |
| 5185 | // v4f32 or v4i32 |
| 5186 | return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG); |
| 5187 | } |
| 5188 | |
Bruno Cardoso Lopes | 7ff30bb | 2010-08-31 21:38:49 +0000 | [diff] [blame] | 5189 | static |
| 5190 | SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) { |
| 5191 | SDValue V1 = Op.getOperand(0); |
| 5192 | SDValue V2 = Op.getOperand(1); |
| 5193 | EVT VT = Op.getValueType(); |
| 5194 | |
| 5195 | assert((VT == MVT::v4i32 || VT == MVT::v4f32) && |
| 5196 | "unsupported shuffle type"); |
| 5197 | |
| 5198 | if (V2.getOpcode() == ISD::UNDEF) |
| 5199 | V2 = V1; |
| 5200 | |
| 5201 | // v4i32 or v4f32 |
| 5202 | return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG); |
| 5203 | } |
| 5204 | |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 5205 | static |
| 5206 | SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) { |
| 5207 | SDValue V1 = Op.getOperand(0); |
| 5208 | SDValue V2 = Op.getOperand(1); |
| 5209 | EVT VT = Op.getValueType(); |
| 5210 | unsigned NumElems = VT.getVectorNumElements(); |
| 5211 | |
| 5212 | // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second |
| 5213 | // operand of these instructions is only memory, so check if there's a |
| 5214 | // potencial load folding here, otherwise use SHUFPS or MOVSD to match the |
| 5215 | // same masks. |
| 5216 | bool CanFoldLoad = false; |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 5217 | |
Bruno Cardoso Lopes | d00bfe1 | 2010-09-02 02:35:51 +0000 | [diff] [blame] | 5218 | // Trivial case, when V2 comes from a load. |
Bruno Cardoso Lopes | 2a44606 | 2010-09-03 20:20:02 +0000 | [diff] [blame] | 5219 | if (MayFoldVectorLoad(V2)) |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 5220 | CanFoldLoad = true; |
| 5221 | |
| 5222 | // When V1 is a load, it can be folded later into a store in isel, example: |
| 5223 | // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1) |
| 5224 | // turns into: |
| 5225 | // (MOVLPSmr addr:$src1, VR128:$src2) |
| 5226 | // So, recognize this potential and also use MOVLPS or MOVLPD |
Bruno Cardoso Lopes | 2a44606 | 2010-09-03 20:20:02 +0000 | [diff] [blame] | 5227 | if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op)) |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 5228 | CanFoldLoad = true; |
| 5229 | |
| 5230 | if (CanFoldLoad) { |
| 5231 | if (HasSSE2 && NumElems == 2) |
| 5232 | return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG); |
| 5233 | |
| 5234 | if (NumElems == 4) |
| 5235 | return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG); |
| 5236 | } |
| 5237 | |
| 5238 | ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op); |
| 5239 | // movl and movlp will both match v2i64, but v2i64 is never matched by |
| 5240 | // movl earlier because we make it strict to avoid messing with the movlp load |
| 5241 | // folding logic (see the code above getMOVLP call). Match it here then, |
| 5242 | // this is horrible, but will stay like this until we move all shuffle |
| 5243 | // matching to x86 specific nodes. Note that for the 1st condition all |
| 5244 | // types are matched with movsd. |
| 5245 | if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp)) |
| 5246 | return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG); |
| 5247 | else if (HasSSE2) |
| 5248 | return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG); |
| 5249 | |
| 5250 | |
| 5251 | assert(VT != MVT::v4i32 && "unsupported shuffle type"); |
| 5252 | |
| 5253 | // Invert the operand order and use SHUFPS to match it. |
| 5254 | return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1, |
| 5255 | X86::getShuffleSHUFImmediate(SVOp), DAG); |
| 5256 | } |
| 5257 | |
Bruno Cardoso Lopes | be8b084 | 2010-09-03 20:10:35 +0000 | [diff] [blame] | 5258 | static inline unsigned getUNPCKLOpcode(EVT VT) { |
| 5259 | switch(VT.getSimpleVT().SimpleTy) { |
| 5260 | case MVT::v4i32: return X86ISD::PUNPCKLDQ; |
| 5261 | case MVT::v2i64: return X86ISD::PUNPCKLQDQ; |
| 5262 | case MVT::v4f32: return X86ISD::UNPCKLPS; |
| 5263 | case MVT::v2f64: return X86ISD::UNPCKLPD; |
| 5264 | case MVT::v16i8: return X86ISD::PUNPCKLBW; |
| 5265 | case MVT::v8i16: return X86ISD::PUNPCKLWD; |
| 5266 | default: |
| 5267 | llvm_unreachable("Unknow type for unpckl"); |
| 5268 | } |
| 5269 | return 0; |
| 5270 | } |
| 5271 | |
| 5272 | static inline unsigned getUNPCKHOpcode(EVT VT) { |
| 5273 | switch(VT.getSimpleVT().SimpleTy) { |
| 5274 | case MVT::v4i32: return X86ISD::PUNPCKHDQ; |
| 5275 | case MVT::v2i64: return X86ISD::PUNPCKHQDQ; |
| 5276 | case MVT::v4f32: return X86ISD::UNPCKHPS; |
| 5277 | case MVT::v2f64: return X86ISD::UNPCKHPD; |
| 5278 | case MVT::v16i8: return X86ISD::PUNPCKHBW; |
| 5279 | case MVT::v8i16: return X86ISD::PUNPCKHWD; |
| 5280 | default: |
| 5281 | llvm_unreachable("Unknow type for unpckh"); |
| 5282 | } |
| 5283 | return 0; |
| 5284 | } |
| 5285 | |
Bruno Cardoso Lopes | 90462b4 | 2010-09-07 21:03:14 +0000 | [diff] [blame] | 5286 | static |
| 5287 | SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG, |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 5288 | const TargetLowering &TLI, |
Bruno Cardoso Lopes | 90462b4 | 2010-09-07 21:03:14 +0000 | [diff] [blame] | 5289 | const X86Subtarget *Subtarget) { |
| 5290 | ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op); |
| 5291 | EVT VT = Op.getValueType(); |
| 5292 | DebugLoc dl = Op.getDebugLoc(); |
| 5293 | SDValue V1 = Op.getOperand(0); |
| 5294 | SDValue V2 = Op.getOperand(1); |
| 5295 | |
| 5296 | if (isZeroShuffle(SVOp)) |
| 5297 | return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl); |
| 5298 | |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 5299 | // Handle splat operations |
| 5300 | if (SVOp->isSplat()) { |
| 5301 | // Special case, this is the only place now where it's |
| 5302 | // allowed to return a vector_shuffle operation without |
| 5303 | // using a target specific node, because *hopefully* it |
| 5304 | // will be optimized away by the dag combiner. |
| 5305 | if (VT.getVectorNumElements() <= 4 && |
| 5306 | CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI)) |
| 5307 | return Op; |
| 5308 | |
| 5309 | // Handle splats by matching through known masks |
| 5310 | if (VT.getVectorNumElements() <= 4) |
| 5311 | return SDValue(); |
| 5312 | |
Evan Cheng | 835580f | 2010-10-07 20:50:20 +0000 | [diff] [blame] | 5313 | // Canonicalize all of the remaining to v4f32. |
Bruno Cardoso Lopes | 90462b4 | 2010-09-07 21:03:14 +0000 | [diff] [blame] | 5314 | return PromoteSplat(SVOp, DAG); |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 5315 | } |
Bruno Cardoso Lopes | 90462b4 | 2010-09-07 21:03:14 +0000 | [diff] [blame] | 5316 | |
| 5317 | // If the shuffle can be profitably rewritten as a narrower shuffle, then |
| 5318 | // do it! |
| 5319 | if (VT == MVT::v8i16 || VT == MVT::v16i8) { |
| 5320 | SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl); |
| 5321 | if (NewOp.getNode()) |
| 5322 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, NewOp); |
| 5323 | } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) { |
| 5324 | // FIXME: Figure out a cleaner way to do this. |
| 5325 | // Try to make use of movq to zero out the top part. |
| 5326 | if (ISD::isBuildVectorAllZeros(V2.getNode())) { |
| 5327 | SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl); |
| 5328 | if (NewOp.getNode()) { |
| 5329 | if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false)) |
| 5330 | return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0), |
| 5331 | DAG, Subtarget, dl); |
| 5332 | } |
| 5333 | } else if (ISD::isBuildVectorAllZeros(V1.getNode())) { |
| 5334 | SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl); |
| 5335 | if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp))) |
| 5336 | return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1), |
| 5337 | DAG, Subtarget, dl); |
| 5338 | } |
| 5339 | } |
| 5340 | return SDValue(); |
| 5341 | } |
| 5342 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5343 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 5344 | X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5345 | ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5346 | SDValue V1 = Op.getOperand(0); |
| 5347 | SDValue V2 = Op.getOperand(1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5348 | EVT VT = Op.getValueType(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 5349 | DebugLoc dl = Op.getDebugLoc(); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5350 | unsigned NumElems = VT.getVectorNumElements(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5351 | bool isMMX = VT.getSizeInBits() == 64; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5352 | bool V1IsUndef = V1.getOpcode() == ISD::UNDEF; |
| 5353 | bool V2IsUndef = V2.getOpcode() == ISD::UNDEF; |
Evan Cheng | d9b8e40 | 2006-10-16 06:36:00 +0000 | [diff] [blame] | 5354 | bool V1IsSplat = false; |
| 5355 | bool V2IsSplat = false; |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 5356 | bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX(); |
Bruno Cardoso Lopes | 5023ef2 | 2010-08-31 22:22:11 +0000 | [diff] [blame] | 5357 | bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX(); |
Bruno Cardoso Lopes | aace0f2 | 2010-09-04 02:36:07 +0000 | [diff] [blame] | 5358 | bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX(); |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 5359 | MachineFunction &MF = DAG.getMachineFunction(); |
| 5360 | bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5361 | |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5362 | // Shuffle operations on MMX not supported. |
| 5363 | if (isMMX) |
Bruno Cardoso Lopes | 58277b1 | 2010-09-07 18:41:45 +0000 | [diff] [blame] | 5364 | return Op; |
| 5365 | |
Bruno Cardoso Lopes | 90462b4 | 2010-09-07 21:03:14 +0000 | [diff] [blame] | 5366 | // Vector shuffle lowering takes 3 steps: |
| 5367 | // |
| 5368 | // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable |
| 5369 | // narrowing and commutation of operands should be handled. |
| 5370 | // 2) Matching of shuffles with known shuffle masks to x86 target specific |
| 5371 | // shuffle nodes. |
| 5372 | // 3) Rewriting of unmatched masks into new generic shuffle operations, |
| 5373 | // so the shuffle can be broken into other shuffles and the legalizer can |
| 5374 | // try the lowering again. |
| 5375 | // |
| 5376 | // The general ideia is that no vector_shuffle operation should be left to |
| 5377 | // be matched during isel, all of them must be converted to a target specific |
| 5378 | // node here. |
Bruno Cardoso Lopes | 0d1340b | 2010-09-07 20:20:27 +0000 | [diff] [blame] | 5379 | |
Bruno Cardoso Lopes | 90462b4 | 2010-09-07 21:03:14 +0000 | [diff] [blame] | 5380 | // Normalize the input vectors. Here splats, zeroed vectors, profitable |
| 5381 | // narrowing and commutation of operands should be handled. The actual code |
| 5382 | // doesn't include all of those, work in progress... |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 5383 | SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget); |
Bruno Cardoso Lopes | 90462b4 | 2010-09-07 21:03:14 +0000 | [diff] [blame] | 5384 | if (NewOp.getNode()) |
| 5385 | return NewOp; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5386 | |
Bruno Cardoso Lopes | a22c845 | 2010-09-04 00:39:43 +0000 | [diff] [blame] | 5387 | // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and |
| 5388 | // unpckh_undef). Only use pshufd if speed is more important than size. |
| 5389 | if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp)) |
| 5390 | if (VT != MVT::v2i64 && VT != MVT::v2f64) |
| 5391 | return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG); |
| 5392 | if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp)) |
| 5393 | if (VT != MVT::v2i64 && VT != MVT::v2f64) |
| 5394 | return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG); |
Bruno Cardoso Lopes | 3722f00 | 2010-09-02 05:23:12 +0000 | [diff] [blame] | 5395 | |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 5396 | if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef && |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5397 | RelaxedMayFoldVectorLoad(V1)) |
Evan Cheng | 835580f | 2010-10-07 20:50:20 +0000 | [diff] [blame] | 5398 | return getMOVDDup(Op, dl, V1, DAG); |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 5399 | |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5400 | if (X86::isMOVHLPS_v_undef_Mask(SVOp)) |
Bruno Cardoso Lopes | 1485cc2 | 2010-09-08 17:43:25 +0000 | [diff] [blame] | 5401 | return getMOVHighToLow(Op, dl, DAG); |
| 5402 | |
| 5403 | // Use to match splats |
| 5404 | if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef && |
| 5405 | (VT == MVT::v2f64 || VT == MVT::v2i64)) |
| 5406 | return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG); |
| 5407 | |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 5408 | if (X86::isPSHUFDMask(SVOp)) { |
| 5409 | // The actual implementation will match the mask in the if above and then |
| 5410 | // during isel it can match several different instructions, not only pshufd |
| 5411 | // as its name says, sad but true, emulate the behavior for now... |
| 5412 | if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64))) |
| 5413 | return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG); |
| 5414 | |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 5415 | unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp); |
| 5416 | |
Bruno Cardoso Lopes | 4783a3e | 2010-09-01 22:59:03 +0000 | [diff] [blame] | 5417 | if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32)) |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 5418 | return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG); |
| 5419 | |
Bruno Cardoso Lopes | 4783a3e | 2010-09-01 22:59:03 +0000 | [diff] [blame] | 5420 | if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64)) |
Bruno Cardoso Lopes | 7338bbd | 2010-08-25 02:35:37 +0000 | [diff] [blame] | 5421 | return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1, |
| 5422 | TargetMask, DAG); |
| 5423 | |
| 5424 | if (VT == MVT::v4f32) |
| 5425 | return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1, |
| 5426 | TargetMask, DAG); |
| 5427 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5428 | |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 5429 | // Check if this can be converted into a logical shift. |
| 5430 | bool isLeft = false; |
| 5431 | unsigned ShAmt = 0; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5432 | SDValue ShVal; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5433 | bool isShift = getSubtarget()->hasSSE2() && |
Evan Cheng | c363094 | 2009-12-09 21:00:30 +0000 | [diff] [blame] | 5434 | isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt); |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 5435 | if (isShift && ShVal.hasOneUse()) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5436 | // 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] | 5437 | // v_set0 + movlhps or movhlps, etc. |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5438 | EVT EltVT = VT.getVectorElementType(); |
| 5439 | ShAmt *= EltVT.getSizeInBits(); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5440 | return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl); |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 5441 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5442 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5443 | if (X86::isMOVLMask(SVOp)) { |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 5444 | if (V1IsUndef) |
| 5445 | return V2; |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5446 | if (ISD::isBuildVectorAllZeros(V1.getNode())) |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5447 | return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl); |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5448 | if (!X86::isMOVLPMask(SVOp)) { |
Bruno Cardoso Lopes | 4783a3e | 2010-09-01 22:59:03 +0000 | [diff] [blame] | 5449 | if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64)) |
Bruno Cardoso Lopes | 20a07f4 | 2010-08-31 02:26:40 +0000 | [diff] [blame] | 5450 | return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG); |
| 5451 | |
Bruno Cardoso Lopes | 4783a3e | 2010-09-01 22:59:03 +0000 | [diff] [blame] | 5452 | if (VT == MVT::v4i32 || VT == MVT::v4f32) |
Bruno Cardoso Lopes | 20a07f4 | 2010-08-31 02:26:40 +0000 | [diff] [blame] | 5453 | return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG); |
| 5454 | } |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 5455 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5456 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5457 | // FIXME: fold these into legal mask. |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5458 | if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp)) |
| 5459 | return getMOVLowToHigh(Op, dl, DAG, HasSSE2); |
Bruno Cardoso Lopes | f2db5b4 | 2010-08-31 21:15:21 +0000 | [diff] [blame] | 5460 | |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5461 | if (X86::isMOVHLPSMask(SVOp)) |
| 5462 | return getMOVHighToLow(Op, dl, DAG); |
Bruno Cardoso Lopes | 7ff30bb | 2010-08-31 21:38:49 +0000 | [diff] [blame] | 5463 | |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5464 | if (X86::isMOVSHDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4) |
| 5465 | return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG); |
Bruno Cardoso Lopes | 5023ef2 | 2010-08-31 22:22:11 +0000 | [diff] [blame] | 5466 | |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5467 | if (X86::isMOVSLDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4) |
| 5468 | return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG); |
Bruno Cardoso Lopes | 013bb3d | 2010-08-31 22:35:05 +0000 | [diff] [blame] | 5469 | |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5470 | if (X86::isMOVLPMask(SVOp)) |
| 5471 | return getMOVLP(Op, dl, DAG, HasSSE2); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5472 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5473 | if (ShouldXformToMOVHLPS(SVOp) || |
| 5474 | ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp)) |
| 5475 | return CommuteVectorShuffle(SVOp, DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5476 | |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 5477 | if (isShift) { |
| 5478 | // No better options. Use a vshl / vsrl. |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5479 | EVT EltVT = VT.getVectorElementType(); |
| 5480 | ShAmt *= EltVT.getSizeInBits(); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5481 | return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl); |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 5482 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5483 | |
Evan Cheng | 9eca5e8 | 2006-10-25 21:49:50 +0000 | [diff] [blame] | 5484 | bool Commuted = false; |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 5485 | // FIXME: This should also accept a bitcast of a splat? Be careful, not |
| 5486 | // 1,1,1,1 -> v8i16 though. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5487 | V1IsSplat = isSplatVector(V1.getNode()); |
| 5488 | V2IsSplat = isSplatVector(V2.getNode()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5489 | |
Chris Lattner | 8a59448 | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 5490 | // Canonicalize the splat or undef, if present, to be on the RHS. |
Evan Cheng | 9bbbb98 | 2006-10-25 20:48:19 +0000 | [diff] [blame] | 5491 | if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5492 | Op = CommuteVectorShuffle(SVOp, DAG); |
| 5493 | SVOp = cast<ShuffleVectorSDNode>(Op); |
| 5494 | V1 = SVOp->getOperand(0); |
| 5495 | V2 = SVOp->getOperand(1); |
Evan Cheng | 9bbbb98 | 2006-10-25 20:48:19 +0000 | [diff] [blame] | 5496 | std::swap(V1IsSplat, V2IsSplat); |
| 5497 | std::swap(V1IsUndef, V2IsUndef); |
Evan Cheng | 9eca5e8 | 2006-10-25 21:49:50 +0000 | [diff] [blame] | 5498 | Commuted = true; |
Evan Cheng | 9bbbb98 | 2006-10-25 20:48:19 +0000 | [diff] [blame] | 5499 | } |
| 5500 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5501 | if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) { |
| 5502 | // Shuffling low element of v1 into undef, just return v1. |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5503 | if (V2IsUndef) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5504 | return V1; |
| 5505 | // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which |
| 5506 | // the instruction selector will not match, so get a canonical MOVL with |
| 5507 | // swapped operands to undo the commute. |
| 5508 | return getMOVL(DAG, dl, VT, V2, V1); |
Evan Cheng | d9b8e40 | 2006-10-16 06:36:00 +0000 | [diff] [blame] | 5509 | } |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5510 | |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 5511 | if (X86::isUNPCKLMask(SVOp)) |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5512 | return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG); |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 5513 | |
| 5514 | if (X86::isUNPCKHMask(SVOp)) |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5515 | return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG); |
Evan Cheng | e111303 | 2006-10-04 18:33:38 +0000 | [diff] [blame] | 5516 | |
Evan Cheng | 9bbbb98 | 2006-10-25 20:48:19 +0000 | [diff] [blame] | 5517 | if (V2IsSplat) { |
| 5518 | // 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] | 5519 | // 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] | 5520 | // new vector_shuffle with the corrected mask. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5521 | SDValue NewMask = NormalizeMask(SVOp, DAG); |
| 5522 | ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask); |
| 5523 | if (NSVOp != SVOp) { |
| 5524 | if (X86::isUNPCKLMask(NSVOp, true)) { |
| 5525 | return NewMask; |
| 5526 | } else if (X86::isUNPCKHMask(NSVOp, true)) { |
| 5527 | return NewMask; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5528 | } |
| 5529 | } |
| 5530 | } |
| 5531 | |
Evan Cheng | 9eca5e8 | 2006-10-25 21:49:50 +0000 | [diff] [blame] | 5532 | if (Commuted) { |
| 5533 | // Commute is back and try unpck* again. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5534 | // FIXME: this seems wrong. |
| 5535 | SDValue NewOp = CommuteVectorShuffle(SVOp, DAG); |
| 5536 | ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp); |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 5537 | |
| 5538 | if (X86::isUNPCKLMask(NewSVOp)) |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5539 | return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG); |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 5540 | |
| 5541 | if (X86::isUNPCKHMask(NewSVOp)) |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5542 | return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG); |
Evan Cheng | 9eca5e8 | 2006-10-25 21:49:50 +0000 | [diff] [blame] | 5543 | } |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5544 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5545 | // Normalize the node to match x86 shuffle ops if needed |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5546 | if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp)) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5547 | return CommuteVectorShuffle(SVOp, DAG); |
| 5548 | |
Bruno Cardoso Lopes | 7256e22 | 2010-09-03 23:24:06 +0000 | [diff] [blame] | 5549 | // The checks below are all present in isShuffleMaskLegal, but they are |
| 5550 | // inlined here right now to enable us to directly emit target specific |
| 5551 | // nodes, and remove one by one until they don't return Op anymore. |
| 5552 | SmallVector<int, 16> M; |
| 5553 | SVOp->getMask(M); |
| 5554 | |
Bruno Cardoso Lopes | aace0f2 | 2010-09-04 02:36:07 +0000 | [diff] [blame] | 5555 | if (isPALIGNRMask(M, VT, HasSSSE3)) |
| 5556 | return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2, |
| 5557 | X86::getShufflePALIGNRImmediate(SVOp), |
| 5558 | DAG); |
| 5559 | |
Bruno Cardoso Lopes | c800c0d | 2010-09-04 02:02:14 +0000 | [diff] [blame] | 5560 | if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) && |
| 5561 | SVOp->getSplatIndex() == 0 && V2IsUndef) { |
| 5562 | if (VT == MVT::v2f64) |
| 5563 | return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG); |
| 5564 | if (VT == MVT::v2i64) |
| 5565 | return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG); |
| 5566 | } |
| 5567 | |
Bruno Cardoso Lopes | bbfc310 | 2010-09-04 01:36:45 +0000 | [diff] [blame] | 5568 | if (isPSHUFHWMask(M, VT)) |
| 5569 | return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1, |
| 5570 | X86::getShufflePSHUFHWImmediate(SVOp), |
| 5571 | DAG); |
| 5572 | |
| 5573 | if (isPSHUFLWMask(M, VT)) |
| 5574 | return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1, |
| 5575 | X86::getShufflePSHUFLWImmediate(SVOp), |
| 5576 | DAG); |
| 5577 | |
Bruno Cardoso Lopes | 4c827f5 | 2010-09-04 01:22:57 +0000 | [diff] [blame] | 5578 | if (isSHUFPMask(M, VT)) { |
| 5579 | unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp); |
| 5580 | if (VT == MVT::v4f32 || VT == MVT::v4i32) |
| 5581 | return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2, |
| 5582 | TargetMask, DAG); |
| 5583 | if (VT == MVT::v2f64 || VT == MVT::v2i64) |
| 5584 | return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2, |
| 5585 | TargetMask, DAG); |
| 5586 | } |
| 5587 | |
Bruno Cardoso Lopes | a22c845 | 2010-09-04 00:39:43 +0000 | [diff] [blame] | 5588 | if (X86::isUNPCKL_v_undef_Mask(SVOp)) |
| 5589 | if (VT != MVT::v2i64 && VT != MVT::v2f64) |
| 5590 | return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG); |
| 5591 | if (X86::isUNPCKH_v_undef_Mask(SVOp)) |
| 5592 | if (VT != MVT::v2i64 && VT != MVT::v2f64) |
| 5593 | return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG); |
| 5594 | |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 5595 | // Handle v8i16 specifically since SSE can do byte extraction and insertion. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5596 | if (VT == MVT::v8i16) { |
Bruno Cardoso Lopes | bf8154a | 2010-08-21 01:32:18 +0000 | [diff] [blame] | 5597 | SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5598 | if (NewOp.getNode()) |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 5599 | return NewOp; |
| 5600 | } |
| 5601 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5602 | if (VT == MVT::v16i8) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5603 | SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this); |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 5604 | if (NewOp.getNode()) |
| 5605 | return NewOp; |
| 5606 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5607 | |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5608 | // Handle all 4 wide cases with a number of shuffles. |
| 5609 | if (NumElems == 4) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5610 | return LowerVECTOR_SHUFFLE_4wide(SVOp, DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5611 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5612 | return SDValue(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5613 | } |
| 5614 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5615 | SDValue |
| 5616 | X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 5617 | SelectionDAG &DAG) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5618 | EVT VT = Op.getValueType(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 5619 | DebugLoc dl = Op.getDebugLoc(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5620 | if (VT.getSizeInBits() == 8) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5621 | SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32, |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5622 | Op.getOperand(0), Op.getOperand(1)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5623 | SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract, |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5624 | DAG.getValueType(VT)); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5625 | return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5626 | } else if (VT.getSizeInBits() == 16) { |
Evan Cheng | 52ceafa | 2009-01-02 05:29:08 +0000 | [diff] [blame] | 5627 | unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue(); |
| 5628 | // If Idx is 0, it's cheaper to do a move instead of a pextrw. |
| 5629 | if (Idx == 0) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5630 | return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, |
| 5631 | DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32, |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5632 | DAG.getNode(ISD::BIT_CONVERT, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5633 | MVT::v4i32, |
Evan Cheng | 52ceafa | 2009-01-02 05:29:08 +0000 | [diff] [blame] | 5634 | Op.getOperand(0)), |
| 5635 | Op.getOperand(1))); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5636 | SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32, |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5637 | Op.getOperand(0), Op.getOperand(1)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5638 | SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract, |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5639 | DAG.getValueType(VT)); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5640 | return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5641 | } else if (VT == MVT::f32) { |
Evan Cheng | 62a3f15 | 2008-03-24 21:52:23 +0000 | [diff] [blame] | 5642 | // EXTRACTPS outputs to a GPR32 register which will require a movd to copy |
| 5643 | // 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] | 5644 | // result has a single use which is a store or a bitcast to i32. And in |
| 5645 | // the case of a store, it's not worth it if the index is a constant 0, |
| 5646 | // because a MOVSSmr can be used instead, which is smaller and faster. |
Evan Cheng | 62a3f15 | 2008-03-24 21:52:23 +0000 | [diff] [blame] | 5647 | if (!Op.hasOneUse()) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5648 | return SDValue(); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5649 | SDNode *User = *Op.getNode()->use_begin(); |
Dan Gohman | d17cfbe | 2008-10-31 00:57:24 +0000 | [diff] [blame] | 5650 | if ((User->getOpcode() != ISD::STORE || |
| 5651 | (isa<ConstantSDNode>(Op.getOperand(1)) && |
| 5652 | cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) && |
Dan Gohman | 171c11e | 2008-04-16 02:32:24 +0000 | [diff] [blame] | 5653 | (User->getOpcode() != ISD::BIT_CONVERT || |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5654 | User->getValueType(0) != MVT::i32)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5655 | return SDValue(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5656 | SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32, |
| 5657 | DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32, |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5658 | Op.getOperand(0)), |
| 5659 | Op.getOperand(1)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5660 | return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, Extract); |
| 5661 | } else if (VT == MVT::i32) { |
Mon P Wang | f0fcdd8 | 2009-01-15 21:10:20 +0000 | [diff] [blame] | 5662 | // ExtractPS works with constant index. |
| 5663 | if (isa<ConstantSDNode>(Op.getOperand(1))) |
| 5664 | return Op; |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5665 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5666 | return SDValue(); |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5667 | } |
| 5668 | |
| 5669 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5670 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 5671 | X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op, |
| 5672 | SelectionDAG &DAG) const { |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5673 | if (!isa<ConstantSDNode>(Op.getOperand(1))) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5674 | return SDValue(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5675 | |
Evan Cheng | 62a3f15 | 2008-03-24 21:52:23 +0000 | [diff] [blame] | 5676 | if (Subtarget->hasSSE41()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5677 | SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5678 | if (Res.getNode()) |
Evan Cheng | 62a3f15 | 2008-03-24 21:52:23 +0000 | [diff] [blame] | 5679 | return Res; |
| 5680 | } |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5681 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5682 | EVT VT = Op.getValueType(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 5683 | DebugLoc dl = Op.getDebugLoc(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5684 | // TODO: handle v16i8. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5685 | if (VT.getSizeInBits() == 16) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5686 | SDValue Vec = Op.getOperand(0); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5687 | unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue(); |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 5688 | if (Idx == 0) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5689 | return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, |
| 5690 | DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5691 | DAG.getNode(ISD::BIT_CONVERT, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5692 | MVT::v4i32, Vec), |
Evan Cheng | 14b32e1 | 2007-12-11 01:46:18 +0000 | [diff] [blame] | 5693 | Op.getOperand(1))); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5694 | // Transform it so it match pextrw which produces a 32-bit result. |
Ken Dyck | 70d0ef1 | 2009-12-17 15:31:52 +0000 | [diff] [blame] | 5695 | EVT EltVT = MVT::i32; |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5696 | SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT, |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5697 | Op.getOperand(0), Op.getOperand(1)); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5698 | SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract, |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5699 | DAG.getValueType(VT)); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5700 | return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5701 | } else if (VT.getSizeInBits() == 32) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5702 | unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5703 | if (Idx == 0) |
| 5704 | return Op; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5705 | |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5706 | // SHUFPS the element to the lowest double word, then movss. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5707 | int Mask[4] = { Idx, -1, -1, -1 }; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5708 | EVT VVT = Op.getOperand(0).getValueType(); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5709 | SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0), |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5710 | DAG.getUNDEF(VVT), Mask); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5711 | return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 5712 | DAG.getIntPtrConstant(0)); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 5713 | } else if (VT.getSizeInBits() == 64) { |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5714 | // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b |
| 5715 | // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught |
| 5716 | // to match extract_elt for f64. |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5717 | unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5718 | if (Idx == 0) |
| 5719 | return Op; |
| 5720 | |
| 5721 | // UNPCKHPD the element to the lowest double word, then movsd. |
| 5722 | // Note if the lower 64 bits of the result of the UNPCKHPD is then stored |
| 5723 | // to a f64mem, the whole operation is folded into a single MOVHPDmr. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5724 | int Mask[2] = { 1, -1 }; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5725 | EVT VVT = Op.getOperand(0).getValueType(); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5726 | SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0), |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 5727 | DAG.getUNDEF(VVT), Mask); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5728 | return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 5729 | DAG.getIntPtrConstant(0)); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5730 | } |
| 5731 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5732 | return SDValue(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5733 | } |
| 5734 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5735 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 5736 | X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, |
| 5737 | SelectionDAG &DAG) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5738 | EVT VT = Op.getValueType(); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5739 | EVT EltVT = VT.getVectorElementType(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 5740 | DebugLoc dl = Op.getDebugLoc(); |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5741 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5742 | SDValue N0 = Op.getOperand(0); |
| 5743 | SDValue N1 = Op.getOperand(1); |
| 5744 | SDValue N2 = Op.getOperand(2); |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5745 | |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5746 | if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) && |
Dan Gohman | ef521f1 | 2008-08-14 22:53:18 +0000 | [diff] [blame] | 5747 | isa<ConstantSDNode>(N2)) { |
Chris Lattner | 8f2b4cc | 2010-02-23 02:07:48 +0000 | [diff] [blame] | 5748 | unsigned Opc; |
| 5749 | if (VT == MVT::v8i16) |
| 5750 | Opc = X86ISD::PINSRW; |
Chris Lattner | 8f2b4cc | 2010-02-23 02:07:48 +0000 | [diff] [blame] | 5751 | else if (VT == MVT::v16i8) |
| 5752 | Opc = X86ISD::PINSRB; |
| 5753 | else |
| 5754 | Opc = X86ISD::PINSRB; |
| 5755 | |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5756 | // Transform it so it match pinsr{b,w} which expects a GR32 as its second |
| 5757 | // argument. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5758 | if (N1.getValueType() != MVT::i32) |
| 5759 | N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1); |
| 5760 | if (N2.getValueType() != MVT::i32) |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5761 | N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue()); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5762 | return DAG.getNode(Opc, dl, VT, N0, N1, N2); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5763 | } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) { |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5764 | // Bits [7:6] of the constant are the source select. This will always be |
| 5765 | // zero here. The DAG Combiner may combine an extract_elt index into these |
| 5766 | // bits. For example (insert (extract, 3), 2) could be matched by putting |
| 5767 | // the '3' into bits [7:6] of X86ISD::INSERTPS. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5768 | // 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] | 5769 | // value of the incoming immediate. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5770 | // 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] | 5771 | // 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] | 5772 | N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4); |
Eric Christopher | fbd6687 | 2009-07-24 00:33:09 +0000 | [diff] [blame] | 5773 | // Create this as a scalar to vector.. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5774 | N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5775 | return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5776 | } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) { |
Eric Christopher | fbd6687 | 2009-07-24 00:33:09 +0000 | [diff] [blame] | 5777 | // PINSR* works with constant index. |
| 5778 | return Op; |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5779 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5780 | return SDValue(); |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5781 | } |
| 5782 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5783 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 5784 | X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5785 | EVT VT = Op.getValueType(); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5786 | EVT EltVT = VT.getVectorElementType(); |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 5787 | |
| 5788 | if (Subtarget->hasSSE41()) |
| 5789 | return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG); |
| 5790 | |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5791 | if (EltVT == MVT::i8) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5792 | return SDValue(); |
Evan Cheng | 794405e | 2007-12-12 07:55:34 +0000 | [diff] [blame] | 5793 | |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 5794 | DebugLoc dl = Op.getDebugLoc(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5795 | SDValue N0 = Op.getOperand(0); |
| 5796 | SDValue N1 = Op.getOperand(1); |
| 5797 | SDValue N2 = Op.getOperand(2); |
Evan Cheng | 794405e | 2007-12-12 07:55:34 +0000 | [diff] [blame] | 5798 | |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 5799 | if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) { |
Evan Cheng | 794405e | 2007-12-12 07:55:34 +0000 | [diff] [blame] | 5800 | // Transform it so it match pinsrw which expects a 16-bit value in a GR32 |
| 5801 | // as its second argument. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5802 | if (N1.getValueType() != MVT::i32) |
| 5803 | N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1); |
| 5804 | if (N2.getValueType() != MVT::i32) |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5805 | N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue()); |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5806 | return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5807 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5808 | return SDValue(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5809 | } |
| 5810 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5811 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 5812 | X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const { |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 5813 | DebugLoc dl = Op.getDebugLoc(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 5814 | |
Chris Lattner | f172ecd | 2010-07-04 23:07:25 +0000 | [diff] [blame] | 5815 | if (Op.getValueType() == MVT::v1i64 && |
| 5816 | Op.getOperand(0).getValueType() == MVT::i64) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5817 | 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] | 5818 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 5819 | 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] | 5820 | assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 && |
| 5821 | "Expected an SSE type!"); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 5822 | return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 5823 | DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt)); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5824 | } |
| 5825 | |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 5826 | // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as |
| 5827 | // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is |
| 5828 | // one of the above mentioned nodes. It has to be wrapped because otherwise |
| 5829 | // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only |
| 5830 | // be used to form addressing mode. These wrapped nodes will be selected |
| 5831 | // into MOV32ri. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5832 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 5833 | X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const { |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5834 | ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5835 | |
Chris Lattner | 41621a2 | 2009-06-26 19:22:52 +0000 | [diff] [blame] | 5836 | // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the |
| 5837 | // global base reg. |
| 5838 | unsigned char OpFlag = 0; |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5839 | unsigned WrapperKind = X86ISD::Wrapper; |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 5840 | CodeModel::Model M = getTargetMachine().getCodeModel(); |
| 5841 | |
Chris Lattner | 4f06649 | 2009-07-11 20:29:19 +0000 | [diff] [blame] | 5842 | if (Subtarget->isPICStyleRIPRel() && |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 5843 | (M == CodeModel::Small || M == CodeModel::Kernel)) |
Chris Lattner | e4df756 | 2009-07-09 03:15:51 +0000 | [diff] [blame] | 5844 | WrapperKind = X86ISD::WrapperRIP; |
Chris Lattner | 3b67e9b | 2009-07-10 20:47:30 +0000 | [diff] [blame] | 5845 | else if (Subtarget->isPICStyleGOT()) |
Chris Lattner | 88e1fd5 | 2009-07-09 04:24:46 +0000 | [diff] [blame] | 5846 | OpFlag = X86II::MO_GOTOFF; |
Chris Lattner | e2c9208 | 2009-07-10 21:00:45 +0000 | [diff] [blame] | 5847 | else if (Subtarget->isPICStyleStubPIC()) |
Chris Lattner | 88e1fd5 | 2009-07-09 04:24:46 +0000 | [diff] [blame] | 5848 | OpFlag = X86II::MO_PIC_BASE_OFFSET; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5849 | |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 5850 | SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(), |
Chris Lattner | 41621a2 | 2009-06-26 19:22:52 +0000 | [diff] [blame] | 5851 | CP->getAlignment(), |
| 5852 | CP->getOffset(), OpFlag); |
| 5853 | DebugLoc DL = CP->getDebugLoc(); |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5854 | Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result); |
Anton Korobeynikov | 7f70559 | 2007-01-12 19:20:47 +0000 | [diff] [blame] | 5855 | // With PIC, the address is actually $g + Offset. |
Chris Lattner | 41621a2 | 2009-06-26 19:22:52 +0000 | [diff] [blame] | 5856 | if (OpFlag) { |
| 5857 | Result = DAG.getNode(ISD::ADD, DL, getPointerTy(), |
Dale Johannesen | b300d2a | 2009-02-07 00:55:49 +0000 | [diff] [blame] | 5858 | DAG.getNode(X86ISD::GlobalBaseReg, |
Chris Lattner | c7f3ace | 2010-04-02 20:16:16 +0000 | [diff] [blame] | 5859 | DebugLoc(), getPointerTy()), |
Anton Korobeynikov | 7f70559 | 2007-01-12 19:20:47 +0000 | [diff] [blame] | 5860 | Result); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5861 | } |
| 5862 | |
| 5863 | return Result; |
| 5864 | } |
| 5865 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 5866 | SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const { |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5867 | JumpTableSDNode *JT = cast<JumpTableSDNode>(Op); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5868 | |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5869 | // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the |
| 5870 | // global base reg. |
| 5871 | unsigned char OpFlag = 0; |
| 5872 | unsigned WrapperKind = X86ISD::Wrapper; |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 5873 | CodeModel::Model M = getTargetMachine().getCodeModel(); |
| 5874 | |
Chris Lattner | 4f06649 | 2009-07-11 20:29:19 +0000 | [diff] [blame] | 5875 | if (Subtarget->isPICStyleRIPRel() && |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 5876 | (M == CodeModel::Small || M == CodeModel::Kernel)) |
Chris Lattner | e4df756 | 2009-07-09 03:15:51 +0000 | [diff] [blame] | 5877 | WrapperKind = X86ISD::WrapperRIP; |
Chris Lattner | 3b67e9b | 2009-07-10 20:47:30 +0000 | [diff] [blame] | 5878 | else if (Subtarget->isPICStyleGOT()) |
Chris Lattner | 88e1fd5 | 2009-07-09 04:24:46 +0000 | [diff] [blame] | 5879 | OpFlag = X86II::MO_GOTOFF; |
Chris Lattner | e2c9208 | 2009-07-10 21:00:45 +0000 | [diff] [blame] | 5880 | else if (Subtarget->isPICStyleStubPIC()) |
Chris Lattner | 88e1fd5 | 2009-07-09 04:24:46 +0000 | [diff] [blame] | 5881 | OpFlag = X86II::MO_PIC_BASE_OFFSET; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5882 | |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5883 | SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(), |
| 5884 | OpFlag); |
| 5885 | DebugLoc DL = JT->getDebugLoc(); |
| 5886 | Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5887 | |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5888 | // With PIC, the address is actually $g + Offset. |
Chris Lattner | 1e61e69 | 2010-11-15 02:46:57 +0000 | [diff] [blame] | 5889 | if (OpFlag) |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5890 | Result = DAG.getNode(ISD::ADD, DL, getPointerTy(), |
| 5891 | DAG.getNode(X86ISD::GlobalBaseReg, |
Chris Lattner | c7f3ace | 2010-04-02 20:16:16 +0000 | [diff] [blame] | 5892 | DebugLoc(), getPointerTy()), |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5893 | Result); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5894 | |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5895 | return Result; |
| 5896 | } |
| 5897 | |
| 5898 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 5899 | X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const { |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5900 | const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol(); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5901 | |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5902 | // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the |
| 5903 | // global base reg. |
| 5904 | unsigned char OpFlag = 0; |
| 5905 | unsigned WrapperKind = X86ISD::Wrapper; |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 5906 | CodeModel::Model M = getTargetMachine().getCodeModel(); |
| 5907 | |
Chris Lattner | 4f06649 | 2009-07-11 20:29:19 +0000 | [diff] [blame] | 5908 | if (Subtarget->isPICStyleRIPRel() && |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 5909 | (M == CodeModel::Small || M == CodeModel::Kernel)) |
Chris Lattner | e4df756 | 2009-07-09 03:15:51 +0000 | [diff] [blame] | 5910 | WrapperKind = X86ISD::WrapperRIP; |
Chris Lattner | 3b67e9b | 2009-07-10 20:47:30 +0000 | [diff] [blame] | 5911 | else if (Subtarget->isPICStyleGOT()) |
Chris Lattner | 88e1fd5 | 2009-07-09 04:24:46 +0000 | [diff] [blame] | 5912 | OpFlag = X86II::MO_GOTOFF; |
Chris Lattner | e2c9208 | 2009-07-10 21:00:45 +0000 | [diff] [blame] | 5913 | else if (Subtarget->isPICStyleStubPIC()) |
Chris Lattner | 88e1fd5 | 2009-07-09 04:24:46 +0000 | [diff] [blame] | 5914 | OpFlag = X86II::MO_PIC_BASE_OFFSET; |
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 | SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5917 | |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5918 | DebugLoc DL = Op.getDebugLoc(); |
| 5919 | Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5920 | |
| 5921 | |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5922 | // With PIC, the address is actually $g + Offset. |
| 5923 | if (getTargetMachine().getRelocationModel() == Reloc::PIC_ && |
Chris Lattner | e4df756 | 2009-07-09 03:15:51 +0000 | [diff] [blame] | 5924 | !Subtarget->is64Bit()) { |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5925 | Result = DAG.getNode(ISD::ADD, DL, getPointerTy(), |
| 5926 | DAG.getNode(X86ISD::GlobalBaseReg, |
Chris Lattner | c7f3ace | 2010-04-02 20:16:16 +0000 | [diff] [blame] | 5927 | DebugLoc(), getPointerTy()), |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5928 | Result); |
| 5929 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5930 | |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5931 | return Result; |
| 5932 | } |
| 5933 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5934 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 5935 | X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const { |
Dan Gohman | 29cbade | 2009-11-20 23:18:13 +0000 | [diff] [blame] | 5936 | // Create the TargetBlockAddressAddress node. |
| 5937 | unsigned char OpFlags = |
| 5938 | Subtarget->ClassifyBlockAddressReference(); |
Dan Gohman | f705adb | 2009-10-30 01:28:02 +0000 | [diff] [blame] | 5939 | CodeModel::Model M = getTargetMachine().getCodeModel(); |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 5940 | const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress(); |
Dan Gohman | 29cbade | 2009-11-20 23:18:13 +0000 | [diff] [blame] | 5941 | DebugLoc dl = Op.getDebugLoc(); |
| 5942 | SDValue Result = DAG.getBlockAddress(BA, getPointerTy(), |
| 5943 | /*isTarget=*/true, OpFlags); |
| 5944 | |
Dan Gohman | f705adb | 2009-10-30 01:28:02 +0000 | [diff] [blame] | 5945 | if (Subtarget->isPICStyleRIPRel() && |
| 5946 | (M == CodeModel::Small || M == CodeModel::Kernel)) |
Dan Gohman | 29cbade | 2009-11-20 23:18:13 +0000 | [diff] [blame] | 5947 | Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result); |
| 5948 | else |
| 5949 | Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result); |
Dan Gohman | f705adb | 2009-10-30 01:28:02 +0000 | [diff] [blame] | 5950 | |
Dan Gohman | 29cbade | 2009-11-20 23:18:13 +0000 | [diff] [blame] | 5951 | // With PIC, the address is actually $g + Offset. |
| 5952 | if (isGlobalRelativeToPICBase(OpFlags)) { |
| 5953 | Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), |
| 5954 | DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()), |
| 5955 | Result); |
| 5956 | } |
Dan Gohman | f705adb | 2009-10-30 01:28:02 +0000 | [diff] [blame] | 5957 | |
| 5958 | return Result; |
| 5959 | } |
| 5960 | |
| 5961 | SDValue |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 5962 | X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl, |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 5963 | int64_t Offset, |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5964 | SelectionDAG &DAG) const { |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 5965 | // Create the TargetGlobalAddress node, folding in the constant |
| 5966 | // offset if it is legal. |
Chris Lattner | d392bd9 | 2009-07-10 07:20:05 +0000 | [diff] [blame] | 5967 | unsigned char OpFlags = |
| 5968 | Subtarget->ClassifyGlobalReference(GV, getTargetMachine()); |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 5969 | CodeModel::Model M = getTargetMachine().getCodeModel(); |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 5970 | SDValue Result; |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 5971 | if (OpFlags == X86II::MO_NO_FLAG && |
| 5972 | X86::isOffsetSuitableForCodeModel(Offset, M)) { |
Chris Lattner | 4aa21aa | 2009-07-09 00:58:53 +0000 | [diff] [blame] | 5973 | // A direct static reference to a global. |
Devang Patel | 0d881da | 2010-07-06 22:08:15 +0000 | [diff] [blame] | 5974 | Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset); |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 5975 | Offset = 0; |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5976 | } else { |
Devang Patel | 0d881da | 2010-07-06 22:08:15 +0000 | [diff] [blame] | 5977 | Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags); |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5978 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 5979 | |
Chris Lattner | 4f06649 | 2009-07-11 20:29:19 +0000 | [diff] [blame] | 5980 | if (Subtarget->isPICStyleRIPRel() && |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 5981 | (M == CodeModel::Small || M == CodeModel::Kernel)) |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 5982 | Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result); |
| 5983 | else |
| 5984 | Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result); |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 5985 | |
Anton Korobeynikov | 7f70559 | 2007-01-12 19:20:47 +0000 | [diff] [blame] | 5986 | // With PIC, the address is actually $g + Offset. |
Chris Lattner | 36c2501 | 2009-07-10 07:34:39 +0000 | [diff] [blame] | 5987 | if (isGlobalRelativeToPICBase(OpFlags)) { |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 5988 | Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), |
| 5989 | DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()), |
Anton Korobeynikov | 7f70559 | 2007-01-12 19:20:47 +0000 | [diff] [blame] | 5990 | Result); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5991 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5992 | |
Chris Lattner | 36c2501 | 2009-07-10 07:34:39 +0000 | [diff] [blame] | 5993 | // For globals that require a load from a stub to get the address, emit the |
| 5994 | // load. |
| 5995 | if (isGlobalStubReference(OpFlags)) |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 5996 | Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result, |
Chris Lattner | d1c24ed | 2010-09-21 06:44:06 +0000 | [diff] [blame] | 5997 | MachinePointerInfo::getGOT(), false, false, 0); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 5998 | |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 5999 | // If there was a non-zero offset that we didn't fold, create an explicit |
| 6000 | // addition for it. |
| 6001 | if (Offset != 0) |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 6002 | Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result, |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 6003 | DAG.getConstant(Offset, getPointerTy())); |
| 6004 | |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6005 | return Result; |
| 6006 | } |
| 6007 | |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 6008 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6009 | X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const { |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 6010 | const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal(); |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 6011 | int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 6012 | return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG); |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 6013 | } |
| 6014 | |
Rafael Espindola | 2ee3db3 | 2009-04-17 14:35:58 +0000 | [diff] [blame] | 6015 | static SDValue |
| 6016 | GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6017 | SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg, |
Chris Lattner | b903bed | 2009-06-26 21:20:29 +0000 | [diff] [blame] | 6018 | unsigned char OperandFlags) { |
Anton Korobeynikov | 817a464 | 2009-12-11 19:39:55 +0000 | [diff] [blame] | 6019 | MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6020 | SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag); |
Rafael Espindola | 2ee3db3 | 2009-04-17 14:35:58 +0000 | [diff] [blame] | 6021 | DebugLoc dl = GA->getDebugLoc(); |
Devang Patel | 0d881da | 2010-07-06 22:08:15 +0000 | [diff] [blame] | 6022 | SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl, |
Rafael Espindola | 2ee3db3 | 2009-04-17 14:35:58 +0000 | [diff] [blame] | 6023 | GA->getValueType(0), |
Chris Lattner | b903bed | 2009-06-26 21:20:29 +0000 | [diff] [blame] | 6024 | GA->getOffset(), |
| 6025 | OperandFlags); |
Rafael Espindola | 2ee3db3 | 2009-04-17 14:35:58 +0000 | [diff] [blame] | 6026 | if (InFlag) { |
| 6027 | SDValue Ops[] = { Chain, TGA, *InFlag }; |
Rafael Espindola | 15f1b66 | 2009-04-24 12:59:40 +0000 | [diff] [blame] | 6028 | Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3); |
Rafael Espindola | 2ee3db3 | 2009-04-17 14:35:58 +0000 | [diff] [blame] | 6029 | } else { |
| 6030 | SDValue Ops[] = { Chain, TGA }; |
Rafael Espindola | 15f1b66 | 2009-04-24 12:59:40 +0000 | [diff] [blame] | 6031 | Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2); |
Rafael Espindola | 2ee3db3 | 2009-04-17 14:35:58 +0000 | [diff] [blame] | 6032 | } |
Anton Korobeynikov | 817a464 | 2009-12-11 19:39:55 +0000 | [diff] [blame] | 6033 | |
| 6034 | // 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] | 6035 | MFI->setAdjustsStack(true); |
Anton Korobeynikov | 817a464 | 2009-12-11 19:39:55 +0000 | [diff] [blame] | 6036 | |
Rafael Espindola | 15f1b66 | 2009-04-24 12:59:40 +0000 | [diff] [blame] | 6037 | SDValue Flag = Chain.getValue(1); |
| 6038 | return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag); |
Rafael Espindola | 2ee3db3 | 2009-04-17 14:35:58 +0000 | [diff] [blame] | 6039 | } |
| 6040 | |
Anton Korobeynikov | 6625eff | 2008-05-04 21:36:32 +0000 | [diff] [blame] | 6041 | // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6042 | static SDValue |
Anton Korobeynikov | 6625eff | 2008-05-04 21:36:32 +0000 | [diff] [blame] | 6043 | LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6044 | const EVT PtrVT) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6045 | SDValue InFlag; |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 6046 | DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better |
| 6047 | SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX, |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 6048 | DAG.getNode(X86ISD::GlobalBaseReg, |
Chris Lattner | c7f3ace | 2010-04-02 20:16:16 +0000 | [diff] [blame] | 6049 | DebugLoc(), PtrVT), InFlag); |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 6050 | InFlag = Chain.getValue(1); |
| 6051 | |
Chris Lattner | b903bed | 2009-06-26 21:20:29 +0000 | [diff] [blame] | 6052 | 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] | 6053 | } |
| 6054 | |
Anton Korobeynikov | 6625eff | 2008-05-04 21:36:32 +0000 | [diff] [blame] | 6055 | // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6056 | static SDValue |
Anton Korobeynikov | 6625eff | 2008-05-04 21:36:32 +0000 | [diff] [blame] | 6057 | LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6058 | const EVT PtrVT) { |
Chris Lattner | b903bed | 2009-06-26 21:20:29 +0000 | [diff] [blame] | 6059 | return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, |
| 6060 | X86::RAX, X86II::MO_TLSGD); |
Anton Korobeynikov | 6625eff | 2008-05-04 21:36:32 +0000 | [diff] [blame] | 6061 | } |
| 6062 | |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 6063 | // Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or |
| 6064 | // "local exec" model. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6065 | static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6066 | const EVT PtrVT, TLSModel::Model model, |
Rafael Espindola | 7ff5bff | 2009-04-13 13:02:49 +0000 | [diff] [blame] | 6067 | bool is64Bit) { |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 6068 | DebugLoc dl = GA->getDebugLoc(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6069 | |
Chris Lattner | f93b90c | 2010-09-22 04:39:11 +0000 | [diff] [blame] | 6070 | // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit). |
| 6071 | Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(), |
| 6072 | is64Bit ? 257 : 256)); |
Rafael Espindola | 094fad3 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 6073 | |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6074 | SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), |
Chris Lattner | f93b90c | 2010-09-22 04:39:11 +0000 | [diff] [blame] | 6075 | DAG.getIntPtrConstant(0), |
| 6076 | MachinePointerInfo(Ptr), false, false, 0); |
Rafael Espindola | 094fad3 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 6077 | |
Chris Lattner | b903bed | 2009-06-26 21:20:29 +0000 | [diff] [blame] | 6078 | unsigned char OperandFlags = 0; |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 6079 | // Most TLS accesses are not RIP relative, even on x86-64. One exception is |
| 6080 | // initialexec. |
| 6081 | unsigned WrapperKind = X86ISD::Wrapper; |
| 6082 | if (model == TLSModel::LocalExec) { |
Chris Lattner | b903bed | 2009-06-26 21:20:29 +0000 | [diff] [blame] | 6083 | OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF; |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 6084 | } else if (is64Bit) { |
| 6085 | assert(model == TLSModel::InitialExec); |
| 6086 | OperandFlags = X86II::MO_GOTTPOFF; |
| 6087 | WrapperKind = X86ISD::WrapperRIP; |
| 6088 | } else { |
| 6089 | assert(model == TLSModel::InitialExec); |
| 6090 | OperandFlags = X86II::MO_INDNTPOFF; |
Chris Lattner | b903bed | 2009-06-26 21:20:29 +0000 | [diff] [blame] | 6091 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 6092 | |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 6093 | // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial |
| 6094 | // exec) |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6095 | SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl, |
Devang Patel | 0d881da | 2010-07-06 22:08:15 +0000 | [diff] [blame] | 6096 | GA->getValueType(0), |
Chris Lattner | b903bed | 2009-06-26 21:20:29 +0000 | [diff] [blame] | 6097 | GA->getOffset(), OperandFlags); |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 6098 | SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA); |
Lauro Ramos Venancio | 7d2cc2b | 2007-04-22 22:50:52 +0000 | [diff] [blame] | 6099 | |
Rafael Espindola | 9a58023 | 2009-02-27 13:37:18 +0000 | [diff] [blame] | 6100 | if (model == TLSModel::InitialExec) |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 6101 | Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset, |
Chris Lattner | d1c24ed | 2010-09-21 06:44:06 +0000 | [diff] [blame] | 6102 | MachinePointerInfo::getGOT(), false, false, 0); |
Lauro Ramos Venancio | 7d2cc2b | 2007-04-22 22:50:52 +0000 | [diff] [blame] | 6103 | |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 6104 | // The address of the thread local variable is the add of the thread |
| 6105 | // pointer with the offset of the variable. |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 6106 | return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset); |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 6107 | } |
| 6108 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6109 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6110 | X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const { |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6111 | |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 6112 | GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op); |
Chris Lattner | b903bed | 2009-06-26 21:20:29 +0000 | [diff] [blame] | 6113 | const GlobalValue *GV = GA->getGlobal(); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 6114 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6115 | if (Subtarget->isTargetELF()) { |
| 6116 | // TODO: implement the "local dynamic" model |
| 6117 | // TODO: implement the "initial exec"model for pic executables |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6118 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6119 | // If GV is an alias then use the aliasee for determining |
| 6120 | // thread-localness. |
| 6121 | if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV)) |
| 6122 | GV = GA->resolveAliasedGlobal(false); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6123 | |
| 6124 | TLSModel::Model model |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6125 | = getTLSModel(GV, getTargetMachine().getRelocationModel()); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6126 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6127 | switch (model) { |
| 6128 | case TLSModel::GeneralDynamic: |
| 6129 | case TLSModel::LocalDynamic: // not implemented |
| 6130 | if (Subtarget->is64Bit()) |
| 6131 | return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy()); |
| 6132 | return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy()); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6133 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6134 | case TLSModel::InitialExec: |
| 6135 | case TLSModel::LocalExec: |
| 6136 | return LowerToTLSExecModel(GA, DAG, getPointerTy(), model, |
| 6137 | Subtarget->is64Bit()); |
| 6138 | } |
| 6139 | } else if (Subtarget->isTargetDarwin()) { |
| 6140 | // Darwin only has one model of TLS. Lower to that. |
| 6141 | unsigned char OpFlag = 0; |
| 6142 | unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ? |
| 6143 | X86ISD::WrapperRIP : X86ISD::Wrapper; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6144 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6145 | // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the |
| 6146 | // global base reg. |
| 6147 | bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) && |
| 6148 | !Subtarget->is64Bit(); |
| 6149 | if (PIC32) |
| 6150 | OpFlag = X86II::MO_TLVP_PIC_BASE; |
| 6151 | else |
| 6152 | OpFlag = X86II::MO_TLVP; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6153 | DebugLoc DL = Op.getDebugLoc(); |
Devang Patel | 0d881da | 2010-07-06 22:08:15 +0000 | [diff] [blame] | 6154 | SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL, |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6155 | getPointerTy(), |
| 6156 | GA->getOffset(), OpFlag); |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6157 | SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6158 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6159 | // With PIC32, the address is actually $g + Offset. |
| 6160 | if (PIC32) |
| 6161 | Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(), |
| 6162 | DAG.getNode(X86ISD::GlobalBaseReg, |
| 6163 | DebugLoc(), getPointerTy()), |
| 6164 | Offset); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6165 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6166 | // Lowering the machine isd will make sure everything is in the right |
| 6167 | // location. |
| 6168 | SDValue Args[] = { Offset }; |
| 6169 | SDValue Chain = DAG.getNode(X86ISD::TLSCALL, DL, MVT::Other, Args, 1); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6170 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6171 | // TLSCALL will be codegen'ed as call. Inform MFI that function has calls. |
| 6172 | MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo(); |
| 6173 | MFI->setAdjustsStack(true); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 6174 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6175 | // And our return value (tls address) is in the standard call return value |
| 6176 | // location. |
| 6177 | unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX; |
| 6178 | return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy()); |
Anton Korobeynikov | 6625eff | 2008-05-04 21:36:32 +0000 | [diff] [blame] | 6179 | } |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6180 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 6181 | assert(false && |
| 6182 | "TLS not implemented for this target."); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 6183 | |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 6184 | llvm_unreachable("Unreachable"); |
Chris Lattner | 5867de1 | 2009-04-01 22:14:45 +0000 | [diff] [blame] | 6185 | return SDValue(); |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 6186 | } |
| 6187 | |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6188 | |
Chris Lattner | 2ff75ee | 2007-10-17 06:02:13 +0000 | [diff] [blame] | 6189 | /// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6190 | /// take a 2 x i32 value to shift plus a shift amount. |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6191 | SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const { |
Dan Gohman | 4c1fa61 | 2008-03-03 22:22:09 +0000 | [diff] [blame] | 6192 | assert(Op.getNumOperands() == 3 && "Not a double-shift!"); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6193 | EVT VT = Op.getValueType(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6194 | unsigned VTBits = VT.getSizeInBits(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 6195 | DebugLoc dl = Op.getDebugLoc(); |
Chris Lattner | 2ff75ee | 2007-10-17 06:02:13 +0000 | [diff] [blame] | 6196 | bool isSRA = Op.getOpcode() == ISD::SRA_PARTS; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6197 | SDValue ShOpLo = Op.getOperand(0); |
| 6198 | SDValue ShOpHi = Op.getOperand(1); |
| 6199 | SDValue ShAmt = Op.getOperand(2); |
Chris Lattner | 31dcfe6 | 2009-07-29 05:48:09 +0000 | [diff] [blame] | 6200 | SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6201 | DAG.getConstant(VTBits - 1, MVT::i8)) |
Chris Lattner | 31dcfe6 | 2009-07-29 05:48:09 +0000 | [diff] [blame] | 6202 | : DAG.getConstant(0, VT); |
Evan Cheng | e341316 | 2006-01-09 18:33:28 +0000 | [diff] [blame] | 6203 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6204 | SDValue Tmp2, Tmp3; |
Chris Lattner | 2ff75ee | 2007-10-17 06:02:13 +0000 | [diff] [blame] | 6205 | if (Op.getOpcode() == ISD::SHL_PARTS) { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6206 | Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt); |
| 6207 | Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt); |
Chris Lattner | 2ff75ee | 2007-10-17 06:02:13 +0000 | [diff] [blame] | 6208 | } else { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6209 | Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt); |
| 6210 | Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt); |
Chris Lattner | 2ff75ee | 2007-10-17 06:02:13 +0000 | [diff] [blame] | 6211 | } |
Evan Cheng | e341316 | 2006-01-09 18:33:28 +0000 | [diff] [blame] | 6212 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6213 | SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt, |
| 6214 | DAG.getConstant(VTBits, MVT::i8)); |
Chris Lattner | ccfea35 | 2010-02-22 00:28:59 +0000 | [diff] [blame] | 6215 | SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6216 | AndNode, DAG.getConstant(0, MVT::i8)); |
Evan Cheng | e341316 | 2006-01-09 18:33:28 +0000 | [diff] [blame] | 6217 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6218 | SDValue Hi, Lo; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6219 | SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6220 | SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond }; |
| 6221 | SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond }; |
Duncan Sands | f951620 | 2008-06-30 10:19:09 +0000 | [diff] [blame] | 6222 | |
Chris Lattner | 2ff75ee | 2007-10-17 06:02:13 +0000 | [diff] [blame] | 6223 | if (Op.getOpcode() == ISD::SHL_PARTS) { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6224 | Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4); |
| 6225 | Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4); |
Chris Lattner | 2ff75ee | 2007-10-17 06:02:13 +0000 | [diff] [blame] | 6226 | } else { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6227 | Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4); |
| 6228 | Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4); |
Chris Lattner | 2ff75ee | 2007-10-17 06:02:13 +0000 | [diff] [blame] | 6229 | } |
| 6230 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6231 | SDValue Ops[2] = { Lo, Hi }; |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6232 | return DAG.getMergeValues(Ops, 2, dl); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6233 | } |
Evan Cheng | a3195e8 | 2006-01-12 22:54:21 +0000 | [diff] [blame] | 6234 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6235 | SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op, |
| 6236 | SelectionDAG &DAG) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6237 | EVT SrcVT = Op.getOperand(0).getValueType(); |
Eli Friedman | 23ef105 | 2009-06-06 03:57:58 +0000 | [diff] [blame] | 6238 | |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 6239 | if (SrcVT.isVector()) |
Eli Friedman | 23ef105 | 2009-06-06 03:57:58 +0000 | [diff] [blame] | 6240 | return SDValue(); |
Eli Friedman | 23ef105 | 2009-06-06 03:57:58 +0000 | [diff] [blame] | 6241 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6242 | assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 && |
Chris Lattner | b09916b | 2008-02-27 05:57:41 +0000 | [diff] [blame] | 6243 | "Unknown SINT_TO_FP to lower!"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6244 | |
Eli Friedman | 36df499 | 2009-05-27 00:47:34 +0000 | [diff] [blame] | 6245 | // These are really Legal; return the operand so the caller accepts it as |
| 6246 | // Legal. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6247 | if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType())) |
Eli Friedman | 36df499 | 2009-05-27 00:47:34 +0000 | [diff] [blame] | 6248 | return Op; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6249 | if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) && |
Eli Friedman | 36df499 | 2009-05-27 00:47:34 +0000 | [diff] [blame] | 6250 | Subtarget->is64Bit()) { |
| 6251 | return Op; |
| 6252 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6253 | |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 6254 | DebugLoc dl = Op.getDebugLoc(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6255 | unsigned Size = SrcVT.getSizeInBits()/8; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6256 | MachineFunction &MF = DAG.getMachineFunction(); |
David Greene | 3f2bf85 | 2009-11-12 20:49:22 +0000 | [diff] [blame] | 6257 | int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6258 | SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy()); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6259 | SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0), |
Bill Wendling | 105be5a | 2009-03-13 08:41:47 +0000 | [diff] [blame] | 6260 | StackSlot, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 6261 | MachinePointerInfo::getFixedStack(SSFI), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 6262 | false, false, 0); |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 6263 | return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG); |
| 6264 | } |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6265 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6266 | SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain, |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6267 | SDValue StackSlot, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6268 | SelectionDAG &DAG) const { |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6269 | // Build the FILD |
Chris Lattner | 492a43e | 2010-09-22 01:28:21 +0000 | [diff] [blame] | 6270 | DebugLoc DL = Op.getDebugLoc(); |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 6271 | SDVTList Tys; |
Chris Lattner | 7863116 | 2008-01-16 06:24:21 +0000 | [diff] [blame] | 6272 | bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType()); |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 6273 | if (useSSE) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6274 | Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag); |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 6275 | else |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6276 | Tys = DAG.getVTList(Op.getValueType(), MVT::Other); |
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 | unsigned ByteSize = SrcVT.getSizeInBits()/8; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6279 | |
Chris Lattner | 492a43e | 2010-09-22 01:28:21 +0000 | [diff] [blame] | 6280 | int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex(); |
| 6281 | MachineMemOperand *MMO = |
| 6282 | DAG.getMachineFunction() |
| 6283 | .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI), |
| 6284 | MachineMemOperand::MOLoad, ByteSize, ByteSize); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6285 | |
Benjamin Kramer | 7f1a560 | 2009-12-29 16:57:26 +0000 | [diff] [blame] | 6286 | SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) }; |
Chris Lattner | 492a43e | 2010-09-22 01:28:21 +0000 | [diff] [blame] | 6287 | SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG : |
| 6288 | X86ISD::FILD, DL, |
| 6289 | Tys, Ops, array_lengthof(Ops), |
| 6290 | SrcVT, MMO); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6291 | |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 6292 | if (useSSE) { |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6293 | Chain = Result.getValue(1); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6294 | SDValue InFlag = Result.getValue(2); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6295 | |
| 6296 | // FIXME: Currently the FST is flagged to the FILD_FLAG. This |
| 6297 | // shouldn't be necessary except that RFP cannot be live across |
| 6298 | // multiple blocks. When stackifier is fixed, they can be uncoupled. |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 6299 | MachineFunction &MF = DAG.getMachineFunction(); |
Bob Wilson | eafca4e | 2010-09-22 17:35:14 +0000 | [diff] [blame] | 6300 | unsigned SSFISize = Op.getValueType().getSizeInBits()/8; |
| 6301 | int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6302 | SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy()); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6303 | Tys = DAG.getVTList(MVT::Other); |
Benjamin Kramer | 7f1a560 | 2009-12-29 16:57:26 +0000 | [diff] [blame] | 6304 | SDValue Ops[] = { |
| 6305 | Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag |
| 6306 | }; |
Chris Lattner | 492a43e | 2010-09-22 01:28:21 +0000 | [diff] [blame] | 6307 | MachineMemOperand *MMO = |
| 6308 | DAG.getMachineFunction() |
| 6309 | .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI), |
Bob Wilson | eafca4e | 2010-09-22 17:35:14 +0000 | [diff] [blame] | 6310 | MachineMemOperand::MOStore, SSFISize, SSFISize); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6311 | |
Chris Lattner | 492a43e | 2010-09-22 01:28:21 +0000 | [diff] [blame] | 6312 | Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys, |
| 6313 | Ops, array_lengthof(Ops), |
| 6314 | Op.getValueType(), MMO); |
| 6315 | Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 6316 | MachinePointerInfo::getFixedStack(SSFI), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 6317 | false, false, 0); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 6318 | } |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 6319 | |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6320 | return Result; |
| 6321 | } |
| 6322 | |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6323 | // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion. |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6324 | SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op, |
| 6325 | SelectionDAG &DAG) const { |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6326 | // This algorithm is not obvious. Here it is in C code, more or less: |
| 6327 | /* |
| 6328 | double uint64_to_double( uint32_t hi, uint32_t lo ) { |
| 6329 | static const __m128i exp = { 0x4330000045300000ULL, 0 }; |
| 6330 | static const __m128d bias = { 0x1.0p84, 0x1.0p52 }; |
Dale Johannesen | 040225f | 2008-10-21 23:07:49 +0000 | [diff] [blame] | 6331 | |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6332 | // Copy ints to xmm registers. |
| 6333 | __m128i xh = _mm_cvtsi32_si128( hi ); |
| 6334 | __m128i xl = _mm_cvtsi32_si128( lo ); |
Dale Johannesen | 040225f | 2008-10-21 23:07:49 +0000 | [diff] [blame] | 6335 | |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6336 | // Combine into low half of a single xmm register. |
| 6337 | __m128i x = _mm_unpacklo_epi32( xh, xl ); |
| 6338 | __m128d d; |
| 6339 | double sd; |
Dale Johannesen | 040225f | 2008-10-21 23:07:49 +0000 | [diff] [blame] | 6340 | |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6341 | // Merge in appropriate exponents to give the integer bits the right |
| 6342 | // magnitude. |
| 6343 | x = _mm_unpacklo_epi32( x, exp ); |
Dale Johannesen | 040225f | 2008-10-21 23:07:49 +0000 | [diff] [blame] | 6344 | |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6345 | // Subtract away the biases to deal with the IEEE-754 double precision |
| 6346 | // implicit 1. |
| 6347 | d = _mm_sub_pd( (__m128d) x, bias ); |
Dale Johannesen | 040225f | 2008-10-21 23:07:49 +0000 | [diff] [blame] | 6348 | |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6349 | // All conversions up to here are exact. The correctly rounded result is |
| 6350 | // calculated using the current rounding mode using the following |
| 6351 | // horizontal add. |
| 6352 | d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) ); |
| 6353 | _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this |
| 6354 | // store doesn't really need to be here (except |
| 6355 | // maybe to zero the other double) |
| 6356 | return sd; |
| 6357 | } |
| 6358 | */ |
Dale Johannesen | 040225f | 2008-10-21 23:07:49 +0000 | [diff] [blame] | 6359 | |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 6360 | DebugLoc dl = Op.getDebugLoc(); |
Owen Anderson | a90b3dc | 2009-07-15 21:51:10 +0000 | [diff] [blame] | 6361 | LLVMContext *Context = DAG.getContext(); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6362 | |
Dale Johannesen | 1c15bf5 | 2008-10-21 20:50:01 +0000 | [diff] [blame] | 6363 | // Build some magic constants. |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6364 | std::vector<Constant*> CV0; |
Owen Anderson | eed707b | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 6365 | CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000))); |
| 6366 | CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000))); |
| 6367 | CV0.push_back(ConstantInt::get(*Context, APInt(32, 0))); |
| 6368 | CV0.push_back(ConstantInt::get(*Context, APInt(32, 0))); |
Owen Anderson | af7ec97 | 2009-07-28 21:19:26 +0000 | [diff] [blame] | 6369 | Constant *C0 = ConstantVector::get(CV0); |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 6370 | SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16); |
Dale Johannesen | 1c15bf5 | 2008-10-21 20:50:01 +0000 | [diff] [blame] | 6371 | |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6372 | std::vector<Constant*> CV1; |
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, 0x4530000000000000ULL)))); |
Owen Anderson | a90b3dc | 2009-07-15 21:51:10 +0000 | [diff] [blame] | 6375 | CV1.push_back( |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 6376 | ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL)))); |
Owen Anderson | af7ec97 | 2009-07-28 21:19:26 +0000 | [diff] [blame] | 6377 | Constant *C1 = ConstantVector::get(CV1); |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 6378 | SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16); |
Dale Johannesen | 1c15bf5 | 2008-10-21 20:50:01 +0000 | [diff] [blame] | 6379 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6380 | SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, |
| 6381 | DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, |
Duncan Sands | 6b6aeb3 | 2008-10-22 11:24:12 +0000 | [diff] [blame] | 6382 | Op.getOperand(0), |
| 6383 | DAG.getIntPtrConstant(1))); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6384 | SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, |
| 6385 | DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, |
Duncan Sands | 6b6aeb3 | 2008-10-22 11:24:12 +0000 | [diff] [blame] | 6386 | Op.getOperand(0), |
| 6387 | DAG.getIntPtrConstant(0))); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6388 | SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2); |
| 6389 | SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 6390 | MachinePointerInfo::getConstantPool(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 6391 | false, false, 16); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6392 | SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0); |
| 6393 | SDValue XR2F = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Unpck2); |
| 6394 | SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 6395 | MachinePointerInfo::getConstantPool(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 6396 | false, false, 16); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6397 | SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1); |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6398 | |
Dale Johannesen | 1c15bf5 | 2008-10-21 20:50:01 +0000 | [diff] [blame] | 6399 | // 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] | 6400 | int ShufMask[2] = { 1, -1 }; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6401 | SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub, |
| 6402 | DAG.getUNDEF(MVT::v2f64), ShufMask); |
| 6403 | SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub); |
| 6404 | return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add, |
Dale Johannesen | 1c15bf5 | 2008-10-21 20:50:01 +0000 | [diff] [blame] | 6405 | DAG.getIntPtrConstant(0)); |
| 6406 | } |
| 6407 | |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6408 | // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion. |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6409 | SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op, |
| 6410 | SelectionDAG &DAG) const { |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 6411 | DebugLoc dl = Op.getDebugLoc(); |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6412 | // FP constant to bias correct the final result. |
| 6413 | SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6414 | MVT::f64); |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6415 | |
| 6416 | // Load the 32-bit value into an XMM register. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6417 | SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, |
| 6418 | DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6419 | Op.getOperand(0), |
| 6420 | DAG.getIntPtrConstant(0))); |
| 6421 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6422 | Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, |
| 6423 | DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Load), |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6424 | DAG.getIntPtrConstant(0)); |
| 6425 | |
| 6426 | // Or the load with the bias. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6427 | SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, |
| 6428 | DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6429 | DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6430 | MVT::v2f64, Load)), |
| 6431 | DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6432 | DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6433 | MVT::v2f64, Bias))); |
| 6434 | Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, |
| 6435 | DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Or), |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6436 | DAG.getIntPtrConstant(0)); |
| 6437 | |
| 6438 | // Subtract the bias. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6439 | SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias); |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6440 | |
| 6441 | // Handle final rounding. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6442 | EVT DestVT = Op.getValueType(); |
Bill Wendling | 030939c | 2009-01-17 07:40:19 +0000 | [diff] [blame] | 6443 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6444 | if (DestVT.bitsLT(MVT::f64)) { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6445 | return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub, |
Bill Wendling | 030939c | 2009-01-17 07:40:19 +0000 | [diff] [blame] | 6446 | DAG.getIntPtrConstant(0)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6447 | } else if (DestVT.bitsGT(MVT::f64)) { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6448 | return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub); |
Bill Wendling | 030939c | 2009-01-17 07:40:19 +0000 | [diff] [blame] | 6449 | } |
| 6450 | |
| 6451 | // Handle final rounding. |
| 6452 | return Sub; |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6453 | } |
| 6454 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6455 | SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op, |
| 6456 | SelectionDAG &DAG) const { |
Evan Cheng | a06ec9e | 2009-01-19 08:08:22 +0000 | [diff] [blame] | 6457 | SDValue N0 = Op.getOperand(0); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 6458 | DebugLoc dl = Op.getDebugLoc(); |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6459 | |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 6460 | // 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] | 6461 | // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform |
| 6462 | // the optimization here. |
| 6463 | if (DAG.SignBitIsZero(N0)) |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6464 | return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0); |
Evan Cheng | a06ec9e | 2009-01-19 08:08:22 +0000 | [diff] [blame] | 6465 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6466 | EVT SrcVT = N0.getValueType(); |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 6467 | EVT DstVT = Op.getValueType(); |
| 6468 | if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64) |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6469 | return LowerUINT_TO_FP_i64(Op, DAG); |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 6470 | else if (SrcVT == MVT::i32 && X86ScalarSSEf64) |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6471 | return LowerUINT_TO_FP_i32(Op, DAG); |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 6472 | |
| 6473 | // Make a 64-bit buffer, and use it to build an FILD. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6474 | SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64); |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 6475 | if (SrcVT == MVT::i32) { |
| 6476 | SDValue WordOff = DAG.getConstant(4, getPointerTy()); |
| 6477 | SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl, |
| 6478 | getPointerTy(), StackSlot, WordOff); |
| 6479 | SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0), |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 6480 | StackSlot, MachinePointerInfo(), |
| 6481 | false, false, 0); |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 6482 | SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32), |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 6483 | OffsetSlot, MachinePointerInfo(), |
| 6484 | false, false, 0); |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 6485 | SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG); |
| 6486 | return Fild; |
| 6487 | } |
| 6488 | |
| 6489 | assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP"); |
| 6490 | SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0), |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 6491 | StackSlot, MachinePointerInfo(), |
| 6492 | false, false, 0); |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 6493 | // For i64 source, we need to add the appropriate power of 2 if the input |
| 6494 | // was negative. This is the same as the optimization in |
| 6495 | // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here, |
| 6496 | // we must be careful to do the computation in x87 extended precision, not |
| 6497 | // 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] | 6498 | int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex(); |
| 6499 | MachineMemOperand *MMO = |
| 6500 | DAG.getMachineFunction() |
| 6501 | .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI), |
| 6502 | MachineMemOperand::MOLoad, 8, 8); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6503 | |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 6504 | SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other); |
| 6505 | SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) }; |
Chris Lattner | 492a43e | 2010-09-22 01:28:21 +0000 | [diff] [blame] | 6506 | SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3, |
| 6507 | MVT::i64, MMO); |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 6508 | |
| 6509 | APInt FF(32, 0x5F800000ULL); |
| 6510 | |
| 6511 | // Check whether the sign bit is set. |
| 6512 | SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64), |
| 6513 | Op.getOperand(0), DAG.getConstant(0, MVT::i64), |
| 6514 | ISD::SETLT); |
| 6515 | |
| 6516 | // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits. |
| 6517 | SDValue FudgePtr = DAG.getConstantPool( |
| 6518 | ConstantInt::get(*DAG.getContext(), FF.zext(64)), |
| 6519 | getPointerTy()); |
| 6520 | |
| 6521 | // Get a pointer to FF if the sign bit was set, or to 0 otherwise. |
| 6522 | SDValue Zero = DAG.getIntPtrConstant(0); |
| 6523 | SDValue Four = DAG.getIntPtrConstant(4); |
| 6524 | SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet, |
| 6525 | Zero, Four); |
| 6526 | FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset); |
| 6527 | |
| 6528 | // Load the value out, extending it from f32 to f80. |
| 6529 | // FIXME: Avoid the extend by constructing the right constant pool? |
Evan Cheng | bcc8017 | 2010-07-07 22:15:37 +0000 | [diff] [blame] | 6530 | SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, MVT::f80, dl, DAG.getEntryNode(), |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 6531 | FudgePtr, MachinePointerInfo::getConstantPool(), |
| 6532 | MVT::f32, false, false, 4); |
Dale Johannesen | 8d908eb | 2010-05-15 18:51:12 +0000 | [diff] [blame] | 6533 | // Extend everything to 80 bits to force it to be done on x87. |
| 6534 | SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge); |
| 6535 | return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0)); |
Bill Wendling | 8b8a636 | 2009-01-17 03:56:04 +0000 | [diff] [blame] | 6536 | } |
| 6537 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6538 | std::pair<SDValue,SDValue> X86TargetLowering:: |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6539 | FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const { |
Chris Lattner | 0729093 | 2010-09-22 01:05:16 +0000 | [diff] [blame] | 6540 | DebugLoc DL = Op.getDebugLoc(); |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 6541 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6542 | EVT DstTy = Op.getValueType(); |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 6543 | |
| 6544 | if (!IsSigned) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6545 | assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT"); |
| 6546 | DstTy = MVT::i64; |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 6547 | } |
| 6548 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6549 | assert(DstTy.getSimpleVT() <= MVT::i64 && |
| 6550 | DstTy.getSimpleVT() >= MVT::i16 && |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6551 | "Unknown FP_TO_SINT to lower!"); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6552 | |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 6553 | // These are really Legal. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6554 | if (DstTy == MVT::i32 && |
Chris Lattner | 7863116 | 2008-01-16 06:24:21 +0000 | [diff] [blame] | 6555 | isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType())) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6556 | return std::make_pair(SDValue(), SDValue()); |
Dale Johannesen | 73328d1 | 2007-09-19 23:55:34 +0000 | [diff] [blame] | 6557 | if (Subtarget->is64Bit() && |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6558 | DstTy == MVT::i64 && |
Eli Friedman | 36df499 | 2009-05-27 00:47:34 +0000 | [diff] [blame] | 6559 | isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType())) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6560 | return std::make_pair(SDValue(), SDValue()); |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 6561 | |
Evan Cheng | 87c8935 | 2007-10-15 20:11:21 +0000 | [diff] [blame] | 6562 | // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary |
| 6563 | // stack slot. |
| 6564 | MachineFunction &MF = DAG.getMachineFunction(); |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 6565 | unsigned MemSize = DstTy.getSizeInBits()/8; |
David Greene | 3f2bf85 | 2009-11-12 20:49:22 +0000 | [diff] [blame] | 6566 | int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6567 | SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy()); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 6568 | |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6569 | |
| 6570 | |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6571 | unsigned Opc; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6572 | switch (DstTy.getSimpleVT().SimpleTy) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 6573 | default: llvm_unreachable("Invalid FP_TO_SINT to lower!"); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6574 | case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break; |
| 6575 | case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break; |
| 6576 | case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break; |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6577 | } |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 6578 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6579 | SDValue Chain = DAG.getEntryNode(); |
| 6580 | SDValue Value = Op.getOperand(0); |
Chris Lattner | 492a43e | 2010-09-22 01:28:21 +0000 | [diff] [blame] | 6581 | EVT TheVT = Op.getOperand(0).getValueType(); |
| 6582 | if (isScalarFPTypeInSSEReg(TheVT)) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6583 | assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!"); |
Chris Lattner | 0729093 | 2010-09-22 01:05:16 +0000 | [diff] [blame] | 6584 | Chain = DAG.getStore(Chain, DL, Value, StackSlot, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 6585 | MachinePointerInfo::getFixedStack(SSFI), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 6586 | false, false, 0); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6587 | SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6588 | SDValue Ops[] = { |
Chris Lattner | 492a43e | 2010-09-22 01:28:21 +0000 | [diff] [blame] | 6589 | Chain, StackSlot, DAG.getValueType(TheVT) |
Chris Lattner | 5a88b83 | 2007-02-25 07:10:00 +0000 | [diff] [blame] | 6590 | }; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6591 | |
Chris Lattner | 492a43e | 2010-09-22 01:28:21 +0000 | [diff] [blame] | 6592 | MachineMemOperand *MMO = |
| 6593 | MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI), |
| 6594 | MachineMemOperand::MOLoad, MemSize, MemSize); |
| 6595 | Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3, |
| 6596 | DstTy, MMO); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6597 | Chain = Value.getValue(1); |
David Greene | 3f2bf85 | 2009-11-12 20:49:22 +0000 | [diff] [blame] | 6598 | SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6599 | StackSlot = DAG.getFrameIndex(SSFI, getPointerTy()); |
| 6600 | } |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 6601 | |
Chris Lattner | 0729093 | 2010-09-22 01:05:16 +0000 | [diff] [blame] | 6602 | MachineMemOperand *MMO = |
| 6603 | MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI), |
| 6604 | MachineMemOperand::MOStore, MemSize, MemSize); |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 6605 | |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6606 | // Build the FP_TO_INT*_IN_MEM |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6607 | SDValue Ops[] = { Chain, Value, StackSlot }; |
Chris Lattner | 0729093 | 2010-09-22 01:05:16 +0000 | [diff] [blame] | 6608 | SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other), |
| 6609 | Ops, 3, DstTy, MMO); |
Evan Cheng | d9558e0 | 2006-01-06 00:43:03 +0000 | [diff] [blame] | 6610 | |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6611 | return std::make_pair(FIST, StackSlot); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6612 | } |
| 6613 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6614 | SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op, |
| 6615 | SelectionDAG &DAG) const { |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 6616 | if (Op.getValueType().isVector()) |
Eli Friedman | 23ef105 | 2009-06-06 03:57:58 +0000 | [diff] [blame] | 6617 | return SDValue(); |
Eli Friedman | 23ef105 | 2009-06-06 03:57:58 +0000 | [diff] [blame] | 6618 | |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 6619 | std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6620 | SDValue FIST = Vals.first, StackSlot = Vals.second; |
Eli Friedman | 36df499 | 2009-05-27 00:47:34 +0000 | [diff] [blame] | 6621 | // If FP_TO_INTHelper failed, the node is actually supposed to be Legal. |
| 6622 | if (FIST.getNode() == 0) return Op; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6623 | |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6624 | // Load the result. |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 6625 | return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(), |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 6626 | FIST, StackSlot, MachinePointerInfo(), false, false, 0); |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6627 | } |
| 6628 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6629 | SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op, |
| 6630 | SelectionDAG &DAG) const { |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 6631 | std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false); |
| 6632 | SDValue FIST = Vals.first, StackSlot = Vals.second; |
| 6633 | assert(FIST.getNode() && "Unexpected failure"); |
| 6634 | |
| 6635 | // Load the result. |
| 6636 | return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(), |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 6637 | FIST, StackSlot, MachinePointerInfo(), false, false, 0); |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 6638 | } |
| 6639 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6640 | SDValue X86TargetLowering::LowerFABS(SDValue Op, |
| 6641 | SelectionDAG &DAG) const { |
Owen Anderson | a90b3dc | 2009-07-15 21:51:10 +0000 | [diff] [blame] | 6642 | LLVMContext *Context = DAG.getContext(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 6643 | DebugLoc dl = Op.getDebugLoc(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6644 | EVT VT = Op.getValueType(); |
| 6645 | EVT EltVT = VT; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6646 | if (VT.isVector()) |
| 6647 | EltVT = VT.getVectorElementType(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6648 | std::vector<Constant*> CV; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6649 | if (EltVT == MVT::f64) { |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 6650 | Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))); |
Dan Gohman | 2038252 | 2007-07-10 00:05:58 +0000 | [diff] [blame] | 6651 | CV.push_back(C); |
| 6652 | CV.push_back(C); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6653 | } else { |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 6654 | Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))); |
Dan Gohman | 2038252 | 2007-07-10 00:05:58 +0000 | [diff] [blame] | 6655 | CV.push_back(C); |
| 6656 | CV.push_back(C); |
| 6657 | CV.push_back(C); |
| 6658 | CV.push_back(C); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6659 | } |
Owen Anderson | af7ec97 | 2009-07-28 21:19:26 +0000 | [diff] [blame] | 6660 | Constant *C = ConstantVector::get(CV); |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 6661 | SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6662 | SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 6663 | MachinePointerInfo::getConstantPool(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 6664 | false, false, 16); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6665 | return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6666 | } |
| 6667 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6668 | SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const { |
Owen Anderson | a90b3dc | 2009-07-15 21:51:10 +0000 | [diff] [blame] | 6669 | LLVMContext *Context = DAG.getContext(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 6670 | DebugLoc dl = Op.getDebugLoc(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6671 | EVT VT = Op.getValueType(); |
| 6672 | EVT EltVT = VT; |
Duncan Sands | da9ad38 | 2009-09-06 19:29:07 +0000 | [diff] [blame] | 6673 | if (VT.isVector()) |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6674 | EltVT = VT.getVectorElementType(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6675 | std::vector<Constant*> CV; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6676 | if (EltVT == MVT::f64) { |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 6677 | Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))); |
Dan Gohman | 2038252 | 2007-07-10 00:05:58 +0000 | [diff] [blame] | 6678 | CV.push_back(C); |
| 6679 | CV.push_back(C); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6680 | } else { |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 6681 | Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))); |
Dan Gohman | 2038252 | 2007-07-10 00:05:58 +0000 | [diff] [blame] | 6682 | CV.push_back(C); |
| 6683 | CV.push_back(C); |
| 6684 | CV.push_back(C); |
| 6685 | CV.push_back(C); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6686 | } |
Owen Anderson | af7ec97 | 2009-07-28 21:19:26 +0000 | [diff] [blame] | 6687 | Constant *C = ConstantVector::get(CV); |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 6688 | SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6689 | SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 6690 | MachinePointerInfo::getConstantPool(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 6691 | false, false, 16); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6692 | if (VT.isVector()) { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6693 | return DAG.getNode(ISD::BIT_CONVERT, dl, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6694 | DAG.getNode(ISD::XOR, dl, MVT::v2i64, |
| 6695 | DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6696 | Op.getOperand(0)), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6697 | DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, Mask))); |
Evan Cheng | d4d01b7 | 2007-07-19 23:36:01 +0000 | [diff] [blame] | 6698 | } else { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6699 | return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask); |
Evan Cheng | d4d01b7 | 2007-07-19 23:36:01 +0000 | [diff] [blame] | 6700 | } |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 6701 | } |
| 6702 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6703 | SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const { |
Owen Anderson | a90b3dc | 2009-07-15 21:51:10 +0000 | [diff] [blame] | 6704 | LLVMContext *Context = DAG.getContext(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6705 | SDValue Op0 = Op.getOperand(0); |
| 6706 | SDValue Op1 = Op.getOperand(1); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 6707 | DebugLoc dl = Op.getDebugLoc(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6708 | EVT VT = Op.getValueType(); |
| 6709 | EVT SrcVT = Op1.getValueType(); |
Evan Cheng | 73d6cf1 | 2007-01-05 21:37:56 +0000 | [diff] [blame] | 6710 | |
| 6711 | // If second operand is smaller, extend it first. |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 6712 | if (SrcVT.bitsLT(VT)) { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6713 | Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1); |
Evan Cheng | 73d6cf1 | 2007-01-05 21:37:56 +0000 | [diff] [blame] | 6714 | SrcVT = VT; |
| 6715 | } |
Dale Johannesen | 61c7ef3 | 2007-10-21 01:07:44 +0000 | [diff] [blame] | 6716 | // And if it is bigger, shrink it first. |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 6717 | if (SrcVT.bitsGT(VT)) { |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6718 | Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1)); |
Dale Johannesen | 61c7ef3 | 2007-10-21 01:07:44 +0000 | [diff] [blame] | 6719 | SrcVT = VT; |
Dale Johannesen | 61c7ef3 | 2007-10-21 01:07:44 +0000 | [diff] [blame] | 6720 | } |
| 6721 | |
| 6722 | // At this point the operands and the result should have the same |
| 6723 | // 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] | 6724 | |
Evan Cheng | 68c47cb | 2007-01-05 07:55:56 +0000 | [diff] [blame] | 6725 | // First get the sign bit of second operand. |
| 6726 | std::vector<Constant*> CV; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6727 | if (SrcVT == MVT::f64) { |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 6728 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)))); |
| 6729 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0)))); |
Evan Cheng | 68c47cb | 2007-01-05 07:55:56 +0000 | [diff] [blame] | 6730 | } else { |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 6731 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)))); |
| 6732 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0)))); |
| 6733 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0)))); |
| 6734 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0)))); |
Evan Cheng | 68c47cb | 2007-01-05 07:55:56 +0000 | [diff] [blame] | 6735 | } |
Owen Anderson | af7ec97 | 2009-07-28 21:19:26 +0000 | [diff] [blame] | 6736 | Constant *C = ConstantVector::get(CV); |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 6737 | SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6738 | SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 6739 | MachinePointerInfo::getConstantPool(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 6740 | false, false, 16); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6741 | SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1); |
Evan Cheng | 68c47cb | 2007-01-05 07:55:56 +0000 | [diff] [blame] | 6742 | |
| 6743 | // 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] | 6744 | if (SrcVT.bitsGT(VT)) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6745 | // Op0 is MVT::f32, Op1 is MVT::f64. |
| 6746 | SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit); |
| 6747 | SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit, |
| 6748 | DAG.getConstant(32, MVT::i32)); |
| 6749 | SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32, SignBit); |
| 6750 | SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 6751 | DAG.getIntPtrConstant(0)); |
Evan Cheng | 68c47cb | 2007-01-05 07:55:56 +0000 | [diff] [blame] | 6752 | } |
| 6753 | |
Evan Cheng | 73d6cf1 | 2007-01-05 21:37:56 +0000 | [diff] [blame] | 6754 | // Clear first operand sign bit. |
| 6755 | CV.clear(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6756 | if (VT == MVT::f64) { |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 6757 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))))); |
| 6758 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0)))); |
Evan Cheng | 73d6cf1 | 2007-01-05 21:37:56 +0000 | [diff] [blame] | 6759 | } else { |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 6760 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))))); |
| 6761 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0)))); |
| 6762 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0)))); |
| 6763 | CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0)))); |
Evan Cheng | 73d6cf1 | 2007-01-05 21:37:56 +0000 | [diff] [blame] | 6764 | } |
Owen Anderson | af7ec97 | 2009-07-28 21:19:26 +0000 | [diff] [blame] | 6765 | C = ConstantVector::get(CV); |
Evan Cheng | 1606e8e | 2009-03-13 07:51:59 +0000 | [diff] [blame] | 6766 | CPIdx = DAG.getConstantPool(C, getPointerTy(), 16); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6767 | SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 6768 | MachinePointerInfo::getConstantPool(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 6769 | false, false, 16); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6770 | SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2); |
Evan Cheng | 73d6cf1 | 2007-01-05 21:37:56 +0000 | [diff] [blame] | 6771 | |
| 6772 | // Or the value with the sign bit. |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 6773 | return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit); |
Evan Cheng | 68c47cb | 2007-01-05 07:55:56 +0000 | [diff] [blame] | 6774 | } |
| 6775 | |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6776 | /// Emit nodes that will be selected as "test Op0,Op0", or something |
| 6777 | /// equivalent. |
Dan Gohman | 3112581 | 2009-03-07 01:58:32 +0000 | [diff] [blame] | 6778 | SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC, |
Evan Cheng | 552f09a | 2010-04-26 19:06:11 +0000 | [diff] [blame] | 6779 | SelectionDAG &DAG) const { |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6780 | DebugLoc dl = Op.getDebugLoc(); |
| 6781 | |
Dan Gohman | 3112581 | 2009-03-07 01:58:32 +0000 | [diff] [blame] | 6782 | // CF and OF aren't always set the way we want. Determine which |
| 6783 | // of these we need. |
| 6784 | bool NeedCF = false; |
| 6785 | bool NeedOF = false; |
| 6786 | switch (X86CC) { |
Bill Wendling | c25ccf8 | 2010-06-28 21:08:32 +0000 | [diff] [blame] | 6787 | default: break; |
Dan Gohman | 3112581 | 2009-03-07 01:58:32 +0000 | [diff] [blame] | 6788 | case X86::COND_A: case X86::COND_AE: |
| 6789 | case X86::COND_B: case X86::COND_BE: |
| 6790 | NeedCF = true; |
| 6791 | break; |
| 6792 | case X86::COND_G: case X86::COND_GE: |
| 6793 | case X86::COND_L: case X86::COND_LE: |
| 6794 | case X86::COND_O: case X86::COND_NO: |
| 6795 | NeedOF = true; |
| 6796 | break; |
Dan Gohman | 3112581 | 2009-03-07 01:58:32 +0000 | [diff] [blame] | 6797 | } |
| 6798 | |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6799 | // 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] | 6800 | // doing a separate TEST. TEST always sets OF and CF to 0, so unless |
| 6801 | // 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] | 6802 | if (Op.getResNo() != 0 || NeedOF || NeedCF) |
| 6803 | // Emit a CMP with 0, which is the TEST pattern. |
| 6804 | return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op, |
| 6805 | DAG.getConstant(0, Op.getValueType())); |
| 6806 | |
| 6807 | unsigned Opcode = 0; |
| 6808 | unsigned NumOperands = 0; |
| 6809 | switch (Op.getNode()->getOpcode()) { |
| 6810 | case ISD::ADD: |
| 6811 | // Due to an isel shortcoming, be conservative if this add is likely to be |
| 6812 | // selected as part of a load-modify-store instruction. When the root node |
| 6813 | // in a match is a store, isel doesn't know how to remap non-chain non-flag |
| 6814 | // uses of other nodes in the match, such as the ADD in this case. This |
| 6815 | // leads to the ADD being left around and reselected, with the result being |
| 6816 | // two adds in the output. Alas, even if none our users are stores, that |
| 6817 | // doesn't prove we're O.K. Ergo, if we have any parents that aren't |
| 6818 | // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require |
| 6819 | // climbing the DAG back to the root, and it doesn't seem to be worth the |
| 6820 | // effort. |
| 6821 | for (SDNode::use_iterator UI = Op.getNode()->use_begin(), |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6822 | UE = Op.getNode()->use_end(); UI != UE; ++UI) |
Bill Wendling | c25ccf8 | 2010-06-28 21:08:32 +0000 | [diff] [blame] | 6823 | if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC) |
| 6824 | goto default_case; |
| 6825 | |
| 6826 | if (ConstantSDNode *C = |
| 6827 | dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) { |
| 6828 | // An add of one will be selected as an INC. |
| 6829 | if (C->getAPIntValue() == 1) { |
| 6830 | Opcode = X86ISD::INC; |
| 6831 | NumOperands = 1; |
| 6832 | break; |
Dan Gohman | e220c4b | 2009-09-18 19:59:53 +0000 | [diff] [blame] | 6833 | } |
Bill Wendling | c25ccf8 | 2010-06-28 21:08:32 +0000 | [diff] [blame] | 6834 | |
| 6835 | // An add of negative one (subtract of one) will be selected as a DEC. |
| 6836 | if (C->getAPIntValue().isAllOnesValue()) { |
| 6837 | Opcode = X86ISD::DEC; |
| 6838 | NumOperands = 1; |
| 6839 | break; |
| 6840 | } |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6841 | } |
Bill Wendling | c25ccf8 | 2010-06-28 21:08:32 +0000 | [diff] [blame] | 6842 | |
| 6843 | // Otherwise use a regular EFLAGS-setting add. |
| 6844 | Opcode = X86ISD::ADD; |
| 6845 | NumOperands = 2; |
| 6846 | break; |
| 6847 | case ISD::AND: { |
| 6848 | // If the primary and result isn't used, don't bother using X86ISD::AND, |
| 6849 | // because a TEST instruction will be better. |
| 6850 | bool NonFlagUse = false; |
| 6851 | for (SDNode::use_iterator UI = Op.getNode()->use_begin(), |
| 6852 | UE = Op.getNode()->use_end(); UI != UE; ++UI) { |
| 6853 | SDNode *User = *UI; |
| 6854 | unsigned UOpNo = UI.getOperandNo(); |
| 6855 | if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) { |
| 6856 | // Look pass truncate. |
| 6857 | UOpNo = User->use_begin().getOperandNo(); |
| 6858 | User = *User->use_begin(); |
| 6859 | } |
| 6860 | |
| 6861 | if (User->getOpcode() != ISD::BRCOND && |
| 6862 | User->getOpcode() != ISD::SETCC && |
| 6863 | (User->getOpcode() != ISD::SELECT || UOpNo != 0)) { |
| 6864 | NonFlagUse = true; |
| 6865 | break; |
| 6866 | } |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6867 | } |
Bill Wendling | c25ccf8 | 2010-06-28 21:08:32 +0000 | [diff] [blame] | 6868 | |
| 6869 | if (!NonFlagUse) |
| 6870 | break; |
| 6871 | } |
| 6872 | // FALL THROUGH |
| 6873 | case ISD::SUB: |
| 6874 | case ISD::OR: |
| 6875 | case ISD::XOR: |
| 6876 | // Due to the ISEL shortcoming noted above, be conservative if this op is |
| 6877 | // likely to be selected as part of a load-modify-store instruction. |
| 6878 | for (SDNode::use_iterator UI = Op.getNode()->use_begin(), |
| 6879 | UE = Op.getNode()->use_end(); UI != UE; ++UI) |
| 6880 | if (UI->getOpcode() == ISD::STORE) |
| 6881 | goto default_case; |
| 6882 | |
| 6883 | // Otherwise use a regular EFLAGS-setting instruction. |
| 6884 | switch (Op.getNode()->getOpcode()) { |
| 6885 | default: llvm_unreachable("unexpected operator!"); |
| 6886 | case ISD::SUB: Opcode = X86ISD::SUB; break; |
| 6887 | case ISD::OR: Opcode = X86ISD::OR; break; |
| 6888 | case ISD::XOR: Opcode = X86ISD::XOR; break; |
| 6889 | case ISD::AND: Opcode = X86ISD::AND; break; |
| 6890 | } |
| 6891 | |
| 6892 | NumOperands = 2; |
| 6893 | break; |
| 6894 | case X86ISD::ADD: |
| 6895 | case X86ISD::SUB: |
| 6896 | case X86ISD::INC: |
| 6897 | case X86ISD::DEC: |
| 6898 | case X86ISD::OR: |
| 6899 | case X86ISD::XOR: |
| 6900 | case X86ISD::AND: |
| 6901 | return SDValue(Op.getNode(), 1); |
| 6902 | default: |
| 6903 | default_case: |
| 6904 | break; |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6905 | } |
| 6906 | |
Bill Wendling | c25ccf8 | 2010-06-28 21:08:32 +0000 | [diff] [blame] | 6907 | if (Opcode == 0) |
| 6908 | // Emit a CMP with 0, which is the TEST pattern. |
| 6909 | return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op, |
| 6910 | DAG.getConstant(0, Op.getValueType())); |
| 6911 | |
| 6912 | SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32); |
| 6913 | SmallVector<SDValue, 4> Ops; |
| 6914 | for (unsigned i = 0; i != NumOperands; ++i) |
| 6915 | Ops.push_back(Op.getOperand(i)); |
| 6916 | |
| 6917 | SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands); |
| 6918 | DAG.ReplaceAllUsesWith(Op, New); |
| 6919 | return SDValue(New.getNode(), 1); |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6920 | } |
| 6921 | |
| 6922 | /// Emit nodes that will be selected as "cmp Op0,Op1", or something |
| 6923 | /// equivalent. |
Dan Gohman | 3112581 | 2009-03-07 01:58:32 +0000 | [diff] [blame] | 6924 | SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC, |
Evan Cheng | 552f09a | 2010-04-26 19:06:11 +0000 | [diff] [blame] | 6925 | SelectionDAG &DAG) const { |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6926 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1)) |
| 6927 | if (C->getAPIntValue() == 0) |
Evan Cheng | 552f09a | 2010-04-26 19:06:11 +0000 | [diff] [blame] | 6928 | return EmitTest(Op0, X86CC, DAG); |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6929 | |
| 6930 | DebugLoc dl = Op0.getDebugLoc(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 6931 | return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1); |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 6932 | } |
| 6933 | |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6934 | /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node |
| 6935 | /// if it's possible. |
Evan Cheng | 5528e7b | 2010-04-21 01:47:12 +0000 | [diff] [blame] | 6936 | SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC, |
| 6937 | DebugLoc dl, SelectionDAG &DAG) const { |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 6938 | SDValue Op0 = And.getOperand(0); |
| 6939 | SDValue Op1 = And.getOperand(1); |
| 6940 | if (Op0.getOpcode() == ISD::TRUNCATE) |
| 6941 | Op0 = Op0.getOperand(0); |
| 6942 | if (Op1.getOpcode() == ISD::TRUNCATE) |
| 6943 | Op1 = Op1.getOperand(0); |
| 6944 | |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6945 | SDValue LHS, RHS; |
Dan Gohman | 6b13cbc | 2010-06-24 02:07:59 +0000 | [diff] [blame] | 6946 | if (Op1.getOpcode() == ISD::SHL) |
| 6947 | std::swap(Op0, Op1); |
| 6948 | if (Op0.getOpcode() == ISD::SHL) { |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 6949 | if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0))) |
| 6950 | if (And00C->getZExtValue() == 1) { |
Dan Gohman | 6b13cbc | 2010-06-24 02:07:59 +0000 | [diff] [blame] | 6951 | // If we looked past a truncate, check that it's only truncating away |
| 6952 | // known zeros. |
| 6953 | unsigned BitWidth = Op0.getValueSizeInBits(); |
| 6954 | unsigned AndBitWidth = And.getValueSizeInBits(); |
| 6955 | if (BitWidth > AndBitWidth) { |
| 6956 | APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones; |
| 6957 | DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones); |
| 6958 | if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth) |
| 6959 | return SDValue(); |
| 6960 | } |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 6961 | LHS = Op1; |
| 6962 | RHS = Op0.getOperand(1); |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6963 | } |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 6964 | } else if (Op1.getOpcode() == ISD::Constant) { |
| 6965 | ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1); |
| 6966 | SDValue AndLHS = Op0; |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6967 | if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) { |
| 6968 | LHS = AndLHS.getOperand(0); |
| 6969 | RHS = AndLHS.getOperand(1); |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 6970 | } |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6971 | } |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 6972 | |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6973 | if (LHS.getNode()) { |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 6974 | // 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] | 6975 | // instruction. Since the shift amount is in-range-or-undefined, we know |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 6976 | // 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] | 6977 | // the encoding for the i16 version is larger than the i32 version. |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 6978 | // Also promote i16 to i32 for performance / code size reason. |
| 6979 | if (LHS.getValueType() == MVT::i8 || |
Evan Cheng | 2bce5f4b | 2010-04-28 08:30:49 +0000 | [diff] [blame] | 6980 | LHS.getValueType() == MVT::i16) |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6981 | LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS); |
Chris Lattner | e55484e | 2008-12-25 05:34:37 +0000 | [diff] [blame] | 6982 | |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6983 | // If the operand types disagree, extend the shift amount to match. Since |
| 6984 | // BT ignores high bits (like shifts) we can use anyextend. |
| 6985 | if (LHS.getValueType() != RHS.getValueType()) |
| 6986 | RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS); |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 6987 | |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 6988 | SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS); |
| 6989 | unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B; |
| 6990 | return DAG.getNode(X86ISD::SETCC, dl, MVT::i8, |
| 6991 | DAG.getConstant(Cond, MVT::i8), BT); |
Chris Lattner | e55484e | 2008-12-25 05:34:37 +0000 | [diff] [blame] | 6992 | } |
| 6993 | |
Evan Cheng | 54de3ea | 2010-01-05 06:52:31 +0000 | [diff] [blame] | 6994 | return SDValue(); |
| 6995 | } |
| 6996 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 6997 | SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const { |
Evan Cheng | 54de3ea | 2010-01-05 06:52:31 +0000 | [diff] [blame] | 6998 | assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer"); |
| 6999 | SDValue Op0 = Op.getOperand(0); |
| 7000 | SDValue Op1 = Op.getOperand(1); |
| 7001 | DebugLoc dl = Op.getDebugLoc(); |
| 7002 | ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get(); |
| 7003 | |
| 7004 | // Optimize to BT if possible. |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 7005 | // Lower (X & (1 << N)) == 0 to BT(X, N). |
| 7006 | // Lower ((X >>u N) & 1) != 0 to BT(X, N). |
| 7007 | // Lower ((X >>s N) & 1) != 0 to BT(X, N). |
| 7008 | if (Op0.getOpcode() == ISD::AND && |
| 7009 | Op0.hasOneUse() && |
| 7010 | Op1.getOpcode() == ISD::Constant && |
Dan Gohman | e368b46 | 2010-06-18 14:22:04 +0000 | [diff] [blame] | 7011 | cast<ConstantSDNode>(Op1)->isNullValue() && |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 7012 | (CC == ISD::SETEQ || CC == ISD::SETNE)) { |
| 7013 | SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG); |
| 7014 | if (NewSetCC.getNode()) |
| 7015 | return NewSetCC; |
| 7016 | } |
Evan Cheng | 54de3ea | 2010-01-05 06:52:31 +0000 | [diff] [blame] | 7017 | |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 7018 | // Look for "(setcc) == / != 1" to avoid unncessary setcc. |
| 7019 | if (Op0.getOpcode() == X86ISD::SETCC && |
| 7020 | Op1.getOpcode() == ISD::Constant && |
| 7021 | (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 || |
| 7022 | cast<ConstantSDNode>(Op1)->isNullValue()) && |
| 7023 | (CC == ISD::SETEQ || CC == ISD::SETNE)) { |
| 7024 | X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0); |
| 7025 | bool Invert = (CC == ISD::SETNE) ^ |
| 7026 | cast<ConstantSDNode>(Op1)->isNullValue(); |
| 7027 | if (Invert) |
| 7028 | CCode = X86::GetOppositeBranchCondition(CCode); |
| 7029 | return DAG.getNode(X86ISD::SETCC, dl, MVT::i8, |
| 7030 | DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1)); |
| 7031 | } |
| 7032 | |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 7033 | bool isFP = Op1.getValueType().isFloatingPoint(); |
Chris Lattner | e55484e | 2008-12-25 05:34:37 +0000 | [diff] [blame] | 7034 | unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG); |
Dan Gohman | 1a49295 | 2009-10-20 16:22:37 +0000 | [diff] [blame] | 7035 | if (X86CC == X86::COND_INVALID) |
| 7036 | return SDValue(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7037 | |
Evan Cheng | 552f09a | 2010-04-26 19:06:11 +0000 | [diff] [blame] | 7038 | SDValue Cond = EmitCmp(Op0, Op1, X86CC, DAG); |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 7039 | |
| 7040 | // Use sbb x, x to materialize carry bit into a GPR. |
Evan Cheng | 2e489c4 | 2009-12-16 00:53:11 +0000 | [diff] [blame] | 7041 | if (X86CC == X86::COND_B) |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 7042 | return DAG.getNode(ISD::AND, dl, MVT::i8, |
| 7043 | DAG.getNode(X86ISD::SETCC_CARRY, dl, MVT::i8, |
| 7044 | DAG.getConstant(X86CC, MVT::i8), Cond), |
| 7045 | DAG.getConstant(1, MVT::i8)); |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 7046 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7047 | return DAG.getNode(X86ISD::SETCC, dl, MVT::i8, |
| 7048 | DAG.getConstant(X86CC, MVT::i8), Cond); |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7049 | } |
| 7050 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7051 | SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7052 | SDValue Cond; |
| 7053 | SDValue Op0 = Op.getOperand(0); |
| 7054 | SDValue Op1 = Op.getOperand(1); |
| 7055 | SDValue CC = Op.getOperand(2); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 7056 | EVT VT = Op.getValueType(); |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7057 | ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get(); |
| 7058 | bool isFP = Op.getOperand(1).getValueType().isFloatingPoint(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 7059 | DebugLoc dl = Op.getDebugLoc(); |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7060 | |
| 7061 | if (isFP) { |
| 7062 | unsigned SSECC = 8; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 7063 | EVT VT0 = Op0.getValueType(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7064 | assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64); |
| 7065 | unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD; |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7066 | bool Swap = false; |
| 7067 | |
| 7068 | switch (SetCCOpcode) { |
| 7069 | default: break; |
Nate Begeman | fb8ead0 | 2008-07-25 19:05:58 +0000 | [diff] [blame] | 7070 | case ISD::SETOEQ: |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7071 | case ISD::SETEQ: SSECC = 0; break; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7072 | case ISD::SETOGT: |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7073 | case ISD::SETGT: Swap = true; // Fallthrough |
| 7074 | case ISD::SETLT: |
| 7075 | case ISD::SETOLT: SSECC = 1; break; |
| 7076 | case ISD::SETOGE: |
| 7077 | case ISD::SETGE: Swap = true; // Fallthrough |
| 7078 | case ISD::SETLE: |
| 7079 | case ISD::SETOLE: SSECC = 2; break; |
| 7080 | case ISD::SETUO: SSECC = 3; break; |
Nate Begeman | fb8ead0 | 2008-07-25 19:05:58 +0000 | [diff] [blame] | 7081 | case ISD::SETUNE: |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7082 | case ISD::SETNE: SSECC = 4; break; |
| 7083 | case ISD::SETULE: Swap = true; |
| 7084 | case ISD::SETUGE: SSECC = 5; break; |
| 7085 | case ISD::SETULT: Swap = true; |
| 7086 | case ISD::SETUGT: SSECC = 6; break; |
| 7087 | case ISD::SETO: SSECC = 7; break; |
| 7088 | } |
| 7089 | if (Swap) |
| 7090 | std::swap(Op0, Op1); |
| 7091 | |
Nate Begeman | fb8ead0 | 2008-07-25 19:05:58 +0000 | [diff] [blame] | 7092 | // In the two special cases we can't handle, emit two comparisons. |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7093 | if (SSECC == 8) { |
Nate Begeman | fb8ead0 | 2008-07-25 19:05:58 +0000 | [diff] [blame] | 7094 | if (SetCCOpcode == ISD::SETUEQ) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7095 | SDValue UNORD, EQ; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7096 | UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8)); |
| 7097 | 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] | 7098 | return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ); |
Nate Begeman | fb8ead0 | 2008-07-25 19:05:58 +0000 | [diff] [blame] | 7099 | } |
| 7100 | else if (SetCCOpcode == ISD::SETONE) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7101 | SDValue ORD, NEQ; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7102 | ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8)); |
| 7103 | 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] | 7104 | return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ); |
Nate Begeman | fb8ead0 | 2008-07-25 19:05:58 +0000 | [diff] [blame] | 7105 | } |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 7106 | llvm_unreachable("Illegal FP comparison"); |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7107 | } |
| 7108 | // Handle all other FP comparisons here. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7109 | 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] | 7110 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7111 | |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7112 | // We are handling one of the integer comparisons here. Since SSE only has |
| 7113 | // GT and EQ comparisons for integer, swapping operands and multiple |
| 7114 | // operations may be required for some comparisons. |
| 7115 | unsigned Opc = 0, EQOpc = 0, GTOpc = 0; |
| 7116 | bool Swap = false, Invert = false, FlipSigns = false; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7117 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7118 | switch (VT.getSimpleVT().SimpleTy) { |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7119 | default: break; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7120 | case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7121 | case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7122 | case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break; |
| 7123 | case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break; |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7124 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7125 | |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7126 | switch (SetCCOpcode) { |
| 7127 | default: break; |
| 7128 | case ISD::SETNE: Invert = true; |
| 7129 | case ISD::SETEQ: Opc = EQOpc; break; |
| 7130 | case ISD::SETLT: Swap = true; |
| 7131 | case ISD::SETGT: Opc = GTOpc; break; |
| 7132 | case ISD::SETGE: Swap = true; |
| 7133 | case ISD::SETLE: Opc = GTOpc; Invert = true; break; |
| 7134 | case ISD::SETULT: Swap = true; |
| 7135 | case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break; |
| 7136 | case ISD::SETUGE: Swap = true; |
| 7137 | case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break; |
| 7138 | } |
| 7139 | if (Swap) |
| 7140 | std::swap(Op0, Op1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7141 | |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7142 | // Since SSE has no unsigned integer comparisons, we need to flip the sign |
| 7143 | // bits of the inputs before performing those operations. |
| 7144 | if (FlipSigns) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 7145 | EVT EltVT = VT.getVectorElementType(); |
Duncan Sands | b0d5cdd | 2009-02-01 18:06:53 +0000 | [diff] [blame] | 7146 | SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), |
| 7147 | EltVT); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7148 | std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit); |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 7149 | SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0], |
| 7150 | SignBits.size()); |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 7151 | Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec); |
| 7152 | Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec); |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7153 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7154 | |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 7155 | SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1); |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7156 | |
| 7157 | // If the logical-not of the result is required, perform that now. |
Bob Wilson | 4c24546 | 2009-01-22 17:39:32 +0000 | [diff] [blame] | 7158 | if (Invert) |
Dale Johannesen | ace1610 | 2009-02-03 19:33:06 +0000 | [diff] [blame] | 7159 | Result = DAG.getNOT(dl, Result, VT); |
Bob Wilson | 4c24546 | 2009-01-22 17:39:32 +0000 | [diff] [blame] | 7160 | |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 7161 | return Result; |
| 7162 | } |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7163 | |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7164 | // isX86LogicalCmp - Return true if opcode is a X86 logical comparison. |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 7165 | static bool isX86LogicalCmp(SDValue Op) { |
| 7166 | unsigned Opc = Op.getNode()->getOpcode(); |
| 7167 | if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI) |
| 7168 | return true; |
| 7169 | if (Op.getResNo() == 1 && |
| 7170 | (Opc == X86ISD::ADD || |
| 7171 | Opc == X86ISD::SUB || |
| 7172 | Opc == X86ISD::SMUL || |
| 7173 | Opc == X86ISD::UMUL || |
| 7174 | Opc == X86ISD::INC || |
Dan Gohman | e220c4b | 2009-09-18 19:59:53 +0000 | [diff] [blame] | 7175 | Opc == X86ISD::DEC || |
| 7176 | Opc == X86ISD::OR || |
| 7177 | Opc == X86ISD::XOR || |
| 7178 | Opc == X86ISD::AND)) |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 7179 | return true; |
| 7180 | |
| 7181 | return false; |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7182 | } |
| 7183 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7184 | SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const { |
Evan Cheng | 734503b | 2006-09-11 02:19:56 +0000 | [diff] [blame] | 7185 | bool addTest = true; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7186 | SDValue Cond = Op.getOperand(0); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 7187 | DebugLoc dl = Op.getDebugLoc(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7188 | SDValue CC; |
Evan Cheng | 9bba894 | 2006-01-26 02:13:10 +0000 | [diff] [blame] | 7189 | |
Dan Gohman | 1a49295 | 2009-10-20 16:22:37 +0000 | [diff] [blame] | 7190 | if (Cond.getOpcode() == ISD::SETCC) { |
| 7191 | SDValue NewCond = LowerSETCC(Cond, DAG); |
| 7192 | if (NewCond.getNode()) |
| 7193 | Cond = NewCond; |
| 7194 | } |
Evan Cheng | 734503b | 2006-09-11 02:19:56 +0000 | [diff] [blame] | 7195 | |
Evan Cheng | 8c7ecaf | 2010-01-26 02:00:44 +0000 | [diff] [blame] | 7196 | // (select (x == 0), -1, 0) -> (sign_bit (x - 1)) |
| 7197 | SDValue Op1 = Op.getOperand(1); |
| 7198 | SDValue Op2 = Op.getOperand(2); |
| 7199 | if (Cond.getOpcode() == X86ISD::SETCC && |
| 7200 | cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue() == X86::COND_E) { |
| 7201 | SDValue Cmp = Cond.getOperand(1); |
| 7202 | if (Cmp.getOpcode() == X86ISD::CMP) { |
| 7203 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op1); |
| 7204 | ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2); |
| 7205 | ConstantSDNode *RHSC = |
| 7206 | dyn_cast<ConstantSDNode>(Cmp.getOperand(1).getNode()); |
| 7207 | if (N1C && N1C->isAllOnesValue() && |
| 7208 | N2C && N2C->isNullValue() && |
| 7209 | RHSC && RHSC->isNullValue()) { |
| 7210 | SDValue CmpOp0 = Cmp.getOperand(0); |
Chris Lattner | da0688e | 2010-03-14 18:44:35 +0000 | [diff] [blame] | 7211 | Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32, |
Evan Cheng | 8c7ecaf | 2010-01-26 02:00:44 +0000 | [diff] [blame] | 7212 | CmpOp0, DAG.getConstant(1, CmpOp0.getValueType())); |
| 7213 | return DAG.getNode(X86ISD::SETCC_CARRY, dl, Op.getValueType(), |
| 7214 | DAG.getConstant(X86::COND_B, MVT::i8), Cmp); |
| 7215 | } |
| 7216 | } |
| 7217 | } |
| 7218 | |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 7219 | // Look pass (and (setcc_carry (cmp ...)), 1). |
| 7220 | if (Cond.getOpcode() == ISD::AND && |
| 7221 | Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) { |
| 7222 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1)); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 7223 | if (C && C->getAPIntValue() == 1) |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 7224 | Cond = Cond.getOperand(0); |
| 7225 | } |
| 7226 | |
Evan Cheng | 3f41d66 | 2007-10-08 22:16:29 +0000 | [diff] [blame] | 7227 | // If condition flag is set by a X86ISD::CMP, then use it as the condition |
| 7228 | // setting operand in place of the X86ISD::SETCC. |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 7229 | if (Cond.getOpcode() == X86ISD::SETCC || |
| 7230 | Cond.getOpcode() == X86ISD::SETCC_CARRY) { |
Evan Cheng | 734503b | 2006-09-11 02:19:56 +0000 | [diff] [blame] | 7231 | CC = Cond.getOperand(0); |
| 7232 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7233 | SDValue Cmp = Cond.getOperand(1); |
Evan Cheng | 734503b | 2006-09-11 02:19:56 +0000 | [diff] [blame] | 7234 | unsigned Opc = Cmp.getOpcode(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 7235 | EVT VT = Op.getValueType(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7236 | |
Evan Cheng | 3f41d66 | 2007-10-08 22:16:29 +0000 | [diff] [blame] | 7237 | bool IllegalFPCMov = false; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 7238 | if (VT.isFloatingPoint() && !VT.isVector() && |
Chris Lattner | 7863116 | 2008-01-16 06:24:21 +0000 | [diff] [blame] | 7239 | !isScalarFPTypeInSSEReg(VT)) // FPStack? |
Dan Gohman | 7810bfe | 2008-09-26 21:54:37 +0000 | [diff] [blame] | 7240 | IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7241 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 7242 | if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) || |
| 7243 | Opc == X86ISD::BT) { // FIXME |
Evan Cheng | 3f41d66 | 2007-10-08 22:16:29 +0000 | [diff] [blame] | 7244 | Cond = Cmp; |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7245 | addTest = false; |
| 7246 | } |
| 7247 | } |
| 7248 | |
| 7249 | if (addTest) { |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 7250 | // Look pass the truncate. |
| 7251 | if (Cond.getOpcode() == ISD::TRUNCATE) |
| 7252 | Cond = Cond.getOperand(0); |
| 7253 | |
| 7254 | // We know the result of AND is compared against zero. Try to match |
| 7255 | // it to BT. |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 7256 | if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) { |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 7257 | SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG); |
| 7258 | if (NewSetCC.getNode()) { |
| 7259 | CC = NewSetCC.getOperand(0); |
| 7260 | Cond = NewSetCC.getOperand(1); |
| 7261 | addTest = false; |
| 7262 | } |
| 7263 | } |
| 7264 | } |
| 7265 | |
| 7266 | if (addTest) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7267 | CC = DAG.getConstant(X86::COND_NE, MVT::i8); |
Evan Cheng | 552f09a | 2010-04-26 19:06:11 +0000 | [diff] [blame] | 7268 | Cond = EmitTest(Cond, X86::COND_NE, DAG); |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7269 | } |
| 7270 | |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7271 | // X86ISD::CMOV means set the result (which is operand 1) to the RHS if |
| 7272 | // condition is true. |
Evan Cheng | 8c7ecaf | 2010-01-26 02:00:44 +0000 | [diff] [blame] | 7273 | SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Flag); |
| 7274 | SDValue Ops[] = { Op2, Op1, CC, Cond }; |
Benjamin Kramer | 7f1a560 | 2009-12-29 16:57:26 +0000 | [diff] [blame] | 7275 | return DAG.getNode(X86ISD::CMOV, dl, VTs, Ops, array_lengthof(Ops)); |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7276 | } |
| 7277 | |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7278 | // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or |
| 7279 | // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart |
| 7280 | // from the AND / OR. |
| 7281 | static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) { |
| 7282 | Opc = Op.getOpcode(); |
| 7283 | if (Opc != ISD::OR && Opc != ISD::AND) |
| 7284 | return false; |
| 7285 | return (Op.getOperand(0).getOpcode() == X86ISD::SETCC && |
| 7286 | Op.getOperand(0).hasOneUse() && |
| 7287 | Op.getOperand(1).getOpcode() == X86ISD::SETCC && |
| 7288 | Op.getOperand(1).hasOneUse()); |
| 7289 | } |
| 7290 | |
Evan Cheng | 961d6d4 | 2009-02-02 08:19:07 +0000 | [diff] [blame] | 7291 | // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and |
| 7292 | // 1 and that the SETCC node has a single use. |
Evan Cheng | 67ad9db | 2009-02-02 08:07:36 +0000 | [diff] [blame] | 7293 | static bool isXor1OfSetCC(SDValue Op) { |
| 7294 | if (Op.getOpcode() != ISD::XOR) |
| 7295 | return false; |
| 7296 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1)); |
| 7297 | if (N1C && N1C->getAPIntValue() == 1) { |
| 7298 | return Op.getOperand(0).getOpcode() == X86ISD::SETCC && |
| 7299 | Op.getOperand(0).hasOneUse(); |
| 7300 | } |
| 7301 | return false; |
| 7302 | } |
| 7303 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7304 | SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const { |
Evan Cheng | 734503b | 2006-09-11 02:19:56 +0000 | [diff] [blame] | 7305 | bool addTest = true; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7306 | SDValue Chain = Op.getOperand(0); |
| 7307 | SDValue Cond = Op.getOperand(1); |
| 7308 | SDValue Dest = Op.getOperand(2); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 7309 | DebugLoc dl = Op.getDebugLoc(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7310 | SDValue CC; |
Evan Cheng | 734503b | 2006-09-11 02:19:56 +0000 | [diff] [blame] | 7311 | |
Dan Gohman | 1a49295 | 2009-10-20 16:22:37 +0000 | [diff] [blame] | 7312 | if (Cond.getOpcode() == ISD::SETCC) { |
| 7313 | SDValue NewCond = LowerSETCC(Cond, DAG); |
| 7314 | if (NewCond.getNode()) |
| 7315 | Cond = NewCond; |
| 7316 | } |
Chris Lattner | e55484e | 2008-12-25 05:34:37 +0000 | [diff] [blame] | 7317 | #if 0 |
| 7318 | // FIXME: LowerXALUO doesn't handle these!! |
Bill Wendling | d350e02 | 2008-12-12 21:15:41 +0000 | [diff] [blame] | 7319 | else if (Cond.getOpcode() == X86ISD::ADD || |
| 7320 | Cond.getOpcode() == X86ISD::SUB || |
| 7321 | Cond.getOpcode() == X86ISD::SMUL || |
| 7322 | Cond.getOpcode() == X86ISD::UMUL) |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 7323 | Cond = LowerXALUO(Cond, DAG); |
Chris Lattner | e55484e | 2008-12-25 05:34:37 +0000 | [diff] [blame] | 7324 | #endif |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7325 | |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 7326 | // Look pass (and (setcc_carry (cmp ...)), 1). |
| 7327 | if (Cond.getOpcode() == ISD::AND && |
| 7328 | Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) { |
| 7329 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1)); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 7330 | if (C && C->getAPIntValue() == 1) |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 7331 | Cond = Cond.getOperand(0); |
| 7332 | } |
| 7333 | |
Evan Cheng | 3f41d66 | 2007-10-08 22:16:29 +0000 | [diff] [blame] | 7334 | // If condition flag is set by a X86ISD::CMP, then use it as the condition |
| 7335 | // setting operand in place of the X86ISD::SETCC. |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 7336 | if (Cond.getOpcode() == X86ISD::SETCC || |
| 7337 | Cond.getOpcode() == X86ISD::SETCC_CARRY) { |
Evan Cheng | 734503b | 2006-09-11 02:19:56 +0000 | [diff] [blame] | 7338 | CC = Cond.getOperand(0); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7339 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7340 | SDValue Cmp = Cond.getOperand(1); |
Evan Cheng | 734503b | 2006-09-11 02:19:56 +0000 | [diff] [blame] | 7341 | unsigned Opc = Cmp.getOpcode(); |
Chris Lattner | e55484e | 2008-12-25 05:34:37 +0000 | [diff] [blame] | 7342 | // FIXME: WHY THE SPECIAL CASING OF LogicalCmp?? |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 7343 | if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) { |
Evan Cheng | 3f41d66 | 2007-10-08 22:16:29 +0000 | [diff] [blame] | 7344 | Cond = Cmp; |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7345 | addTest = false; |
Bill Wendling | 61edeb5 | 2008-12-02 01:06:39 +0000 | [diff] [blame] | 7346 | } else { |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7347 | switch (cast<ConstantSDNode>(CC)->getZExtValue()) { |
Bill Wendling | 0ea25cb | 2008-12-03 08:32:02 +0000 | [diff] [blame] | 7348 | default: break; |
| 7349 | case X86::COND_O: |
Dan Gohman | 653456c | 2009-01-07 00:15:08 +0000 | [diff] [blame] | 7350 | case X86::COND_B: |
Chris Lattner | e55484e | 2008-12-25 05:34:37 +0000 | [diff] [blame] | 7351 | // These can only come from an arithmetic instruction with overflow, |
| 7352 | // e.g. SADDO, UADDO. |
Bill Wendling | 0ea25cb | 2008-12-03 08:32:02 +0000 | [diff] [blame] | 7353 | Cond = Cond.getNode()->getOperand(1); |
| 7354 | addTest = false; |
| 7355 | break; |
Bill Wendling | 61edeb5 | 2008-12-02 01:06:39 +0000 | [diff] [blame] | 7356 | } |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7357 | } |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7358 | } else { |
| 7359 | unsigned CondOpc; |
| 7360 | if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) { |
| 7361 | SDValue Cmp = Cond.getOperand(0).getOperand(1); |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7362 | if (CondOpc == ISD::OR) { |
| 7363 | // Also, recognize the pattern generated by an FCMP_UNE. We can emit |
| 7364 | // two branches instead of an explicit OR instruction with a |
| 7365 | // separate test. |
| 7366 | if (Cmp == Cond.getOperand(1).getOperand(1) && |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 7367 | isX86LogicalCmp(Cmp)) { |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7368 | CC = Cond.getOperand(0).getOperand(0); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7369 | Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(), |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7370 | Chain, Dest, CC, Cmp); |
| 7371 | CC = Cond.getOperand(1).getOperand(0); |
| 7372 | Cond = Cmp; |
| 7373 | addTest = false; |
| 7374 | } |
| 7375 | } else { // ISD::AND |
| 7376 | // Also, recognize the pattern generated by an FCMP_OEQ. We can emit |
| 7377 | // two branches instead of an explicit AND instruction with a |
| 7378 | // separate test. However, we only do this if this block doesn't |
| 7379 | // have a fall-through edge, because this requires an explicit |
| 7380 | // jmp when the condition is false. |
| 7381 | if (Cmp == Cond.getOperand(1).getOperand(1) && |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 7382 | isX86LogicalCmp(Cmp) && |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7383 | Op.getNode()->hasOneUse()) { |
| 7384 | X86::CondCode CCode = |
| 7385 | (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0); |
| 7386 | CCode = X86::GetOppositeBranchCondition(CCode); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7387 | CC = DAG.getConstant(CCode, MVT::i8); |
Dan Gohman | 027657d | 2010-06-18 15:30:29 +0000 | [diff] [blame] | 7388 | SDNode *User = *Op.getNode()->use_begin(); |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7389 | // Look for an unconditional branch following this conditional branch. |
| 7390 | // We need this because we need to reverse the successors in order |
| 7391 | // to implement FCMP_OEQ. |
Dan Gohman | 027657d | 2010-06-18 15:30:29 +0000 | [diff] [blame] | 7392 | if (User->getOpcode() == ISD::BR) { |
| 7393 | SDValue FalseBB = User->getOperand(1); |
| 7394 | SDNode *NewBR = |
| 7395 | DAG.UpdateNodeOperands(User, User->getOperand(0), Dest); |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7396 | assert(NewBR == User); |
Nick Lewycky | 2a3ee5e | 2010-06-20 20:27:42 +0000 | [diff] [blame] | 7397 | (void)NewBR; |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7398 | Dest = FalseBB; |
Dan Gohman | 279c22e | 2008-10-21 03:29:32 +0000 | [diff] [blame] | 7399 | |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7400 | Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(), |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7401 | Chain, Dest, CC, Cmp); |
| 7402 | X86::CondCode CCode = |
| 7403 | (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0); |
| 7404 | CCode = X86::GetOppositeBranchCondition(CCode); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7405 | CC = DAG.getConstant(CCode, MVT::i8); |
Evan Cheng | 370e534 | 2008-12-03 08:38:43 +0000 | [diff] [blame] | 7406 | Cond = Cmp; |
| 7407 | addTest = false; |
| 7408 | } |
| 7409 | } |
Dan Gohman | 279c22e | 2008-10-21 03:29:32 +0000 | [diff] [blame] | 7410 | } |
Evan Cheng | 67ad9db | 2009-02-02 08:07:36 +0000 | [diff] [blame] | 7411 | } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) { |
| 7412 | // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition. |
| 7413 | // It should be transformed during dag combiner except when the condition |
| 7414 | // is set by a arithmetics with overflow node. |
| 7415 | X86::CondCode CCode = |
| 7416 | (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0); |
| 7417 | CCode = X86::GetOppositeBranchCondition(CCode); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7418 | CC = DAG.getConstant(CCode, MVT::i8); |
Evan Cheng | 67ad9db | 2009-02-02 08:07:36 +0000 | [diff] [blame] | 7419 | Cond = Cond.getOperand(0).getOperand(1); |
| 7420 | addTest = false; |
Dan Gohman | 279c22e | 2008-10-21 03:29:32 +0000 | [diff] [blame] | 7421 | } |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7422 | } |
| 7423 | |
| 7424 | if (addTest) { |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 7425 | // Look pass the truncate. |
| 7426 | if (Cond.getOpcode() == ISD::TRUNCATE) |
| 7427 | Cond = Cond.getOperand(0); |
| 7428 | |
| 7429 | // We know the result of AND is compared against zero. Try to match |
| 7430 | // it to BT. |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 7431 | if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) { |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 7432 | SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG); |
| 7433 | if (NewSetCC.getNode()) { |
| 7434 | CC = NewSetCC.getOperand(0); |
| 7435 | Cond = NewSetCC.getOperand(1); |
| 7436 | addTest = false; |
| 7437 | } |
| 7438 | } |
| 7439 | } |
| 7440 | |
| 7441 | if (addTest) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7442 | CC = DAG.getConstant(X86::COND_NE, MVT::i8); |
Evan Cheng | 552f09a | 2010-04-26 19:06:11 +0000 | [diff] [blame] | 7443 | Cond = EmitTest(Cond, X86::COND_NE, DAG); |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7444 | } |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7445 | return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(), |
Dan Gohman | 279c22e | 2008-10-21 03:29:32 +0000 | [diff] [blame] | 7446 | Chain, Dest, CC, Cond); |
Evan Cheng | 0488db9 | 2007-09-25 01:57:46 +0000 | [diff] [blame] | 7447 | } |
| 7448 | |
Anton Korobeynikov | e060b53 | 2007-04-17 19:34:00 +0000 | [diff] [blame] | 7449 | |
| 7450 | // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets. |
| 7451 | // Calls to _alloca is needed to probe the stack when allocating more than 4k |
| 7452 | // bytes in one go. Touching the stack at 4K increments is necessary to ensure |
| 7453 | // that the guard pages used by the OS virtual memory manager are allocated in |
| 7454 | // correct sequence. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7455 | SDValue |
| 7456 | X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7457 | SelectionDAG &DAG) const { |
Duncan Sands | 1e1ca0b | 2010-10-21 16:02:12 +0000 | [diff] [blame] | 7458 | assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) && |
Michael J. Spencer | e9c253e | 2010-10-21 01:41:01 +0000 | [diff] [blame] | 7459 | "This should be used only on Windows targets"); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 7460 | DebugLoc dl = Op.getDebugLoc(); |
Anton Korobeynikov | 096b461 | 2008-06-11 20:16:42 +0000 | [diff] [blame] | 7461 | |
Anton Korobeynikov | 57fc00d | 2007-04-17 09:20:00 +0000 | [diff] [blame] | 7462 | // Get the inputs. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7463 | SDValue Chain = Op.getOperand(0); |
| 7464 | SDValue Size = Op.getOperand(1); |
Anton Korobeynikov | 57fc00d | 2007-04-17 09:20:00 +0000 | [diff] [blame] | 7465 | // FIXME: Ensure alignment here |
| 7466 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7467 | SDValue Flag; |
Anton Korobeynikov | 096b461 | 2008-06-11 20:16:42 +0000 | [diff] [blame] | 7468 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7469 | EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32; |
Anton Korobeynikov | 57fc00d | 2007-04-17 09:20:00 +0000 | [diff] [blame] | 7470 | |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 7471 | Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Size, Flag); |
Anton Korobeynikov | 4304bcc | 2007-07-05 20:36:08 +0000 | [diff] [blame] | 7472 | Flag = Chain.getValue(1); |
| 7473 | |
Anton Korobeynikov | 043f3c2 | 2010-03-06 19:32:29 +0000 | [diff] [blame] | 7474 | SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag); |
Anton Korobeynikov | 4304bcc | 2007-07-05 20:36:08 +0000 | [diff] [blame] | 7475 | |
Michael J. Spencer | e9c253e | 2010-10-21 01:41:01 +0000 | [diff] [blame] | 7476 | Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag); |
Anton Korobeynikov | 043f3c2 | 2010-03-06 19:32:29 +0000 | [diff] [blame] | 7477 | Flag = Chain.getValue(1); |
Anton Korobeynikov | 096b461 | 2008-06-11 20:16:42 +0000 | [diff] [blame] | 7478 | |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 7479 | Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1); |
Anton Korobeynikov | 096b461 | 2008-06-11 20:16:42 +0000 | [diff] [blame] | 7480 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7481 | SDValue Ops1[2] = { Chain.getValue(0), Chain }; |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7482 | return DAG.getMergeValues(Ops1, 2, dl); |
Anton Korobeynikov | 57fc00d | 2007-04-17 09:20:00 +0000 | [diff] [blame] | 7483 | } |
| 7484 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7485 | SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const { |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 7486 | MachineFunction &MF = DAG.getMachineFunction(); |
| 7487 | X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>(); |
| 7488 | |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 7489 | const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue(); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7490 | DebugLoc DL = Op.getDebugLoc(); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 7491 | |
Anton Korobeynikov | e7beda1 | 2010-10-03 22:52:07 +0000 | [diff] [blame] | 7492 | if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) { |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 7493 | // vastart just stores the address of the VarArgsFrameIndex slot into the |
| 7494 | // memory location argument. |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 7495 | SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), |
| 7496 | getPointerTy()); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7497 | return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1), |
| 7498 | MachinePointerInfo(SV), false, false, 0); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 7499 | } |
| 7500 | |
| 7501 | // __va_list_tag: |
| 7502 | // gp_offset (0 - 6 * 8) |
| 7503 | // fp_offset (48 - 48 + 8 * 16) |
| 7504 | // overflow_arg_area (point to parameters coming in memory). |
| 7505 | // reg_save_area |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7506 | SmallVector<SDValue, 8> MemOps; |
| 7507 | SDValue FIN = Op.getOperand(1); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 7508 | // Store gp_offset |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7509 | SDValue Store = DAG.getStore(Op.getOperand(0), DL, |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 7510 | DAG.getConstant(FuncInfo->getVarArgsGPOffset(), |
| 7511 | MVT::i32), |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7512 | FIN, MachinePointerInfo(SV), false, false, 0); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 7513 | MemOps.push_back(Store); |
| 7514 | |
| 7515 | // Store fp_offset |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7516 | FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(), |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7517 | FIN, DAG.getIntPtrConstant(4)); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7518 | Store = DAG.getStore(Op.getOperand(0), DL, |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 7519 | DAG.getConstant(FuncInfo->getVarArgsFPOffset(), |
| 7520 | MVT::i32), |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7521 | FIN, MachinePointerInfo(SV, 4), false, false, 0); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 7522 | MemOps.push_back(Store); |
| 7523 | |
| 7524 | // Store ptr to overflow_arg_area |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7525 | FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(), |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7526 | FIN, DAG.getIntPtrConstant(4)); |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 7527 | SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), |
| 7528 | getPointerTy()); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7529 | Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN, |
| 7530 | MachinePointerInfo(SV, 8), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 7531 | false, false, 0); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 7532 | MemOps.push_back(Store); |
| 7533 | |
| 7534 | // Store ptr to reg_save_area. |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7535 | FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(), |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7536 | FIN, DAG.getIntPtrConstant(8)); |
Dan Gohman | 1e93df6 | 2010-04-17 14:41:14 +0000 | [diff] [blame] | 7537 | SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(), |
| 7538 | getPointerTy()); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7539 | Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN, |
| 7540 | MachinePointerInfo(SV, 16), false, false, 0); |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 7541 | MemOps.push_back(Store); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7542 | return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7543 | &MemOps[0], MemOps.size()); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7544 | } |
| 7545 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7546 | SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const { |
Dan Gohman | 320afb8 | 2010-10-12 18:00:49 +0000 | [diff] [blame] | 7547 | assert(Subtarget->is64Bit() && |
| 7548 | "LowerVAARG only handles 64-bit va_arg!"); |
| 7549 | assert((Subtarget->isTargetLinux() || |
| 7550 | Subtarget->isTargetDarwin()) && |
| 7551 | "Unhandled target in LowerVAARG"); |
| 7552 | assert(Op.getNode()->getNumOperands() == 4); |
| 7553 | SDValue Chain = Op.getOperand(0); |
| 7554 | SDValue SrcPtr = Op.getOperand(1); |
| 7555 | const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue(); |
| 7556 | unsigned Align = Op.getConstantOperandVal(3); |
| 7557 | DebugLoc dl = Op.getDebugLoc(); |
Dan Gohman | 9018e83 | 2008-05-10 01:26:14 +0000 | [diff] [blame] | 7558 | |
Dan Gohman | 320afb8 | 2010-10-12 18:00:49 +0000 | [diff] [blame] | 7559 | EVT ArgVT = Op.getNode()->getValueType(0); |
| 7560 | const Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext()); |
| 7561 | uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy); |
| 7562 | uint8_t ArgMode; |
| 7563 | |
| 7564 | // Decide which area this value should be read from. |
| 7565 | // TODO: Implement the AMD64 ABI in its entirety. This simple |
| 7566 | // selection mechanism works only for the basic types. |
| 7567 | if (ArgVT == MVT::f80) { |
| 7568 | llvm_unreachable("va_arg for f80 not yet implemented"); |
| 7569 | } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) { |
| 7570 | ArgMode = 2; // Argument passed in XMM register. Use fp_offset. |
| 7571 | } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) { |
| 7572 | ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset. |
| 7573 | } else { |
| 7574 | llvm_unreachable("Unhandled argument type in LowerVAARG"); |
| 7575 | } |
| 7576 | |
| 7577 | if (ArgMode == 2) { |
| 7578 | // Sanity Check: Make sure using fp_offset makes sense. |
Michael J. Spencer | 87b8665 | 2010-10-19 07:32:42 +0000 | [diff] [blame] | 7579 | assert(!UseSoftFloat && |
Eric Christopher | 52b4505 | 2010-10-12 19:44:17 +0000 | [diff] [blame] | 7580 | !(DAG.getMachineFunction() |
| 7581 | .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) && |
| 7582 | Subtarget->hasSSE1()); |
Dan Gohman | 320afb8 | 2010-10-12 18:00:49 +0000 | [diff] [blame] | 7583 | } |
| 7584 | |
| 7585 | // Insert VAARG_64 node into the DAG |
| 7586 | // VAARG_64 returns two values: Variable Argument Address, Chain |
| 7587 | SmallVector<SDValue, 11> InstOps; |
| 7588 | InstOps.push_back(Chain); |
| 7589 | InstOps.push_back(SrcPtr); |
| 7590 | InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32)); |
| 7591 | InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8)); |
| 7592 | InstOps.push_back(DAG.getConstant(Align, MVT::i32)); |
| 7593 | SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other); |
| 7594 | SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl, |
| 7595 | VTs, &InstOps[0], InstOps.size(), |
| 7596 | MVT::i64, |
| 7597 | MachinePointerInfo(SV), |
| 7598 | /*Align=*/0, |
| 7599 | /*Volatile=*/false, |
| 7600 | /*ReadMem=*/true, |
| 7601 | /*WriteMem=*/true); |
| 7602 | Chain = VAARG.getValue(1); |
| 7603 | |
| 7604 | // Load the next argument and return it |
| 7605 | return DAG.getLoad(ArgVT, dl, |
| 7606 | Chain, |
| 7607 | VAARG, |
| 7608 | MachinePointerInfo(), |
| 7609 | false, false, 0); |
Dan Gohman | 9018e83 | 2008-05-10 01:26:14 +0000 | [diff] [blame] | 7610 | } |
| 7611 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7612 | SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const { |
Evan Cheng | ae64219 | 2007-03-02 23:16:35 +0000 | [diff] [blame] | 7613 | // X86-64 va_list is a struct { i32, i32, i8*, i8* }. |
Dan Gohman | 2826913 | 2008-04-18 20:55:41 +0000 | [diff] [blame] | 7614 | assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!"); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7615 | SDValue Chain = Op.getOperand(0); |
| 7616 | SDValue DstPtr = Op.getOperand(1); |
| 7617 | SDValue SrcPtr = Op.getOperand(2); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 7618 | const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue(); |
| 7619 | const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue(); |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 7620 | DebugLoc DL = Op.getDebugLoc(); |
Evan Cheng | ae64219 | 2007-03-02 23:16:35 +0000 | [diff] [blame] | 7621 | |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 7622 | return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr, |
Mon P Wang | 20adc9d | 2010-04-04 03:10:48 +0000 | [diff] [blame] | 7623 | DAG.getIntPtrConstant(24), 8, /*isVolatile*/false, |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 7624 | false, |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 7625 | MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV)); |
Evan Cheng | ae64219 | 2007-03-02 23:16:35 +0000 | [diff] [blame] | 7626 | } |
| 7627 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7628 | SDValue |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7629 | X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const { |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 7630 | DebugLoc dl = Op.getDebugLoc(); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 7631 | unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7632 | switch (IntNo) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7633 | default: return SDValue(); // Don't custom lower most intrinsics. |
Evan Cheng | 5759f97 | 2008-05-04 09:15:50 +0000 | [diff] [blame] | 7634 | // Comparison intrinsics. |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7635 | case Intrinsic::x86_sse_comieq_ss: |
| 7636 | case Intrinsic::x86_sse_comilt_ss: |
| 7637 | case Intrinsic::x86_sse_comile_ss: |
| 7638 | case Intrinsic::x86_sse_comigt_ss: |
| 7639 | case Intrinsic::x86_sse_comige_ss: |
| 7640 | case Intrinsic::x86_sse_comineq_ss: |
| 7641 | case Intrinsic::x86_sse_ucomieq_ss: |
| 7642 | case Intrinsic::x86_sse_ucomilt_ss: |
| 7643 | case Intrinsic::x86_sse_ucomile_ss: |
| 7644 | case Intrinsic::x86_sse_ucomigt_ss: |
| 7645 | case Intrinsic::x86_sse_ucomige_ss: |
| 7646 | case Intrinsic::x86_sse_ucomineq_ss: |
| 7647 | case Intrinsic::x86_sse2_comieq_sd: |
| 7648 | case Intrinsic::x86_sse2_comilt_sd: |
| 7649 | case Intrinsic::x86_sse2_comile_sd: |
| 7650 | case Intrinsic::x86_sse2_comigt_sd: |
| 7651 | case Intrinsic::x86_sse2_comige_sd: |
| 7652 | case Intrinsic::x86_sse2_comineq_sd: |
| 7653 | case Intrinsic::x86_sse2_ucomieq_sd: |
| 7654 | case Intrinsic::x86_sse2_ucomilt_sd: |
| 7655 | case Intrinsic::x86_sse2_ucomile_sd: |
| 7656 | case Intrinsic::x86_sse2_ucomigt_sd: |
| 7657 | case Intrinsic::x86_sse2_ucomige_sd: |
| 7658 | case Intrinsic::x86_sse2_ucomineq_sd: { |
| 7659 | unsigned Opc = 0; |
| 7660 | ISD::CondCode CC = ISD::SETCC_INVALID; |
| 7661 | switch (IntNo) { |
| 7662 | default: break; |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 7663 | case Intrinsic::x86_sse_comieq_ss: |
| 7664 | case Intrinsic::x86_sse2_comieq_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7665 | Opc = X86ISD::COMI; |
| 7666 | CC = ISD::SETEQ; |
| 7667 | break; |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7668 | case Intrinsic::x86_sse_comilt_ss: |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7669 | case Intrinsic::x86_sse2_comilt_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7670 | Opc = X86ISD::COMI; |
| 7671 | CC = ISD::SETLT; |
| 7672 | break; |
| 7673 | case Intrinsic::x86_sse_comile_ss: |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7674 | case Intrinsic::x86_sse2_comile_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7675 | Opc = X86ISD::COMI; |
| 7676 | CC = ISD::SETLE; |
| 7677 | break; |
| 7678 | case Intrinsic::x86_sse_comigt_ss: |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7679 | case Intrinsic::x86_sse2_comigt_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7680 | Opc = X86ISD::COMI; |
| 7681 | CC = ISD::SETGT; |
| 7682 | break; |
| 7683 | case Intrinsic::x86_sse_comige_ss: |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7684 | case Intrinsic::x86_sse2_comige_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7685 | Opc = X86ISD::COMI; |
| 7686 | CC = ISD::SETGE; |
| 7687 | break; |
| 7688 | case Intrinsic::x86_sse_comineq_ss: |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7689 | case Intrinsic::x86_sse2_comineq_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7690 | Opc = X86ISD::COMI; |
| 7691 | CC = ISD::SETNE; |
| 7692 | break; |
| 7693 | case Intrinsic::x86_sse_ucomieq_ss: |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7694 | case Intrinsic::x86_sse2_ucomieq_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7695 | Opc = X86ISD::UCOMI; |
| 7696 | CC = ISD::SETEQ; |
| 7697 | break; |
| 7698 | case Intrinsic::x86_sse_ucomilt_ss: |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7699 | case Intrinsic::x86_sse2_ucomilt_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7700 | Opc = X86ISD::UCOMI; |
| 7701 | CC = ISD::SETLT; |
| 7702 | break; |
| 7703 | case Intrinsic::x86_sse_ucomile_ss: |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7704 | case Intrinsic::x86_sse2_ucomile_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7705 | Opc = X86ISD::UCOMI; |
| 7706 | CC = ISD::SETLE; |
| 7707 | break; |
| 7708 | case Intrinsic::x86_sse_ucomigt_ss: |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7709 | case Intrinsic::x86_sse2_ucomigt_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7710 | Opc = X86ISD::UCOMI; |
| 7711 | CC = ISD::SETGT; |
| 7712 | break; |
| 7713 | case Intrinsic::x86_sse_ucomige_ss: |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7714 | case Intrinsic::x86_sse2_ucomige_sd: |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 7715 | Opc = X86ISD::UCOMI; |
| 7716 | CC = ISD::SETGE; |
| 7717 | break; |
| 7718 | case Intrinsic::x86_sse_ucomineq_ss: |
| 7719 | case Intrinsic::x86_sse2_ucomineq_sd: |
| 7720 | Opc = X86ISD::UCOMI; |
| 7721 | CC = ISD::SETNE; |
| 7722 | break; |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7723 | } |
Evan Cheng | 734503b | 2006-09-11 02:19:56 +0000 | [diff] [blame] | 7724 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7725 | SDValue LHS = Op.getOperand(1); |
| 7726 | SDValue RHS = Op.getOperand(2); |
Chris Lattner | 1c39d4c | 2008-12-24 23:53:05 +0000 | [diff] [blame] | 7727 | unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG); |
Dan Gohman | 1a49295 | 2009-10-20 16:22:37 +0000 | [diff] [blame] | 7728 | assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!"); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7729 | SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS); |
| 7730 | SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, |
| 7731 | DAG.getConstant(X86CC, MVT::i8), Cond); |
| 7732 | return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC); |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 7733 | } |
Bruno Cardoso Lopes | 045573c | 2010-08-10 23:25:42 +0000 | [diff] [blame] | 7734 | // ptest and testp intrinsics. The intrinsic these come from are designed to |
| 7735 | // return an integer value, not just an instruction so lower it to the ptest |
| 7736 | // or testp pattern and a setcc for the result. |
Eric Christopher | 71c6753 | 2009-07-29 00:28:05 +0000 | [diff] [blame] | 7737 | case Intrinsic::x86_sse41_ptestz: |
| 7738 | case Intrinsic::x86_sse41_ptestc: |
Bruno Cardoso Lopes | 045573c | 2010-08-10 23:25:42 +0000 | [diff] [blame] | 7739 | case Intrinsic::x86_sse41_ptestnzc: |
| 7740 | case Intrinsic::x86_avx_ptestz_256: |
| 7741 | case Intrinsic::x86_avx_ptestc_256: |
| 7742 | case Intrinsic::x86_avx_ptestnzc_256: |
| 7743 | case Intrinsic::x86_avx_vtestz_ps: |
| 7744 | case Intrinsic::x86_avx_vtestc_ps: |
| 7745 | case Intrinsic::x86_avx_vtestnzc_ps: |
| 7746 | case Intrinsic::x86_avx_vtestz_pd: |
| 7747 | case Intrinsic::x86_avx_vtestc_pd: |
| 7748 | case Intrinsic::x86_avx_vtestnzc_pd: |
| 7749 | case Intrinsic::x86_avx_vtestz_ps_256: |
| 7750 | case Intrinsic::x86_avx_vtestc_ps_256: |
| 7751 | case Intrinsic::x86_avx_vtestnzc_ps_256: |
| 7752 | case Intrinsic::x86_avx_vtestz_pd_256: |
| 7753 | case Intrinsic::x86_avx_vtestc_pd_256: |
| 7754 | case Intrinsic::x86_avx_vtestnzc_pd_256: { |
| 7755 | bool IsTestPacked = false; |
Eric Christopher | 71c6753 | 2009-07-29 00:28:05 +0000 | [diff] [blame] | 7756 | unsigned X86CC = 0; |
| 7757 | switch (IntNo) { |
Eric Christopher | 978dae3 | 2009-07-29 18:14:04 +0000 | [diff] [blame] | 7758 | default: llvm_unreachable("Bad fallthrough in Intrinsic lowering."); |
Bruno Cardoso Lopes | 045573c | 2010-08-10 23:25:42 +0000 | [diff] [blame] | 7759 | case Intrinsic::x86_avx_vtestz_ps: |
| 7760 | case Intrinsic::x86_avx_vtestz_pd: |
| 7761 | case Intrinsic::x86_avx_vtestz_ps_256: |
| 7762 | case Intrinsic::x86_avx_vtestz_pd_256: |
| 7763 | IsTestPacked = true; // Fallthrough |
Eric Christopher | 71c6753 | 2009-07-29 00:28:05 +0000 | [diff] [blame] | 7764 | case Intrinsic::x86_sse41_ptestz: |
Bruno Cardoso Lopes | 045573c | 2010-08-10 23:25:42 +0000 | [diff] [blame] | 7765 | case Intrinsic::x86_avx_ptestz_256: |
Eric Christopher | 71c6753 | 2009-07-29 00:28:05 +0000 | [diff] [blame] | 7766 | // ZF = 1 |
| 7767 | X86CC = X86::COND_E; |
| 7768 | break; |
Bruno Cardoso Lopes | 045573c | 2010-08-10 23:25:42 +0000 | [diff] [blame] | 7769 | case Intrinsic::x86_avx_vtestc_ps: |
| 7770 | case Intrinsic::x86_avx_vtestc_pd: |
| 7771 | case Intrinsic::x86_avx_vtestc_ps_256: |
| 7772 | case Intrinsic::x86_avx_vtestc_pd_256: |
| 7773 | IsTestPacked = true; // Fallthrough |
Eric Christopher | 71c6753 | 2009-07-29 00:28:05 +0000 | [diff] [blame] | 7774 | case Intrinsic::x86_sse41_ptestc: |
Bruno Cardoso Lopes | 045573c | 2010-08-10 23:25:42 +0000 | [diff] [blame] | 7775 | case Intrinsic::x86_avx_ptestc_256: |
Eric Christopher | 71c6753 | 2009-07-29 00:28:05 +0000 | [diff] [blame] | 7776 | // CF = 1 |
| 7777 | X86CC = X86::COND_B; |
| 7778 | break; |
Bruno Cardoso Lopes | 045573c | 2010-08-10 23:25:42 +0000 | [diff] [blame] | 7779 | case Intrinsic::x86_avx_vtestnzc_ps: |
| 7780 | case Intrinsic::x86_avx_vtestnzc_pd: |
| 7781 | case Intrinsic::x86_avx_vtestnzc_ps_256: |
| 7782 | case Intrinsic::x86_avx_vtestnzc_pd_256: |
| 7783 | IsTestPacked = true; // Fallthrough |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 7784 | case Intrinsic::x86_sse41_ptestnzc: |
Bruno Cardoso Lopes | 045573c | 2010-08-10 23:25:42 +0000 | [diff] [blame] | 7785 | case Intrinsic::x86_avx_ptestnzc_256: |
Eric Christopher | 71c6753 | 2009-07-29 00:28:05 +0000 | [diff] [blame] | 7786 | // ZF and CF = 0 |
| 7787 | X86CC = X86::COND_A; |
| 7788 | break; |
| 7789 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 7790 | |
Eric Christopher | 71c6753 | 2009-07-29 00:28:05 +0000 | [diff] [blame] | 7791 | SDValue LHS = Op.getOperand(1); |
| 7792 | SDValue RHS = Op.getOperand(2); |
Bruno Cardoso Lopes | 045573c | 2010-08-10 23:25:42 +0000 | [diff] [blame] | 7793 | unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST; |
| 7794 | SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7795 | SDValue CC = DAG.getConstant(X86CC, MVT::i8); |
| 7796 | SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test); |
| 7797 | return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC); |
Eric Christopher | 71c6753 | 2009-07-29 00:28:05 +0000 | [diff] [blame] | 7798 | } |
Evan Cheng | 5759f97 | 2008-05-04 09:15:50 +0000 | [diff] [blame] | 7799 | |
| 7800 | // Fix vector shift instructions where the last operand is a non-immediate |
| 7801 | // i32 value. |
| 7802 | case Intrinsic::x86_sse2_pslli_w: |
| 7803 | case Intrinsic::x86_sse2_pslli_d: |
| 7804 | case Intrinsic::x86_sse2_pslli_q: |
| 7805 | case Intrinsic::x86_sse2_psrli_w: |
| 7806 | case Intrinsic::x86_sse2_psrli_d: |
| 7807 | case Intrinsic::x86_sse2_psrli_q: |
| 7808 | case Intrinsic::x86_sse2_psrai_w: |
| 7809 | case Intrinsic::x86_sse2_psrai_d: |
| 7810 | case Intrinsic::x86_mmx_pslli_w: |
| 7811 | case Intrinsic::x86_mmx_pslli_d: |
| 7812 | case Intrinsic::x86_mmx_pslli_q: |
| 7813 | case Intrinsic::x86_mmx_psrli_w: |
| 7814 | case Intrinsic::x86_mmx_psrli_d: |
| 7815 | case Intrinsic::x86_mmx_psrli_q: |
| 7816 | case Intrinsic::x86_mmx_psrai_w: |
| 7817 | case Intrinsic::x86_mmx_psrai_d: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7818 | SDValue ShAmt = Op.getOperand(2); |
Evan Cheng | 5759f97 | 2008-05-04 09:15:50 +0000 | [diff] [blame] | 7819 | if (isa<ConstantSDNode>(ShAmt)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7820 | return SDValue(); |
Evan Cheng | 5759f97 | 2008-05-04 09:15:50 +0000 | [diff] [blame] | 7821 | |
| 7822 | unsigned NewIntNo = 0; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7823 | EVT ShAmtVT = MVT::v4i32; |
Evan Cheng | 5759f97 | 2008-05-04 09:15:50 +0000 | [diff] [blame] | 7824 | switch (IntNo) { |
| 7825 | case Intrinsic::x86_sse2_pslli_w: |
| 7826 | NewIntNo = Intrinsic::x86_sse2_psll_w; |
| 7827 | break; |
| 7828 | case Intrinsic::x86_sse2_pslli_d: |
| 7829 | NewIntNo = Intrinsic::x86_sse2_psll_d; |
| 7830 | break; |
| 7831 | case Intrinsic::x86_sse2_pslli_q: |
| 7832 | NewIntNo = Intrinsic::x86_sse2_psll_q; |
| 7833 | break; |
| 7834 | case Intrinsic::x86_sse2_psrli_w: |
| 7835 | NewIntNo = Intrinsic::x86_sse2_psrl_w; |
| 7836 | break; |
| 7837 | case Intrinsic::x86_sse2_psrli_d: |
| 7838 | NewIntNo = Intrinsic::x86_sse2_psrl_d; |
| 7839 | break; |
| 7840 | case Intrinsic::x86_sse2_psrli_q: |
| 7841 | NewIntNo = Intrinsic::x86_sse2_psrl_q; |
| 7842 | break; |
| 7843 | case Intrinsic::x86_sse2_psrai_w: |
| 7844 | NewIntNo = Intrinsic::x86_sse2_psra_w; |
| 7845 | break; |
| 7846 | case Intrinsic::x86_sse2_psrai_d: |
| 7847 | NewIntNo = Intrinsic::x86_sse2_psra_d; |
| 7848 | break; |
| 7849 | default: { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7850 | ShAmtVT = MVT::v2i32; |
Evan Cheng | 5759f97 | 2008-05-04 09:15:50 +0000 | [diff] [blame] | 7851 | switch (IntNo) { |
| 7852 | case Intrinsic::x86_mmx_pslli_w: |
| 7853 | NewIntNo = Intrinsic::x86_mmx_psll_w; |
| 7854 | break; |
| 7855 | case Intrinsic::x86_mmx_pslli_d: |
| 7856 | NewIntNo = Intrinsic::x86_mmx_psll_d; |
| 7857 | break; |
| 7858 | case Intrinsic::x86_mmx_pslli_q: |
| 7859 | NewIntNo = Intrinsic::x86_mmx_psll_q; |
| 7860 | break; |
| 7861 | case Intrinsic::x86_mmx_psrli_w: |
| 7862 | NewIntNo = Intrinsic::x86_mmx_psrl_w; |
| 7863 | break; |
| 7864 | case Intrinsic::x86_mmx_psrli_d: |
| 7865 | NewIntNo = Intrinsic::x86_mmx_psrl_d; |
| 7866 | break; |
| 7867 | case Intrinsic::x86_mmx_psrli_q: |
| 7868 | NewIntNo = Intrinsic::x86_mmx_psrl_q; |
| 7869 | break; |
| 7870 | case Intrinsic::x86_mmx_psrai_w: |
| 7871 | NewIntNo = Intrinsic::x86_mmx_psra_w; |
| 7872 | break; |
| 7873 | case Intrinsic::x86_mmx_psrai_d: |
| 7874 | NewIntNo = Intrinsic::x86_mmx_psra_d; |
| 7875 | break; |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 7876 | default: llvm_unreachable("Impossible intrinsic"); // Can't reach here. |
Evan Cheng | 5759f97 | 2008-05-04 09:15:50 +0000 | [diff] [blame] | 7877 | } |
| 7878 | break; |
| 7879 | } |
| 7880 | } |
Mon P Wang | efa4220 | 2009-09-03 19:56:25 +0000 | [diff] [blame] | 7881 | |
| 7882 | // The vector shift intrinsics with scalars uses 32b shift amounts but |
| 7883 | // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits |
| 7884 | // to be zero. |
| 7885 | SDValue ShOps[4]; |
| 7886 | ShOps[0] = ShAmt; |
| 7887 | ShOps[1] = DAG.getConstant(0, MVT::i32); |
| 7888 | if (ShAmtVT == MVT::v4i32) { |
| 7889 | ShOps[2] = DAG.getUNDEF(MVT::i32); |
| 7890 | ShOps[3] = DAG.getUNDEF(MVT::i32); |
| 7891 | ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4); |
| 7892 | } else { |
| 7893 | ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2); |
Dale Johannesen | 0488fb6 | 2010-09-30 23:57:10 +0000 | [diff] [blame] | 7894 | // 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] | 7895 | } |
| 7896 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 7897 | EVT VT = Op.getValueType(); |
Mon P Wang | efa4220 | 2009-09-03 19:56:25 +0000 | [diff] [blame] | 7898 | ShAmt = DAG.getNode(ISD::BIT_CONVERT, dl, VT, ShAmt); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7899 | return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7900 | DAG.getConstant(NewIntNo, MVT::i32), |
Evan Cheng | 5759f97 | 2008-05-04 09:15:50 +0000 | [diff] [blame] | 7901 | Op.getOperand(1), ShAmt); |
| 7902 | } |
Evan Cheng | 38bcbaf | 2005-12-23 07:31:11 +0000 | [diff] [blame] | 7903 | } |
Chris Lattner | dbdbf0c | 2005-11-15 00:40:23 +0000 | [diff] [blame] | 7904 | } |
Evan Cheng | 7226158 | 2005-12-20 06:22:03 +0000 | [diff] [blame] | 7905 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7906 | SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op, |
| 7907 | SelectionDAG &DAG) const { |
Evan Cheng | 2457f2c | 2010-05-22 01:47:14 +0000 | [diff] [blame] | 7908 | MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo(); |
| 7909 | MFI->setReturnAddressIsTaken(true); |
| 7910 | |
Bill Wendling | 64e8732 | 2009-01-16 19:25:27 +0000 | [diff] [blame] | 7911 | unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 7912 | DebugLoc dl = Op.getDebugLoc(); |
Bill Wendling | 64e8732 | 2009-01-16 19:25:27 +0000 | [diff] [blame] | 7913 | |
| 7914 | if (Depth > 0) { |
| 7915 | SDValue FrameAddr = LowerFRAMEADDR(Op, DAG); |
| 7916 | SDValue Offset = |
| 7917 | DAG.getConstant(TD->getPointerSize(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7918 | Subtarget->is64Bit() ? MVT::i64 : MVT::i32); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7919 | return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7920 | DAG.getNode(ISD::ADD, dl, getPointerTy(), |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7921 | FrameAddr, Offset), |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 7922 | MachinePointerInfo(), false, false, 0); |
Bill Wendling | 64e8732 | 2009-01-16 19:25:27 +0000 | [diff] [blame] | 7923 | } |
| 7924 | |
| 7925 | // Just load the return address. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7926 | SDValue RetAddrFI = getReturnAddressFrameIndex(DAG); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 7927 | return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 7928 | RetAddrFI, MachinePointerInfo(), false, false, 0); |
Nate Begeman | bcc5f36 | 2007-01-29 22:58:52 +0000 | [diff] [blame] | 7929 | } |
| 7930 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7931 | SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const { |
Evan Cheng | 184793f | 2008-09-27 01:56:22 +0000 | [diff] [blame] | 7932 | MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo(); |
| 7933 | MFI->setFrameAddressIsTaken(true); |
Evan Cheng | 2457f2c | 2010-05-22 01:47:14 +0000 | [diff] [blame] | 7934 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 7935 | EVT VT = Op.getValueType(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 7936 | DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful |
Evan Cheng | 184793f | 2008-09-27 01:56:22 +0000 | [diff] [blame] | 7937 | unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); |
| 7938 | unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP; |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 7939 | SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT); |
Evan Cheng | 184793f | 2008-09-27 01:56:22 +0000 | [diff] [blame] | 7940 | while (Depth--) |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 7941 | FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr, |
| 7942 | MachinePointerInfo(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 7943 | false, false, 0); |
Evan Cheng | 184793f | 2008-09-27 01:56:22 +0000 | [diff] [blame] | 7944 | return FrameAddr; |
Nate Begeman | bcc5f36 | 2007-01-29 22:58:52 +0000 | [diff] [blame] | 7945 | } |
| 7946 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7947 | SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7948 | SelectionDAG &DAG) const { |
Anton Korobeynikov | bff66b0 | 2008-09-09 18:22:57 +0000 | [diff] [blame] | 7949 | return DAG.getIntPtrConstant(2*TD->getPointerSize()); |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 7950 | } |
| 7951 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7952 | SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const { |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 7953 | MachineFunction &MF = DAG.getMachineFunction(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7954 | SDValue Chain = Op.getOperand(0); |
| 7955 | SDValue Offset = Op.getOperand(1); |
| 7956 | SDValue Handler = Op.getOperand(2); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 7957 | DebugLoc dl = Op.getDebugLoc(); |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 7958 | |
Dan Gohman | d881627 | 2010-08-11 18:14:00 +0000 | [diff] [blame] | 7959 | SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, |
| 7960 | Subtarget->is64Bit() ? X86::RBP : X86::EBP, |
| 7961 | getPointerTy()); |
Anton Korobeynikov | b84c167 | 2008-09-08 21:12:47 +0000 | [diff] [blame] | 7962 | unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX); |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 7963 | |
Dan Gohman | d881627 | 2010-08-11 18:14:00 +0000 | [diff] [blame] | 7964 | SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame, |
| 7965 | DAG.getIntPtrConstant(TD->getPointerSize())); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7966 | StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 7967 | Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(), |
| 7968 | false, false, 0); |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 7969 | Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr); |
Anton Korobeynikov | b84c167 | 2008-09-08 21:12:47 +0000 | [diff] [blame] | 7970 | MF.getRegInfo().addLiveOut(StoreAddrReg); |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 7971 | |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 7972 | return DAG.getNode(X86ISD::EH_RETURN, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 7973 | MVT::Other, |
Anton Korobeynikov | b84c167 | 2008-09-08 21:12:47 +0000 | [diff] [blame] | 7974 | Chain, DAG.getRegister(StoreAddrReg, getPointerTy())); |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 7975 | } |
| 7976 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7977 | SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 7978 | SelectionDAG &DAG) const { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7979 | SDValue Root = Op.getOperand(0); |
| 7980 | SDValue Trmp = Op.getOperand(1); // trampoline |
| 7981 | SDValue FPtr = Op.getOperand(2); // nested function |
| 7982 | SDValue Nest = Op.getOperand(3); // 'nest' parameter value |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 7983 | DebugLoc dl = Op.getDebugLoc(); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 7984 | |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 7985 | const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue(); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 7986 | |
| 7987 | if (Subtarget->is64Bit()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 7988 | SDValue OutChains[6]; |
Duncan Sands | 339e14f | 2008-01-16 22:55:25 +0000 | [diff] [blame] | 7989 | |
| 7990 | // Large code-model. |
Chris Lattner | a62fe66 | 2010-02-05 19:20:30 +0000 | [diff] [blame] | 7991 | const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode. |
| 7992 | const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode. |
Duncan Sands | 339e14f | 2008-01-16 22:55:25 +0000 | [diff] [blame] | 7993 | |
Dan Gohman | c9f5f3f | 2008-05-14 01:58:56 +0000 | [diff] [blame] | 7994 | const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10); |
| 7995 | const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11); |
Duncan Sands | 339e14f | 2008-01-16 22:55:25 +0000 | [diff] [blame] | 7996 | |
| 7997 | const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix |
| 7998 | |
| 7999 | // Load the pointer to the nested function into R11. |
| 8000 | unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11 |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8001 | SDValue Addr = Trmp; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8002 | OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16), |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 8003 | Addr, MachinePointerInfo(TrmpAddr), |
| 8004 | false, false, 0); |
Duncan Sands | 339e14f | 2008-01-16 22:55:25 +0000 | [diff] [blame] | 8005 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8006 | Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp, |
| 8007 | DAG.getConstant(2, MVT::i64)); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 8008 | OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr, |
| 8009 | MachinePointerInfo(TrmpAddr, 2), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 8010 | false, false, 2); |
Duncan Sands | 339e14f | 2008-01-16 22:55:25 +0000 | [diff] [blame] | 8011 | |
| 8012 | // Load the 'nest' parameter value into R10. |
| 8013 | // R10 is specified in X86CallingConv.td |
| 8014 | OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10 |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8015 | Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp, |
| 8016 | DAG.getConstant(10, MVT::i64)); |
| 8017 | OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16), |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 8018 | Addr, MachinePointerInfo(TrmpAddr, 10), |
| 8019 | false, false, 0); |
Duncan Sands | 339e14f | 2008-01-16 22:55:25 +0000 | [diff] [blame] | 8020 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8021 | Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp, |
| 8022 | DAG.getConstant(12, MVT::i64)); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 8023 | OutChains[3] = DAG.getStore(Root, dl, Nest, Addr, |
| 8024 | MachinePointerInfo(TrmpAddr, 12), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 8025 | false, false, 2); |
Duncan Sands | 339e14f | 2008-01-16 22:55:25 +0000 | [diff] [blame] | 8026 | |
| 8027 | // Jump to the nested function. |
| 8028 | OpCode = (JMP64r << 8) | REX_WB; // jmpq *... |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8029 | Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp, |
| 8030 | DAG.getConstant(20, MVT::i64)); |
| 8031 | OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16), |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 8032 | Addr, MachinePointerInfo(TrmpAddr, 20), |
| 8033 | false, false, 0); |
Duncan Sands | 339e14f | 2008-01-16 22:55:25 +0000 | [diff] [blame] | 8034 | |
| 8035 | unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11 |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8036 | Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp, |
| 8037 | DAG.getConstant(22, MVT::i64)); |
| 8038 | OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr, |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 8039 | MachinePointerInfo(TrmpAddr, 22), |
| 8040 | false, false, 0); |
Duncan Sands | 339e14f | 2008-01-16 22:55:25 +0000 | [diff] [blame] | 8041 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8042 | SDValue Ops[] = |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8043 | { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) }; |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8044 | return DAG.getMergeValues(Ops, 2, dl); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8045 | } else { |
Dan Gohman | bbfb9c5 | 2008-01-31 01:01:48 +0000 | [diff] [blame] | 8046 | const Function *Func = |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8047 | cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue()); |
Sandeep Patel | 65c3c8f | 2009-09-02 08:44:58 +0000 | [diff] [blame] | 8048 | CallingConv::ID CC = Func->getCallingConv(); |
Duncan Sands | ee46574 | 2007-08-29 19:01:20 +0000 | [diff] [blame] | 8049 | unsigned NestReg; |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8050 | |
| 8051 | switch (CC) { |
| 8052 | default: |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 8053 | llvm_unreachable("Unsupported calling convention"); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8054 | case CallingConv::C: |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8055 | case CallingConv::X86_StdCall: { |
| 8056 | // Pass 'nest' parameter in ECX. |
| 8057 | // Must be kept in sync with X86CallingConv.td |
Duncan Sands | ee46574 | 2007-08-29 19:01:20 +0000 | [diff] [blame] | 8058 | NestReg = X86::ECX; |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8059 | |
| 8060 | // Check that ECX wasn't needed by an 'inreg' parameter. |
| 8061 | const FunctionType *FTy = Func->getFunctionType(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 8062 | const AttrListPtr &Attrs = Func->getAttributes(); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8063 | |
Chris Lattner | 58d7491 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 8064 | if (!Attrs.isEmpty() && !Func->isVarArg()) { |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8065 | unsigned InRegCount = 0; |
| 8066 | unsigned Idx = 1; |
| 8067 | |
| 8068 | for (FunctionType::param_iterator I = FTy->param_begin(), |
| 8069 | E = FTy->param_end(); I != E; ++I, ++Idx) |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 8070 | if (Attrs.paramHasAttr(Idx, Attribute::InReg)) |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8071 | // FIXME: should only count parameters that are lowered to integers. |
Anton Korobeynikov | bff66b0 | 2008-09-09 18:22:57 +0000 | [diff] [blame] | 8072 | InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32; |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8073 | |
| 8074 | if (InRegCount > 2) { |
Eric Christopher | 90eb402 | 2010-07-22 00:26:08 +0000 | [diff] [blame] | 8075 | report_fatal_error("Nest register in use - reduce number of inreg" |
| 8076 | " parameters!"); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8077 | } |
| 8078 | } |
| 8079 | break; |
| 8080 | } |
| 8081 | case CallingConv::X86_FastCall: |
Anton Korobeynikov | ded05e3 | 2010-05-16 09:08:45 +0000 | [diff] [blame] | 8082 | case CallingConv::X86_ThisCall: |
Duncan Sands | bf53c29 | 2008-09-10 13:22:10 +0000 | [diff] [blame] | 8083 | case CallingConv::Fast: |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8084 | // Pass 'nest' parameter in EAX. |
| 8085 | // Must be kept in sync with X86CallingConv.td |
Duncan Sands | ee46574 | 2007-08-29 19:01:20 +0000 | [diff] [blame] | 8086 | NestReg = X86::EAX; |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8087 | break; |
| 8088 | } |
| 8089 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8090 | SDValue OutChains[4]; |
| 8091 | SDValue Addr, Disp; |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8092 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8093 | Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp, |
| 8094 | DAG.getConstant(10, MVT::i32)); |
| 8095 | Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8096 | |
Chris Lattner | a62fe66 | 2010-02-05 19:20:30 +0000 | [diff] [blame] | 8097 | // This is storing the opcode for MOV32ri. |
| 8098 | const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte. |
Dan Gohman | c9f5f3f | 2008-05-14 01:58:56 +0000 | [diff] [blame] | 8099 | const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8100 | OutChains[0] = DAG.getStore(Root, dl, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8101 | DAG.getConstant(MOV32ri|N86Reg, MVT::i8), |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 8102 | Trmp, MachinePointerInfo(TrmpAddr), |
| 8103 | false, false, 0); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8104 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8105 | Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp, |
| 8106 | DAG.getConstant(1, MVT::i32)); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 8107 | OutChains[1] = DAG.getStore(Root, dl, Nest, Addr, |
| 8108 | MachinePointerInfo(TrmpAddr, 1), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 8109 | false, false, 1); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8110 | |
Chris Lattner | a62fe66 | 2010-02-05 19:20:30 +0000 | [diff] [blame] | 8111 | const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8112 | Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp, |
| 8113 | DAG.getConstant(5, MVT::i32)); |
| 8114 | OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr, |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 8115 | MachinePointerInfo(TrmpAddr, 5), |
| 8116 | false, false, 1); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8117 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8118 | Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp, |
| 8119 | DAG.getConstant(6, MVT::i32)); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 8120 | OutChains[3] = DAG.getStore(Root, dl, Disp, Addr, |
| 8121 | MachinePointerInfo(TrmpAddr, 6), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 8122 | false, false, 1); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8123 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8124 | SDValue Ops[] = |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8125 | { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) }; |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8126 | return DAG.getMergeValues(Ops, 2, dl); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8127 | } |
| 8128 | } |
| 8129 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8130 | SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op, |
| 8131 | SelectionDAG &DAG) const { |
Anton Korobeynikov | 45b22fa | 2007-11-16 01:31:51 +0000 | [diff] [blame] | 8132 | /* |
| 8133 | The rounding mode is in bits 11:10 of FPSR, and has the following |
| 8134 | settings: |
| 8135 | 00 Round to nearest |
| 8136 | 01 Round to -inf |
| 8137 | 10 Round to +inf |
| 8138 | 11 Round to 0 |
| 8139 | |
| 8140 | FLT_ROUNDS, on the other hand, expects the following: |
| 8141 | -1 Undefined |
| 8142 | 0 Round to 0 |
| 8143 | 1 Round to nearest |
| 8144 | 2 Round to +inf |
| 8145 | 3 Round to -inf |
| 8146 | |
| 8147 | To perform the conversion, we do: |
| 8148 | (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3) |
| 8149 | */ |
| 8150 | |
| 8151 | MachineFunction &MF = DAG.getMachineFunction(); |
| 8152 | const TargetMachine &TM = MF.getTarget(); |
| 8153 | const TargetFrameInfo &TFI = *TM.getFrameInfo(); |
| 8154 | unsigned StackAlignment = TFI.getStackAlignment(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8155 | EVT VT = Op.getValueType(); |
Chris Lattner | 2156b79 | 2010-09-22 01:11:26 +0000 | [diff] [blame] | 8156 | DebugLoc DL = Op.getDebugLoc(); |
Anton Korobeynikov | 45b22fa | 2007-11-16 01:31:51 +0000 | [diff] [blame] | 8157 | |
| 8158 | // Save FP Control Word to stack slot |
David Greene | 3f2bf85 | 2009-11-12 20:49:22 +0000 | [diff] [blame] | 8159 | int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8160 | SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy()); |
Anton Korobeynikov | 45b22fa | 2007-11-16 01:31:51 +0000 | [diff] [blame] | 8161 | |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8162 | |
Chris Lattner | 2156b79 | 2010-09-22 01:11:26 +0000 | [diff] [blame] | 8163 | MachineMemOperand *MMO = |
| 8164 | MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI), |
| 8165 | MachineMemOperand::MOStore, 2, 2); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8166 | |
Chris Lattner | 2156b79 | 2010-09-22 01:11:26 +0000 | [diff] [blame] | 8167 | SDValue Ops[] = { DAG.getEntryNode(), StackSlot }; |
| 8168 | SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL, |
| 8169 | DAG.getVTList(MVT::Other), |
| 8170 | Ops, 2, MVT::i16, MMO); |
Anton Korobeynikov | 45b22fa | 2007-11-16 01:31:51 +0000 | [diff] [blame] | 8171 | |
| 8172 | // Load FP Control Word from stack slot |
Chris Lattner | 2156b79 | 2010-09-22 01:11:26 +0000 | [diff] [blame] | 8173 | SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot, |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 8174 | MachinePointerInfo(), false, false, 0); |
Anton Korobeynikov | 45b22fa | 2007-11-16 01:31:51 +0000 | [diff] [blame] | 8175 | |
| 8176 | // Transform as necessary |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8177 | SDValue CWD1 = |
Chris Lattner | 2156b79 | 2010-09-22 01:11:26 +0000 | [diff] [blame] | 8178 | DAG.getNode(ISD::SRL, DL, MVT::i16, |
| 8179 | DAG.getNode(ISD::AND, DL, MVT::i16, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8180 | CWD, DAG.getConstant(0x800, MVT::i16)), |
| 8181 | DAG.getConstant(11, MVT::i8)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8182 | SDValue CWD2 = |
Chris Lattner | 2156b79 | 2010-09-22 01:11:26 +0000 | [diff] [blame] | 8183 | DAG.getNode(ISD::SRL, DL, MVT::i16, |
| 8184 | DAG.getNode(ISD::AND, DL, MVT::i16, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8185 | CWD, DAG.getConstant(0x400, MVT::i16)), |
| 8186 | DAG.getConstant(9, MVT::i8)); |
Anton Korobeynikov | 45b22fa | 2007-11-16 01:31:51 +0000 | [diff] [blame] | 8187 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8188 | SDValue RetVal = |
Chris Lattner | 2156b79 | 2010-09-22 01:11:26 +0000 | [diff] [blame] | 8189 | DAG.getNode(ISD::AND, DL, MVT::i16, |
| 8190 | DAG.getNode(ISD::ADD, DL, MVT::i16, |
| 8191 | DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8192 | DAG.getConstant(1, MVT::i16)), |
| 8193 | DAG.getConstant(3, MVT::i16)); |
Anton Korobeynikov | 45b22fa | 2007-11-16 01:31:51 +0000 | [diff] [blame] | 8194 | |
| 8195 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 8196 | return DAG.getNode((VT.getSizeInBits() < 16 ? |
Chris Lattner | 2156b79 | 2010-09-22 01:11:26 +0000 | [diff] [blame] | 8197 | ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal); |
Anton Korobeynikov | 45b22fa | 2007-11-16 01:31:51 +0000 | [diff] [blame] | 8198 | } |
| 8199 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8200 | SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8201 | EVT VT = Op.getValueType(); |
| 8202 | EVT OpVT = VT; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 8203 | unsigned NumBits = VT.getSizeInBits(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 8204 | DebugLoc dl = Op.getDebugLoc(); |
Evan Cheng | 18efe26 | 2007-12-14 02:13:44 +0000 | [diff] [blame] | 8205 | |
| 8206 | Op = Op.getOperand(0); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8207 | if (VT == MVT::i8) { |
Evan Cheng | 152804e | 2007-12-14 08:30:15 +0000 | [diff] [blame] | 8208 | // Zero extend to i32 since there is not an i8 bsr. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8209 | OpVT = MVT::i32; |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8210 | Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op); |
Evan Cheng | 18efe26 | 2007-12-14 02:13:44 +0000 | [diff] [blame] | 8211 | } |
Evan Cheng | 18efe26 | 2007-12-14 02:13:44 +0000 | [diff] [blame] | 8212 | |
Evan Cheng | 152804e | 2007-12-14 08:30:15 +0000 | [diff] [blame] | 8213 | // Issue a bsr (scan bits in reverse) which also sets EFLAGS. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8214 | SDVTList VTs = DAG.getVTList(OpVT, MVT::i32); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8215 | Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op); |
Evan Cheng | 152804e | 2007-12-14 08:30:15 +0000 | [diff] [blame] | 8216 | |
| 8217 | // If src is zero (i.e. bsr sets ZF), returns NumBits. |
Benjamin Kramer | 7f1a560 | 2009-12-29 16:57:26 +0000 | [diff] [blame] | 8218 | SDValue Ops[] = { |
| 8219 | Op, |
| 8220 | DAG.getConstant(NumBits+NumBits-1, OpVT), |
| 8221 | DAG.getConstant(X86::COND_E, MVT::i8), |
| 8222 | Op.getValue(1) |
| 8223 | }; |
| 8224 | Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops)); |
Evan Cheng | 152804e | 2007-12-14 08:30:15 +0000 | [diff] [blame] | 8225 | |
| 8226 | // Finally xor with NumBits-1. |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8227 | 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] | 8228 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8229 | if (VT == MVT::i8) |
| 8230 | Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op); |
Evan Cheng | 18efe26 | 2007-12-14 02:13:44 +0000 | [diff] [blame] | 8231 | return Op; |
| 8232 | } |
| 8233 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8234 | SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8235 | EVT VT = Op.getValueType(); |
| 8236 | EVT OpVT = VT; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 8237 | unsigned NumBits = VT.getSizeInBits(); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 8238 | DebugLoc dl = Op.getDebugLoc(); |
Evan Cheng | 18efe26 | 2007-12-14 02:13:44 +0000 | [diff] [blame] | 8239 | |
| 8240 | Op = Op.getOperand(0); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8241 | if (VT == MVT::i8) { |
| 8242 | OpVT = MVT::i32; |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8243 | Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op); |
Evan Cheng | 18efe26 | 2007-12-14 02:13:44 +0000 | [diff] [blame] | 8244 | } |
Evan Cheng | 152804e | 2007-12-14 08:30:15 +0000 | [diff] [blame] | 8245 | |
| 8246 | // Issue a bsf (scan bits forward) which also sets EFLAGS. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8247 | SDVTList VTs = DAG.getVTList(OpVT, MVT::i32); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8248 | Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op); |
Evan Cheng | 152804e | 2007-12-14 08:30:15 +0000 | [diff] [blame] | 8249 | |
| 8250 | // If src is zero (i.e. bsf sets ZF), returns NumBits. |
Benjamin Kramer | 7f1a560 | 2009-12-29 16:57:26 +0000 | [diff] [blame] | 8251 | SDValue Ops[] = { |
| 8252 | Op, |
| 8253 | DAG.getConstant(NumBits, OpVT), |
| 8254 | DAG.getConstant(X86::COND_E, MVT::i8), |
| 8255 | Op.getValue(1) |
| 8256 | }; |
| 8257 | Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops)); |
Evan Cheng | 152804e | 2007-12-14 08:30:15 +0000 | [diff] [blame] | 8258 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8259 | if (VT == MVT::i8) |
| 8260 | Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op); |
Evan Cheng | 18efe26 | 2007-12-14 02:13:44 +0000 | [diff] [blame] | 8261 | return Op; |
| 8262 | } |
| 8263 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8264 | SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8265 | EVT VT = Op.getValueType(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8266 | assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply"); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 8267 | DebugLoc dl = Op.getDebugLoc(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8268 | |
Mon P Wang | af9b952 | 2008-12-18 21:42:19 +0000 | [diff] [blame] | 8269 | // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32); |
| 8270 | // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32); |
| 8271 | // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b ); |
| 8272 | // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi ); |
| 8273 | // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b ); |
| 8274 | // |
| 8275 | // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 ); |
| 8276 | // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 ); |
| 8277 | // return AloBlo + AloBhi + AhiBlo; |
| 8278 | |
| 8279 | SDValue A = Op.getOperand(0); |
| 8280 | SDValue B = Op.getOperand(1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8281 | |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8282 | SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8283 | DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32), |
| 8284 | A, DAG.getConstant(32, MVT::i32)); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8285 | SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8286 | DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32), |
| 8287 | B, DAG.getConstant(32, MVT::i32)); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8288 | SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8289 | DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32), |
Mon P Wang | af9b952 | 2008-12-18 21:42:19 +0000 | [diff] [blame] | 8290 | A, B); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8291 | SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8292 | DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32), |
Mon P Wang | af9b952 | 2008-12-18 21:42:19 +0000 | [diff] [blame] | 8293 | A, Bhi); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8294 | SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8295 | DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32), |
Mon P Wang | af9b952 | 2008-12-18 21:42:19 +0000 | [diff] [blame] | 8296 | Ahi, B); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8297 | AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8298 | DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32), |
| 8299 | AloBhi, DAG.getConstant(32, MVT::i32)); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8300 | AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8301 | DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32), |
| 8302 | AhiBlo, DAG.getConstant(32, MVT::i32)); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8303 | SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi); |
| 8304 | Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo); |
Mon P Wang | af9b952 | 2008-12-18 21:42:19 +0000 | [diff] [blame] | 8305 | return Res; |
| 8306 | } |
| 8307 | |
Nate Begeman | bdcb5af | 2010-07-27 22:37:06 +0000 | [diff] [blame] | 8308 | SDValue X86TargetLowering::LowerSHL(SDValue Op, SelectionDAG &DAG) const { |
| 8309 | EVT VT = Op.getValueType(); |
| 8310 | DebugLoc dl = Op.getDebugLoc(); |
| 8311 | SDValue R = Op.getOperand(0); |
| 8312 | |
Nate Begeman | bdcb5af | 2010-07-27 22:37:06 +0000 | [diff] [blame] | 8313 | LLVMContext *Context = DAG.getContext(); |
Nate Begeman | bdcb5af | 2010-07-27 22:37:06 +0000 | [diff] [blame] | 8314 | |
Nate Begeman | 5140921 | 2010-07-28 00:21:48 +0000 | [diff] [blame] | 8315 | assert(Subtarget->hasSSE41() && "Cannot lower SHL without SSE4.1 or later"); |
| 8316 | |
| 8317 | if (VT == MVT::v4i32) { |
| 8318 | Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
| 8319 | DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32), |
| 8320 | Op.getOperand(1), DAG.getConstant(23, MVT::i32)); |
| 8321 | |
| 8322 | ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U)); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8323 | |
Nate Begeman | 5140921 | 2010-07-28 00:21:48 +0000 | [diff] [blame] | 8324 | std::vector<Constant*> CV(4, CI); |
| 8325 | Constant *C = ConstantVector::get(CV); |
| 8326 | SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16); |
| 8327 | SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 8328 | MachinePointerInfo::getConstantPool(), |
Nate Begeman | 5140921 | 2010-07-28 00:21:48 +0000 | [diff] [blame] | 8329 | false, false, 16); |
| 8330 | |
| 8331 | Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend); |
| 8332 | Op = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32, Op); |
| 8333 | Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op); |
| 8334 | return DAG.getNode(ISD::MUL, dl, VT, Op, R); |
| 8335 | } |
| 8336 | if (VT == MVT::v16i8) { |
| 8337 | // a = a << 5; |
| 8338 | Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
| 8339 | DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), |
| 8340 | Op.getOperand(1), DAG.getConstant(5, MVT::i32)); |
| 8341 | |
| 8342 | ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15)); |
| 8343 | ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63)); |
| 8344 | |
| 8345 | std::vector<Constant*> CVM1(16, CM1); |
| 8346 | std::vector<Constant*> CVM2(16, CM2); |
| 8347 | Constant *C = ConstantVector::get(CVM1); |
| 8348 | SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16); |
| 8349 | SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 8350 | MachinePointerInfo::getConstantPool(), |
Nate Begeman | 5140921 | 2010-07-28 00:21:48 +0000 | [diff] [blame] | 8351 | false, false, 16); |
| 8352 | |
| 8353 | // r = pblendv(r, psllw(r & (char16)15, 4), a); |
| 8354 | M = DAG.getNode(ISD::AND, dl, VT, R, M); |
| 8355 | M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
| 8356 | DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M, |
| 8357 | DAG.getConstant(4, MVT::i32)); |
| 8358 | R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
| 8359 | DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32), |
| 8360 | R, M, Op); |
| 8361 | // a += a |
| 8362 | Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8363 | |
Nate Begeman | 5140921 | 2010-07-28 00:21:48 +0000 | [diff] [blame] | 8364 | C = ConstantVector::get(CVM2); |
| 8365 | CPIdx = DAG.getConstantPool(C, getPointerTy(), 16); |
| 8366 | M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx, |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 8367 | MachinePointerInfo::getConstantPool(), |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 8368 | false, false, 16); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8369 | |
Nate Begeman | 5140921 | 2010-07-28 00:21:48 +0000 | [diff] [blame] | 8370 | // r = pblendv(r, psllw(r & (char16)63, 2), a); |
| 8371 | M = DAG.getNode(ISD::AND, dl, VT, R, M); |
| 8372 | M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
| 8373 | DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M, |
| 8374 | DAG.getConstant(2, MVT::i32)); |
| 8375 | R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
| 8376 | DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32), |
| 8377 | R, M, Op); |
| 8378 | // a += a |
| 8379 | Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8380 | |
Nate Begeman | 5140921 | 2010-07-28 00:21:48 +0000 | [diff] [blame] | 8381 | // return pblendv(r, r+r, a); |
| 8382 | R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, |
| 8383 | DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32), |
| 8384 | R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op); |
| 8385 | return R; |
| 8386 | } |
| 8387 | return SDValue(); |
Nate Begeman | bdcb5af | 2010-07-27 22:37:06 +0000 | [diff] [blame] | 8388 | } |
Mon P Wang | af9b952 | 2008-12-18 21:42:19 +0000 | [diff] [blame] | 8389 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8390 | SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const { |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8391 | // Lower the "add/sub/mul with overflow" instruction into a regular ins plus |
| 8392 | // a "setcc" instruction that checks the overflow flag. The "brcond" lowering |
Bill Wendling | 61edeb5 | 2008-12-02 01:06:39 +0000 | [diff] [blame] | 8393 | // looks for this combo and may remove the "setcc" instruction if the "setcc" |
| 8394 | // has only one use. |
Bill Wendling | 3fafd93 | 2008-11-26 22:37:40 +0000 | [diff] [blame] | 8395 | SDNode *N = Op.getNode(); |
Bill Wendling | 61edeb5 | 2008-12-02 01:06:39 +0000 | [diff] [blame] | 8396 | SDValue LHS = N->getOperand(0); |
| 8397 | SDValue RHS = N->getOperand(1); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8398 | unsigned BaseOp = 0; |
| 8399 | unsigned Cond = 0; |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 8400 | DebugLoc dl = Op.getDebugLoc(); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8401 | |
| 8402 | switch (Op.getOpcode()) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 8403 | default: llvm_unreachable("Unknown ovf instruction!"); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8404 | case ISD::SADDO: |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 8405 | // A subtract of one will be selected as a INC. Note that INC doesn't |
| 8406 | // set CF, so we can't do this for UADDO. |
| 8407 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) |
| 8408 | if (C->getAPIntValue() == 1) { |
| 8409 | BaseOp = X86ISD::INC; |
| 8410 | Cond = X86::COND_O; |
| 8411 | break; |
| 8412 | } |
Bill Wendling | ab55ebd | 2008-12-12 00:56:36 +0000 | [diff] [blame] | 8413 | BaseOp = X86ISD::ADD; |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8414 | Cond = X86::COND_O; |
| 8415 | break; |
| 8416 | case ISD::UADDO: |
Bill Wendling | ab55ebd | 2008-12-12 00:56:36 +0000 | [diff] [blame] | 8417 | BaseOp = X86ISD::ADD; |
Dan Gohman | 653456c | 2009-01-07 00:15:08 +0000 | [diff] [blame] | 8418 | Cond = X86::COND_B; |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8419 | break; |
| 8420 | case ISD::SSUBO: |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 8421 | // A subtract of one will be selected as a DEC. Note that DEC doesn't |
| 8422 | // set CF, so we can't do this for USUBO. |
| 8423 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) |
| 8424 | if (C->getAPIntValue() == 1) { |
| 8425 | BaseOp = X86ISD::DEC; |
| 8426 | Cond = X86::COND_O; |
| 8427 | break; |
| 8428 | } |
Bill Wendling | ab55ebd | 2008-12-12 00:56:36 +0000 | [diff] [blame] | 8429 | BaseOp = X86ISD::SUB; |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8430 | Cond = X86::COND_O; |
| 8431 | break; |
| 8432 | case ISD::USUBO: |
Bill Wendling | ab55ebd | 2008-12-12 00:56:36 +0000 | [diff] [blame] | 8433 | BaseOp = X86ISD::SUB; |
Dan Gohman | 653456c | 2009-01-07 00:15:08 +0000 | [diff] [blame] | 8434 | Cond = X86::COND_B; |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8435 | break; |
| 8436 | case ISD::SMULO: |
Bill Wendling | d350e02 | 2008-12-12 21:15:41 +0000 | [diff] [blame] | 8437 | BaseOp = X86ISD::SMUL; |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8438 | Cond = X86::COND_O; |
| 8439 | break; |
| 8440 | case ISD::UMULO: |
Bill Wendling | d350e02 | 2008-12-12 21:15:41 +0000 | [diff] [blame] | 8441 | BaseOp = X86ISD::UMUL; |
Dan Gohman | 653456c | 2009-01-07 00:15:08 +0000 | [diff] [blame] | 8442 | Cond = X86::COND_B; |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8443 | break; |
| 8444 | } |
Bill Wendling | 3fafd93 | 2008-11-26 22:37:40 +0000 | [diff] [blame] | 8445 | |
Bill Wendling | 61edeb5 | 2008-12-02 01:06:39 +0000 | [diff] [blame] | 8446 | // Also sets EFLAGS. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8447 | SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8448 | SDValue Sum = DAG.getNode(BaseOp, dl, VTs, LHS, RHS); |
Bill Wendling | 3fafd93 | 2008-11-26 22:37:40 +0000 | [diff] [blame] | 8449 | |
Bill Wendling | 61edeb5 | 2008-12-02 01:06:39 +0000 | [diff] [blame] | 8450 | SDValue SetCC = |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8451 | DAG.getNode(X86ISD::SETCC, dl, N->getValueType(1), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8452 | DAG.getConstant(Cond, MVT::i32), SDValue(Sum.getNode(), 1)); |
Bill Wendling | 3fafd93 | 2008-11-26 22:37:40 +0000 | [diff] [blame] | 8453 | |
Bill Wendling | 61edeb5 | 2008-12-02 01:06:39 +0000 | [diff] [blame] | 8454 | DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC); |
| 8455 | return Sum; |
Bill Wendling | 41ea7e7 | 2008-11-24 19:21:46 +0000 | [diff] [blame] | 8456 | } |
| 8457 | |
Eric Christopher | 9a9d275 | 2010-07-22 02:48:34 +0000 | [diff] [blame] | 8458 | SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{ |
| 8459 | DebugLoc dl = Op.getDebugLoc(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8460 | |
Eric Christopher | b6729dc | 2010-08-04 23:03:04 +0000 | [diff] [blame] | 8461 | if (!Subtarget->hasSSE2()) { |
Eric Christopher | c0b2a20 | 2010-08-14 21:51:50 +0000 | [diff] [blame] | 8462 | SDValue Chain = Op.getOperand(0); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8463 | SDValue Zero = DAG.getConstant(0, |
Eric Christopher | b6729dc | 2010-08-04 23:03:04 +0000 | [diff] [blame] | 8464 | Subtarget->is64Bit() ? MVT::i64 : MVT::i32); |
Eric Christopher | c0b2a20 | 2010-08-14 21:51:50 +0000 | [diff] [blame] | 8465 | SDValue Ops[] = { |
| 8466 | DAG.getRegister(X86::ESP, MVT::i32), // Base |
| 8467 | DAG.getTargetConstant(1, MVT::i8), // Scale |
| 8468 | DAG.getRegister(0, MVT::i32), // Index |
| 8469 | DAG.getTargetConstant(0, MVT::i32), // Disp |
| 8470 | DAG.getRegister(0, MVT::i32), // Segment. |
| 8471 | Zero, |
| 8472 | Chain |
| 8473 | }; |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8474 | SDNode *Res = |
Eric Christopher | c0b2a20 | 2010-08-14 21:51:50 +0000 | [diff] [blame] | 8475 | DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops, |
| 8476 | array_lengthof(Ops)); |
| 8477 | return SDValue(Res, 0); |
Eric Christopher | b6729dc | 2010-08-04 23:03:04 +0000 | [diff] [blame] | 8478 | } |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8479 | |
Eric Christopher | 9a9d275 | 2010-07-22 02:48:34 +0000 | [diff] [blame] | 8480 | unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue(); |
Chris Lattner | 132929a | 2010-08-14 17:26:09 +0000 | [diff] [blame] | 8481 | if (!isDev) |
Eric Christopher | 9a9d275 | 2010-07-22 02:48:34 +0000 | [diff] [blame] | 8482 | return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0)); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8483 | |
Chris Lattner | 132929a | 2010-08-14 17:26:09 +0000 | [diff] [blame] | 8484 | unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue(); |
| 8485 | unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue(); |
| 8486 | unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue(); |
| 8487 | unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8488 | |
Chris Lattner | 132929a | 2010-08-14 17:26:09 +0000 | [diff] [blame] | 8489 | // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>; |
| 8490 | if (!Op1 && !Op2 && !Op3 && Op4) |
| 8491 | return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0)); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8492 | |
Chris Lattner | 132929a | 2010-08-14 17:26:09 +0000 | [diff] [blame] | 8493 | // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>; |
| 8494 | if (Op1 && !Op2 && !Op3 && !Op4) |
| 8495 | return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0)); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8496 | |
| 8497 | // 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] | 8498 | // (MFENCE)>; |
| 8499 | return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0)); |
Eric Christopher | 9a9d275 | 2010-07-22 02:48:34 +0000 | [diff] [blame] | 8500 | } |
| 8501 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8502 | SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8503 | EVT T = Op.getValueType(); |
Chris Lattner | 93c4a5b | 2010-09-21 23:59:42 +0000 | [diff] [blame] | 8504 | DebugLoc DL = Op.getDebugLoc(); |
Andrew Lenharth | a76e2f0 | 2008-03-04 21:13:33 +0000 | [diff] [blame] | 8505 | unsigned Reg = 0; |
| 8506 | unsigned size = 0; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8507 | switch(T.getSimpleVT().SimpleTy) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 8508 | default: |
| 8509 | assert(false && "Invalid value type!"); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8510 | case MVT::i8: Reg = X86::AL; size = 1; break; |
| 8511 | case MVT::i16: Reg = X86::AX; size = 2; break; |
| 8512 | case MVT::i32: Reg = X86::EAX; size = 4; break; |
| 8513 | case MVT::i64: |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8514 | assert(Subtarget->is64Bit() && "Node not type legal!"); |
| 8515 | Reg = X86::RAX; size = 8; |
Andrew Lenharth | d19189e | 2008-03-05 01:15:49 +0000 | [diff] [blame] | 8516 | break; |
Bill Wendling | 61edeb5 | 2008-12-02 01:06:39 +0000 | [diff] [blame] | 8517 | } |
Chris Lattner | 93c4a5b | 2010-09-21 23:59:42 +0000 | [diff] [blame] | 8518 | SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg, |
Dale Johannesen | d18a462 | 2008-09-11 03:12:59 +0000 | [diff] [blame] | 8519 | Op.getOperand(2), SDValue()); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 8520 | SDValue Ops[] = { cpIn.getValue(0), |
Evan Cheng | 8a186ae | 2008-09-24 23:26:36 +0000 | [diff] [blame] | 8521 | Op.getOperand(1), |
| 8522 | Op.getOperand(3), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8523 | DAG.getTargetConstant(size, MVT::i8), |
Evan Cheng | 8a186ae | 2008-09-24 23:26:36 +0000 | [diff] [blame] | 8524 | cpIn.getValue(1) }; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8525 | SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag); |
Chris Lattner | 93c4a5b | 2010-09-21 23:59:42 +0000 | [diff] [blame] | 8526 | MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand(); |
| 8527 | SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys, |
| 8528 | Ops, 5, T, MMO); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8529 | SDValue cpOut = |
Chris Lattner | 93c4a5b | 2010-09-21 23:59:42 +0000 | [diff] [blame] | 8530 | DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1)); |
Andrew Lenharth | 26ed869 | 2008-03-01 21:52:34 +0000 | [diff] [blame] | 8531 | return cpOut; |
| 8532 | } |
| 8533 | |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8534 | SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8535 | SelectionDAG &DAG) const { |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8536 | assert(Subtarget->is64Bit() && "Result not type legalized?"); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8537 | SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8538 | SDValue TheChain = Op.getOperand(0); |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 8539 | DebugLoc dl = Op.getDebugLoc(); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8540 | SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8541 | SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1)); |
| 8542 | SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64, |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8543 | rax.getValue(2)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8544 | SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx, |
| 8545 | DAG.getConstant(32, MVT::i8)); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8546 | SDValue Ops[] = { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8547 | DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp), |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8548 | rdx.getValue(1) |
| 8549 | }; |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8550 | return DAG.getMergeValues(Ops, 2, dl); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 8551 | } |
| 8552 | |
Dale Johannesen | 7d07b48 | 2010-05-21 00:52:33 +0000 | [diff] [blame] | 8553 | SDValue X86TargetLowering::LowerBIT_CONVERT(SDValue Op, |
| 8554 | SelectionDAG &DAG) const { |
| 8555 | EVT SrcVT = Op.getOperand(0).getValueType(); |
| 8556 | EVT DstVT = Op.getValueType(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8557 | assert((Subtarget->is64Bit() && !Subtarget->hasSSE2() && |
Dale Johannesen | 7d07b48 | 2010-05-21 00:52:33 +0000 | [diff] [blame] | 8558 | Subtarget->hasMMX() && !DisableMMX) && |
| 8559 | "Unexpected custom BIT_CONVERT"); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 8560 | assert((DstVT == MVT::i64 || |
Dale Johannesen | 7d07b48 | 2010-05-21 00:52:33 +0000 | [diff] [blame] | 8561 | (DstVT.isVector() && DstVT.getSizeInBits()==64)) && |
| 8562 | "Unexpected custom BIT_CONVERT"); |
| 8563 | // i64 <=> MMX conversions are Legal. |
| 8564 | if (SrcVT==MVT::i64 && DstVT.isVector()) |
| 8565 | return Op; |
| 8566 | if (DstVT==MVT::i64 && SrcVT.isVector()) |
| 8567 | return Op; |
Dale Johannesen | e39859a | 2010-05-21 18:40:15 +0000 | [diff] [blame] | 8568 | // MMX <=> MMX conversions are Legal. |
| 8569 | if (SrcVT.isVector() && DstVT.isVector()) |
| 8570 | return Op; |
Dale Johannesen | 7d07b48 | 2010-05-21 00:52:33 +0000 | [diff] [blame] | 8571 | // All other conversions need to be expanded. |
| 8572 | return SDValue(); |
| 8573 | } |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8574 | SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const { |
Dale Johannesen | 71d1bf5 | 2008-09-29 22:25:26 +0000 | [diff] [blame] | 8575 | SDNode *Node = Op.getNode(); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8576 | DebugLoc dl = Node->getDebugLoc(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8577 | EVT T = Node->getValueType(0); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8578 | SDValue negOp = DAG.getNode(ISD::SUB, dl, T, |
Evan Cheng | 242b38b | 2009-02-23 09:03:22 +0000 | [diff] [blame] | 8579 | DAG.getConstant(0, T), Node->getOperand(2)); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8580 | return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl, |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 8581 | cast<AtomicSDNode>(Node)->getMemoryVT(), |
Dale Johannesen | 71d1bf5 | 2008-09-29 22:25:26 +0000 | [diff] [blame] | 8582 | Node->getOperand(0), |
| 8583 | Node->getOperand(1), negOp, |
| 8584 | cast<AtomicSDNode>(Node)->getSrcValue(), |
| 8585 | cast<AtomicSDNode>(Node)->getAlignment()); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 8586 | } |
| 8587 | |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8588 | /// LowerOperation - Provide custom lowering hooks for some operations. |
| 8589 | /// |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8590 | SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const { |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8591 | switch (Op.getOpcode()) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 8592 | default: llvm_unreachable("Should not custom lower this!"); |
Eric Christopher | 9a9d275 | 2010-07-22 02:48:34 +0000 | [diff] [blame] | 8593 | case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG); |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 8594 | case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG); |
| 8595 | case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8596 | case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG); |
Mon P Wang | eb38ebf | 2010-01-24 00:05:03 +0000 | [diff] [blame] | 8597 | case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8598 | case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG); |
| 8599 | case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG); |
| 8600 | case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG); |
| 8601 | case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG); |
| 8602 | case ISD::ConstantPool: return LowerConstantPool(Op, DAG); |
| 8603 | case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG); |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 8604 | case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG); |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 8605 | case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG); |
Dan Gohman | f705adb | 2009-10-30 01:28:02 +0000 | [diff] [blame] | 8606 | case ISD::BlockAddress: return LowerBlockAddress(Op, DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8607 | case ISD::SHL_PARTS: |
| 8608 | case ISD::SRA_PARTS: |
| 8609 | case ISD::SRL_PARTS: return LowerShift(Op, DAG); |
| 8610 | case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG); |
Dale Johannesen | 1c15bf5 | 2008-10-21 20:50:01 +0000 | [diff] [blame] | 8611 | case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8612 | case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG); |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 8613 | case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8614 | case ISD::FABS: return LowerFABS(Op, DAG); |
| 8615 | case ISD::FNEG: return LowerFNEG(Op, DAG); |
Evan Cheng | 68c47cb | 2007-01-05 07:55:56 +0000 | [diff] [blame] | 8616 | case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG); |
Evan Cheng | e5f6204 | 2007-09-29 00:00:36 +0000 | [diff] [blame] | 8617 | case ISD::SETCC: return LowerSETCC(Op, DAG); |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 8618 | case ISD::VSETCC: return LowerVSETCC(Op, DAG); |
Evan Cheng | e5f6204 | 2007-09-29 00:00:36 +0000 | [diff] [blame] | 8619 | case ISD::SELECT: return LowerSELECT(Op, DAG); |
| 8620 | case ISD::BRCOND: return LowerBRCOND(Op, DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8621 | case ISD::JumpTable: return LowerJumpTable(Op, DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8622 | case ISD::VASTART: return LowerVASTART(Op, DAG); |
Dan Gohman | 9018e83 | 2008-05-10 01:26:14 +0000 | [diff] [blame] | 8623 | case ISD::VAARG: return LowerVAARG(Op, DAG); |
Evan Cheng | ae64219 | 2007-03-02 23:16:35 +0000 | [diff] [blame] | 8624 | case ISD::VACOPY: return LowerVACOPY(Op, DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8625 | case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG); |
Nate Begeman | bcc5f36 | 2007-01-29 22:58:52 +0000 | [diff] [blame] | 8626 | case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG); |
| 8627 | case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG); |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 8628 | case ISD::FRAME_TO_ARGS_OFFSET: |
| 8629 | return LowerFRAME_TO_ARGS_OFFSET(Op, DAG); |
Anton Korobeynikov | 57fc00d | 2007-04-17 09:20:00 +0000 | [diff] [blame] | 8630 | case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG); |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 8631 | case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG); |
Duncan Sands | b116fac | 2007-07-27 20:02:49 +0000 | [diff] [blame] | 8632 | case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG); |
Dan Gohman | 1a02486 | 2008-01-31 00:41:03 +0000 | [diff] [blame] | 8633 | case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG); |
Evan Cheng | 18efe26 | 2007-12-14 02:13:44 +0000 | [diff] [blame] | 8634 | case ISD::CTLZ: return LowerCTLZ(Op, DAG); |
| 8635 | case ISD::CTTZ: return LowerCTTZ(Op, DAG); |
Mon P Wang | af9b952 | 2008-12-18 21:42:19 +0000 | [diff] [blame] | 8636 | case ISD::MUL: return LowerMUL_V2I64(Op, DAG); |
Nate Begeman | bdcb5af | 2010-07-27 22:37:06 +0000 | [diff] [blame] | 8637 | case ISD::SHL: return LowerSHL(Op, DAG); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 8638 | case ISD::SADDO: |
| 8639 | case ISD::UADDO: |
| 8640 | case ISD::SSUBO: |
| 8641 | case ISD::USUBO: |
| 8642 | case ISD::SMULO: |
| 8643 | case ISD::UMULO: return LowerXALUO(Op, DAG); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8644 | case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG); |
Dale Johannesen | 7d07b48 | 2010-05-21 00:52:33 +0000 | [diff] [blame] | 8645 | case ISD::BIT_CONVERT: return LowerBIT_CONVERT(Op, DAG); |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8646 | } |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 8647 | } |
| 8648 | |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8649 | void X86TargetLowering:: |
| 8650 | ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8651 | SelectionDAG &DAG, unsigned NewOp) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8652 | EVT T = Node->getValueType(0); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8653 | DebugLoc dl = Node->getDebugLoc(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8654 | assert (T == MVT::i64 && "Only know how to expand i64 atomics"); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8655 | |
| 8656 | SDValue Chain = Node->getOperand(0); |
| 8657 | SDValue In1 = Node->getOperand(1); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8658 | SDValue In2L = 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(0)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8660 | SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8661 | Node->getOperand(2), DAG.getIntPtrConstant(1)); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 8662 | SDValue Ops[] = { Chain, In1, In2L, In2H }; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8663 | SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 8664 | SDValue Result = |
| 8665 | DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64, |
| 8666 | cast<MemSDNode>(Node)->getMemOperand()); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8667 | SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)}; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8668 | 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] | 8669 | Results.push_back(Result.getValue(2)); |
| 8670 | } |
| 8671 | |
Duncan Sands | 126d907 | 2008-07-04 11:47:58 +0000 | [diff] [blame] | 8672 | /// ReplaceNodeResults - Replace a node with an illegal result type |
| 8673 | /// with a new node built out of custom code. |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8674 | void X86TargetLowering::ReplaceNodeResults(SDNode *N, |
| 8675 | SmallVectorImpl<SDValue>&Results, |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 8676 | SelectionDAG &DAG) const { |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8677 | DebugLoc dl = N->getDebugLoc(); |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 8678 | switch (N->getOpcode()) { |
Duncan Sands | ed294c4 | 2008-10-20 15:56:33 +0000 | [diff] [blame] | 8679 | default: |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8680 | assert(false && "Do not know how to custom type legalize this operation!"); |
| 8681 | return; |
| 8682 | case ISD::FP_TO_SINT: { |
Eli Friedman | 948e95a | 2009-05-23 09:59:16 +0000 | [diff] [blame] | 8683 | std::pair<SDValue,SDValue> Vals = |
| 8684 | FP_TO_INTHelper(SDValue(N, 0), DAG, true); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8685 | SDValue FIST = Vals.first, StackSlot = Vals.second; |
| 8686 | if (FIST.getNode() != 0) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8687 | EVT VT = N->getValueType(0); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8688 | // Return a load from the stack slot. |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 8689 | Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot, |
| 8690 | MachinePointerInfo(), false, false, 0)); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8691 | } |
| 8692 | return; |
| 8693 | } |
| 8694 | case ISD::READCYCLECOUNTER: { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8695 | SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8696 | SDValue TheChain = N->getOperand(0); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 8697 | SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8698 | SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32, |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 8699 | rd.getValue(1)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8700 | SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32, |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8701 | eax.getValue(2)); |
| 8702 | // Use a buildpair to merge the two 32-bit values into a 64-bit one. |
| 8703 | SDValue Ops[] = { eax, edx }; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8704 | 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] | 8705 | Results.push_back(edx.getValue(1)); |
| 8706 | return; |
| 8707 | } |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 8708 | case ISD::ATOMIC_CMP_SWAP: { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8709 | EVT T = N->getValueType(0); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8710 | 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] | 8711 | SDValue cpInL, cpInH; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8712 | cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2), |
| 8713 | DAG.getConstant(0, MVT::i32)); |
| 8714 | cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2), |
| 8715 | DAG.getConstant(1, MVT::i32)); |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 8716 | cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue()); |
| 8717 | cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH, |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8718 | cpInL.getValue(1)); |
| 8719 | SDValue swapInL, swapInH; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8720 | swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3), |
| 8721 | DAG.getConstant(0, MVT::i32)); |
| 8722 | swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3), |
| 8723 | DAG.getConstant(1, MVT::i32)); |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 8724 | swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL, |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8725 | cpInH.getValue(1)); |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 8726 | swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH, |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8727 | swapInL.getValue(1)); |
| 8728 | SDValue Ops[] = { swapInH.getValue(0), |
| 8729 | N->getOperand(1), |
| 8730 | swapInH.getValue(1) }; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8731 | SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag); |
Andrew Trick | 1a2cf3b | 2010-10-11 19:02:04 +0000 | [diff] [blame] | 8732 | MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand(); |
| 8733 | SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys, |
| 8734 | Ops, 3, T, MMO); |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 8735 | SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8736 | MVT::i32, Result.getValue(1)); |
Dale Johannesen | dd64c41 | 2009-02-04 00:33:20 +0000 | [diff] [blame] | 8737 | SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8738 | MVT::i32, cpOutL.getValue(2)); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8739 | SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)}; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8740 | 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] | 8741 | Results.push_back(cpOutH.getValue(1)); |
| 8742 | return; |
| 8743 | } |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 8744 | case ISD::ATOMIC_LOAD_ADD: |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8745 | ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG); |
| 8746 | return; |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 8747 | case ISD::ATOMIC_LOAD_AND: |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8748 | ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG); |
| 8749 | return; |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 8750 | case ISD::ATOMIC_LOAD_NAND: |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8751 | ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG); |
| 8752 | return; |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 8753 | case ISD::ATOMIC_LOAD_OR: |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8754 | ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG); |
| 8755 | return; |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 8756 | case ISD::ATOMIC_LOAD_SUB: |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8757 | ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG); |
| 8758 | return; |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 8759 | case ISD::ATOMIC_LOAD_XOR: |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8760 | ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG); |
| 8761 | return; |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 8762 | case ISD::ATOMIC_SWAP: |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame] | 8763 | ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG); |
| 8764 | return; |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 8765 | } |
Evan Cheng | 0db9fe6 | 2006-04-25 20:13:52 +0000 | [diff] [blame] | 8766 | } |
| 8767 | |
Evan Cheng | 7226158 | 2005-12-20 06:22:03 +0000 | [diff] [blame] | 8768 | const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const { |
| 8769 | switch (Opcode) { |
| 8770 | default: return NULL; |
Evan Cheng | 18efe26 | 2007-12-14 02:13:44 +0000 | [diff] [blame] | 8771 | case X86ISD::BSF: return "X86ISD::BSF"; |
| 8772 | case X86ISD::BSR: return "X86ISD::BSR"; |
Evan Cheng | e341316 | 2006-01-09 18:33:28 +0000 | [diff] [blame] | 8773 | case X86ISD::SHLD: return "X86ISD::SHLD"; |
| 8774 | case X86ISD::SHRD: return "X86ISD::SHRD"; |
Evan Cheng | ef6ffb1 | 2006-01-31 03:14:29 +0000 | [diff] [blame] | 8775 | case X86ISD::FAND: return "X86ISD::FAND"; |
Evan Cheng | 68c47cb | 2007-01-05 07:55:56 +0000 | [diff] [blame] | 8776 | case X86ISD::FOR: return "X86ISD::FOR"; |
Evan Cheng | 223547a | 2006-01-31 22:28:30 +0000 | [diff] [blame] | 8777 | case X86ISD::FXOR: return "X86ISD::FXOR"; |
Evan Cheng | 68c47cb | 2007-01-05 07:55:56 +0000 | [diff] [blame] | 8778 | case X86ISD::FSRL: return "X86ISD::FSRL"; |
Evan Cheng | a3195e8 | 2006-01-12 22:54:21 +0000 | [diff] [blame] | 8779 | case X86ISD::FILD: return "X86ISD::FILD"; |
Evan Cheng | e3de85b | 2006-02-04 02:20:30 +0000 | [diff] [blame] | 8780 | case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG"; |
Evan Cheng | 7226158 | 2005-12-20 06:22:03 +0000 | [diff] [blame] | 8781 | case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM"; |
| 8782 | case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM"; |
| 8783 | 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] | 8784 | case X86ISD::FLD: return "X86ISD::FLD"; |
Evan Cheng | d90eb7f | 2006-01-05 00:27:02 +0000 | [diff] [blame] | 8785 | case X86ISD::FST: return "X86ISD::FST"; |
Evan Cheng | 7226158 | 2005-12-20 06:22:03 +0000 | [diff] [blame] | 8786 | case X86ISD::CALL: return "X86ISD::CALL"; |
Evan Cheng | 7226158 | 2005-12-20 06:22:03 +0000 | [diff] [blame] | 8787 | case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG"; |
Dan Gohman | c7a37d4 | 2008-12-23 22:45:23 +0000 | [diff] [blame] | 8788 | case X86ISD::BT: return "X86ISD::BT"; |
Evan Cheng | 7226158 | 2005-12-20 06:22:03 +0000 | [diff] [blame] | 8789 | case X86ISD::CMP: return "X86ISD::CMP"; |
Evan Cheng | 6be2c58 | 2006-04-05 23:38:46 +0000 | [diff] [blame] | 8790 | case X86ISD::COMI: return "X86ISD::COMI"; |
| 8791 | case X86ISD::UCOMI: return "X86ISD::UCOMI"; |
Evan Cheng | d5781fc | 2005-12-21 20:21:51 +0000 | [diff] [blame] | 8792 | case X86ISD::SETCC: return "X86ISD::SETCC"; |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 8793 | case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY"; |
Evan Cheng | 7226158 | 2005-12-20 06:22:03 +0000 | [diff] [blame] | 8794 | case X86ISD::CMOV: return "X86ISD::CMOV"; |
| 8795 | case X86ISD::BRCOND: return "X86ISD::BRCOND"; |
Evan Cheng | b077b84 | 2005-12-21 02:39:21 +0000 | [diff] [blame] | 8796 | case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG"; |
Evan Cheng | 8df346b | 2006-03-04 01:12:00 +0000 | [diff] [blame] | 8797 | case X86ISD::REP_STOS: return "X86ISD::REP_STOS"; |
| 8798 | case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS"; |
Evan Cheng | 7ccced6 | 2006-02-18 00:15:05 +0000 | [diff] [blame] | 8799 | case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg"; |
Evan Cheng | 020d2e8 | 2006-02-23 20:41:18 +0000 | [diff] [blame] | 8800 | case X86ISD::Wrapper: return "X86ISD::Wrapper"; |
Chris Lattner | 18c5987 | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 8801 | case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP"; |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 8802 | case X86ISD::PEXTRB: return "X86ISD::PEXTRB"; |
Evan Cheng | b067a1e | 2006-03-31 19:22:53 +0000 | [diff] [blame] | 8803 | case X86ISD::PEXTRW: return "X86ISD::PEXTRW"; |
Nate Begeman | 14d12ca | 2008-02-11 04:19:36 +0000 | [diff] [blame] | 8804 | case X86ISD::INSERTPS: return "X86ISD::INSERTPS"; |
| 8805 | case X86ISD::PINSRB: return "X86ISD::PINSRB"; |
Evan Cheng | 653159f | 2006-03-31 21:55:24 +0000 | [diff] [blame] | 8806 | case X86ISD::PINSRW: return "X86ISD::PINSRW"; |
Nate Begeman | b9a47b8 | 2009-02-23 08:49:38 +0000 | [diff] [blame] | 8807 | case X86ISD::PSHUFB: return "X86ISD::PSHUFB"; |
Evan Cheng | 8ca2932 | 2006-11-10 21:43:37 +0000 | [diff] [blame] | 8808 | case X86ISD::FMAX: return "X86ISD::FMAX"; |
| 8809 | case X86ISD::FMIN: return "X86ISD::FMIN"; |
Dan Gohman | 2038252 | 2007-07-10 00:05:58 +0000 | [diff] [blame] | 8810 | case X86ISD::FRSQRT: return "X86ISD::FRSQRT"; |
| 8811 | case X86ISD::FRCP: return "X86ISD::FRCP"; |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 8812 | case X86ISD::TLSADDR: return "X86ISD::TLSADDR"; |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 8813 | case X86ISD::TLSCALL: return "X86ISD::TLSCALL"; |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 8814 | case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN"; |
Arnold Schwaighofer | c85e171 | 2007-10-11 19:40:01 +0000 | [diff] [blame] | 8815 | case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN"; |
Anton Korobeynikov | 45b22fa | 2007-11-16 01:31:51 +0000 | [diff] [blame] | 8816 | case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m"; |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 8817 | case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG"; |
| 8818 | case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG"; |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 8819 | case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG"; |
| 8820 | case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG"; |
| 8821 | case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG"; |
| 8822 | case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG"; |
| 8823 | case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG"; |
| 8824 | case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG"; |
Evan Cheng | d880b97 | 2008-05-09 21:53:03 +0000 | [diff] [blame] | 8825 | case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL"; |
| 8826 | case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD"; |
Evan Cheng | f26ffe9 | 2008-05-29 08:22:04 +0000 | [diff] [blame] | 8827 | case X86ISD::VSHL: return "X86ISD::VSHL"; |
| 8828 | case X86ISD::VSRL: return "X86ISD::VSRL"; |
Nate Begeman | 30a0de9 | 2008-07-17 16:51:19 +0000 | [diff] [blame] | 8829 | case X86ISD::CMPPD: return "X86ISD::CMPPD"; |
| 8830 | case X86ISD::CMPPS: return "X86ISD::CMPPS"; |
| 8831 | case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB"; |
| 8832 | case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW"; |
| 8833 | case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD"; |
| 8834 | case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ"; |
| 8835 | case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB"; |
| 8836 | case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW"; |
| 8837 | case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD"; |
| 8838 | case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ"; |
Bill Wendling | ab55ebd | 2008-12-12 00:56:36 +0000 | [diff] [blame] | 8839 | case X86ISD::ADD: return "X86ISD::ADD"; |
| 8840 | case X86ISD::SUB: return "X86ISD::SUB"; |
Bill Wendling | d350e02 | 2008-12-12 21:15:41 +0000 | [diff] [blame] | 8841 | case X86ISD::SMUL: return "X86ISD::SMUL"; |
| 8842 | case X86ISD::UMUL: return "X86ISD::UMUL"; |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 8843 | case X86ISD::INC: return "X86ISD::INC"; |
| 8844 | case X86ISD::DEC: return "X86ISD::DEC"; |
Dan Gohman | e220c4b | 2009-09-18 19:59:53 +0000 | [diff] [blame] | 8845 | case X86ISD::OR: return "X86ISD::OR"; |
| 8846 | case X86ISD::XOR: return "X86ISD::XOR"; |
| 8847 | case X86ISD::AND: return "X86ISD::AND"; |
Evan Cheng | 73f24c9 | 2009-03-30 21:36:47 +0000 | [diff] [blame] | 8848 | case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM"; |
Eric Christopher | 71c6753 | 2009-07-29 00:28:05 +0000 | [diff] [blame] | 8849 | case X86ISD::PTEST: return "X86ISD::PTEST"; |
Bruno Cardoso Lopes | 045573c | 2010-08-10 23:25:42 +0000 | [diff] [blame] | 8850 | case X86ISD::TESTP: return "X86ISD::TESTP"; |
Bruno Cardoso Lopes | 3157ef1 | 2010-08-20 22:55:05 +0000 | [diff] [blame] | 8851 | case X86ISD::PALIGN: return "X86ISD::PALIGN"; |
| 8852 | case X86ISD::PSHUFD: return "X86ISD::PSHUFD"; |
| 8853 | case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW"; |
| 8854 | case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD"; |
| 8855 | case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW"; |
| 8856 | case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD"; |
| 8857 | case X86ISD::SHUFPS: return "X86ISD::SHUFPS"; |
| 8858 | case X86ISD::SHUFPD: return "X86ISD::SHUFPD"; |
| 8859 | case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS"; |
Bruno Cardoso Lopes | 3157ef1 | 2010-08-20 22:55:05 +0000 | [diff] [blame] | 8860 | case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD"; |
Bruno Cardoso Lopes | f2db5b4 | 2010-08-31 21:15:21 +0000 | [diff] [blame] | 8861 | case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS"; |
Bruno Cardoso Lopes | 3157ef1 | 2010-08-20 22:55:05 +0000 | [diff] [blame] | 8862 | case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD"; |
Bruno Cardoso Lopes | 56098f5 | 2010-09-01 05:08:25 +0000 | [diff] [blame] | 8863 | case X86ISD::MOVLPS: return "X86ISD::MOVLPS"; |
| 8864 | case X86ISD::MOVLPD: return "X86ISD::MOVLPD"; |
Bruno Cardoso Lopes | 3157ef1 | 2010-08-20 22:55:05 +0000 | [diff] [blame] | 8865 | case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP"; |
| 8866 | case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP"; |
| 8867 | case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP"; |
| 8868 | case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD"; |
| 8869 | case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD"; |
| 8870 | case X86ISD::MOVSD: return "X86ISD::MOVSD"; |
| 8871 | case X86ISD::MOVSS: return "X86ISD::MOVSS"; |
| 8872 | case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS"; |
| 8873 | case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD"; |
| 8874 | case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS"; |
| 8875 | case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD"; |
| 8876 | case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW"; |
| 8877 | case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD"; |
| 8878 | case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ"; |
| 8879 | case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ"; |
| 8880 | case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW"; |
| 8881 | case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD"; |
| 8882 | case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ"; |
| 8883 | case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ"; |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 8884 | case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS"; |
Dan Gohman | 320afb8 | 2010-10-12 18:00:49 +0000 | [diff] [blame] | 8885 | case X86ISD::VAARG_64: return "X86ISD::VAARG_64"; |
Michael J. Spencer | e9c253e | 2010-10-21 01:41:01 +0000 | [diff] [blame] | 8886 | case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA"; |
Evan Cheng | 7226158 | 2005-12-20 06:22:03 +0000 | [diff] [blame] | 8887 | } |
| 8888 | } |
Evan Cheng | 3a03ebb | 2005-12-21 23:05:39 +0000 | [diff] [blame] | 8889 | |
Chris Lattner | c9addb7 | 2007-03-30 23:15:24 +0000 | [diff] [blame] | 8890 | // isLegalAddressingMode - Return true if the addressing mode represented |
| 8891 | // 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] | 8892 | bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM, |
Chris Lattner | c9addb7 | 2007-03-30 23:15:24 +0000 | [diff] [blame] | 8893 | const Type *Ty) const { |
| 8894 | // X86 supports extremely general addressing modes. |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 8895 | CodeModel::Model M = getTargetMachine().getCodeModel(); |
Dan Gohman | 92b651f | 2010-08-24 15:55:12 +0000 | [diff] [blame] | 8896 | Reloc::Model R = getTargetMachine().getRelocationModel(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8897 | |
Chris Lattner | c9addb7 | 2007-03-30 23:15:24 +0000 | [diff] [blame] | 8898 | // X86 allows a sign-extended 32-bit immediate field as a displacement. |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 8899 | if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL)) |
Chris Lattner | c9addb7 | 2007-03-30 23:15:24 +0000 | [diff] [blame] | 8900 | return false; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8901 | |
Chris Lattner | c9addb7 | 2007-03-30 23:15:24 +0000 | [diff] [blame] | 8902 | if (AM.BaseGV) { |
Chris Lattner | dfed413 | 2009-07-10 07:38:24 +0000 | [diff] [blame] | 8903 | unsigned GVFlags = |
| 8904 | Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine()); |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 8905 | |
Chris Lattner | dfed413 | 2009-07-10 07:38:24 +0000 | [diff] [blame] | 8906 | // If a reference to this global requires an extra load, we can't fold it. |
| 8907 | if (isGlobalStubReference(GVFlags)) |
Chris Lattner | c9addb7 | 2007-03-30 23:15:24 +0000 | [diff] [blame] | 8908 | return false; |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 8909 | |
Chris Lattner | dfed413 | 2009-07-10 07:38:24 +0000 | [diff] [blame] | 8910 | // If BaseGV requires a register for the PIC base, we cannot also have a |
| 8911 | // BaseReg specified. |
| 8912 | if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags)) |
Dale Johannesen | 203af58 | 2008-12-05 21:47:27 +0000 | [diff] [blame] | 8913 | return false; |
Evan Cheng | 5278784 | 2007-08-01 23:46:47 +0000 | [diff] [blame] | 8914 | |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 8915 | // 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] | 8916 | if ((M != CodeModel::Small || R != Reloc::Static) && |
| 8917 | Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1)) |
Anton Korobeynikov | b5e0172 | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 8918 | return false; |
Chris Lattner | c9addb7 | 2007-03-30 23:15:24 +0000 | [diff] [blame] | 8919 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8920 | |
Chris Lattner | c9addb7 | 2007-03-30 23:15:24 +0000 | [diff] [blame] | 8921 | switch (AM.Scale) { |
| 8922 | case 0: |
| 8923 | case 1: |
| 8924 | case 2: |
| 8925 | case 4: |
| 8926 | case 8: |
| 8927 | // These scales always work. |
| 8928 | break; |
| 8929 | case 3: |
| 8930 | case 5: |
| 8931 | case 9: |
| 8932 | // These scales are formed with basereg+scalereg. Only accept if there is |
| 8933 | // no basereg yet. |
| 8934 | if (AM.HasBaseReg) |
| 8935 | return false; |
| 8936 | break; |
| 8937 | default: // Other stuff never works. |
| 8938 | return false; |
| 8939 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 8940 | |
Chris Lattner | c9addb7 | 2007-03-30 23:15:24 +0000 | [diff] [blame] | 8941 | return true; |
| 8942 | } |
| 8943 | |
| 8944 | |
Evan Cheng | 2bd122c | 2007-10-26 01:56:11 +0000 | [diff] [blame] | 8945 | bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const { |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 8946 | if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy()) |
Evan Cheng | 2bd122c | 2007-10-26 01:56:11 +0000 | [diff] [blame] | 8947 | return false; |
Evan Cheng | e127a73 | 2007-10-29 07:57:50 +0000 | [diff] [blame] | 8948 | unsigned NumBits1 = Ty1->getPrimitiveSizeInBits(); |
| 8949 | unsigned NumBits2 = Ty2->getPrimitiveSizeInBits(); |
Evan Cheng | 260e07e | 2008-03-20 02:18:41 +0000 | [diff] [blame] | 8950 | if (NumBits1 <= NumBits2) |
Evan Cheng | e127a73 | 2007-10-29 07:57:50 +0000 | [diff] [blame] | 8951 | return false; |
Dan Gohman | 377fbc0 | 2010-02-25 03:04:36 +0000 | [diff] [blame] | 8952 | return true; |
Evan Cheng | 2bd122c | 2007-10-26 01:56:11 +0000 | [diff] [blame] | 8953 | } |
| 8954 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8955 | bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 8956 | if (!VT1.isInteger() || !VT2.isInteger()) |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 8957 | return false; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 8958 | unsigned NumBits1 = VT1.getSizeInBits(); |
| 8959 | unsigned NumBits2 = VT2.getSizeInBits(); |
Evan Cheng | 260e07e | 2008-03-20 02:18:41 +0000 | [diff] [blame] | 8960 | if (NumBits1 <= NumBits2) |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 8961 | return false; |
Dan Gohman | 377fbc0 | 2010-02-25 03:04:36 +0000 | [diff] [blame] | 8962 | return true; |
Evan Cheng | 3c3ddb3 | 2007-10-29 19:58:20 +0000 | [diff] [blame] | 8963 | } |
Evan Cheng | 2bd122c | 2007-10-26 01:56:11 +0000 | [diff] [blame] | 8964 | |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 8965 | bool X86TargetLowering::isZExtFree(const Type *Ty1, const Type *Ty2) const { |
Dan Gohman | 349ba49 | 2009-04-09 02:06:09 +0000 | [diff] [blame] | 8966 | // x86-64 implicitly zero-extends 32-bit results in 64-bit registers. |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 8967 | return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit(); |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 8968 | } |
| 8969 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8970 | bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const { |
Dan Gohman | 349ba49 | 2009-04-09 02:06:09 +0000 | [diff] [blame] | 8971 | // x86-64 implicitly zero-extends 32-bit results in 64-bit registers. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8972 | return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit(); |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 8973 | } |
| 8974 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8975 | bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const { |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 8976 | // i16 instructions are longer (0x66 prefix) and potentially slower. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 8977 | return !(VT1 == MVT::i32 && VT2 == MVT::i16); |
Evan Cheng | 8b944d3 | 2009-05-28 00:35:15 +0000 | [diff] [blame] | 8978 | } |
| 8979 | |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 8980 | /// isShuffleMaskLegal - Targets can use this to indicate that they only |
| 8981 | /// support *some* VECTOR_SHUFFLE operations, those with specific masks. |
| 8982 | /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values |
| 8983 | /// are assumed to be legal. |
| 8984 | bool |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 8985 | X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 8986 | EVT VT) const { |
Eric Christopher | cff6f85 | 2010-04-15 01:40:20 +0000 | [diff] [blame] | 8987 | // Very little shuffling can be done for 64-bit vectors right now. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8988 | if (VT.getSizeInBits() == 64) |
Eric Christopher | cff6f85 | 2010-04-15 01:40:20 +0000 | [diff] [blame] | 8989 | return isPALIGNRMask(M, VT, Subtarget->hasSSSE3()); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8990 | |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 8991 | // FIXME: pshufb, blends, shifts. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 8992 | return (VT.getVectorNumElements() == 2 || |
| 8993 | ShuffleVectorSDNode::isSplatMask(&M[0], VT) || |
| 8994 | isMOVLMask(M, VT) || |
| 8995 | isSHUFPMask(M, VT) || |
| 8996 | isPSHUFDMask(M, VT) || |
| 8997 | isPSHUFHWMask(M, VT) || |
| 8998 | isPSHUFLWMask(M, VT) || |
Nate Begeman | a09008b | 2009-10-19 02:17:23 +0000 | [diff] [blame] | 8999 | isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) || |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 9000 | isUNPCKLMask(M, VT) || |
| 9001 | isUNPCKHMask(M, VT) || |
| 9002 | isUNPCKL_v_undef_Mask(M, VT) || |
| 9003 | isUNPCKH_v_undef_Mask(M, VT)); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9004 | } |
| 9005 | |
Dan Gohman | 7d8143f | 2008-04-09 20:09:42 +0000 | [diff] [blame] | 9006 | bool |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 9007 | X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 9008 | EVT VT) const { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 9009 | unsigned NumElts = VT.getVectorNumElements(); |
| 9010 | // FIXME: This collection of masks seems suspect. |
| 9011 | if (NumElts == 2) |
| 9012 | return true; |
| 9013 | if (NumElts == 4 && VT.getSizeInBits() == 128) { |
| 9014 | return (isMOVLMask(Mask, VT) || |
| 9015 | isCommutedMOVLMask(Mask, VT, true) || |
| 9016 | isSHUFPMask(Mask, VT) || |
| 9017 | isCommutedSHUFPMask(Mask, VT)); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9018 | } |
| 9019 | return false; |
| 9020 | } |
| 9021 | |
| 9022 | //===----------------------------------------------------------------------===// |
| 9023 | // X86 Scheduler Hooks |
| 9024 | //===----------------------------------------------------------------------===// |
| 9025 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9026 | // private utility function |
| 9027 | MachineBasicBlock * |
| 9028 | X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr, |
| 9029 | MachineBasicBlock *MBB, |
| 9030 | unsigned regOpc, |
Andrew Lenharth | 507a58a | 2008-06-14 05:48:15 +0000 | [diff] [blame] | 9031 | unsigned immOpc, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 9032 | unsigned LoadOpc, |
| 9033 | unsigned CXchgOpc, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 9034 | unsigned notOpc, |
| 9035 | unsigned EAXreg, |
| 9036 | TargetRegisterClass *RC, |
Dan Gohman | 1fdbc1d | 2009-02-07 16:15:20 +0000 | [diff] [blame] | 9037 | bool invSrc) const { |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9038 | // For the atomic bitwise operator, we generate |
| 9039 | // thisMBB: |
| 9040 | // newMBB: |
Mon P Wang | ab3e747 | 2008-05-05 22:56:23 +0000 | [diff] [blame] | 9041 | // ld t1 = [bitinstr.addr] |
| 9042 | // op t2 = t1, [bitinstr.val] |
| 9043 | // mov EAX = t1 |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9044 | // lcs dest = [bitinstr.addr], t2 [EAX is implicit] |
| 9045 | // bz newMBB |
| 9046 | // fallthrough -->nextMBB |
| 9047 | const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); |
| 9048 | const BasicBlock *LLVM_BB = MBB->getBasicBlock(); |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 9049 | MachineFunction::iterator MBBIter = MBB; |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9050 | ++MBBIter; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9051 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9052 | /// First build the CFG |
| 9053 | MachineFunction *F = MBB->getParent(); |
| 9054 | MachineBasicBlock *thisMBB = MBB; |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 9055 | MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 9056 | MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 9057 | F->insert(MBBIter, newMBB); |
| 9058 | F->insert(MBBIter, nextMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9059 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9060 | // Transfer the remainder of thisMBB and its successor edges to nextMBB. |
| 9061 | nextMBB->splice(nextMBB->begin(), thisMBB, |
| 9062 | llvm::next(MachineBasicBlock::iterator(bInstr)), |
| 9063 | thisMBB->end()); |
| 9064 | nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9065 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9066 | // Update thisMBB to fall through to newMBB |
| 9067 | thisMBB->addSuccessor(newMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9068 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9069 | // newMBB jumps to itself and fall through to nextMBB |
| 9070 | newMBB->addSuccessor(nextMBB); |
| 9071 | newMBB->addSuccessor(newMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9072 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9073 | // Insert instructions into newMBB based on incoming instruction |
Chris Lattner | ac0ed5d | 2010-07-08 22:41:28 +0000 | [diff] [blame] | 9074 | assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 && |
Bill Wendling | 51b16f4 | 2009-05-30 01:09:53 +0000 | [diff] [blame] | 9075 | "unexpected number of operands"); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9076 | DebugLoc dl = bInstr->getDebugLoc(); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9077 | MachineOperand& destOper = bInstr->getOperand(0); |
Chris Lattner | ac0ed5d | 2010-07-08 22:41:28 +0000 | [diff] [blame] | 9078 | MachineOperand* argOpers[2 + X86::AddrNumOperands]; |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9079 | int numArgs = bInstr->getNumOperands() - 1; |
| 9080 | for (int i=0; i < numArgs; ++i) |
| 9081 | argOpers[i] = &bInstr->getOperand(i+1); |
| 9082 | |
| 9083 | // x86 address has 4 operands: base, index, scale, and displacement |
Chris Lattner | ac0ed5d | 2010-07-08 22:41:28 +0000 | [diff] [blame] | 9084 | int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3] |
Rafael Espindola | a82dfca | 2009-03-27 15:26:30 +0000 | [diff] [blame] | 9085 | int valArgIndx = lastAddrIndx + 1; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9086 | |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 9087 | unsigned t1 = F->getRegInfo().createVirtualRegister(RC); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9088 | MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9089 | for (int i=0; i <= lastAddrIndx; ++i) |
| 9090 | (*MIB).addOperand(*argOpers[i]); |
Andrew Lenharth | 507a58a | 2008-06-14 05:48:15 +0000 | [diff] [blame] | 9091 | |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 9092 | unsigned tt = F->getRegInfo().createVirtualRegister(RC); |
Andrew Lenharth | 507a58a | 2008-06-14 05:48:15 +0000 | [diff] [blame] | 9093 | if (invSrc) { |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9094 | MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1); |
Andrew Lenharth | 507a58a | 2008-06-14 05:48:15 +0000 | [diff] [blame] | 9095 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9096 | else |
Andrew Lenharth | 507a58a | 2008-06-14 05:48:15 +0000 | [diff] [blame] | 9097 | tt = t1; |
| 9098 | |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 9099 | unsigned t2 = F->getRegInfo().createVirtualRegister(RC); |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 9100 | assert((argOpers[valArgIndx]->isReg() || |
| 9101 | argOpers[valArgIndx]->isImm()) && |
Dan Gohman | 014278e | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 9102 | "invalid operand"); |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 9103 | if (argOpers[valArgIndx]->isReg()) |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9104 | MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9105 | else |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9106 | MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2); |
Andrew Lenharth | 507a58a | 2008-06-14 05:48:15 +0000 | [diff] [blame] | 9107 | MIB.addReg(tt); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9108 | (*MIB).addOperand(*argOpers[valArgIndx]); |
Andrew Lenharth | 507a58a | 2008-06-14 05:48:15 +0000 | [diff] [blame] | 9109 | |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9110 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg); |
Mon P Wang | ab3e747 | 2008-05-05 22:56:23 +0000 | [diff] [blame] | 9111 | MIB.addReg(t1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9112 | |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9113 | MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc)); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9114 | for (int i=0; i <= lastAddrIndx; ++i) |
| 9115 | (*MIB).addOperand(*argOpers[i]); |
| 9116 | MIB.addReg(t2); |
Mon P Wang | f595266 | 2008-07-17 04:54:06 +0000 | [diff] [blame] | 9117 | assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand"); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 9118 | (*MIB).setMemRefs(bInstr->memoperands_begin(), |
| 9119 | bInstr->memoperands_end()); |
Mon P Wang | f595266 | 2008-07-17 04:54:06 +0000 | [diff] [blame] | 9120 | |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9121 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg()); |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 9122 | MIB.addReg(EAXreg); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9123 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9124 | // insert branch |
Chris Lattner | bd13fb6 | 2010-02-11 19:25:55 +0000 | [diff] [blame] | 9125 | BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9126 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9127 | bInstr->eraseFromParent(); // The pseudo instruction is gone now. |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9128 | return nextMBB; |
| 9129 | } |
| 9130 | |
Dale Johannesen | 1b54c7f | 2008-10-03 19:41:08 +0000 | [diff] [blame] | 9131 | // private utility function: 64 bit atomics on 32 bit host. |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9132 | MachineBasicBlock * |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9133 | X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr, |
| 9134 | MachineBasicBlock *MBB, |
| 9135 | unsigned regOpcL, |
| 9136 | unsigned regOpcH, |
| 9137 | unsigned immOpcL, |
| 9138 | unsigned immOpcH, |
Dan Gohman | 1fdbc1d | 2009-02-07 16:15:20 +0000 | [diff] [blame] | 9139 | bool invSrc) const { |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9140 | // For the atomic bitwise operator, we generate |
| 9141 | // thisMBB (instructions are in pairs, except cmpxchg8b) |
| 9142 | // ld t1,t2 = [bitinstr.addr] |
| 9143 | // newMBB: |
| 9144 | // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4) |
| 9145 | // op t5, t6 <- out1, out2, [bitinstr.val] |
Dale Johannesen | 880ae36 | 2008-10-03 22:25:52 +0000 | [diff] [blame] | 9146 | // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val]) |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9147 | // mov ECX, EBX <- t5, t6 |
| 9148 | // mov EAX, EDX <- t1, t2 |
| 9149 | // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit] |
| 9150 | // mov t3, t4 <- EAX, EDX |
| 9151 | // bz newMBB |
| 9152 | // result in out1, out2 |
| 9153 | // fallthrough -->nextMBB |
| 9154 | |
| 9155 | const TargetRegisterClass *RC = X86::GR32RegisterClass; |
| 9156 | const unsigned LoadOpc = X86::MOV32rm; |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9157 | const unsigned NotOpc = X86::NOT32r; |
| 9158 | const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); |
| 9159 | const BasicBlock *LLVM_BB = MBB->getBasicBlock(); |
| 9160 | MachineFunction::iterator MBBIter = MBB; |
| 9161 | ++MBBIter; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9162 | |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9163 | /// First build the CFG |
| 9164 | MachineFunction *F = MBB->getParent(); |
| 9165 | MachineBasicBlock *thisMBB = MBB; |
| 9166 | MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 9167 | MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 9168 | F->insert(MBBIter, newMBB); |
| 9169 | F->insert(MBBIter, nextMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9170 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9171 | // Transfer the remainder of thisMBB and its successor edges to nextMBB. |
| 9172 | nextMBB->splice(nextMBB->begin(), thisMBB, |
| 9173 | llvm::next(MachineBasicBlock::iterator(bInstr)), |
| 9174 | thisMBB->end()); |
| 9175 | nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9176 | |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9177 | // Update thisMBB to fall through to newMBB |
| 9178 | thisMBB->addSuccessor(newMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9179 | |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9180 | // newMBB jumps to itself and fall through to nextMBB |
| 9181 | newMBB->addSuccessor(nextMBB); |
| 9182 | newMBB->addSuccessor(newMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9183 | |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9184 | DebugLoc dl = bInstr->getDebugLoc(); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9185 | // Insert instructions into newMBB based on incoming instruction |
| 9186 | // There are 8 "real" operands plus 9 implicit def/uses, ignored here. |
Chris Lattner | ac0ed5d | 2010-07-08 22:41:28 +0000 | [diff] [blame] | 9187 | assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 && |
Bill Wendling | 51b16f4 | 2009-05-30 01:09:53 +0000 | [diff] [blame] | 9188 | "unexpected number of operands"); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9189 | MachineOperand& dest1Oper = bInstr->getOperand(0); |
| 9190 | MachineOperand& dest2Oper = bInstr->getOperand(1); |
Chris Lattner | ac0ed5d | 2010-07-08 22:41:28 +0000 | [diff] [blame] | 9191 | MachineOperand* argOpers[2 + X86::AddrNumOperands]; |
| 9192 | for (int i=0; i < 2 + X86::AddrNumOperands; ++i) { |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9193 | argOpers[i] = &bInstr->getOperand(i+2); |
| 9194 | |
Dan Gohman | 71ea4e5 | 2010-05-14 21:01:44 +0000 | [diff] [blame] | 9195 | // We use some of the operands multiple times, so conservatively just |
| 9196 | // clear any kill flags that might be present. |
| 9197 | if (argOpers[i]->isReg() && argOpers[i]->isUse()) |
| 9198 | argOpers[i]->setIsKill(false); |
| 9199 | } |
| 9200 | |
Evan Cheng | ad5b52f | 2010-01-08 19:14:57 +0000 | [diff] [blame] | 9201 | // x86 address has 5 operands: base, index, scale, displacement, and segment. |
Chris Lattner | ac0ed5d | 2010-07-08 22:41:28 +0000 | [diff] [blame] | 9202 | int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3] |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9203 | |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9204 | unsigned t1 = F->getRegInfo().createVirtualRegister(RC); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9205 | MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9206 | for (int i=0; i <= lastAddrIndx; ++i) |
| 9207 | (*MIB).addOperand(*argOpers[i]); |
| 9208 | unsigned t2 = F->getRegInfo().createVirtualRegister(RC); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9209 | MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2); |
Dale Johannesen | 880ae36 | 2008-10-03 22:25:52 +0000 | [diff] [blame] | 9210 | // add 4 to displacement. |
Rafael Espindola | 094fad3 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 9211 | for (int i=0; i <= lastAddrIndx-2; ++i) |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9212 | (*MIB).addOperand(*argOpers[i]); |
Dale Johannesen | 880ae36 | 2008-10-03 22:25:52 +0000 | [diff] [blame] | 9213 | MachineOperand newOp3 = *(argOpers[3]); |
| 9214 | if (newOp3.isImm()) |
| 9215 | newOp3.setImm(newOp3.getImm()+4); |
| 9216 | else |
| 9217 | newOp3.setOffset(newOp3.getOffset()+4); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9218 | (*MIB).addOperand(newOp3); |
Rafael Espindola | 094fad3 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 9219 | (*MIB).addOperand(*argOpers[lastAddrIndx]); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9220 | |
| 9221 | // t3/4 are defined later, at the bottom of the loop |
| 9222 | unsigned t3 = F->getRegInfo().createVirtualRegister(RC); |
| 9223 | unsigned t4 = F->getRegInfo().createVirtualRegister(RC); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9224 | BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg()) |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9225 | .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9226 | BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg()) |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9227 | .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB); |
| 9228 | |
Evan Cheng | 306b4ca | 2010-01-08 23:41:50 +0000 | [diff] [blame] | 9229 | // The subsequent operations should be using the destination registers of |
| 9230 | //the PHI instructions. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9231 | if (invSrc) { |
Evan Cheng | 306b4ca | 2010-01-08 23:41:50 +0000 | [diff] [blame] | 9232 | t1 = F->getRegInfo().createVirtualRegister(RC); |
| 9233 | t2 = F->getRegInfo().createVirtualRegister(RC); |
| 9234 | MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg()); |
| 9235 | MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg()); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9236 | } else { |
Evan Cheng | 306b4ca | 2010-01-08 23:41:50 +0000 | [diff] [blame] | 9237 | t1 = dest1Oper.getReg(); |
| 9238 | t2 = dest2Oper.getReg(); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9239 | } |
| 9240 | |
Rafael Espindola | a82dfca | 2009-03-27 15:26:30 +0000 | [diff] [blame] | 9241 | int valArgIndx = lastAddrIndx + 1; |
| 9242 | assert((argOpers[valArgIndx]->isReg() || |
Bill Wendling | 51b16f4 | 2009-05-30 01:09:53 +0000 | [diff] [blame] | 9243 | argOpers[valArgIndx]->isImm()) && |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9244 | "invalid operand"); |
| 9245 | unsigned t5 = F->getRegInfo().createVirtualRegister(RC); |
| 9246 | unsigned t6 = F->getRegInfo().createVirtualRegister(RC); |
Rafael Espindola | a82dfca | 2009-03-27 15:26:30 +0000 | [diff] [blame] | 9247 | if (argOpers[valArgIndx]->isReg()) |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9248 | MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9249 | else |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9250 | MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5); |
Dale Johannesen | 880ae36 | 2008-10-03 22:25:52 +0000 | [diff] [blame] | 9251 | if (regOpcL != X86::MOV32rr) |
Evan Cheng | 306b4ca | 2010-01-08 23:41:50 +0000 | [diff] [blame] | 9252 | MIB.addReg(t1); |
Rafael Espindola | a82dfca | 2009-03-27 15:26:30 +0000 | [diff] [blame] | 9253 | (*MIB).addOperand(*argOpers[valArgIndx]); |
| 9254 | assert(argOpers[valArgIndx + 1]->isReg() == |
Bill Wendling | 51b16f4 | 2009-05-30 01:09:53 +0000 | [diff] [blame] | 9255 | argOpers[valArgIndx]->isReg()); |
Rafael Espindola | a82dfca | 2009-03-27 15:26:30 +0000 | [diff] [blame] | 9256 | assert(argOpers[valArgIndx + 1]->isImm() == |
Bill Wendling | 51b16f4 | 2009-05-30 01:09:53 +0000 | [diff] [blame] | 9257 | argOpers[valArgIndx]->isImm()); |
Rafael Espindola | a82dfca | 2009-03-27 15:26:30 +0000 | [diff] [blame] | 9258 | if (argOpers[valArgIndx + 1]->isReg()) |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9259 | MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9260 | else |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9261 | MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6); |
Dale Johannesen | 880ae36 | 2008-10-03 22:25:52 +0000 | [diff] [blame] | 9262 | if (regOpcH != X86::MOV32rr) |
Evan Cheng | 306b4ca | 2010-01-08 23:41:50 +0000 | [diff] [blame] | 9263 | MIB.addReg(t2); |
Rafael Espindola | a82dfca | 2009-03-27 15:26:30 +0000 | [diff] [blame] | 9264 | (*MIB).addOperand(*argOpers[valArgIndx + 1]); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9265 | |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9266 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9267 | MIB.addReg(t1); |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9268 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9269 | MIB.addReg(t2); |
| 9270 | |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9271 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9272 | MIB.addReg(t5); |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9273 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9274 | MIB.addReg(t6); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9275 | |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9276 | MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B)); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9277 | for (int i=0; i <= lastAddrIndx; ++i) |
| 9278 | (*MIB).addOperand(*argOpers[i]); |
| 9279 | |
| 9280 | assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand"); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 9281 | (*MIB).setMemRefs(bInstr->memoperands_begin(), |
| 9282 | bInstr->memoperands_end()); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9283 | |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9284 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9285 | MIB.addReg(X86::EAX); |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9286 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9287 | MIB.addReg(X86::EDX); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9288 | |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9289 | // insert branch |
Chris Lattner | bd13fb6 | 2010-02-11 19:25:55 +0000 | [diff] [blame] | 9290 | BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9291 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9292 | bInstr->eraseFromParent(); // The pseudo instruction is gone now. |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 9293 | return nextMBB; |
| 9294 | } |
| 9295 | |
| 9296 | // private utility function |
| 9297 | MachineBasicBlock * |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9298 | X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr, |
| 9299 | MachineBasicBlock *MBB, |
Dan Gohman | 1fdbc1d | 2009-02-07 16:15:20 +0000 | [diff] [blame] | 9300 | unsigned cmovOpc) const { |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9301 | // For the atomic min/max operator, we generate |
| 9302 | // thisMBB: |
| 9303 | // newMBB: |
Mon P Wang | ab3e747 | 2008-05-05 22:56:23 +0000 | [diff] [blame] | 9304 | // ld t1 = [min/max.addr] |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9305 | // mov t2 = [min/max.val] |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9306 | // cmp t1, t2 |
| 9307 | // cmov[cond] t2 = t1 |
Mon P Wang | ab3e747 | 2008-05-05 22:56:23 +0000 | [diff] [blame] | 9308 | // mov EAX = t1 |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9309 | // lcs dest = [bitinstr.addr], t2 [EAX is implicit] |
| 9310 | // bz newMBB |
| 9311 | // fallthrough -->nextMBB |
| 9312 | // |
| 9313 | const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); |
| 9314 | const BasicBlock *LLVM_BB = MBB->getBasicBlock(); |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 9315 | MachineFunction::iterator MBBIter = MBB; |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9316 | ++MBBIter; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9317 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9318 | /// First build the CFG |
| 9319 | MachineFunction *F = MBB->getParent(); |
| 9320 | MachineBasicBlock *thisMBB = MBB; |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 9321 | MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 9322 | MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 9323 | F->insert(MBBIter, newMBB); |
| 9324 | F->insert(MBBIter, nextMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9325 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9326 | // Transfer the remainder of thisMBB and its successor edges to nextMBB. |
| 9327 | nextMBB->splice(nextMBB->begin(), thisMBB, |
| 9328 | llvm::next(MachineBasicBlock::iterator(mInstr)), |
| 9329 | thisMBB->end()); |
| 9330 | nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9331 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9332 | // Update thisMBB to fall through to newMBB |
| 9333 | thisMBB->addSuccessor(newMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9334 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9335 | // newMBB jumps to newMBB and fall through to nextMBB |
| 9336 | newMBB->addSuccessor(nextMBB); |
| 9337 | newMBB->addSuccessor(newMBB); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9338 | |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9339 | DebugLoc dl = mInstr->getDebugLoc(); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9340 | // Insert instructions into newMBB based on incoming instruction |
Chris Lattner | ac0ed5d | 2010-07-08 22:41:28 +0000 | [diff] [blame] | 9341 | assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 && |
Bill Wendling | 51b16f4 | 2009-05-30 01:09:53 +0000 | [diff] [blame] | 9342 | "unexpected number of operands"); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9343 | MachineOperand& destOper = mInstr->getOperand(0); |
Chris Lattner | ac0ed5d | 2010-07-08 22:41:28 +0000 | [diff] [blame] | 9344 | MachineOperand* argOpers[2 + X86::AddrNumOperands]; |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9345 | int numArgs = mInstr->getNumOperands() - 1; |
| 9346 | for (int i=0; i < numArgs; ++i) |
| 9347 | argOpers[i] = &mInstr->getOperand(i+1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9348 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9349 | // x86 address has 4 operands: base, index, scale, and displacement |
Chris Lattner | ac0ed5d | 2010-07-08 22:41:28 +0000 | [diff] [blame] | 9350 | int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3] |
Rafael Espindola | a82dfca | 2009-03-27 15:26:30 +0000 | [diff] [blame] | 9351 | int valArgIndx = lastAddrIndx + 1; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9352 | |
Mon P Wang | ab3e747 | 2008-05-05 22:56:23 +0000 | [diff] [blame] | 9353 | unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9354 | MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9355 | for (int i=0; i <= lastAddrIndx; ++i) |
| 9356 | (*MIB).addOperand(*argOpers[i]); |
Mon P Wang | ab3e747 | 2008-05-05 22:56:23 +0000 | [diff] [blame] | 9357 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9358 | // We only support register and immediate values |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 9359 | assert((argOpers[valArgIndx]->isReg() || |
| 9360 | argOpers[valArgIndx]->isImm()) && |
Dan Gohman | 014278e | 2008-09-13 17:58:21 +0000 | [diff] [blame] | 9361 | "invalid operand"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9362 | |
| 9363 | unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass); |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 9364 | if (argOpers[valArgIndx]->isReg()) |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9365 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9366 | else |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9367 | MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9368 | (*MIB).addOperand(*argOpers[valArgIndx]); |
| 9369 | |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9370 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX); |
Mon P Wang | ab3e747 | 2008-05-05 22:56:23 +0000 | [diff] [blame] | 9371 | MIB.addReg(t1); |
| 9372 | |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9373 | MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr)); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9374 | MIB.addReg(t1); |
| 9375 | MIB.addReg(t2); |
| 9376 | |
| 9377 | // Generate movc |
| 9378 | unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass); |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9379 | MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9380 | MIB.addReg(t2); |
| 9381 | MIB.addReg(t1); |
| 9382 | |
| 9383 | // Cmp and exchange if none has modified the memory location |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9384 | MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32)); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9385 | for (int i=0; i <= lastAddrIndx; ++i) |
| 9386 | (*MIB).addOperand(*argOpers[i]); |
| 9387 | MIB.addReg(t3); |
Mon P Wang | f595266 | 2008-07-17 04:54:06 +0000 | [diff] [blame] | 9388 | assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand"); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 9389 | (*MIB).setMemRefs(mInstr->memoperands_begin(), |
| 9390 | mInstr->memoperands_end()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9391 | |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 9392 | MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg()); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9393 | MIB.addReg(X86::EAX); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 9394 | |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9395 | // insert branch |
Chris Lattner | bd13fb6 | 2010-02-11 19:25:55 +0000 | [diff] [blame] | 9396 | BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9397 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9398 | mInstr->eraseFromParent(); // The pseudo instruction is gone now. |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9399 | return nextMBB; |
| 9400 | } |
| 9401 | |
Eric Christopher | f83a5de | 2009-08-27 18:08:16 +0000 | [diff] [blame] | 9402 | // 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] | 9403 | // or XMM0_V32I8 in AVX all of this code can be replaced with that |
| 9404 | // in the .td file. |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 9405 | MachineBasicBlock * |
Eric Christopher | b120ab4 | 2009-08-18 22:50:32 +0000 | [diff] [blame] | 9406 | X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB, |
Daniel Dunbar | a279bc3 | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 9407 | unsigned numArgs, bool memArg) const { |
Eric Christopher | b120ab4 | 2009-08-18 22:50:32 +0000 | [diff] [blame] | 9408 | |
Bruno Cardoso Lopes | 98f9856 | 2010-07-30 19:54:33 +0000 | [diff] [blame] | 9409 | assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) && |
| 9410 | "Target must have SSE4.2 or AVX features enabled"); |
| 9411 | |
Eric Christopher | b120ab4 | 2009-08-18 22:50:32 +0000 | [diff] [blame] | 9412 | DebugLoc dl = MI->getDebugLoc(); |
| 9413 | const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); |
| 9414 | |
| 9415 | unsigned Opc; |
Bruno Cardoso Lopes | 98f9856 | 2010-07-30 19:54:33 +0000 | [diff] [blame] | 9416 | |
| 9417 | if (!Subtarget->hasAVX()) { |
| 9418 | if (memArg) |
| 9419 | Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm; |
| 9420 | else |
| 9421 | Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr; |
| 9422 | } else { |
| 9423 | if (memArg) |
| 9424 | Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm; |
| 9425 | else |
| 9426 | Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr; |
| 9427 | } |
Eric Christopher | b120ab4 | 2009-08-18 22:50:32 +0000 | [diff] [blame] | 9428 | |
| 9429 | MachineInstrBuilder MIB = BuildMI(BB, dl, TII->get(Opc)); |
| 9430 | |
| 9431 | for (unsigned i = 0; i < numArgs; ++i) { |
| 9432 | MachineOperand &Op = MI->getOperand(i+1); |
| 9433 | |
| 9434 | if (!(Op.isReg() && Op.isImplicit())) |
| 9435 | MIB.addOperand(Op); |
| 9436 | } |
| 9437 | |
| 9438 | BuildMI(BB, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg()) |
| 9439 | .addReg(X86::XMM0); |
| 9440 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9441 | MI->eraseFromParent(); |
Eric Christopher | b120ab4 | 2009-08-18 22:50:32 +0000 | [diff] [blame] | 9442 | |
| 9443 | return BB; |
| 9444 | } |
| 9445 | |
| 9446 | MachineBasicBlock * |
Dan Gohman | 320afb8 | 2010-10-12 18:00:49 +0000 | [diff] [blame] | 9447 | X86TargetLowering::EmitVAARG64WithCustomInserter( |
| 9448 | MachineInstr *MI, |
| 9449 | MachineBasicBlock *MBB) const { |
| 9450 | // Emit va_arg instruction on X86-64. |
| 9451 | |
| 9452 | // Operands to this pseudo-instruction: |
| 9453 | // 0 ) Output : destination address (reg) |
| 9454 | // 1-5) Input : va_list address (addr, i64mem) |
| 9455 | // 6 ) ArgSize : Size (in bytes) of vararg type |
| 9456 | // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset |
| 9457 | // 8 ) Align : Alignment of type |
| 9458 | // 9 ) EFLAGS (implicit-def) |
| 9459 | |
| 9460 | assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!"); |
| 9461 | assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands"); |
| 9462 | |
| 9463 | unsigned DestReg = MI->getOperand(0).getReg(); |
| 9464 | MachineOperand &Base = MI->getOperand(1); |
| 9465 | MachineOperand &Scale = MI->getOperand(2); |
| 9466 | MachineOperand &Index = MI->getOperand(3); |
| 9467 | MachineOperand &Disp = MI->getOperand(4); |
| 9468 | MachineOperand &Segment = MI->getOperand(5); |
| 9469 | unsigned ArgSize = MI->getOperand(6).getImm(); |
| 9470 | unsigned ArgMode = MI->getOperand(7).getImm(); |
| 9471 | unsigned Align = MI->getOperand(8).getImm(); |
| 9472 | |
| 9473 | // Memory Reference |
| 9474 | assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand"); |
| 9475 | MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin(); |
| 9476 | MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end(); |
| 9477 | |
| 9478 | // Machine Information |
| 9479 | const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); |
| 9480 | MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo(); |
| 9481 | const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64); |
| 9482 | const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32); |
| 9483 | DebugLoc DL = MI->getDebugLoc(); |
| 9484 | |
| 9485 | // struct va_list { |
| 9486 | // i32 gp_offset |
| 9487 | // i32 fp_offset |
| 9488 | // i64 overflow_area (address) |
| 9489 | // i64 reg_save_area (address) |
| 9490 | // } |
| 9491 | // sizeof(va_list) = 24 |
| 9492 | // alignment(va_list) = 8 |
| 9493 | |
| 9494 | unsigned TotalNumIntRegs = 6; |
| 9495 | unsigned TotalNumXMMRegs = 8; |
| 9496 | bool UseGPOffset = (ArgMode == 1); |
| 9497 | bool UseFPOffset = (ArgMode == 2); |
| 9498 | unsigned MaxOffset = TotalNumIntRegs * 8 + |
| 9499 | (UseFPOffset ? TotalNumXMMRegs * 16 : 0); |
| 9500 | |
| 9501 | /* Align ArgSize to a multiple of 8 */ |
| 9502 | unsigned ArgSizeA8 = (ArgSize + 7) & ~7; |
| 9503 | bool NeedsAlign = (Align > 8); |
| 9504 | |
| 9505 | MachineBasicBlock *thisMBB = MBB; |
| 9506 | MachineBasicBlock *overflowMBB; |
| 9507 | MachineBasicBlock *offsetMBB; |
| 9508 | MachineBasicBlock *endMBB; |
| 9509 | |
| 9510 | unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB |
| 9511 | unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB |
| 9512 | unsigned OffsetReg = 0; |
| 9513 | |
| 9514 | if (!UseGPOffset && !UseFPOffset) { |
| 9515 | // If we only pull from the overflow region, we don't create a branch. |
| 9516 | // We don't need to alter control flow. |
| 9517 | OffsetDestReg = 0; // unused |
| 9518 | OverflowDestReg = DestReg; |
| 9519 | |
| 9520 | offsetMBB = NULL; |
| 9521 | overflowMBB = thisMBB; |
| 9522 | endMBB = thisMBB; |
| 9523 | } else { |
| 9524 | // First emit code to check if gp_offset (or fp_offset) is below the bound. |
| 9525 | // If so, pull the argument from reg_save_area. (branch to offsetMBB) |
| 9526 | // If not, pull from overflow_area. (branch to overflowMBB) |
| 9527 | // |
| 9528 | // thisMBB |
| 9529 | // | . |
| 9530 | // | . |
| 9531 | // offsetMBB overflowMBB |
| 9532 | // | . |
| 9533 | // | . |
| 9534 | // endMBB |
| 9535 | |
| 9536 | // Registers for the PHI in endMBB |
| 9537 | OffsetDestReg = MRI.createVirtualRegister(AddrRegClass); |
| 9538 | OverflowDestReg = MRI.createVirtualRegister(AddrRegClass); |
| 9539 | |
| 9540 | const BasicBlock *LLVM_BB = MBB->getBasicBlock(); |
| 9541 | MachineFunction *MF = MBB->getParent(); |
| 9542 | overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB); |
| 9543 | offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB); |
| 9544 | endMBB = MF->CreateMachineBasicBlock(LLVM_BB); |
| 9545 | |
| 9546 | MachineFunction::iterator MBBIter = MBB; |
| 9547 | ++MBBIter; |
| 9548 | |
| 9549 | // Insert the new basic blocks |
| 9550 | MF->insert(MBBIter, offsetMBB); |
| 9551 | MF->insert(MBBIter, overflowMBB); |
| 9552 | MF->insert(MBBIter, endMBB); |
| 9553 | |
| 9554 | // Transfer the remainder of MBB and its successor edges to endMBB. |
| 9555 | endMBB->splice(endMBB->begin(), thisMBB, |
| 9556 | llvm::next(MachineBasicBlock::iterator(MI)), |
| 9557 | thisMBB->end()); |
| 9558 | endMBB->transferSuccessorsAndUpdatePHIs(thisMBB); |
| 9559 | |
| 9560 | // Make offsetMBB and overflowMBB successors of thisMBB |
| 9561 | thisMBB->addSuccessor(offsetMBB); |
| 9562 | thisMBB->addSuccessor(overflowMBB); |
| 9563 | |
| 9564 | // endMBB is a successor of both offsetMBB and overflowMBB |
| 9565 | offsetMBB->addSuccessor(endMBB); |
| 9566 | overflowMBB->addSuccessor(endMBB); |
| 9567 | |
| 9568 | // Load the offset value into a register |
| 9569 | OffsetReg = MRI.createVirtualRegister(OffsetRegClass); |
| 9570 | BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg) |
| 9571 | .addOperand(Base) |
| 9572 | .addOperand(Scale) |
| 9573 | .addOperand(Index) |
| 9574 | .addDisp(Disp, UseFPOffset ? 4 : 0) |
| 9575 | .addOperand(Segment) |
| 9576 | .setMemRefs(MMOBegin, MMOEnd); |
| 9577 | |
| 9578 | // Check if there is enough room left to pull this argument. |
| 9579 | BuildMI(thisMBB, DL, TII->get(X86::CMP32ri)) |
| 9580 | .addReg(OffsetReg) |
| 9581 | .addImm(MaxOffset + 8 - ArgSizeA8); |
| 9582 | |
| 9583 | // Branch to "overflowMBB" if offset >= max |
| 9584 | // Fall through to "offsetMBB" otherwise |
| 9585 | BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE))) |
| 9586 | .addMBB(overflowMBB); |
| 9587 | } |
| 9588 | |
| 9589 | // In offsetMBB, emit code to use the reg_save_area. |
| 9590 | if (offsetMBB) { |
| 9591 | assert(OffsetReg != 0); |
| 9592 | |
| 9593 | // Read the reg_save_area address. |
| 9594 | unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass); |
| 9595 | BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg) |
| 9596 | .addOperand(Base) |
| 9597 | .addOperand(Scale) |
| 9598 | .addOperand(Index) |
| 9599 | .addDisp(Disp, 16) |
| 9600 | .addOperand(Segment) |
| 9601 | .setMemRefs(MMOBegin, MMOEnd); |
| 9602 | |
| 9603 | // Zero-extend the offset |
| 9604 | unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass); |
| 9605 | BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64) |
| 9606 | .addImm(0) |
| 9607 | .addReg(OffsetReg) |
| 9608 | .addImm(X86::sub_32bit); |
| 9609 | |
| 9610 | // Add the offset to the reg_save_area to get the final address. |
| 9611 | BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg) |
| 9612 | .addReg(OffsetReg64) |
| 9613 | .addReg(RegSaveReg); |
| 9614 | |
| 9615 | // Compute the offset for the next argument |
| 9616 | unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass); |
| 9617 | BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg) |
| 9618 | .addReg(OffsetReg) |
| 9619 | .addImm(UseFPOffset ? 16 : 8); |
| 9620 | |
| 9621 | // Store it back into the va_list. |
| 9622 | BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr)) |
| 9623 | .addOperand(Base) |
| 9624 | .addOperand(Scale) |
| 9625 | .addOperand(Index) |
| 9626 | .addDisp(Disp, UseFPOffset ? 4 : 0) |
| 9627 | .addOperand(Segment) |
| 9628 | .addReg(NextOffsetReg) |
| 9629 | .setMemRefs(MMOBegin, MMOEnd); |
| 9630 | |
| 9631 | // Jump to endMBB |
| 9632 | BuildMI(offsetMBB, DL, TII->get(X86::JMP_4)) |
| 9633 | .addMBB(endMBB); |
| 9634 | } |
| 9635 | |
| 9636 | // |
| 9637 | // Emit code to use overflow area |
| 9638 | // |
| 9639 | |
| 9640 | // Load the overflow_area address into a register. |
| 9641 | unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass); |
| 9642 | BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg) |
| 9643 | .addOperand(Base) |
| 9644 | .addOperand(Scale) |
| 9645 | .addOperand(Index) |
| 9646 | .addDisp(Disp, 8) |
| 9647 | .addOperand(Segment) |
| 9648 | .setMemRefs(MMOBegin, MMOEnd); |
| 9649 | |
| 9650 | // If we need to align it, do so. Otherwise, just copy the address |
| 9651 | // to OverflowDestReg. |
| 9652 | if (NeedsAlign) { |
| 9653 | // Align the overflow address |
| 9654 | assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2"); |
| 9655 | unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass); |
| 9656 | |
| 9657 | // aligned_addr = (addr + (align-1)) & ~(align-1) |
| 9658 | BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg) |
| 9659 | .addReg(OverflowAddrReg) |
| 9660 | .addImm(Align-1); |
| 9661 | |
| 9662 | BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg) |
| 9663 | .addReg(TmpReg) |
| 9664 | .addImm(~(uint64_t)(Align-1)); |
| 9665 | } else { |
| 9666 | BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg) |
| 9667 | .addReg(OverflowAddrReg); |
| 9668 | } |
| 9669 | |
| 9670 | // Compute the next overflow address after this argument. |
| 9671 | // (the overflow address should be kept 8-byte aligned) |
| 9672 | unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass); |
| 9673 | BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg) |
| 9674 | .addReg(OverflowDestReg) |
| 9675 | .addImm(ArgSizeA8); |
| 9676 | |
| 9677 | // Store the new overflow address. |
| 9678 | BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr)) |
| 9679 | .addOperand(Base) |
| 9680 | .addOperand(Scale) |
| 9681 | .addOperand(Index) |
| 9682 | .addDisp(Disp, 8) |
| 9683 | .addOperand(Segment) |
| 9684 | .addReg(NextAddrReg) |
| 9685 | .setMemRefs(MMOBegin, MMOEnd); |
| 9686 | |
| 9687 | // If we branched, emit the PHI to the front of endMBB. |
| 9688 | if (offsetMBB) { |
| 9689 | BuildMI(*endMBB, endMBB->begin(), DL, |
| 9690 | TII->get(X86::PHI), DestReg) |
| 9691 | .addReg(OffsetDestReg).addMBB(offsetMBB) |
| 9692 | .addReg(OverflowDestReg).addMBB(overflowMBB); |
| 9693 | } |
| 9694 | |
| 9695 | // Erase the pseudo instruction |
| 9696 | MI->eraseFromParent(); |
| 9697 | |
| 9698 | return endMBB; |
| 9699 | } |
| 9700 | |
| 9701 | MachineBasicBlock * |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 9702 | X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter( |
| 9703 | MachineInstr *MI, |
| 9704 | MachineBasicBlock *MBB) const { |
| 9705 | // Emit code to save XMM registers to the stack. The ABI says that the |
| 9706 | // number of registers to save is given in %al, so it's theoretically |
| 9707 | // possible to do an indirect jump trick to avoid saving all of them, |
| 9708 | // however this code takes a simpler approach and just executes all |
| 9709 | // of the stores if %al is non-zero. It's less code, and it's probably |
| 9710 | // easier on the hardware branch predictor, and stores aren't all that |
| 9711 | // expensive anyway. |
| 9712 | |
| 9713 | // Create the new basic blocks. One block contains all the XMM stores, |
| 9714 | // and one block is the final destination regardless of whether any |
| 9715 | // stores were performed. |
| 9716 | const BasicBlock *LLVM_BB = MBB->getBasicBlock(); |
| 9717 | MachineFunction *F = MBB->getParent(); |
| 9718 | MachineFunction::iterator MBBIter = MBB; |
| 9719 | ++MBBIter; |
| 9720 | MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 9721 | MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 9722 | F->insert(MBBIter, XMMSaveMBB); |
| 9723 | F->insert(MBBIter, EndMBB); |
| 9724 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9725 | // Transfer the remainder of MBB and its successor edges to EndMBB. |
| 9726 | EndMBB->splice(EndMBB->begin(), MBB, |
| 9727 | llvm::next(MachineBasicBlock::iterator(MI)), |
| 9728 | MBB->end()); |
| 9729 | EndMBB->transferSuccessorsAndUpdatePHIs(MBB); |
| 9730 | |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 9731 | // The original block will now fall through to the XMM save block. |
| 9732 | MBB->addSuccessor(XMMSaveMBB); |
| 9733 | // The XMMSaveMBB will fall through to the end block. |
| 9734 | XMMSaveMBB->addSuccessor(EndMBB); |
| 9735 | |
| 9736 | // Now add the instructions. |
| 9737 | const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); |
| 9738 | DebugLoc DL = MI->getDebugLoc(); |
| 9739 | |
| 9740 | unsigned CountReg = MI->getOperand(0).getReg(); |
| 9741 | int64_t RegSaveFrameIndex = MI->getOperand(1).getImm(); |
| 9742 | int64_t VarArgsFPOffset = MI->getOperand(2).getImm(); |
| 9743 | |
| 9744 | if (!Subtarget->isTargetWin64()) { |
| 9745 | // If %al is 0, branch around the XMM save block. |
| 9746 | BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg); |
Chris Lattner | bd13fb6 | 2010-02-11 19:25:55 +0000 | [diff] [blame] | 9747 | BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB); |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 9748 | MBB->addSuccessor(EndMBB); |
| 9749 | } |
| 9750 | |
| 9751 | // In the XMM save block, save all the XMM argument registers. |
| 9752 | for (int i = 3, e = MI->getNumOperands(); i != e; ++i) { |
| 9753 | int64_t Offset = (i - 3) * 16 + VarArgsFPOffset; |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 9754 | MachineMemOperand *MMO = |
Evan Cheng | ff89dcb | 2009-10-18 18:16:27 +0000 | [diff] [blame] | 9755 | F->getMachineMemOperand( |
Chris Lattner | e863903 | 2010-09-21 06:22:23 +0000 | [diff] [blame] | 9756 | MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset), |
Chris Lattner | 59db549 | 2010-09-21 04:39:43 +0000 | [diff] [blame] | 9757 | MachineMemOperand::MOStore, |
Evan Cheng | ff89dcb | 2009-10-18 18:16:27 +0000 | [diff] [blame] | 9758 | /*Size=*/16, /*Align=*/16); |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 9759 | BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr)) |
| 9760 | .addFrameIndex(RegSaveFrameIndex) |
| 9761 | .addImm(/*Scale=*/1) |
| 9762 | .addReg(/*IndexReg=*/0) |
| 9763 | .addImm(/*Disp=*/Offset) |
| 9764 | .addReg(/*Segment=*/0) |
| 9765 | .addReg(MI->getOperand(i).getReg()) |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 9766 | .addMemOperand(MMO); |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 9767 | } |
| 9768 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9769 | MI->eraseFromParent(); // The pseudo instruction is gone now. |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 9770 | |
| 9771 | return EndMBB; |
| 9772 | } |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 9773 | |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9774 | MachineBasicBlock * |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9775 | X86TargetLowering::EmitLoweredSelect(MachineInstr *MI, |
Dan Gohman | af1d8ca | 2010-05-01 00:01:06 +0000 | [diff] [blame] | 9776 | MachineBasicBlock *BB) const { |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9777 | const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); |
| 9778 | DebugLoc DL = MI->getDebugLoc(); |
Daniel Dunbar | a279bc3 | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 9779 | |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9780 | // To "insert" a SELECT_CC instruction, we actually have to insert the |
| 9781 | // diamond control-flow pattern. The incoming instruction knows the |
| 9782 | // destination vreg to set, the condition code register to branch on, the |
| 9783 | // true/false values to select between, and a branch opcode to use. |
| 9784 | const BasicBlock *LLVM_BB = BB->getBasicBlock(); |
| 9785 | MachineFunction::iterator It = BB; |
| 9786 | ++It; |
Daniel Dunbar | a279bc3 | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 9787 | |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9788 | // thisMBB: |
| 9789 | // ... |
| 9790 | // TrueVal = ... |
| 9791 | // cmpTY ccX, r1, r2 |
| 9792 | // bCC copy1MBB |
| 9793 | // fallthrough --> copy0MBB |
| 9794 | MachineBasicBlock *thisMBB = BB; |
| 9795 | MachineFunction *F = BB->getParent(); |
| 9796 | MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 9797 | MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB); |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9798 | F->insert(It, copy0MBB); |
| 9799 | F->insert(It, sinkMBB); |
Bill Wendling | 730c07e | 2010-06-25 20:48:10 +0000 | [diff] [blame] | 9800 | |
Bill Wendling | 730c07e | 2010-06-25 20:48:10 +0000 | [diff] [blame] | 9801 | // If the EFLAGS register isn't dead in the terminator, then claim that it's |
| 9802 | // live into the sink and copy blocks. |
| 9803 | const MachineFunction *MF = BB->getParent(); |
| 9804 | const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo(); |
| 9805 | BitVector ReservedRegs = TRI->getReservedRegs(*MF); |
Bill Wendling | 730c07e | 2010-06-25 20:48:10 +0000 | [diff] [blame] | 9806 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9807 | for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) { |
| 9808 | const MachineOperand &MO = MI->getOperand(I); |
| 9809 | if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue; |
Bill Wendling | 730c07e | 2010-06-25 20:48:10 +0000 | [diff] [blame] | 9810 | unsigned Reg = MO.getReg(); |
| 9811 | if (Reg != X86::EFLAGS) continue; |
| 9812 | copy0MBB->addLiveIn(Reg); |
| 9813 | sinkMBB->addLiveIn(Reg); |
| 9814 | } |
| 9815 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9816 | // Transfer the remainder of BB and its successor edges to sinkMBB. |
| 9817 | sinkMBB->splice(sinkMBB->begin(), BB, |
| 9818 | llvm::next(MachineBasicBlock::iterator(MI)), |
| 9819 | BB->end()); |
| 9820 | sinkMBB->transferSuccessorsAndUpdatePHIs(BB); |
| 9821 | |
| 9822 | // Add the true and fallthrough blocks as its successors. |
| 9823 | BB->addSuccessor(copy0MBB); |
| 9824 | BB->addSuccessor(sinkMBB); |
| 9825 | |
| 9826 | // Create the conditional branch instruction. |
| 9827 | unsigned Opc = |
| 9828 | X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm()); |
| 9829 | BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB); |
| 9830 | |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9831 | // copy0MBB: |
| 9832 | // %FalseValue = ... |
| 9833 | // # fallthrough to sinkMBB |
Dan Gohman | 3335a22 | 2010-04-30 20:14:26 +0000 | [diff] [blame] | 9834 | copy0MBB->addSuccessor(sinkMBB); |
Daniel Dunbar | a279bc3 | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 9835 | |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9836 | // sinkMBB: |
| 9837 | // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ] |
| 9838 | // ... |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9839 | BuildMI(*sinkMBB, sinkMBB->begin(), DL, |
| 9840 | TII->get(X86::PHI), MI->getOperand(0).getReg()) |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9841 | .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB) |
| 9842 | .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB); |
| 9843 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9844 | MI->eraseFromParent(); // The pseudo instruction is gone now. |
Dan Gohman | 3335a22 | 2010-04-30 20:14:26 +0000 | [diff] [blame] | 9845 | return sinkMBB; |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9846 | } |
| 9847 | |
Anton Korobeynikov | 043f3c2 | 2010-03-06 19:32:29 +0000 | [diff] [blame] | 9848 | MachineBasicBlock * |
Michael J. Spencer | e9c253e | 2010-10-21 01:41:01 +0000 | [diff] [blame] | 9849 | X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI, |
Dan Gohman | af1d8ca | 2010-05-01 00:01:06 +0000 | [diff] [blame] | 9850 | MachineBasicBlock *BB) const { |
Anton Korobeynikov | 043f3c2 | 2010-03-06 19:32:29 +0000 | [diff] [blame] | 9851 | const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); |
| 9852 | DebugLoc DL = MI->getDebugLoc(); |
Anton Korobeynikov | 043f3c2 | 2010-03-06 19:32:29 +0000 | [diff] [blame] | 9853 | |
| 9854 | // The lowering is pretty easy: we're just emitting the call to _alloca. The |
| 9855 | // non-trivial part is impdef of ESP. |
| 9856 | // FIXME: The code should be tweaked as soon as we'll try to do codegen for |
| 9857 | // mingw-w64. |
| 9858 | |
Michael J. Spencer | e9c253e | 2010-10-21 01:41:01 +0000 | [diff] [blame] | 9859 | const char *StackProbeSymbol = |
| 9860 | Subtarget->isTargetWindows() ? "_chkstk" : "_alloca"; |
| 9861 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9862 | BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32)) |
Michael J. Spencer | e9c253e | 2010-10-21 01:41:01 +0000 | [diff] [blame] | 9863 | .addExternalSymbol(StackProbeSymbol) |
Anton Korobeynikov | 043f3c2 | 2010-03-06 19:32:29 +0000 | [diff] [blame] | 9864 | .addReg(X86::EAX, RegState::Implicit) |
| 9865 | .addReg(X86::ESP, RegState::Implicit) |
| 9866 | .addReg(X86::EAX, RegState::Define | RegState::Implicit) |
Anton Korobeynikov | 9f7f83b | 2010-08-25 07:50:11 +0000 | [diff] [blame] | 9867 | .addReg(X86::ESP, RegState::Define | RegState::Implicit) |
| 9868 | .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit); |
Anton Korobeynikov | 043f3c2 | 2010-03-06 19:32:29 +0000 | [diff] [blame] | 9869 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9870 | MI->eraseFromParent(); // The pseudo instruction is gone now. |
Anton Korobeynikov | 043f3c2 | 2010-03-06 19:32:29 +0000 | [diff] [blame] | 9871 | return BB; |
| 9872 | } |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9873 | |
| 9874 | MachineBasicBlock * |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 9875 | X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI, |
| 9876 | MachineBasicBlock *BB) const { |
| 9877 | // This is pretty easy. We're taking the value that we received from |
| 9878 | // our load from the relocation, sticking it in either RDI (x86-64) |
| 9879 | // or EAX and doing an indirect call. The return value will then |
| 9880 | // be in the normal return register. |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 9881 | const X86InstrInfo *TII |
Eric Christopher | 5441536 | 2010-06-08 22:04:25 +0000 | [diff] [blame] | 9882 | = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo()); |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 9883 | DebugLoc DL = MI->getDebugLoc(); |
| 9884 | MachineFunction *F = BB->getParent(); |
Eric Christopher | 722d315 | 2010-09-27 06:01:51 +0000 | [diff] [blame] | 9885 | |
| 9886 | assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?"); |
Eric Christopher | 5441536 | 2010-06-08 22:04:25 +0000 | [diff] [blame] | 9887 | assert(MI->getOperand(3).isGlobal() && "This should be a global"); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 9888 | |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 9889 | if (Subtarget->is64Bit()) { |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9890 | MachineInstrBuilder MIB = BuildMI(*BB, MI, DL, |
| 9891 | TII->get(X86::MOV64rm), X86::RDI) |
Eric Christopher | 5441536 | 2010-06-08 22:04:25 +0000 | [diff] [blame] | 9892 | .addReg(X86::RIP) |
| 9893 | .addImm(0).addReg(0) |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 9894 | .addGlobalAddress(MI->getOperand(3).getGlobal(), 0, |
Eric Christopher | 5441536 | 2010-06-08 22:04:25 +0000 | [diff] [blame] | 9895 | MI->getOperand(3).getTargetFlags()) |
| 9896 | .addReg(0); |
Eric Christopher | 722d315 | 2010-09-27 06:01:51 +0000 | [diff] [blame] | 9897 | MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m)); |
Chris Lattner | 599b531 | 2010-07-08 23:46:44 +0000 | [diff] [blame] | 9898 | addDirectMem(MIB, X86::RDI); |
Eric Christopher | 6102549 | 2010-06-15 23:08:42 +0000 | [diff] [blame] | 9899 | } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) { |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9900 | MachineInstrBuilder MIB = BuildMI(*BB, MI, DL, |
| 9901 | TII->get(X86::MOV32rm), X86::EAX) |
Eric Christopher | 6102549 | 2010-06-15 23:08:42 +0000 | [diff] [blame] | 9902 | .addReg(0) |
| 9903 | .addImm(0).addReg(0) |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 9904 | .addGlobalAddress(MI->getOperand(3).getGlobal(), 0, |
Eric Christopher | 6102549 | 2010-06-15 23:08:42 +0000 | [diff] [blame] | 9905 | MI->getOperand(3).getTargetFlags()) |
| 9906 | .addReg(0); |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9907 | MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m)); |
Chris Lattner | 599b531 | 2010-07-08 23:46:44 +0000 | [diff] [blame] | 9908 | addDirectMem(MIB, X86::EAX); |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 9909 | } else { |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9910 | MachineInstrBuilder MIB = BuildMI(*BB, MI, DL, |
| 9911 | TII->get(X86::MOV32rm), X86::EAX) |
Eric Christopher | 5441536 | 2010-06-08 22:04:25 +0000 | [diff] [blame] | 9912 | .addReg(TII->getGlobalBaseReg(F)) |
| 9913 | .addImm(0).addReg(0) |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 9914 | .addGlobalAddress(MI->getOperand(3).getGlobal(), 0, |
Eric Christopher | 5441536 | 2010-06-08 22:04:25 +0000 | [diff] [blame] | 9915 | MI->getOperand(3).getTargetFlags()) |
| 9916 | .addReg(0); |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9917 | MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m)); |
Chris Lattner | 599b531 | 2010-07-08 23:46:44 +0000 | [diff] [blame] | 9918 | addDirectMem(MIB, X86::EAX); |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 9919 | } |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 9920 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9921 | MI->eraseFromParent(); // The pseudo instruction is gone now. |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 9922 | return BB; |
| 9923 | } |
| 9924 | |
| 9925 | MachineBasicBlock * |
Evan Cheng | ff9b373 | 2008-01-30 18:18:23 +0000 | [diff] [blame] | 9926 | X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI, |
Dan Gohman | af1d8ca | 2010-05-01 00:01:06 +0000 | [diff] [blame] | 9927 | MachineBasicBlock *BB) const { |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9928 | switch (MI->getOpcode()) { |
| 9929 | default: assert(false && "Unexpected instr type to insert"); |
Michael J. Spencer | e9c253e | 2010-10-21 01:41:01 +0000 | [diff] [blame] | 9930 | case X86::WIN_ALLOCA: |
| 9931 | return EmitLoweredWinAlloca(MI, BB); |
Eric Christopher | 30ef0e5 | 2010-06-03 04:07:48 +0000 | [diff] [blame] | 9932 | case X86::TLSCall_32: |
| 9933 | case X86::TLSCall_64: |
| 9934 | return EmitLoweredTLSCall(MI, BB); |
Dan Gohman | cbbea0f | 2009-08-27 00:14:12 +0000 | [diff] [blame] | 9935 | case X86::CMOV_GR8: |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9936 | case X86::CMOV_FR32: |
| 9937 | case X86::CMOV_FR64: |
| 9938 | case X86::CMOV_V4F32: |
| 9939 | case X86::CMOV_V2F64: |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9940 | case X86::CMOV_V2I64: |
Chris Lattner | 314a113 | 2010-03-14 18:31:44 +0000 | [diff] [blame] | 9941 | case X86::CMOV_GR16: |
| 9942 | case X86::CMOV_GR32: |
| 9943 | case X86::CMOV_RFP32: |
| 9944 | case X86::CMOV_RFP64: |
| 9945 | case X86::CMOV_RFP80: |
Dan Gohman | af1d8ca | 2010-05-01 00:01:06 +0000 | [diff] [blame] | 9946 | return EmitLoweredSelect(MI, BB); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9947 | |
Dale Johannesen | 849f214 | 2007-07-03 00:53:03 +0000 | [diff] [blame] | 9948 | case X86::FP32_TO_INT16_IN_MEM: |
| 9949 | case X86::FP32_TO_INT32_IN_MEM: |
| 9950 | case X86::FP32_TO_INT64_IN_MEM: |
| 9951 | case X86::FP64_TO_INT16_IN_MEM: |
| 9952 | case X86::FP64_TO_INT32_IN_MEM: |
Dale Johannesen | a996d52 | 2007-08-07 01:17:37 +0000 | [diff] [blame] | 9953 | case X86::FP64_TO_INT64_IN_MEM: |
| 9954 | case X86::FP80_TO_INT16_IN_MEM: |
| 9955 | case X86::FP80_TO_INT32_IN_MEM: |
| 9956 | case X86::FP80_TO_INT64_IN_MEM: { |
Chris Lattner | 5260097 | 2009-09-02 05:57:00 +0000 | [diff] [blame] | 9957 | const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); |
| 9958 | DebugLoc DL = MI->getDebugLoc(); |
| 9959 | |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9960 | // Change the floating point control register to use "round towards zero" |
| 9961 | // mode when truncating to an integer value. |
| 9962 | MachineFunction *F = BB->getParent(); |
David Greene | 3f2bf85 | 2009-11-12 20:49:22 +0000 | [diff] [blame] | 9963 | int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false); |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9964 | addFrameReference(BuildMI(*BB, MI, DL, |
| 9965 | TII->get(X86::FNSTCW16m)), CWFrameIdx); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9966 | |
| 9967 | // Load the old value of the high byte of the control word... |
| 9968 | unsigned OldCW = |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 9969 | F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass); |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9970 | addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW), |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 9971 | CWFrameIdx); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9972 | |
| 9973 | // Set the high part to be round to zero... |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9974 | addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx) |
Evan Cheng | c0f64ff | 2006-11-27 23:37:22 +0000 | [diff] [blame] | 9975 | .addImm(0xC7F); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9976 | |
| 9977 | // Reload the modified control word now... |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9978 | addFrameReference(BuildMI(*BB, MI, DL, |
| 9979 | TII->get(X86::FLDCW16m)), CWFrameIdx); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9980 | |
| 9981 | // Restore the memory image of control word to original value |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 9982 | addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx) |
Evan Cheng | c0f64ff | 2006-11-27 23:37:22 +0000 | [diff] [blame] | 9983 | .addReg(OldCW); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9984 | |
| 9985 | // Get the X86 opcode to use. |
| 9986 | unsigned Opc; |
| 9987 | switch (MI->getOpcode()) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 9988 | default: llvm_unreachable("illegal opcode!"); |
Dale Johannesen | e377d4d | 2007-07-04 21:07:47 +0000 | [diff] [blame] | 9989 | case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break; |
| 9990 | case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break; |
| 9991 | case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break; |
| 9992 | case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break; |
| 9993 | case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break; |
| 9994 | case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break; |
Dale Johannesen | a996d52 | 2007-08-07 01:17:37 +0000 | [diff] [blame] | 9995 | case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break; |
| 9996 | case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break; |
| 9997 | case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break; |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 9998 | } |
| 9999 | |
| 10000 | X86AddressMode AM; |
| 10001 | MachineOperand &Op = MI->getOperand(0); |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 10002 | if (Op.isReg()) { |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 10003 | AM.BaseType = X86AddressMode::RegBase; |
| 10004 | AM.Base.Reg = Op.getReg(); |
| 10005 | } else { |
| 10006 | AM.BaseType = X86AddressMode::FrameIndexBase; |
Chris Lattner | 8aa797a | 2007-12-30 23:10:15 +0000 | [diff] [blame] | 10007 | AM.Base.FrameIndex = Op.getIndex(); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 10008 | } |
| 10009 | Op = MI->getOperand(1); |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 10010 | if (Op.isImm()) |
Chris Lattner | 7fbe972 | 2006-10-20 17:42:20 +0000 | [diff] [blame] | 10011 | AM.Scale = Op.getImm(); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 10012 | Op = MI->getOperand(2); |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 10013 | if (Op.isImm()) |
Chris Lattner | 7fbe972 | 2006-10-20 17:42:20 +0000 | [diff] [blame] | 10014 | AM.IndexReg = Op.getImm(); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 10015 | Op = MI->getOperand(3); |
Dan Gohman | d735b80 | 2008-10-03 15:45:36 +0000 | [diff] [blame] | 10016 | if (Op.isGlobal()) { |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 10017 | AM.GV = Op.getGlobal(); |
| 10018 | } else { |
Chris Lattner | 7fbe972 | 2006-10-20 17:42:20 +0000 | [diff] [blame] | 10019 | AM.Disp = Op.getImm(); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 10020 | } |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 10021 | addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM) |
Chris Lattner | ac0ed5d | 2010-07-08 22:41:28 +0000 | [diff] [blame] | 10022 | .addReg(MI->getOperand(X86::AddrNumOperands).getReg()); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 10023 | |
| 10024 | // Reload the original control word now. |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 10025 | addFrameReference(BuildMI(*BB, MI, DL, |
| 10026 | TII->get(X86::FLDCW16m)), CWFrameIdx); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 10027 | |
Dan Gohman | 14152b4 | 2010-07-06 20:24:04 +0000 | [diff] [blame] | 10028 | MI->eraseFromParent(); // The pseudo instruction is gone now. |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 10029 | return BB; |
| 10030 | } |
Eric Christopher | b120ab4 | 2009-08-18 22:50:32 +0000 | [diff] [blame] | 10031 | // String/text processing lowering. |
| 10032 | case X86::PCMPISTRM128REG: |
Bruno Cardoso Lopes | 98f9856 | 2010-07-30 19:54:33 +0000 | [diff] [blame] | 10033 | case X86::VPCMPISTRM128REG: |
Eric Christopher | b120ab4 | 2009-08-18 22:50:32 +0000 | [diff] [blame] | 10034 | return EmitPCMP(MI, BB, 3, false /* in-mem */); |
| 10035 | case X86::PCMPISTRM128MEM: |
Bruno Cardoso Lopes | 98f9856 | 2010-07-30 19:54:33 +0000 | [diff] [blame] | 10036 | case X86::VPCMPISTRM128MEM: |
Eric Christopher | b120ab4 | 2009-08-18 22:50:32 +0000 | [diff] [blame] | 10037 | return EmitPCMP(MI, BB, 3, true /* in-mem */); |
| 10038 | case X86::PCMPESTRM128REG: |
Bruno Cardoso Lopes | 98f9856 | 2010-07-30 19:54:33 +0000 | [diff] [blame] | 10039 | case X86::VPCMPESTRM128REG: |
Eric Christopher | b120ab4 | 2009-08-18 22:50:32 +0000 | [diff] [blame] | 10040 | return EmitPCMP(MI, BB, 5, false /* in mem */); |
| 10041 | case X86::PCMPESTRM128MEM: |
Bruno Cardoso Lopes | 98f9856 | 2010-07-30 19:54:33 +0000 | [diff] [blame] | 10042 | case X86::VPCMPESTRM128MEM: |
Eric Christopher | b120ab4 | 2009-08-18 22:50:32 +0000 | [diff] [blame] | 10043 | return EmitPCMP(MI, BB, 5, true /* in mem */); |
| 10044 | |
| 10045 | // Atomic Lowering. |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 10046 | case X86::ATOMAND32: |
| 10047 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10048 | X86::AND32ri, X86::MOV32rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10049 | X86::LCMPXCHG32, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10050 | X86::NOT32r, X86::EAX, |
| 10051 | X86::GR32RegisterClass); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 10052 | case X86::ATOMOR32: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10053 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr, |
| 10054 | X86::OR32ri, X86::MOV32rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10055 | X86::LCMPXCHG32, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10056 | X86::NOT32r, X86::EAX, |
| 10057 | X86::GR32RegisterClass); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 10058 | case X86::ATOMXOR32: |
| 10059 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10060 | X86::XOR32ri, X86::MOV32rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10061 | X86::LCMPXCHG32, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10062 | X86::NOT32r, X86::EAX, |
| 10063 | X86::GR32RegisterClass); |
Andrew Lenharth | 507a58a | 2008-06-14 05:48:15 +0000 | [diff] [blame] | 10064 | case X86::ATOMNAND32: |
| 10065 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10066 | X86::AND32ri, X86::MOV32rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10067 | X86::LCMPXCHG32, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10068 | X86::NOT32r, X86::EAX, |
| 10069 | X86::GR32RegisterClass, true); |
Mon P Wang | 63307c3 | 2008-05-05 19:05:59 +0000 | [diff] [blame] | 10070 | case X86::ATOMMIN32: |
| 10071 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr); |
| 10072 | case X86::ATOMMAX32: |
| 10073 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr); |
| 10074 | case X86::ATOMUMIN32: |
| 10075 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr); |
| 10076 | case X86::ATOMUMAX32: |
| 10077 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr); |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10078 | |
| 10079 | case X86::ATOMAND16: |
| 10080 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr, |
| 10081 | X86::AND16ri, X86::MOV16rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10082 | X86::LCMPXCHG16, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10083 | X86::NOT16r, X86::AX, |
| 10084 | X86::GR16RegisterClass); |
| 10085 | case X86::ATOMOR16: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10086 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10087 | X86::OR16ri, X86::MOV16rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10088 | X86::LCMPXCHG16, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10089 | X86::NOT16r, X86::AX, |
| 10090 | X86::GR16RegisterClass); |
| 10091 | case X86::ATOMXOR16: |
| 10092 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr, |
| 10093 | X86::XOR16ri, X86::MOV16rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10094 | X86::LCMPXCHG16, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10095 | X86::NOT16r, X86::AX, |
| 10096 | X86::GR16RegisterClass); |
| 10097 | case X86::ATOMNAND16: |
| 10098 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr, |
| 10099 | X86::AND16ri, X86::MOV16rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10100 | X86::LCMPXCHG16, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10101 | X86::NOT16r, X86::AX, |
| 10102 | X86::GR16RegisterClass, true); |
| 10103 | case X86::ATOMMIN16: |
| 10104 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr); |
| 10105 | case X86::ATOMMAX16: |
| 10106 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr); |
| 10107 | case X86::ATOMUMIN16: |
| 10108 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr); |
| 10109 | case X86::ATOMUMAX16: |
| 10110 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr); |
| 10111 | |
| 10112 | case X86::ATOMAND8: |
| 10113 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr, |
| 10114 | X86::AND8ri, X86::MOV8rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10115 | X86::LCMPXCHG8, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10116 | X86::NOT8r, X86::AL, |
| 10117 | X86::GR8RegisterClass); |
| 10118 | case X86::ATOMOR8: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10119 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10120 | X86::OR8ri, X86::MOV8rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10121 | X86::LCMPXCHG8, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10122 | X86::NOT8r, X86::AL, |
| 10123 | X86::GR8RegisterClass); |
| 10124 | case X86::ATOMXOR8: |
| 10125 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr, |
| 10126 | X86::XOR8ri, X86::MOV8rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10127 | X86::LCMPXCHG8, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10128 | X86::NOT8r, X86::AL, |
| 10129 | X86::GR8RegisterClass); |
| 10130 | case X86::ATOMNAND8: |
| 10131 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr, |
| 10132 | X86::AND8ri, X86::MOV8rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10133 | X86::LCMPXCHG8, |
Dale Johannesen | 140be2d | 2008-08-19 18:47:28 +0000 | [diff] [blame] | 10134 | X86::NOT8r, X86::AL, |
| 10135 | X86::GR8RegisterClass, true); |
| 10136 | // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way. |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 10137 | // This group is for 64-bit host. |
Dale Johannesen | a99e384 | 2008-08-20 00:48:50 +0000 | [diff] [blame] | 10138 | case X86::ATOMAND64: |
| 10139 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10140 | X86::AND64ri32, X86::MOV64rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10141 | X86::LCMPXCHG64, |
Dale Johannesen | a99e384 | 2008-08-20 00:48:50 +0000 | [diff] [blame] | 10142 | X86::NOT64r, X86::RAX, |
| 10143 | X86::GR64RegisterClass); |
| 10144 | case X86::ATOMOR64: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10145 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr, |
| 10146 | X86::OR64ri32, X86::MOV64rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10147 | X86::LCMPXCHG64, |
Dale Johannesen | a99e384 | 2008-08-20 00:48:50 +0000 | [diff] [blame] | 10148 | X86::NOT64r, X86::RAX, |
| 10149 | X86::GR64RegisterClass); |
| 10150 | case X86::ATOMXOR64: |
| 10151 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10152 | X86::XOR64ri32, X86::MOV64rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10153 | X86::LCMPXCHG64, |
Dale Johannesen | a99e384 | 2008-08-20 00:48:50 +0000 | [diff] [blame] | 10154 | X86::NOT64r, X86::RAX, |
| 10155 | X86::GR64RegisterClass); |
| 10156 | case X86::ATOMNAND64: |
| 10157 | return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr, |
| 10158 | X86::AND64ri32, X86::MOV64rm, |
Jakob Stoklund Olesen | b5378ea | 2010-07-14 23:50:27 +0000 | [diff] [blame] | 10159 | X86::LCMPXCHG64, |
Dale Johannesen | a99e384 | 2008-08-20 00:48:50 +0000 | [diff] [blame] | 10160 | X86::NOT64r, X86::RAX, |
| 10161 | X86::GR64RegisterClass, true); |
| 10162 | case X86::ATOMMIN64: |
| 10163 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr); |
| 10164 | case X86::ATOMMAX64: |
| 10165 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr); |
| 10166 | case X86::ATOMUMIN64: |
| 10167 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr); |
| 10168 | case X86::ATOMUMAX64: |
| 10169 | return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 10170 | |
| 10171 | // This group does 64-bit operations on a 32-bit host. |
| 10172 | case X86::ATOMAND6432: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10173 | return EmitAtomicBit6432WithCustomInserter(MI, BB, |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 10174 | X86::AND32rr, X86::AND32rr, |
| 10175 | X86::AND32ri, X86::AND32ri, |
| 10176 | false); |
| 10177 | case X86::ATOMOR6432: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10178 | return EmitAtomicBit6432WithCustomInserter(MI, BB, |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 10179 | X86::OR32rr, X86::OR32rr, |
| 10180 | X86::OR32ri, X86::OR32ri, |
| 10181 | false); |
| 10182 | case X86::ATOMXOR6432: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10183 | return EmitAtomicBit6432WithCustomInserter(MI, BB, |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 10184 | X86::XOR32rr, X86::XOR32rr, |
| 10185 | X86::XOR32ri, X86::XOR32ri, |
| 10186 | false); |
| 10187 | case X86::ATOMNAND6432: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10188 | return EmitAtomicBit6432WithCustomInserter(MI, BB, |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 10189 | X86::AND32rr, X86::AND32rr, |
| 10190 | X86::AND32ri, X86::AND32ri, |
| 10191 | true); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 10192 | case X86::ATOMADD6432: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10193 | return EmitAtomicBit6432WithCustomInserter(MI, BB, |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 10194 | X86::ADD32rr, X86::ADC32rr, |
| 10195 | X86::ADD32ri, X86::ADC32ri, |
| 10196 | false); |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 10197 | case X86::ATOMSUB6432: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10198 | return EmitAtomicBit6432WithCustomInserter(MI, BB, |
Dale Johannesen | 48c1bc2 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 10199 | X86::SUB32rr, X86::SBB32rr, |
| 10200 | X86::SUB32ri, X86::SBB32ri, |
| 10201 | false); |
Dale Johannesen | 880ae36 | 2008-10-03 22:25:52 +0000 | [diff] [blame] | 10202 | case X86::ATOMSWAP6432: |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10203 | return EmitAtomicBit6432WithCustomInserter(MI, BB, |
Dale Johannesen | 880ae36 | 2008-10-03 22:25:52 +0000 | [diff] [blame] | 10204 | X86::MOV32rr, X86::MOV32rr, |
| 10205 | X86::MOV32ri, X86::MOV32ri, |
| 10206 | false); |
Dan Gohman | d6708ea | 2009-08-15 01:38:56 +0000 | [diff] [blame] | 10207 | case X86::VASTART_SAVE_XMM_REGS: |
| 10208 | return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB); |
Dan Gohman | 320afb8 | 2010-10-12 18:00:49 +0000 | [diff] [blame] | 10209 | |
| 10210 | case X86::VAARG_64: |
| 10211 | return EmitVAARG64WithCustomInserter(MI, BB); |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 10212 | } |
| 10213 | } |
| 10214 | |
| 10215 | //===----------------------------------------------------------------------===// |
| 10216 | // X86 Optimization Hooks |
| 10217 | //===----------------------------------------------------------------------===// |
| 10218 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 10219 | void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op, |
Dan Gohman | 977a76f | 2008-02-13 22:28:48 +0000 | [diff] [blame] | 10220 | const APInt &Mask, |
Dan Gohman | fd29e0e | 2008-02-13 00:35:47 +0000 | [diff] [blame] | 10221 | APInt &KnownZero, |
| 10222 | APInt &KnownOne, |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 10223 | const SelectionDAG &DAG, |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 10224 | unsigned Depth) const { |
Evan Cheng | 3a03ebb | 2005-12-21 23:05:39 +0000 | [diff] [blame] | 10225 | unsigned Opc = Op.getOpcode(); |
Evan Cheng | 865f060 | 2006-04-05 06:11:20 +0000 | [diff] [blame] | 10226 | assert((Opc >= ISD::BUILTIN_OP_END || |
| 10227 | Opc == ISD::INTRINSIC_WO_CHAIN || |
| 10228 | Opc == ISD::INTRINSIC_W_CHAIN || |
| 10229 | Opc == ISD::INTRINSIC_VOID) && |
| 10230 | "Should use MaskedValueIsZero if you don't know whether Op" |
| 10231 | " is a target node!"); |
Evan Cheng | 3a03ebb | 2005-12-21 23:05:39 +0000 | [diff] [blame] | 10232 | |
Dan Gohman | f4f92f5 | 2008-02-13 23:07:24 +0000 | [diff] [blame] | 10233 | KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything. |
Evan Cheng | 3a03ebb | 2005-12-21 23:05:39 +0000 | [diff] [blame] | 10234 | switch (Opc) { |
Evan Cheng | 865f060 | 2006-04-05 06:11:20 +0000 | [diff] [blame] | 10235 | default: break; |
Evan Cheng | 97d0e0e | 2009-02-02 09:15:04 +0000 | [diff] [blame] | 10236 | case X86ISD::ADD: |
| 10237 | case X86ISD::SUB: |
| 10238 | case X86ISD::SMUL: |
| 10239 | case X86ISD::UMUL: |
Dan Gohman | 076aee3 | 2009-03-04 19:44:21 +0000 | [diff] [blame] | 10240 | case X86ISD::INC: |
| 10241 | case X86ISD::DEC: |
Dan Gohman | e220c4b | 2009-09-18 19:59:53 +0000 | [diff] [blame] | 10242 | case X86ISD::OR: |
| 10243 | case X86ISD::XOR: |
| 10244 | case X86ISD::AND: |
Evan Cheng | 97d0e0e | 2009-02-02 09:15:04 +0000 | [diff] [blame] | 10245 | // These nodes' second result is a boolean. |
| 10246 | if (Op.getResNo() == 0) |
| 10247 | break; |
| 10248 | // Fallthrough |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 10249 | case X86ISD::SETCC: |
Dan Gohman | fd29e0e | 2008-02-13 00:35:47 +0000 | [diff] [blame] | 10250 | KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(), |
| 10251 | Mask.getBitWidth() - 1); |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 10252 | break; |
Evan Cheng | 3a03ebb | 2005-12-21 23:05:39 +0000 | [diff] [blame] | 10253 | } |
Evan Cheng | 3a03ebb | 2005-12-21 23:05:39 +0000 | [diff] [blame] | 10254 | } |
Chris Lattner | 259e97c | 2006-01-31 19:43:35 +0000 | [diff] [blame] | 10255 | |
Owen Anderson | bc146b0 | 2010-09-21 20:42:50 +0000 | [diff] [blame] | 10256 | unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op, |
| 10257 | unsigned Depth) const { |
| 10258 | // SETCC_CARRY sets the dest to ~0 for true or 0 for false. |
| 10259 | if (Op.getOpcode() == X86ISD::SETCC_CARRY) |
| 10260 | return Op.getValueType().getScalarType().getSizeInBits(); |
Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 10261 | |
Owen Anderson | bc146b0 | 2010-09-21 20:42:50 +0000 | [diff] [blame] | 10262 | // Fallback case. |
| 10263 | return 1; |
| 10264 | } |
| 10265 | |
Evan Cheng | 206ee9d | 2006-07-07 08:33:52 +0000 | [diff] [blame] | 10266 | /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the |
Evan Cheng | ad4196b | 2008-05-12 19:56:52 +0000 | [diff] [blame] | 10267 | /// node is a GlobalAddress + offset. |
| 10268 | bool X86TargetLowering::isGAPlusOffset(SDNode *N, |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 10269 | const GlobalValue* &GA, |
| 10270 | int64_t &Offset) const { |
Evan Cheng | ad4196b | 2008-05-12 19:56:52 +0000 | [diff] [blame] | 10271 | if (N->getOpcode() == X86ISD::Wrapper) { |
| 10272 | if (isa<GlobalAddressSDNode>(N->getOperand(0))) { |
Evan Cheng | 206ee9d | 2006-07-07 08:33:52 +0000 | [diff] [blame] | 10273 | GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal(); |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 10274 | Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset(); |
Evan Cheng | 206ee9d | 2006-07-07 08:33:52 +0000 | [diff] [blame] | 10275 | return true; |
| 10276 | } |
Evan Cheng | 206ee9d | 2006-07-07 08:33:52 +0000 | [diff] [blame] | 10277 | } |
Evan Cheng | ad4196b | 2008-05-12 19:56:52 +0000 | [diff] [blame] | 10278 | return TargetLowering::isGAPlusOffset(N, GA, Offset); |
Evan Cheng | 206ee9d | 2006-07-07 08:33:52 +0000 | [diff] [blame] | 10279 | } |
| 10280 | |
Evan Cheng | 206ee9d | 2006-07-07 08:33:52 +0000 | [diff] [blame] | 10281 | /// PerformShuffleCombine - Combine a vector_shuffle that is equal to |
| 10282 | /// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load |
| 10283 | /// if the load addresses are consecutive, non-overlapping, and in the right |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 10284 | /// order. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 10285 | static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG, |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 10286 | const TargetLowering &TLI) { |
Dale Johannesen | e4d209d | 2009-02-03 20:21:25 +0000 | [diff] [blame] | 10287 | DebugLoc dl = N->getDebugLoc(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 10288 | EVT VT = N->getValueType(0); |
Mon P Wang | 1e95580 | 2009-04-03 02:43:30 +0000 | [diff] [blame] | 10289 | |
Eli Friedman | 7a5e555 | 2009-06-07 06:52:44 +0000 | [diff] [blame] | 10290 | if (VT.getSizeInBits() != 128) |
| 10291 | return SDValue(); |
| 10292 | |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 10293 | SmallVector<SDValue, 16> Elts; |
| 10294 | for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i) |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 10295 | Elts.push_back(getShuffleScalarElt(N, i, DAG, 0)); |
Bruno Cardoso Lopes | 27f1279 | 2010-08-28 02:46:39 +0000 | [diff] [blame] | 10296 | |
Nate Begeman | fdea31a | 2010-03-24 20:49:50 +0000 | [diff] [blame] | 10297 | return EltsFromConsecutiveLoads(VT, Elts, dl, DAG); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10298 | } |
Evan Cheng | d880b97 | 2008-05-09 21:53:03 +0000 | [diff] [blame] | 10299 | |
Bruno Cardoso Lopes | b3e0669 | 2010-09-03 19:55:05 +0000 | [diff] [blame] | 10300 | /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index |
| 10301 | /// generation and convert it from being a bunch of shuffles and extracts |
| 10302 | /// to a simple store and scalar loads to extract the elements. |
Dan Gohman | 1bbf72b | 2010-03-15 23:23:03 +0000 | [diff] [blame] | 10303 | static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG, |
| 10304 | const TargetLowering &TLI) { |
| 10305 | SDValue InputVector = N->getOperand(0); |
| 10306 | |
| 10307 | // Only operate on vectors of 4 elements, where the alternative shuffling |
| 10308 | // gets to be more expensive. |
| 10309 | if (InputVector.getValueType() != MVT::v4i32) |
| 10310 | return SDValue(); |
| 10311 | |
| 10312 | // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a |
| 10313 | // single use which is a sign-extend or zero-extend, and all elements are |
| 10314 | // used. |
| 10315 | SmallVector<SDNode *, 4> Uses; |
| 10316 | unsigned ExtractedElements = 0; |
| 10317 | for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(), |
| 10318 | UE = InputVector.getNode()->use_end(); UI != UE; ++UI) { |
| 10319 | if (UI.getUse().getResNo() != InputVector.getResNo()) |
| 10320 | return SDValue(); |
| 10321 | |
| 10322 | SDNode *Extract = *UI; |
| 10323 | if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT) |
| 10324 | return SDValue(); |
| 10325 | |
| 10326 | if (Extract->getValueType(0) != MVT::i32) |
| 10327 | return SDValue(); |
| 10328 | if (!Extract->hasOneUse()) |
| 10329 | return SDValue(); |
| 10330 | if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND && |
| 10331 | Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND) |
| 10332 | return SDValue(); |
| 10333 | if (!isa<ConstantSDNode>(Extract->getOperand(1))) |
| 10334 | return SDValue(); |
| 10335 | |
| 10336 | // Record which element was extracted. |
| 10337 | ExtractedElements |= |
| 10338 | 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue(); |
| 10339 | |
| 10340 | Uses.push_back(Extract); |
| 10341 | } |
| 10342 | |
| 10343 | // If not all the elements were used, this may not be worthwhile. |
| 10344 | if (ExtractedElements != 15) |
| 10345 | return SDValue(); |
| 10346 | |
| 10347 | // Ok, we've now decided to do the transformation. |
| 10348 | DebugLoc dl = InputVector.getDebugLoc(); |
| 10349 | |
| 10350 | // Store the value to a temporary stack slot. |
| 10351 | SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType()); |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 10352 | SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr, |
| 10353 | MachinePointerInfo(), false, false, 0); |
Dan Gohman | 1bbf72b | 2010-03-15 23:23:03 +0000 | [diff] [blame] | 10354 | |
| 10355 | // Replace each use (extract) with a load of the appropriate element. |
| 10356 | for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(), |
| 10357 | UE = Uses.end(); UI != UE; ++UI) { |
| 10358 | SDNode *Extract = *UI; |
| 10359 | |
| 10360 | // Compute the element's address. |
| 10361 | SDValue Idx = Extract->getOperand(1); |
| 10362 | unsigned EltSize = |
| 10363 | InputVector.getValueType().getVectorElementType().getSizeInBits()/8; |
| 10364 | uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue(); |
| 10365 | SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy()); |
| 10366 | |
Eric Christopher | 90eb402 | 2010-07-22 00:26:08 +0000 | [diff] [blame] | 10367 | SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 10368 | StackPtr, OffsetVal); |
Dan Gohman | 1bbf72b | 2010-03-15 23:23:03 +0000 | [diff] [blame] | 10369 | |
| 10370 | // Load the scalar. |
Eric Christopher | 90eb402 | 2010-07-22 00:26:08 +0000 | [diff] [blame] | 10371 | SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch, |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 10372 | ScalarAddr, MachinePointerInfo(), |
| 10373 | false, false, 0); |
Dan Gohman | 1bbf72b | 2010-03-15 23:23:03 +0000 | [diff] [blame] | 10374 | |
| 10375 | // Replace the exact with the load. |
| 10376 | DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar); |
| 10377 | } |
| 10378 | |
| 10379 | // The replacement was made in place; don't return anything. |
| 10380 | return SDValue(); |
| 10381 | } |
| 10382 | |
Chris Lattner | 83e6c99 | 2006-10-04 06:57:07 +0000 | [diff] [blame] | 10383 | /// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 10384 | static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG, |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10385 | const X86Subtarget *Subtarget) { |
| 10386 | DebugLoc DL = N->getDebugLoc(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 10387 | SDValue Cond = N->getOperand(0); |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10388 | // Get the LHS/RHS of the select. |
| 10389 | SDValue LHS = N->getOperand(1); |
| 10390 | SDValue RHS = N->getOperand(2); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10391 | |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10392 | // 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] | 10393 | // instructions match the semantics of the common C idiom x<y?x:y but not |
| 10394 | // x<=y?x:y, because of how they handle negative zero (which can be |
| 10395 | // ignored in unsafe-math mode). |
Chris Lattner | 83e6c99 | 2006-10-04 06:57:07 +0000 | [diff] [blame] | 10396 | if (Subtarget->hasSSE2() && |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10397 | (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) && |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10398 | Cond.getOpcode() == ISD::SETCC) { |
| 10399 | ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get(); |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 10400 | |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10401 | unsigned Opcode = 0; |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10402 | // Check for x CC y ? x : y. |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10403 | if (DAG.isEqualTo(LHS, Cond.getOperand(0)) && |
| 10404 | DAG.isEqualTo(RHS, Cond.getOperand(1))) { |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10405 | switch (CC) { |
| 10406 | default: break; |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10407 | case ISD::SETULT: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10408 | // Converting this to a min would handle NaNs incorrectly, and swapping |
| 10409 | // the operands would cause it to handle comparisons between positive |
| 10410 | // and negative zero incorrectly. |
Evan Cheng | 60108e9 | 2010-07-15 22:07:12 +0000 | [diff] [blame] | 10411 | if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) { |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10412 | if (!UnsafeFPMath && |
| 10413 | !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) |
| 10414 | break; |
| 10415 | std::swap(LHS, RHS); |
| 10416 | } |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10417 | Opcode = X86ISD::FMIN; |
| 10418 | break; |
| 10419 | case ISD::SETOLE: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10420 | // Converting this to a min would handle comparisons between positive |
| 10421 | // and negative zero incorrectly. |
| 10422 | if (!UnsafeFPMath && |
| 10423 | !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) |
| 10424 | break; |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10425 | Opcode = X86ISD::FMIN; |
| 10426 | break; |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10427 | case ISD::SETULE: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10428 | // Converting this to a min would handle both negative zeros and NaNs |
| 10429 | // incorrectly, but we can swap the operands to fix both. |
| 10430 | std::swap(LHS, RHS); |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10431 | case ISD::SETOLT: |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10432 | case ISD::SETLT: |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10433 | case ISD::SETLE: |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10434 | Opcode = X86ISD::FMIN; |
| 10435 | break; |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 10436 | |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10437 | case ISD::SETOGE: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10438 | // Converting this to a max would handle comparisons between positive |
| 10439 | // and negative zero incorrectly. |
| 10440 | if (!UnsafeFPMath && |
| 10441 | !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(LHS)) |
| 10442 | break; |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10443 | Opcode = X86ISD::FMAX; |
| 10444 | break; |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10445 | case ISD::SETUGT: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10446 | // Converting this to a max would handle NaNs incorrectly, and swapping |
| 10447 | // the operands would cause it to handle comparisons between positive |
| 10448 | // and negative zero incorrectly. |
Evan Cheng | 60108e9 | 2010-07-15 22:07:12 +0000 | [diff] [blame] | 10449 | if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) { |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10450 | if (!UnsafeFPMath && |
| 10451 | !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) |
| 10452 | break; |
| 10453 | std::swap(LHS, RHS); |
| 10454 | } |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10455 | Opcode = X86ISD::FMAX; |
| 10456 | break; |
| 10457 | case ISD::SETUGE: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10458 | // Converting this to a max would handle both negative zeros and NaNs |
| 10459 | // incorrectly, but we can swap the operands to fix both. |
| 10460 | std::swap(LHS, RHS); |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10461 | case ISD::SETOGT: |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10462 | case ISD::SETGT: |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10463 | case ISD::SETGE: |
| 10464 | Opcode = X86ISD::FMAX; |
| 10465 | break; |
Chris Lattner | 83e6c99 | 2006-10-04 06:57:07 +0000 | [diff] [blame] | 10466 | } |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10467 | // 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] | 10468 | } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) && |
| 10469 | DAG.isEqualTo(RHS, Cond.getOperand(0))) { |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10470 | switch (CC) { |
| 10471 | default: break; |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10472 | case ISD::SETOGE: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10473 | // Converting this to a min would handle comparisons between positive |
| 10474 | // and negative zero incorrectly, and swapping the operands would |
| 10475 | // cause it to handle NaNs incorrectly. |
| 10476 | if (!UnsafeFPMath && |
| 10477 | !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) { |
Evan Cheng | 60108e9 | 2010-07-15 22:07:12 +0000 | [diff] [blame] | 10478 | if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10479 | break; |
| 10480 | std::swap(LHS, RHS); |
| 10481 | } |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10482 | Opcode = X86ISD::FMIN; |
Dan Gohman | 8d44b28 | 2009-09-03 20:34:31 +0000 | [diff] [blame] | 10483 | break; |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10484 | case ISD::SETUGT: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10485 | // Converting this to a min would handle NaNs incorrectly. |
| 10486 | if (!UnsafeFPMath && |
| 10487 | (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))) |
| 10488 | break; |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10489 | Opcode = X86ISD::FMIN; |
| 10490 | break; |
| 10491 | case ISD::SETUGE: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10492 | // Converting this to a min would handle both negative zeros and NaNs |
| 10493 | // incorrectly, but we can swap the operands to fix both. |
| 10494 | std::swap(LHS, RHS); |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10495 | case ISD::SETOGT: |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10496 | case ISD::SETGT: |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10497 | case ISD::SETGE: |
| 10498 | Opcode = X86ISD::FMIN; |
| 10499 | break; |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 10500 | |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10501 | case ISD::SETULT: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10502 | // Converting this to a max would handle NaNs incorrectly. |
Evan Cheng | 60108e9 | 2010-07-15 22:07:12 +0000 | [diff] [blame] | 10503 | if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10504 | break; |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10505 | Opcode = X86ISD::FMAX; |
Dan Gohman | 8d44b28 | 2009-09-03 20:34:31 +0000 | [diff] [blame] | 10506 | break; |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10507 | case ISD::SETOLE: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10508 | // Converting this to a max would handle comparisons between positive |
| 10509 | // and negative zero incorrectly, and swapping the operands would |
| 10510 | // cause it to handle NaNs incorrectly. |
| 10511 | if (!UnsafeFPMath && |
| 10512 | !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) { |
Evan Cheng | 60108e9 | 2010-07-15 22:07:12 +0000 | [diff] [blame] | 10513 | if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10514 | break; |
| 10515 | std::swap(LHS, RHS); |
| 10516 | } |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10517 | Opcode = X86ISD::FMAX; |
| 10518 | break; |
| 10519 | case ISD::SETULE: |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 10520 | // Converting this to a max would handle both negative zeros and NaNs |
| 10521 | // incorrectly, but we can swap the operands to fix both. |
| 10522 | std::swap(LHS, RHS); |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10523 | case ISD::SETOLT: |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10524 | case ISD::SETLT: |
Dan Gohman | 670e539 | 2009-09-21 18:03:22 +0000 | [diff] [blame] | 10525 | case ISD::SETLE: |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10526 | Opcode = X86ISD::FMAX; |
| 10527 | break; |
| 10528 | } |
Chris Lattner | 83e6c99 | 2006-10-04 06:57:07 +0000 | [diff] [blame] | 10529 | } |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 10530 | |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10531 | if (Opcode) |
| 10532 | return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS); |
Chris Lattner | 83e6c99 | 2006-10-04 06:57:07 +0000 | [diff] [blame] | 10533 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10534 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10535 | // If this is a select between two integer constants, try to do some |
| 10536 | // optimizations. |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10537 | if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) { |
| 10538 | if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS)) |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10539 | // Don't do this for crazy integer types. |
| 10540 | if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) { |
| 10541 | // If this is efficiently invertible, canonicalize the LHSC/RHSC values |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10542 | // so that TrueC (the true value) is larger than FalseC. |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10543 | bool NeedsCondInvert = false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10544 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10545 | if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) && |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10546 | // Efficiently invertible. |
| 10547 | (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible. |
| 10548 | (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible. |
| 10549 | isa<ConstantSDNode>(Cond.getOperand(1))))) { |
| 10550 | NeedsCondInvert = true; |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10551 | std::swap(TrueC, FalseC); |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10552 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10553 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10554 | // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0. |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10555 | if (FalseC->getAPIntValue() == 0 && |
| 10556 | TrueC->getAPIntValue().isPowerOf2()) { |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10557 | if (NeedsCondInvert) // Invert the condition if needed. |
| 10558 | Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond, |
| 10559 | DAG.getConstant(1, Cond.getValueType())); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10560 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10561 | // Zero extend the condition if needed. |
| 10562 | Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10563 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10564 | unsigned ShAmt = TrueC->getAPIntValue().logBase2(); |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10565 | return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10566 | DAG.getConstant(ShAmt, MVT::i8)); |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10567 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10568 | |
Chris Lattner | 97a29a5 | 2009-03-13 05:22:11 +0000 | [diff] [blame] | 10569 | // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10570 | if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) { |
Chris Lattner | 97a29a5 | 2009-03-13 05:22:11 +0000 | [diff] [blame] | 10571 | if (NeedsCondInvert) // Invert the condition if needed. |
| 10572 | Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond, |
| 10573 | DAG.getConstant(1, Cond.getValueType())); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10574 | |
Chris Lattner | 97a29a5 | 2009-03-13 05:22:11 +0000 | [diff] [blame] | 10575 | // Zero extend the condition if needed. |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10576 | Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, |
| 10577 | FalseC->getValueType(0), Cond); |
Chris Lattner | 97a29a5 | 2009-03-13 05:22:11 +0000 | [diff] [blame] | 10578 | return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond, |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10579 | SDValue(FalseC, 0)); |
Chris Lattner | 97a29a5 | 2009-03-13 05:22:11 +0000 | [diff] [blame] | 10580 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10581 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10582 | // Optimize cases that will turn into an LEA instruction. This requires |
| 10583 | // 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] | 10584 | if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) { |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10585 | uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10586 | if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10587 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10588 | bool isFastMultiplier = false; |
| 10589 | if (Diff < 10) { |
| 10590 | switch ((unsigned char)Diff) { |
| 10591 | default: break; |
| 10592 | case 1: // result = add base, cond |
| 10593 | case 2: // result = lea base( , cond*2) |
| 10594 | case 3: // result = lea base(cond, cond*2) |
| 10595 | case 4: // result = lea base( , cond*4) |
| 10596 | case 5: // result = lea base(cond, cond*4) |
| 10597 | case 8: // result = lea base( , cond*8) |
| 10598 | case 9: // result = lea base(cond, cond*8) |
| 10599 | isFastMultiplier = true; |
| 10600 | break; |
| 10601 | } |
| 10602 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10603 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10604 | if (isFastMultiplier) { |
| 10605 | APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue(); |
| 10606 | if (NeedsCondInvert) // Invert the condition if needed. |
| 10607 | Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond, |
| 10608 | DAG.getConstant(1, Cond.getValueType())); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10609 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10610 | // Zero extend the condition if needed. |
| 10611 | Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0), |
| 10612 | Cond); |
| 10613 | // Scale the condition by the difference. |
| 10614 | if (Diff != 1) |
| 10615 | Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond, |
| 10616 | DAG.getConstant(Diff, Cond.getValueType())); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10617 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10618 | // Add the base if non-zero. |
| 10619 | if (FalseC->getAPIntValue() != 0) |
| 10620 | Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond, |
| 10621 | SDValue(FalseC, 0)); |
| 10622 | return Cond; |
| 10623 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10624 | } |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10625 | } |
| 10626 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10627 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 10628 | return SDValue(); |
Chris Lattner | 83e6c99 | 2006-10-04 06:57:07 +0000 | [diff] [blame] | 10629 | } |
| 10630 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10631 | /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL] |
| 10632 | static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG, |
| 10633 | TargetLowering::DAGCombinerInfo &DCI) { |
| 10634 | DebugLoc DL = N->getDebugLoc(); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10635 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10636 | // If the flag operand isn't dead, don't touch this CMOV. |
| 10637 | if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty()) |
| 10638 | return SDValue(); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10639 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10640 | // If this is a select between two integer constants, try to do some |
| 10641 | // optimizations. Note that the operands are ordered the opposite of SELECT |
| 10642 | // operands. |
| 10643 | if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(N->getOperand(1))) { |
| 10644 | if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(N->getOperand(0))) { |
| 10645 | // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is |
| 10646 | // larger than FalseC (the false value). |
| 10647 | X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10648 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10649 | if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) { |
| 10650 | CC = X86::GetOppositeBranchCondition(CC); |
| 10651 | std::swap(TrueC, FalseC); |
| 10652 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10653 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10654 | // 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] | 10655 | // This is efficient for any integer data type (including i8/i16) and |
| 10656 | // shift amount. |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10657 | if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) { |
| 10658 | SDValue Cond = N->getOperand(3); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10659 | Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8, |
| 10660 | DAG.getConstant(CC, MVT::i8), Cond); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10661 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10662 | // Zero extend the condition if needed. |
| 10663 | Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10664 | |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10665 | unsigned ShAmt = TrueC->getAPIntValue().logBase2(); |
| 10666 | Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10667 | DAG.getConstant(ShAmt, MVT::i8)); |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10668 | if (N->getNumValues() == 2) // Dead flag value? |
| 10669 | return DCI.CombineTo(N, Cond, SDValue()); |
| 10670 | return Cond; |
| 10671 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10672 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10673 | // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient |
| 10674 | // for any integer data type, including i8/i16. |
Chris Lattner | 97a29a5 | 2009-03-13 05:22:11 +0000 | [diff] [blame] | 10675 | if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) { |
| 10676 | SDValue Cond = N->getOperand(3); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10677 | Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8, |
| 10678 | DAG.getConstant(CC, MVT::i8), Cond); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10679 | |
Chris Lattner | 97a29a5 | 2009-03-13 05:22:11 +0000 | [diff] [blame] | 10680 | // Zero extend the condition if needed. |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10681 | Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, |
| 10682 | FalseC->getValueType(0), Cond); |
Chris Lattner | 97a29a5 | 2009-03-13 05:22:11 +0000 | [diff] [blame] | 10683 | Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond, |
| 10684 | SDValue(FalseC, 0)); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10685 | |
Chris Lattner | 97a29a5 | 2009-03-13 05:22:11 +0000 | [diff] [blame] | 10686 | if (N->getNumValues() == 2) // Dead flag value? |
| 10687 | return DCI.CombineTo(N, Cond, SDValue()); |
| 10688 | return Cond; |
| 10689 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10690 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10691 | // Optimize cases that will turn into an LEA instruction. This requires |
| 10692 | // 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] | 10693 | if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) { |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10694 | uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10695 | if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10696 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10697 | bool isFastMultiplier = false; |
| 10698 | if (Diff < 10) { |
| 10699 | switch ((unsigned char)Diff) { |
| 10700 | default: break; |
| 10701 | case 1: // result = add base, cond |
| 10702 | case 2: // result = lea base( , cond*2) |
| 10703 | case 3: // result = lea base(cond, cond*2) |
| 10704 | case 4: // result = lea base( , cond*4) |
| 10705 | case 5: // result = lea base(cond, cond*4) |
| 10706 | case 8: // result = lea base( , cond*8) |
| 10707 | case 9: // result = lea base(cond, cond*8) |
| 10708 | isFastMultiplier = true; |
| 10709 | break; |
| 10710 | } |
| 10711 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10712 | |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10713 | if (isFastMultiplier) { |
| 10714 | APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue(); |
| 10715 | SDValue Cond = N->getOperand(3); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10716 | Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8, |
| 10717 | DAG.getConstant(CC, MVT::i8), Cond); |
Chris Lattner | cee56e7 | 2009-03-13 05:53:31 +0000 | [diff] [blame] | 10718 | // Zero extend the condition if needed. |
| 10719 | Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0), |
| 10720 | Cond); |
| 10721 | // Scale the condition by the difference. |
| 10722 | if (Diff != 1) |
| 10723 | Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond, |
| 10724 | DAG.getConstant(Diff, Cond.getValueType())); |
| 10725 | |
| 10726 | // Add the base if non-zero. |
| 10727 | if (FalseC->getAPIntValue() != 0) |
| 10728 | Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond, |
| 10729 | SDValue(FalseC, 0)); |
| 10730 | if (N->getNumValues() == 2) // Dead flag value? |
| 10731 | return DCI.CombineTo(N, Cond, SDValue()); |
| 10732 | return Cond; |
| 10733 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10734 | } |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 10735 | } |
| 10736 | } |
| 10737 | return SDValue(); |
| 10738 | } |
| 10739 | |
| 10740 | |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 10741 | /// PerformMulCombine - Optimize a single multiply with constant into two |
| 10742 | /// in order to implement it with two cheaper instructions, e.g. |
| 10743 | /// LEA + SHL, LEA + LEA. |
| 10744 | static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG, |
| 10745 | TargetLowering::DAGCombinerInfo &DCI) { |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 10746 | if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer()) |
| 10747 | return SDValue(); |
| 10748 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 10749 | EVT VT = N->getValueType(0); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10750 | if (VT != MVT::i64) |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 10751 | return SDValue(); |
| 10752 | |
| 10753 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1)); |
| 10754 | if (!C) |
| 10755 | return SDValue(); |
| 10756 | uint64_t MulAmt = C->getZExtValue(); |
| 10757 | if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9) |
| 10758 | return SDValue(); |
| 10759 | |
| 10760 | uint64_t MulAmt1 = 0; |
| 10761 | uint64_t MulAmt2 = 0; |
| 10762 | if ((MulAmt % 9) == 0) { |
| 10763 | MulAmt1 = 9; |
| 10764 | MulAmt2 = MulAmt / 9; |
| 10765 | } else if ((MulAmt % 5) == 0) { |
| 10766 | MulAmt1 = 5; |
| 10767 | MulAmt2 = MulAmt / 5; |
| 10768 | } else if ((MulAmt % 3) == 0) { |
| 10769 | MulAmt1 = 3; |
| 10770 | MulAmt2 = MulAmt / 3; |
| 10771 | } |
| 10772 | if (MulAmt2 && |
| 10773 | (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){ |
| 10774 | DebugLoc DL = N->getDebugLoc(); |
| 10775 | |
| 10776 | if (isPowerOf2_64(MulAmt2) && |
| 10777 | !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD)) |
| 10778 | // If second multiplifer is pow2, issue it first. We want the multiply by |
| 10779 | // 3, 5, or 9 to be folded into the addressing mode unless the lone use |
| 10780 | // is an add. |
| 10781 | std::swap(MulAmt1, MulAmt2); |
| 10782 | |
| 10783 | SDValue NewMul; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10784 | if (isPowerOf2_64(MulAmt1)) |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 10785 | NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10786 | DAG.getConstant(Log2_64(MulAmt1), MVT::i8)); |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 10787 | else |
Evan Cheng | 73f24c9 | 2009-03-30 21:36:47 +0000 | [diff] [blame] | 10788 | NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0), |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 10789 | DAG.getConstant(MulAmt1, VT)); |
| 10790 | |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10791 | if (isPowerOf2_64(MulAmt2)) |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 10792 | NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10793 | DAG.getConstant(Log2_64(MulAmt2), MVT::i8)); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 10794 | else |
Evan Cheng | 73f24c9 | 2009-03-30 21:36:47 +0000 | [diff] [blame] | 10795 | NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul, |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 10796 | DAG.getConstant(MulAmt2, VT)); |
| 10797 | |
| 10798 | // Do not add new nodes to DAG combiner worklist. |
| 10799 | DCI.CombineTo(N, NewMul, false); |
| 10800 | } |
| 10801 | return SDValue(); |
| 10802 | } |
| 10803 | |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 10804 | static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) { |
| 10805 | SDValue N0 = N->getOperand(0); |
| 10806 | SDValue N1 = N->getOperand(1); |
| 10807 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); |
| 10808 | EVT VT = N0.getValueType(); |
| 10809 | |
| 10810 | // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2)) |
| 10811 | // since the result of setcc_c is all zero's or all ones. |
| 10812 | if (N1C && N0.getOpcode() == ISD::AND && |
| 10813 | N0.getOperand(1).getOpcode() == ISD::Constant) { |
| 10814 | SDValue N00 = N0.getOperand(0); |
| 10815 | if (N00.getOpcode() == X86ISD::SETCC_CARRY || |
| 10816 | ((N00.getOpcode() == ISD::ANY_EXTEND || |
| 10817 | N00.getOpcode() == ISD::ZERO_EXTEND) && |
| 10818 | N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) { |
| 10819 | APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); |
| 10820 | APInt ShAmt = N1C->getAPIntValue(); |
| 10821 | Mask = Mask.shl(ShAmt); |
| 10822 | if (Mask != 0) |
| 10823 | return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, |
| 10824 | N00, DAG.getConstant(Mask, VT)); |
| 10825 | } |
| 10826 | } |
| 10827 | |
| 10828 | return SDValue(); |
| 10829 | } |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 10830 | |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10831 | /// PerformShiftCombine - Transforms vector shift nodes to use vector shifts |
| 10832 | /// when possible. |
| 10833 | static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG, |
| 10834 | const X86Subtarget *Subtarget) { |
Evan Cheng | ad9c0a3 | 2009-12-15 00:53:42 +0000 | [diff] [blame] | 10835 | EVT VT = N->getValueType(0); |
| 10836 | if (!VT.isVector() && VT.isInteger() && |
| 10837 | N->getOpcode() == ISD::SHL) |
| 10838 | return PerformSHLCombine(N, DAG); |
| 10839 | |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10840 | // On X86 with SSE2 support, we can transform this to a vector shift if |
| 10841 | // all elements are shifted by the same amount. We can't do this in legalize |
| 10842 | // because the a constant vector is typically transformed to a constant pool |
| 10843 | // so we have no knowledge of the shift amount. |
Nate Begeman | c2fd67f | 2009-01-26 03:15:31 +0000 | [diff] [blame] | 10844 | if (!Subtarget->hasSSE2()) |
| 10845 | return SDValue(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10846 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10847 | if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16) |
Nate Begeman | c2fd67f | 2009-01-26 03:15:31 +0000 | [diff] [blame] | 10848 | return SDValue(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 10849 | |
Mon P Wang | 3becd09 | 2009-01-28 08:12:05 +0000 | [diff] [blame] | 10850 | SDValue ShAmtOp = N->getOperand(1); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 10851 | EVT EltVT = VT.getVectorElementType(); |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10852 | DebugLoc DL = N->getDebugLoc(); |
Mon P Wang | efa4220 | 2009-09-03 19:56:25 +0000 | [diff] [blame] | 10853 | SDValue BaseShAmt = SDValue(); |
Mon P Wang | 3becd09 | 2009-01-28 08:12:05 +0000 | [diff] [blame] | 10854 | if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) { |
| 10855 | unsigned NumElts = VT.getVectorNumElements(); |
| 10856 | unsigned i = 0; |
| 10857 | for (; i != NumElts; ++i) { |
| 10858 | SDValue Arg = ShAmtOp.getOperand(i); |
| 10859 | if (Arg.getOpcode() == ISD::UNDEF) continue; |
| 10860 | BaseShAmt = Arg; |
| 10861 | break; |
| 10862 | } |
| 10863 | for (; i != NumElts; ++i) { |
| 10864 | SDValue Arg = ShAmtOp.getOperand(i); |
| 10865 | if (Arg.getOpcode() == ISD::UNDEF) continue; |
| 10866 | if (Arg != BaseShAmt) { |
| 10867 | return SDValue(); |
| 10868 | } |
| 10869 | } |
| 10870 | } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE && |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 10871 | cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) { |
Mon P Wang | efa4220 | 2009-09-03 19:56:25 +0000 | [diff] [blame] | 10872 | SDValue InVec = ShAmtOp.getOperand(0); |
| 10873 | if (InVec.getOpcode() == ISD::BUILD_VECTOR) { |
| 10874 | unsigned NumElts = InVec.getValueType().getVectorNumElements(); |
| 10875 | unsigned i = 0; |
| 10876 | for (; i != NumElts; ++i) { |
| 10877 | SDValue Arg = InVec.getOperand(i); |
| 10878 | if (Arg.getOpcode() == ISD::UNDEF) continue; |
| 10879 | BaseShAmt = Arg; |
| 10880 | break; |
| 10881 | } |
| 10882 | } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) { |
| 10883 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) { |
Evan Cheng | ae3ecf9 | 2010-02-16 21:09:44 +0000 | [diff] [blame] | 10884 | unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex(); |
Mon P Wang | efa4220 | 2009-09-03 19:56:25 +0000 | [diff] [blame] | 10885 | if (C->getZExtValue() == SplatIdx) |
| 10886 | BaseShAmt = InVec.getOperand(1); |
| 10887 | } |
| 10888 | } |
| 10889 | if (BaseShAmt.getNode() == 0) |
| 10890 | BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp, |
| 10891 | DAG.getIntPtrConstant(0)); |
Mon P Wang | 3becd09 | 2009-01-28 08:12:05 +0000 | [diff] [blame] | 10892 | } else |
Nate Begeman | c2fd67f | 2009-01-26 03:15:31 +0000 | [diff] [blame] | 10893 | return SDValue(); |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10894 | |
Mon P Wang | efa4220 | 2009-09-03 19:56:25 +0000 | [diff] [blame] | 10895 | // The shift amount is an i32. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10896 | if (EltVT.bitsGT(MVT::i32)) |
| 10897 | BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt); |
| 10898 | else if (EltVT.bitsLT(MVT::i32)) |
Mon P Wang | efa4220 | 2009-09-03 19:56:25 +0000 | [diff] [blame] | 10899 | BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt); |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10900 | |
Nate Begeman | c2fd67f | 2009-01-26 03:15:31 +0000 | [diff] [blame] | 10901 | // The shift amount is identical so we can do a vector shift. |
| 10902 | SDValue ValOp = N->getOperand(0); |
| 10903 | switch (N->getOpcode()) { |
| 10904 | default: |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 10905 | llvm_unreachable("Unknown shift opcode!"); |
Nate Begeman | c2fd67f | 2009-01-26 03:15:31 +0000 | [diff] [blame] | 10906 | break; |
| 10907 | case ISD::SHL: |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10908 | if (VT == MVT::v2i64) |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10909 | return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10910 | DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32), |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10911 | ValOp, BaseShAmt); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10912 | if (VT == MVT::v4i32) |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10913 | return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10914 | DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32), |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10915 | ValOp, BaseShAmt); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10916 | if (VT == MVT::v8i16) |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10917 | return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10918 | DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10919 | ValOp, BaseShAmt); |
Nate Begeman | c2fd67f | 2009-01-26 03:15:31 +0000 | [diff] [blame] | 10920 | break; |
| 10921 | case ISD::SRA: |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10922 | if (VT == MVT::v4i32) |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10923 | return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10924 | DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32), |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10925 | ValOp, BaseShAmt); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10926 | if (VT == MVT::v8i16) |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10927 | return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10928 | DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32), |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10929 | ValOp, BaseShAmt); |
Nate Begeman | c2fd67f | 2009-01-26 03:15:31 +0000 | [diff] [blame] | 10930 | break; |
| 10931 | case ISD::SRL: |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10932 | if (VT == MVT::v2i64) |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10933 | return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10934 | DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32), |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10935 | ValOp, BaseShAmt); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10936 | if (VT == MVT::v4i32) |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10937 | return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10938 | DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32), |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10939 | ValOp, BaseShAmt); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10940 | if (VT == MVT::v8i16) |
Chris Lattner | 47b4ce8 | 2009-03-11 05:48:52 +0000 | [diff] [blame] | 10941 | return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT, |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 10942 | DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32), |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10943 | ValOp, BaseShAmt); |
Nate Begeman | c2fd67f | 2009-01-26 03:15:31 +0000 | [diff] [blame] | 10944 | break; |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 10945 | } |
| 10946 | return SDValue(); |
| 10947 | } |
| 10948 | |
Evan Cheng | 760d194 | 2010-01-04 21:22:48 +0000 | [diff] [blame] | 10949 | static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG, |
Evan Cheng | 8b1190a | 2010-04-28 01:18:01 +0000 | [diff] [blame] | 10950 | TargetLowering::DAGCombinerInfo &DCI, |
Evan Cheng | 760d194 | 2010-01-04 21:22:48 +0000 | [diff] [blame] | 10951 | const X86Subtarget *Subtarget) { |
Evan Cheng | 39cfeec | 2010-04-28 02:25:18 +0000 | [diff] [blame] | 10952 | if (DCI.isBeforeLegalizeOps()) |
Evan Cheng | 8b1190a | 2010-04-28 01:18:01 +0000 | [diff] [blame] | 10953 | return SDValue(); |
| 10954 | |
Evan Cheng | 760d194 | 2010-01-04 21:22:48 +0000 | [diff] [blame] | 10955 | EVT VT = N->getValueType(0); |
Evan Cheng | 8b1190a | 2010-04-28 01:18:01 +0000 | [diff] [blame] | 10956 | if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64) |
Evan Cheng | 760d194 | 2010-01-04 21:22:48 +0000 | [diff] [blame] | 10957 | return SDValue(); |
| 10958 | |
| 10959 | // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c) |
| 10960 | SDValue N0 = N->getOperand(0); |
| 10961 | SDValue N1 = N->getOperand(1); |
| 10962 | if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL) |
| 10963 | std::swap(N0, N1); |
| 10964 | if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL) |
| 10965 | return SDValue(); |
Evan Cheng | 8b1190a | 2010-04-28 01:18:01 +0000 | [diff] [blame] | 10966 | if (!N0.hasOneUse() || !N1.hasOneUse()) |
| 10967 | return SDValue(); |
Evan Cheng | 760d194 | 2010-01-04 21:22:48 +0000 | [diff] [blame] | 10968 | |
| 10969 | SDValue ShAmt0 = N0.getOperand(1); |
| 10970 | if (ShAmt0.getValueType() != MVT::i8) |
| 10971 | return SDValue(); |
| 10972 | SDValue ShAmt1 = N1.getOperand(1); |
| 10973 | if (ShAmt1.getValueType() != MVT::i8) |
| 10974 | return SDValue(); |
| 10975 | if (ShAmt0.getOpcode() == ISD::TRUNCATE) |
| 10976 | ShAmt0 = ShAmt0.getOperand(0); |
| 10977 | if (ShAmt1.getOpcode() == ISD::TRUNCATE) |
| 10978 | ShAmt1 = ShAmt1.getOperand(0); |
| 10979 | |
| 10980 | DebugLoc DL = N->getDebugLoc(); |
| 10981 | unsigned Opc = X86ISD::SHLD; |
| 10982 | SDValue Op0 = N0.getOperand(0); |
| 10983 | SDValue Op1 = N1.getOperand(0); |
| 10984 | if (ShAmt0.getOpcode() == ISD::SUB) { |
| 10985 | Opc = X86ISD::SHRD; |
| 10986 | std::swap(Op0, Op1); |
| 10987 | std::swap(ShAmt0, ShAmt1); |
| 10988 | } |
| 10989 | |
Evan Cheng | 8b1190a | 2010-04-28 01:18:01 +0000 | [diff] [blame] | 10990 | unsigned Bits = VT.getSizeInBits(); |
Evan Cheng | 760d194 | 2010-01-04 21:22:48 +0000 | [diff] [blame] | 10991 | if (ShAmt1.getOpcode() == ISD::SUB) { |
| 10992 | SDValue Sum = ShAmt1.getOperand(0); |
| 10993 | if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) { |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 10994 | SDValue ShAmt1Op1 = ShAmt1.getOperand(1); |
| 10995 | if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE) |
| 10996 | ShAmt1Op1 = ShAmt1Op1.getOperand(0); |
| 10997 | if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0) |
Evan Cheng | 760d194 | 2010-01-04 21:22:48 +0000 | [diff] [blame] | 10998 | return DAG.getNode(Opc, DL, VT, |
| 10999 | Op0, Op1, |
| 11000 | DAG.getNode(ISD::TRUNCATE, DL, |
| 11001 | MVT::i8, ShAmt0)); |
| 11002 | } |
| 11003 | } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) { |
| 11004 | ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0); |
| 11005 | if (ShAmt0C && |
Evan Cheng | 8b1190a | 2010-04-28 01:18:01 +0000 | [diff] [blame] | 11006 | ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits) |
Evan Cheng | 760d194 | 2010-01-04 21:22:48 +0000 | [diff] [blame] | 11007 | return DAG.getNode(Opc, DL, VT, |
| 11008 | N0.getOperand(0), N1.getOperand(0), |
| 11009 | DAG.getNode(ISD::TRUNCATE, DL, |
| 11010 | MVT::i8, ShAmt0)); |
| 11011 | } |
| 11012 | |
| 11013 | return SDValue(); |
| 11014 | } |
| 11015 | |
Chris Lattner | 149a4e5 | 2008-02-22 02:09:43 +0000 | [diff] [blame] | 11016 | /// PerformSTORECombine - Do target-specific dag combines on STORE nodes. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11017 | static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG, |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11018 | const X86Subtarget *Subtarget) { |
Chris Lattner | 149a4e5 | 2008-02-22 02:09:43 +0000 | [diff] [blame] | 11019 | // Turn load->store of MMX types into GPR load/stores. This avoids clobbering |
| 11020 | // the FP state in cases where an emms may be missing. |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11021 | // A preferable solution to the general problem is to figure out the right |
| 11022 | // places to insert EMMS. This qualifies as a quick hack. |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11023 | |
| 11024 | // 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] | 11025 | StoreSDNode *St = cast<StoreSDNode>(N); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 11026 | EVT VT = St->getValue().getValueType(); |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11027 | if (VT.getSizeInBits() != 64) |
| 11028 | return SDValue(); |
| 11029 | |
Devang Patel | 578efa9 | 2009-06-05 21:57:13 +0000 | [diff] [blame] | 11030 | const Function *F = DAG.getMachineFunction().getFunction(); |
| 11031 | bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 11032 | bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps |
Devang Patel | 578efa9 | 2009-06-05 21:57:13 +0000 | [diff] [blame] | 11033 | && Subtarget->hasSSE2(); |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11034 | if ((VT.isVector() || |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11035 | (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) && |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11036 | isa<LoadSDNode>(St->getValue()) && |
| 11037 | !cast<LoadSDNode>(St->getValue())->isVolatile() && |
| 11038 | St->getChain().hasOneUse() && !St->isVolatile()) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 11039 | SDNode* LdVal = St->getValue().getNode(); |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11040 | LoadSDNode *Ld = 0; |
| 11041 | int TokenFactorIndex = -1; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11042 | SmallVector<SDValue, 8> Ops; |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 11043 | SDNode* ChainVal = St->getChain().getNode(); |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11044 | // Must be a store of a load. We currently handle two cases: the load |
| 11045 | // is a direct child, and it's under an intervening TokenFactor. It is |
| 11046 | // possible to dig deeper under nested TokenFactors. |
Dale Johannesen | 14e2ea9 | 2008-02-25 22:29:22 +0000 | [diff] [blame] | 11047 | if (ChainVal == LdVal) |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11048 | Ld = cast<LoadSDNode>(St->getChain()); |
| 11049 | else if (St->getValue().hasOneUse() && |
| 11050 | ChainVal->getOpcode() == ISD::TokenFactor) { |
| 11051 | for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 11052 | if (ChainVal->getOperand(i).getNode() == LdVal) { |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11053 | TokenFactorIndex = i; |
| 11054 | Ld = cast<LoadSDNode>(St->getValue()); |
| 11055 | } else |
| 11056 | Ops.push_back(ChainVal->getOperand(i)); |
| 11057 | } |
| 11058 | } |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11059 | |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11060 | if (!Ld || !ISD::isNormalLoad(Ld)) |
| 11061 | return SDValue(); |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11062 | |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11063 | // If this is not the MMX case, i.e. we are just turning i64 load/store |
| 11064 | // into f64 load/store, avoid the transformation if there are multiple |
| 11065 | // uses of the loaded value. |
| 11066 | if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0)) |
| 11067 | return SDValue(); |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11068 | |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11069 | DebugLoc LdDL = Ld->getDebugLoc(); |
| 11070 | DebugLoc StDL = N->getDebugLoc(); |
| 11071 | // If we are a 64-bit capable x86, lower to a single movq load/store pair. |
| 11072 | // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store |
| 11073 | // pair instead. |
| 11074 | if (Subtarget->is64Bit() || F64IsLegal) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11075 | EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64; |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 11076 | SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(), |
| 11077 | Ld->getPointerInfo(), Ld->isVolatile(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 11078 | Ld->isNonTemporal(), Ld->getAlignment()); |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11079 | SDValue NewChain = NewLd.getValue(1); |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11080 | if (TokenFactorIndex != -1) { |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11081 | Ops.push_back(NewChain); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11082 | NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0], |
Dale Johannesen | 079f2a6 | 2008-02-25 19:20:14 +0000 | [diff] [blame] | 11083 | Ops.size()); |
| 11084 | } |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11085 | return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(), |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 11086 | St->getPointerInfo(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 11087 | St->isVolatile(), St->isNonTemporal(), |
| 11088 | St->getAlignment()); |
Chris Lattner | 149a4e5 | 2008-02-22 02:09:43 +0000 | [diff] [blame] | 11089 | } |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11090 | |
| 11091 | // Otherwise, lower to two pairs of 32-bit loads / stores. |
| 11092 | SDValue LoAddr = Ld->getBasePtr(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11093 | SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr, |
| 11094 | DAG.getConstant(4, MVT::i32)); |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11095 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11096 | SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr, |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 11097 | Ld->getPointerInfo(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 11098 | Ld->isVolatile(), Ld->isNonTemporal(), |
| 11099 | Ld->getAlignment()); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11100 | SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr, |
Chris Lattner | 51abfe4 | 2010-09-21 06:02:19 +0000 | [diff] [blame] | 11101 | Ld->getPointerInfo().getWithOffset(4), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 11102 | Ld->isVolatile(), Ld->isNonTemporal(), |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11103 | MinAlign(Ld->getAlignment(), 4)); |
| 11104 | |
| 11105 | SDValue NewChain = LoLd.getValue(1); |
| 11106 | if (TokenFactorIndex != -1) { |
| 11107 | Ops.push_back(LoLd); |
| 11108 | Ops.push_back(HiLd); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11109 | NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0], |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11110 | Ops.size()); |
| 11111 | } |
| 11112 | |
| 11113 | LoAddr = St->getBasePtr(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11114 | HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr, |
| 11115 | DAG.getConstant(4, MVT::i32)); |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11116 | |
| 11117 | SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr, |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 11118 | St->getPointerInfo(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 11119 | St->isVolatile(), St->isNonTemporal(), |
| 11120 | St->getAlignment()); |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11121 | SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr, |
Chris Lattner | 8026a9d | 2010-09-21 17:50:43 +0000 | [diff] [blame] | 11122 | St->getPointerInfo().getWithOffset(4), |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11123 | St->isVolatile(), |
David Greene | 67c9d42 | 2010-02-15 16:53:33 +0000 | [diff] [blame] | 11124 | St->isNonTemporal(), |
Evan Cheng | 536e667 | 2009-03-12 05:59:15 +0000 | [diff] [blame] | 11125 | MinAlign(St->getAlignment(), 4)); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11126 | return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt); |
Chris Lattner | 149a4e5 | 2008-02-22 02:09:43 +0000 | [diff] [blame] | 11127 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11128 | return SDValue(); |
Chris Lattner | 149a4e5 | 2008-02-22 02:09:43 +0000 | [diff] [blame] | 11129 | } |
| 11130 | |
Chris Lattner | 6cf7326 | 2008-01-25 06:14:17 +0000 | [diff] [blame] | 11131 | /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and |
| 11132 | /// X86ISD::FXOR nodes. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11133 | static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) { |
Chris Lattner | 6cf7326 | 2008-01-25 06:14:17 +0000 | [diff] [blame] | 11134 | assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR); |
| 11135 | // F[X]OR(0.0, x) -> x |
| 11136 | // F[X]OR(x, 0.0) -> x |
Chris Lattner | af723b9 | 2008-01-25 05:46:26 +0000 | [diff] [blame] | 11137 | if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0))) |
| 11138 | if (C->getValueAPF().isPosZero()) |
| 11139 | return N->getOperand(1); |
| 11140 | if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1))) |
| 11141 | if (C->getValueAPF().isPosZero()) |
| 11142 | return N->getOperand(0); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11143 | return SDValue(); |
Chris Lattner | af723b9 | 2008-01-25 05:46:26 +0000 | [diff] [blame] | 11144 | } |
| 11145 | |
| 11146 | /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11147 | static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) { |
Chris Lattner | af723b9 | 2008-01-25 05:46:26 +0000 | [diff] [blame] | 11148 | // FAND(0.0, x) -> 0.0 |
| 11149 | // FAND(x, 0.0) -> 0.0 |
| 11150 | if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0))) |
| 11151 | if (C->getValueAPF().isPosZero()) |
| 11152 | return N->getOperand(0); |
| 11153 | if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1))) |
| 11154 | if (C->getValueAPF().isPosZero()) |
| 11155 | return N->getOperand(1); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11156 | return SDValue(); |
Chris Lattner | af723b9 | 2008-01-25 05:46:26 +0000 | [diff] [blame] | 11157 | } |
| 11158 | |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 11159 | static SDValue PerformBTCombine(SDNode *N, |
| 11160 | SelectionDAG &DAG, |
| 11161 | TargetLowering::DAGCombinerInfo &DCI) { |
| 11162 | // BT ignores high bits in the bit index operand. |
| 11163 | SDValue Op1 = N->getOperand(1); |
| 11164 | if (Op1.hasOneUse()) { |
| 11165 | unsigned BitWidth = Op1.getValueSizeInBits(); |
| 11166 | APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth)); |
| 11167 | APInt KnownZero, KnownOne; |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 11168 | TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(), |
| 11169 | !DCI.isBeforeLegalizeOps()); |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 11170 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 11171 | if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) || |
| 11172 | TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO)) |
| 11173 | DCI.CommitTargetLoweringOpt(TLO); |
| 11174 | } |
| 11175 | return SDValue(); |
| 11176 | } |
Chris Lattner | 83e6c99 | 2006-10-04 06:57:07 +0000 | [diff] [blame] | 11177 | |
Eli Friedman | 7a5e555 | 2009-06-07 06:52:44 +0000 | [diff] [blame] | 11178 | static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) { |
| 11179 | SDValue Op = N->getOperand(0); |
| 11180 | if (Op.getOpcode() == ISD::BIT_CONVERT) |
| 11181 | Op = Op.getOperand(0); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 11182 | EVT VT = N->getValueType(0), OpVT = Op.getValueType(); |
Eli Friedman | 7a5e555 | 2009-06-07 06:52:44 +0000 | [diff] [blame] | 11183 | if (Op.getOpcode() == X86ISD::VZEXT_LOAD && |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 11184 | VT.getVectorElementType().getSizeInBits() == |
Eli Friedman | 7a5e555 | 2009-06-07 06:52:44 +0000 | [diff] [blame] | 11185 | OpVT.getVectorElementType().getSizeInBits()) { |
| 11186 | return DAG.getNode(ISD::BIT_CONVERT, N->getDebugLoc(), VT, Op); |
| 11187 | } |
| 11188 | return SDValue(); |
| 11189 | } |
| 11190 | |
Evan Cheng | 2e489c4 | 2009-12-16 00:53:11 +0000 | [diff] [blame] | 11191 | static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) { |
| 11192 | // (i32 zext (and (i8 x86isd::setcc_carry), 1)) -> |
| 11193 | // (and (i32 x86isd::setcc_carry), 1) |
| 11194 | // This eliminates the zext. This transformation is necessary because |
| 11195 | // ISD::SETCC is always legalized to i8. |
| 11196 | DebugLoc dl = N->getDebugLoc(); |
| 11197 | SDValue N0 = N->getOperand(0); |
| 11198 | EVT VT = N->getValueType(0); |
| 11199 | if (N0.getOpcode() == ISD::AND && |
| 11200 | N0.hasOneUse() && |
| 11201 | N0.getOperand(0).hasOneUse()) { |
| 11202 | SDValue N00 = N0.getOperand(0); |
| 11203 | if (N00.getOpcode() != X86ISD::SETCC_CARRY) |
| 11204 | return SDValue(); |
| 11205 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1)); |
| 11206 | if (!C || C->getZExtValue() != 1) |
| 11207 | return SDValue(); |
| 11208 | return DAG.getNode(ISD::AND, dl, VT, |
| 11209 | DAG.getNode(X86ISD::SETCC_CARRY, dl, VT, |
| 11210 | N00.getOperand(0), N00.getOperand(1)), |
| 11211 | DAG.getConstant(1, VT)); |
| 11212 | } |
| 11213 | |
| 11214 | return SDValue(); |
| 11215 | } |
| 11216 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11217 | SDValue X86TargetLowering::PerformDAGCombine(SDNode *N, |
Evan Cheng | 9dd93b3 | 2008-11-05 06:03:38 +0000 | [diff] [blame] | 11218 | DAGCombinerInfo &DCI) const { |
Evan Cheng | 206ee9d | 2006-07-07 08:33:52 +0000 | [diff] [blame] | 11219 | SelectionDAG &DAG = DCI.DAG; |
| 11220 | switch (N->getOpcode()) { |
| 11221 | default: break; |
Dan Gohman | 1bbf72b | 2010-03-15 23:23:03 +0000 | [diff] [blame] | 11222 | case ISD::EXTRACT_VECTOR_ELT: |
| 11223 | return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this); |
Chris Lattner | af723b9 | 2008-01-25 05:46:26 +0000 | [diff] [blame] | 11224 | case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget); |
Chris Lattner | d1980a5 | 2009-03-12 06:52:53 +0000 | [diff] [blame] | 11225 | case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI); |
Evan Cheng | 0b0cd91 | 2009-03-28 05:57:29 +0000 | [diff] [blame] | 11226 | case ISD::MUL: return PerformMulCombine(N, DAG, DCI); |
Nate Begeman | 740ab03 | 2009-01-26 00:52:55 +0000 | [diff] [blame] | 11227 | case ISD::SHL: |
| 11228 | case ISD::SRA: |
| 11229 | case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget); |
Evan Cheng | 8b1190a | 2010-04-28 01:18:01 +0000 | [diff] [blame] | 11230 | case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget); |
Evan Cheng | 7e2ff77 | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 11231 | case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget); |
Chris Lattner | 6cf7326 | 2008-01-25 06:14:17 +0000 | [diff] [blame] | 11232 | case X86ISD::FXOR: |
Chris Lattner | af723b9 | 2008-01-25 05:46:26 +0000 | [diff] [blame] | 11233 | case X86ISD::FOR: return PerformFORCombine(N, DAG); |
| 11234 | case X86ISD::FAND: return PerformFANDCombine(N, DAG); |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 11235 | case X86ISD::BT: return PerformBTCombine(N, DAG, DCI); |
Eli Friedman | 7a5e555 | 2009-06-07 06:52:44 +0000 | [diff] [blame] | 11236 | case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG); |
Evan Cheng | 2e489c4 | 2009-12-16 00:53:11 +0000 | [diff] [blame] | 11237 | case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG); |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 11238 | case X86ISD::SHUFPS: // Handle all target specific shuffles |
| 11239 | case X86ISD::SHUFPD: |
Bruno Cardoso Lopes | aace0f2 | 2010-09-04 02:36:07 +0000 | [diff] [blame] | 11240 | case X86ISD::PALIGN: |
Bruno Cardoso Lopes | e8f279c | 2010-09-03 22:09:41 +0000 | [diff] [blame] | 11241 | case X86ISD::PUNPCKHBW: |
| 11242 | case X86ISD::PUNPCKHWD: |
| 11243 | case X86ISD::PUNPCKHDQ: |
| 11244 | case X86ISD::PUNPCKHQDQ: |
| 11245 | case X86ISD::UNPCKHPS: |
| 11246 | case X86ISD::UNPCKHPD: |
| 11247 | case X86ISD::PUNPCKLBW: |
| 11248 | case X86ISD::PUNPCKLWD: |
| 11249 | case X86ISD::PUNPCKLDQ: |
| 11250 | case X86ISD::PUNPCKLQDQ: |
| 11251 | case X86ISD::UNPCKLPS: |
| 11252 | case X86ISD::UNPCKLPD: |
| 11253 | case X86ISD::MOVHLPS: |
| 11254 | case X86ISD::MOVLHPS: |
| 11255 | case X86ISD::PSHUFD: |
| 11256 | case X86ISD::PSHUFHW: |
| 11257 | case X86ISD::PSHUFLW: |
| 11258 | case X86ISD::MOVSS: |
| 11259 | case X86ISD::MOVSD: |
| 11260 | case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this); |
Evan Cheng | 206ee9d | 2006-07-07 08:33:52 +0000 | [diff] [blame] | 11261 | } |
| 11262 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11263 | return SDValue(); |
Evan Cheng | 206ee9d | 2006-07-07 08:33:52 +0000 | [diff] [blame] | 11264 | } |
| 11265 | |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 11266 | /// isTypeDesirableForOp - Return true if the target has native support for |
| 11267 | /// the specified value type and it is 'desirable' to use the type for the |
| 11268 | /// given node type. e.g. On x86 i16 is legal, but undesirable since i16 |
| 11269 | /// instruction encodings are longer and some i16 instructions are slow. |
| 11270 | bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const { |
| 11271 | if (!isTypeLegal(VT)) |
| 11272 | return false; |
Evan Cheng | 2bce5f4b | 2010-04-28 08:30:49 +0000 | [diff] [blame] | 11273 | if (VT != MVT::i16) |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 11274 | return true; |
| 11275 | |
| 11276 | switch (Opc) { |
| 11277 | default: |
| 11278 | return true; |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 11279 | case ISD::LOAD: |
| 11280 | case ISD::SIGN_EXTEND: |
| 11281 | case ISD::ZERO_EXTEND: |
| 11282 | case ISD::ANY_EXTEND: |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 11283 | case ISD::SHL: |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 11284 | case ISD::SRL: |
| 11285 | case ISD::SUB: |
| 11286 | case ISD::ADD: |
| 11287 | case ISD::MUL: |
| 11288 | case ISD::AND: |
| 11289 | case ISD::OR: |
| 11290 | case ISD::XOR: |
| 11291 | return false; |
| 11292 | } |
| 11293 | } |
| 11294 | |
| 11295 | /// IsDesirableToPromoteOp - This method query the target whether it is |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 11296 | /// beneficial for dag combiner to promote the specified node. If true, it |
| 11297 | /// should return the desired promotion type by reference. |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 11298 | bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const { |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 11299 | EVT VT = Op.getValueType(); |
| 11300 | if (VT != MVT::i16) |
| 11301 | return false; |
| 11302 | |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 11303 | bool Promote = false; |
| 11304 | bool Commute = false; |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 11305 | switch (Op.getOpcode()) { |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 11306 | default: break; |
| 11307 | case ISD::LOAD: { |
| 11308 | LoadSDNode *LD = cast<LoadSDNode>(Op); |
| 11309 | // If the non-extending load has a single use and it's not live out, then it |
| 11310 | // might be folded. |
Evan Cheng | 2bce5f4b | 2010-04-28 08:30:49 +0000 | [diff] [blame] | 11311 | if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&& |
| 11312 | Op.hasOneUse()*/) { |
| 11313 | for (SDNode::use_iterator UI = Op.getNode()->use_begin(), |
| 11314 | UE = Op.getNode()->use_end(); UI != UE; ++UI) { |
| 11315 | // The only case where we'd want to promote LOAD (rather then it being |
| 11316 | // promoted as an operand is when it's only use is liveout. |
| 11317 | if (UI->getOpcode() != ISD::CopyToReg) |
| 11318 | return false; |
| 11319 | } |
| 11320 | } |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 11321 | Promote = true; |
| 11322 | break; |
| 11323 | } |
| 11324 | case ISD::SIGN_EXTEND: |
| 11325 | case ISD::ZERO_EXTEND: |
| 11326 | case ISD::ANY_EXTEND: |
| 11327 | Promote = true; |
| 11328 | break; |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 11329 | case ISD::SHL: |
Evan Cheng | 2bce5f4b | 2010-04-28 08:30:49 +0000 | [diff] [blame] | 11330 | case ISD::SRL: { |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 11331 | SDValue N0 = Op.getOperand(0); |
| 11332 | // Look out for (store (shl (load), x)). |
Evan Cheng | c82c20b | 2010-04-24 04:44:57 +0000 | [diff] [blame] | 11333 | if (MayFoldLoad(N0) && MayFoldIntoStore(Op)) |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 11334 | return false; |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 11335 | Promote = true; |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 11336 | break; |
| 11337 | } |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 11338 | case ISD::ADD: |
| 11339 | case ISD::MUL: |
| 11340 | case ISD::AND: |
| 11341 | case ISD::OR: |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 11342 | case ISD::XOR: |
| 11343 | Commute = true; |
| 11344 | // fallthrough |
| 11345 | case ISD::SUB: { |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 11346 | SDValue N0 = Op.getOperand(0); |
| 11347 | SDValue N1 = Op.getOperand(1); |
Evan Cheng | c82c20b | 2010-04-24 04:44:57 +0000 | [diff] [blame] | 11348 | if (!Commute && MayFoldLoad(N1)) |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 11349 | return false; |
| 11350 | // Avoid disabling potential load folding opportunities. |
Evan Cheng | c82c20b | 2010-04-24 04:44:57 +0000 | [diff] [blame] | 11351 | if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op))) |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 11352 | return false; |
Evan Cheng | c82c20b | 2010-04-24 04:44:57 +0000 | [diff] [blame] | 11353 | if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op))) |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 11354 | return false; |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 11355 | Promote = true; |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 11356 | } |
| 11357 | } |
| 11358 | |
| 11359 | PVT = MVT::i32; |
Evan Cheng | 4c26e93 | 2010-04-19 19:29:22 +0000 | [diff] [blame] | 11360 | return Promote; |
Evan Cheng | 64b7bf7 | 2010-04-16 06:14:10 +0000 | [diff] [blame] | 11361 | } |
| 11362 | |
Evan Cheng | 60c07e1 | 2006-07-05 22:17:51 +0000 | [diff] [blame] | 11363 | //===----------------------------------------------------------------------===// |
| 11364 | // X86 Inline Assembly Support |
| 11365 | //===----------------------------------------------------------------------===// |
| 11366 | |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11367 | static bool LowerToBSwap(CallInst *CI) { |
| 11368 | // FIXME: this should verify that we are targetting a 486 or better. If not, |
| 11369 | // we will turn this bswap into something that will be lowered to logical ops |
| 11370 | // instead of emitting the bswap asm. For now, we don't support 486 or lower |
| 11371 | // so don't worry about this. |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 11372 | |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11373 | // Verify this is a simple bswap. |
Gabor Greif | e1c2b9c | 2010-06-30 13:03:37 +0000 | [diff] [blame] | 11374 | if (CI->getNumArgOperands() != 1 || |
Gabor Greif | 1cfe44a | 2010-06-26 11:51:52 +0000 | [diff] [blame] | 11375 | CI->getType() != CI->getArgOperand(0)->getType() || |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 11376 | !CI->getType()->isIntegerTy()) |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11377 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 11378 | |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11379 | const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType()); |
| 11380 | if (!Ty || Ty->getBitWidth() % 16 != 0) |
| 11381 | return false; |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 11382 | |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11383 | // Okay, we can do this xform, do so now. |
| 11384 | const Type *Tys[] = { Ty }; |
| 11385 | Module *M = CI->getParent()->getParent()->getParent(); |
| 11386 | Constant *Int = Intrinsic::getDeclaration(M, Intrinsic::bswap, Tys, 1); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 11387 | |
Gabor Greif | 1cfe44a | 2010-06-26 11:51:52 +0000 | [diff] [blame] | 11388 | Value *Op = CI->getArgOperand(0); |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11389 | Op = CallInst::Create(Int, Op, CI->getName(), CI); |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 11390 | |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11391 | CI->replaceAllUsesWith(Op); |
| 11392 | CI->eraseFromParent(); |
| 11393 | return true; |
| 11394 | } |
| 11395 | |
| 11396 | bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const { |
| 11397 | InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue()); |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11398 | InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints(); |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11399 | |
| 11400 | std::string AsmStr = IA->getAsmString(); |
| 11401 | |
| 11402 | // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a" |
Benjamin Kramer | d4f1959 | 2010-01-11 18:03:24 +0000 | [diff] [blame] | 11403 | SmallVector<StringRef, 4> AsmPieces; |
Peter Collingbourne | 9836118 | 2010-11-13 19:54:23 +0000 | [diff] [blame] | 11404 | SplitString(AsmStr, AsmPieces, ";\n"); |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11405 | |
| 11406 | switch (AsmPieces.size()) { |
| 11407 | default: return false; |
| 11408 | case 1: |
| 11409 | AsmStr = AsmPieces[0]; |
| 11410 | AsmPieces.clear(); |
| 11411 | SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace. |
| 11412 | |
| 11413 | // bswap $0 |
| 11414 | if (AsmPieces.size() == 2 && |
| 11415 | (AsmPieces[0] == "bswap" || |
| 11416 | AsmPieces[0] == "bswapq" || |
| 11417 | AsmPieces[0] == "bswapl") && |
| 11418 | (AsmPieces[1] == "$0" || |
| 11419 | AsmPieces[1] == "${0:q}")) { |
| 11420 | // No need to check constraints, nothing other than the equivalent of |
| 11421 | // "=r,0" would be valid here. |
| 11422 | return LowerToBSwap(CI); |
| 11423 | } |
| 11424 | // rorw $$8, ${0:w} --> llvm.bswap.i16 |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 11425 | if (CI->getType()->isIntegerTy(16) && |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11426 | AsmPieces.size() == 3 && |
Dan Gohman | 0ef701e | 2010-03-04 19:58:08 +0000 | [diff] [blame] | 11427 | (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") && |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11428 | AsmPieces[1] == "$$8," && |
| 11429 | AsmPieces[2] == "${0:w}" && |
Dan Gohman | 0ef701e | 2010-03-04 19:58:08 +0000 | [diff] [blame] | 11430 | IA->getConstraintString().compare(0, 5, "=r,0,") == 0) { |
| 11431 | AsmPieces.clear(); |
Benjamin Kramer | 018cbd5 | 2010-03-12 13:54:59 +0000 | [diff] [blame] | 11432 | const std::string &Constraints = IA->getConstraintString(); |
| 11433 | SplitString(StringRef(Constraints).substr(5), AsmPieces, ","); |
Dan Gohman | 0ef701e | 2010-03-04 19:58:08 +0000 | [diff] [blame] | 11434 | std::sort(AsmPieces.begin(), AsmPieces.end()); |
| 11435 | if (AsmPieces.size() == 4 && |
| 11436 | AsmPieces[0] == "~{cc}" && |
| 11437 | AsmPieces[1] == "~{dirflag}" && |
| 11438 | AsmPieces[2] == "~{flags}" && |
| 11439 | AsmPieces[3] == "~{fpsr}") { |
| 11440 | return LowerToBSwap(CI); |
| 11441 | } |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11442 | } |
| 11443 | break; |
| 11444 | case 3: |
Peter Collingbourne | 948cf02 | 2010-11-13 19:54:30 +0000 | [diff] [blame] | 11445 | if (CI->getType()->isIntegerTy(32) && |
| 11446 | IA->getConstraintString().compare(0, 5, "=r,0,") == 0) { |
| 11447 | SmallVector<StringRef, 4> Words; |
| 11448 | SplitString(AsmPieces[0], Words, " \t,"); |
| 11449 | if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" && |
| 11450 | Words[2] == "${0:w}") { |
| 11451 | Words.clear(); |
| 11452 | SplitString(AsmPieces[1], Words, " \t,"); |
| 11453 | if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" && |
| 11454 | Words[2] == "$0") { |
| 11455 | Words.clear(); |
| 11456 | SplitString(AsmPieces[2], Words, " \t,"); |
| 11457 | if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" && |
| 11458 | Words[2] == "${0:w}") { |
| 11459 | AsmPieces.clear(); |
| 11460 | const std::string &Constraints = IA->getConstraintString(); |
| 11461 | SplitString(StringRef(Constraints).substr(5), AsmPieces, ","); |
| 11462 | std::sort(AsmPieces.begin(), AsmPieces.end()); |
| 11463 | if (AsmPieces.size() == 4 && |
| 11464 | AsmPieces[0] == "~{cc}" && |
| 11465 | AsmPieces[1] == "~{dirflag}" && |
| 11466 | AsmPieces[2] == "~{flags}" && |
| 11467 | AsmPieces[3] == "~{fpsr}") { |
| 11468 | return LowerToBSwap(CI); |
| 11469 | } |
| 11470 | } |
| 11471 | } |
| 11472 | } |
| 11473 | } |
Duncan Sands | b0bc6c3 | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 11474 | if (CI->getType()->isIntegerTy(64) && |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 11475 | Constraints.size() >= 2 && |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11476 | Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" && |
| 11477 | Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") { |
| 11478 | // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64 |
Benjamin Kramer | d4f1959 | 2010-01-11 18:03:24 +0000 | [diff] [blame] | 11479 | SmallVector<StringRef, 4> Words; |
Chris Lattner | b810565 | 2009-07-20 17:51:36 +0000 | [diff] [blame] | 11480 | SplitString(AsmPieces[0], Words, " \t"); |
| 11481 | if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") { |
| 11482 | Words.clear(); |
| 11483 | SplitString(AsmPieces[1], Words, " \t"); |
| 11484 | if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") { |
| 11485 | Words.clear(); |
| 11486 | SplitString(AsmPieces[2], Words, " \t,"); |
| 11487 | if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" && |
| 11488 | Words[2] == "%edx") { |
| 11489 | return LowerToBSwap(CI); |
| 11490 | } |
| 11491 | } |
| 11492 | } |
| 11493 | } |
| 11494 | break; |
| 11495 | } |
| 11496 | return false; |
| 11497 | } |
| 11498 | |
| 11499 | |
| 11500 | |
Chris Lattner | f4dff84 | 2006-07-11 02:54:03 +0000 | [diff] [blame] | 11501 | /// getConstraintType - Given a constraint letter, return the type of |
| 11502 | /// constraint it is for this target. |
| 11503 | X86TargetLowering::ConstraintType |
Chris Lattner | 4234f57 | 2007-03-25 02:14:49 +0000 | [diff] [blame] | 11504 | X86TargetLowering::getConstraintType(const std::string &Constraint) const { |
| 11505 | if (Constraint.size() == 1) { |
| 11506 | switch (Constraint[0]) { |
Chris Lattner | 4234f57 | 2007-03-25 02:14:49 +0000 | [diff] [blame] | 11507 | case 'R': |
Chris Lattner | 4234f57 | 2007-03-25 02:14:49 +0000 | [diff] [blame] | 11508 | case 'q': |
| 11509 | case 'Q': |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11510 | case 'f': |
| 11511 | case 't': |
| 11512 | case 'u': |
Dale Johannesen | 2ffbcac | 2008-04-01 00:57:48 +0000 | [diff] [blame] | 11513 | case 'y': |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11514 | case 'x': |
Chris Lattner | 4234f57 | 2007-03-25 02:14:49 +0000 | [diff] [blame] | 11515 | case 'Y': |
| 11516 | return C_RegisterClass; |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11517 | case 'a': |
| 11518 | case 'b': |
| 11519 | case 'c': |
| 11520 | case 'd': |
| 11521 | case 'S': |
| 11522 | case 'D': |
| 11523 | case 'A': |
| 11524 | return C_Register; |
| 11525 | case 'I': |
| 11526 | case 'J': |
| 11527 | case 'K': |
| 11528 | case 'L': |
| 11529 | case 'M': |
| 11530 | case 'N': |
| 11531 | case 'G': |
| 11532 | case 'C': |
Dale Johannesen | 78e3e52 | 2009-02-12 20:58:09 +0000 | [diff] [blame] | 11533 | case 'e': |
| 11534 | case 'Z': |
| 11535 | return C_Other; |
Chris Lattner | 4234f57 | 2007-03-25 02:14:49 +0000 | [diff] [blame] | 11536 | default: |
| 11537 | break; |
| 11538 | } |
Chris Lattner | f4dff84 | 2006-07-11 02:54:03 +0000 | [diff] [blame] | 11539 | } |
Chris Lattner | 4234f57 | 2007-03-25 02:14:49 +0000 | [diff] [blame] | 11540 | return TargetLowering::getConstraintType(Constraint); |
Chris Lattner | f4dff84 | 2006-07-11 02:54:03 +0000 | [diff] [blame] | 11541 | } |
| 11542 | |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11543 | /// Examine constraint type and operand type and determine a weight value. |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 11544 | /// This object must already have been set up with the operand type |
| 11545 | /// and the current alternative constraint selected. |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11546 | TargetLowering::ConstraintWeight |
| 11547 | X86TargetLowering::getSingleConstraintMatchWeight( |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 11548 | AsmOperandInfo &info, const char *constraint) const { |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11549 | ConstraintWeight weight = CW_Invalid; |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 11550 | Value *CallOperandVal = info.CallOperandVal; |
| 11551 | // If we don't have a value, we can't do a match, |
| 11552 | // but allow it at the lowest weight. |
| 11553 | if (CallOperandVal == NULL) |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11554 | return CW_Default; |
| 11555 | const Type *type = CallOperandVal->getType(); |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 11556 | // Look at the constraint type. |
| 11557 | switch (*constraint) { |
| 11558 | default: |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11559 | weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint); |
| 11560 | case 'R': |
| 11561 | case 'q': |
| 11562 | case 'Q': |
| 11563 | case 'a': |
| 11564 | case 'b': |
| 11565 | case 'c': |
| 11566 | case 'd': |
| 11567 | case 'S': |
| 11568 | case 'D': |
| 11569 | case 'A': |
| 11570 | if (CallOperandVal->getType()->isIntegerTy()) |
| 11571 | weight = CW_SpecificReg; |
| 11572 | break; |
| 11573 | case 'f': |
| 11574 | case 't': |
| 11575 | case 'u': |
| 11576 | if (type->isFloatingPointTy()) |
| 11577 | weight = CW_SpecificReg; |
| 11578 | break; |
| 11579 | case 'y': |
| 11580 | if (type->isX86_MMXTy() && !DisableMMX && Subtarget->hasMMX()) |
| 11581 | weight = CW_SpecificReg; |
| 11582 | break; |
| 11583 | case 'x': |
| 11584 | case 'Y': |
| 11585 | if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) |
| 11586 | weight = CW_Register; |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 11587 | break; |
| 11588 | case 'I': |
| 11589 | if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) { |
| 11590 | if (C->getZExtValue() <= 31) |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11591 | weight = CW_Constant; |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 11592 | } |
| 11593 | break; |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 11594 | case 'J': |
| 11595 | if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) { |
| 11596 | if (C->getZExtValue() <= 63) |
| 11597 | weight = CW_Constant; |
| 11598 | } |
| 11599 | break; |
| 11600 | case 'K': |
| 11601 | if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) { |
| 11602 | if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f)) |
| 11603 | weight = CW_Constant; |
| 11604 | } |
| 11605 | break; |
| 11606 | case 'L': |
| 11607 | if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) { |
| 11608 | if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff)) |
| 11609 | weight = CW_Constant; |
| 11610 | } |
| 11611 | break; |
| 11612 | case 'M': |
| 11613 | if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) { |
| 11614 | if (C->getZExtValue() <= 3) |
| 11615 | weight = CW_Constant; |
| 11616 | } |
| 11617 | break; |
| 11618 | case 'N': |
| 11619 | if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) { |
| 11620 | if (C->getZExtValue() <= 0xff) |
| 11621 | weight = CW_Constant; |
| 11622 | } |
| 11623 | break; |
| 11624 | case 'G': |
| 11625 | case 'C': |
| 11626 | if (dyn_cast<ConstantFP>(CallOperandVal)) { |
| 11627 | weight = CW_Constant; |
| 11628 | } |
| 11629 | break; |
| 11630 | case 'e': |
| 11631 | if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) { |
| 11632 | if ((C->getSExtValue() >= -0x80000000LL) && |
| 11633 | (C->getSExtValue() <= 0x7fffffffLL)) |
| 11634 | weight = CW_Constant; |
| 11635 | } |
| 11636 | break; |
| 11637 | case 'Z': |
| 11638 | if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) { |
| 11639 | if (C->getZExtValue() <= 0xffffffff) |
| 11640 | weight = CW_Constant; |
| 11641 | } |
| 11642 | break; |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 11643 | } |
| 11644 | return weight; |
| 11645 | } |
| 11646 | |
Dale Johannesen | ba2a0b9 | 2008-01-29 02:21:21 +0000 | [diff] [blame] | 11647 | /// LowerXConstraint - try to replace an X constraint, which matches anything, |
| 11648 | /// with another that has more specific requirements based on the type of the |
| 11649 | /// corresponding operand. |
Chris Lattner | 5e76423 | 2008-04-26 23:02:14 +0000 | [diff] [blame] | 11650 | const char *X86TargetLowering:: |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 11651 | LowerXConstraint(EVT ConstraintVT) const { |
Chris Lattner | 5e76423 | 2008-04-26 23:02:14 +0000 | [diff] [blame] | 11652 | // FP X constraints get lowered to SSE1/2 registers if available, otherwise |
| 11653 | // 'f' like normal targets. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 11654 | if (ConstraintVT.isFloatingPoint()) { |
Dale Johannesen | ba2a0b9 | 2008-01-29 02:21:21 +0000 | [diff] [blame] | 11655 | if (Subtarget->hasSSE2()) |
Chris Lattner | 5e76423 | 2008-04-26 23:02:14 +0000 | [diff] [blame] | 11656 | return "Y"; |
| 11657 | if (Subtarget->hasSSE1()) |
| 11658 | return "x"; |
| 11659 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 11660 | |
Chris Lattner | 5e76423 | 2008-04-26 23:02:14 +0000 | [diff] [blame] | 11661 | return TargetLowering::LowerXConstraint(ConstraintVT); |
Dale Johannesen | ba2a0b9 | 2008-01-29 02:21:21 +0000 | [diff] [blame] | 11662 | } |
| 11663 | |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 11664 | /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops |
| 11665 | /// vector. If it is invalid, don't add anything to Ops. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11666 | void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op, |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 11667 | char Constraint, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11668 | std::vector<SDValue>&Ops, |
Chris Lattner | 5e76423 | 2008-04-26 23:02:14 +0000 | [diff] [blame] | 11669 | SelectionDAG &DAG) const { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 11670 | SDValue Result(0, 0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 11671 | |
Chris Lattner | 22aaf1d | 2006-10-31 20:13:11 +0000 | [diff] [blame] | 11672 | switch (Constraint) { |
| 11673 | default: break; |
Devang Patel | 84f7fd2 | 2007-03-17 00:13:28 +0000 | [diff] [blame] | 11674 | case 'I': |
Chris Lattner | 188b9fe | 2007-03-25 01:57:35 +0000 | [diff] [blame] | 11675 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 11676 | if (C->getZExtValue() <= 31) { |
| 11677 | Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType()); |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 11678 | break; |
| 11679 | } |
Devang Patel | 84f7fd2 | 2007-03-17 00:13:28 +0000 | [diff] [blame] | 11680 | } |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 11681 | return; |
Evan Cheng | 364091e | 2008-09-22 23:57:37 +0000 | [diff] [blame] | 11682 | case 'J': |
| 11683 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) { |
Chris Lattner | 2e06dd2 | 2009-06-15 04:39:05 +0000 | [diff] [blame] | 11684 | if (C->getZExtValue() <= 63) { |
Chris Lattner | e493515 | 2009-06-15 04:01:39 +0000 | [diff] [blame] | 11685 | Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType()); |
| 11686 | break; |
| 11687 | } |
| 11688 | } |
| 11689 | return; |
| 11690 | case 'K': |
| 11691 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) { |
Chris Lattner | 2e06dd2 | 2009-06-15 04:39:05 +0000 | [diff] [blame] | 11692 | if ((int8_t)C->getSExtValue() == C->getSExtValue()) { |
Evan Cheng | 364091e | 2008-09-22 23:57:37 +0000 | [diff] [blame] | 11693 | Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType()); |
| 11694 | break; |
| 11695 | } |
| 11696 | } |
| 11697 | return; |
Chris Lattner | 188b9fe | 2007-03-25 01:57:35 +0000 | [diff] [blame] | 11698 | case 'N': |
| 11699 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 11700 | if (C->getZExtValue() <= 255) { |
| 11701 | Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType()); |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 11702 | break; |
| 11703 | } |
Chris Lattner | 188b9fe | 2007-03-25 01:57:35 +0000 | [diff] [blame] | 11704 | } |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 11705 | return; |
Dale Johannesen | 78e3e52 | 2009-02-12 20:58:09 +0000 | [diff] [blame] | 11706 | case 'e': { |
| 11707 | // 32-bit signed value |
| 11708 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) { |
Dan Gohman | 7720cb3 | 2010-06-18 14:01:07 +0000 | [diff] [blame] | 11709 | if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()), |
| 11710 | C->getSExtValue())) { |
Dale Johannesen | 78e3e52 | 2009-02-12 20:58:09 +0000 | [diff] [blame] | 11711 | // Widen to 64 bits here to get it sign extended. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11712 | Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64); |
Dale Johannesen | 78e3e52 | 2009-02-12 20:58:09 +0000 | [diff] [blame] | 11713 | break; |
| 11714 | } |
| 11715 | // FIXME gcc accepts some relocatable values here too, but only in certain |
| 11716 | // memory models; it's complicated. |
| 11717 | } |
| 11718 | return; |
| 11719 | } |
| 11720 | case 'Z': { |
| 11721 | // 32-bit unsigned value |
| 11722 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) { |
Dan Gohman | 7720cb3 | 2010-06-18 14:01:07 +0000 | [diff] [blame] | 11723 | if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()), |
| 11724 | C->getZExtValue())) { |
Dale Johannesen | 78e3e52 | 2009-02-12 20:58:09 +0000 | [diff] [blame] | 11725 | Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType()); |
| 11726 | break; |
| 11727 | } |
| 11728 | } |
| 11729 | // FIXME gcc accepts some relocatable values here too, but only in certain |
| 11730 | // memory models; it's complicated. |
| 11731 | return; |
| 11732 | } |
Chris Lattner | dc43a88 | 2007-05-03 16:52:29 +0000 | [diff] [blame] | 11733 | case 'i': { |
Chris Lattner | 22aaf1d | 2006-10-31 20:13:11 +0000 | [diff] [blame] | 11734 | // Literal immediates are always ok. |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 11735 | if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) { |
Dale Johannesen | 78e3e52 | 2009-02-12 20:58:09 +0000 | [diff] [blame] | 11736 | // Widen to 64 bits here to get it sign extended. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11737 | Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64); |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 11738 | break; |
| 11739 | } |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 11740 | |
Dale Johannesen | e5ff9ef | 2010-06-24 20:14:51 +0000 | [diff] [blame] | 11741 | // In any sort of PIC mode addresses need to be computed at runtime by |
| 11742 | // adding in a register or some sort of table lookup. These can't |
| 11743 | // be used as immediates. |
Dale Johannesen | e2b448c | 2010-07-06 23:27:00 +0000 | [diff] [blame] | 11744 | if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC()) |
Dale Johannesen | e5ff9ef | 2010-06-24 20:14:51 +0000 | [diff] [blame] | 11745 | return; |
| 11746 | |
Chris Lattner | dc43a88 | 2007-05-03 16:52:29 +0000 | [diff] [blame] | 11747 | // If we are in non-pic codegen mode, we allow the address of a global (with |
| 11748 | // an optional displacement) to be used with 'i'. |
Chris Lattner | 4992196 | 2009-05-08 18:23:14 +0000 | [diff] [blame] | 11749 | GlobalAddressSDNode *GA = 0; |
Chris Lattner | dc43a88 | 2007-05-03 16:52:29 +0000 | [diff] [blame] | 11750 | int64_t Offset = 0; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 11751 | |
Chris Lattner | 4992196 | 2009-05-08 18:23:14 +0000 | [diff] [blame] | 11752 | // Match either (GA), (GA+C), (GA+C1+C2), etc. |
| 11753 | while (1) { |
| 11754 | if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) { |
| 11755 | Offset += GA->getOffset(); |
| 11756 | break; |
| 11757 | } else if (Op.getOpcode() == ISD::ADD) { |
| 11758 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { |
| 11759 | Offset += C->getZExtValue(); |
| 11760 | Op = Op.getOperand(0); |
| 11761 | continue; |
| 11762 | } |
| 11763 | } else if (Op.getOpcode() == ISD::SUB) { |
| 11764 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { |
| 11765 | Offset += -C->getZExtValue(); |
| 11766 | Op = Op.getOperand(0); |
| 11767 | continue; |
| 11768 | } |
Chris Lattner | dc43a88 | 2007-05-03 16:52:29 +0000 | [diff] [blame] | 11769 | } |
Dale Johannesen | 76a1e2e | 2009-07-07 00:18:49 +0000 | [diff] [blame] | 11770 | |
Chris Lattner | 4992196 | 2009-05-08 18:23:14 +0000 | [diff] [blame] | 11771 | // Otherwise, this isn't something we can handle, reject it. |
| 11772 | return; |
Chris Lattner | dc43a88 | 2007-05-03 16:52:29 +0000 | [diff] [blame] | 11773 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 11774 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 11775 | const GlobalValue *GV = GA->getGlobal(); |
Dale Johannesen | 76a1e2e | 2009-07-07 00:18:49 +0000 | [diff] [blame] | 11776 | // If we require an extra load to get this address, as in PIC mode, we |
| 11777 | // can't accept it. |
Chris Lattner | 36c2501 | 2009-07-10 07:34:39 +0000 | [diff] [blame] | 11778 | if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV, |
| 11779 | getTargetMachine()))) |
Dale Johannesen | 76a1e2e | 2009-07-07 00:18:49 +0000 | [diff] [blame] | 11780 | return; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 11781 | |
Devang Patel | 0d881da | 2010-07-06 22:08:15 +0000 | [diff] [blame] | 11782 | Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(), |
| 11783 | GA->getValueType(0), Offset); |
Chris Lattner | 4992196 | 2009-05-08 18:23:14 +0000 | [diff] [blame] | 11784 | break; |
Chris Lattner | 22aaf1d | 2006-10-31 20:13:11 +0000 | [diff] [blame] | 11785 | } |
Chris Lattner | dc43a88 | 2007-05-03 16:52:29 +0000 | [diff] [blame] | 11786 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 11787 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 11788 | if (Result.getNode()) { |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 11789 | Ops.push_back(Result); |
| 11790 | return; |
| 11791 | } |
Dale Johannesen | 1784d16 | 2010-06-25 21:55:36 +0000 | [diff] [blame] | 11792 | return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG); |
Chris Lattner | 22aaf1d | 2006-10-31 20:13:11 +0000 | [diff] [blame] | 11793 | } |
| 11794 | |
Chris Lattner | 259e97c | 2006-01-31 19:43:35 +0000 | [diff] [blame] | 11795 | std::vector<unsigned> X86TargetLowering:: |
Chris Lattner | 1efa40f | 2006-02-22 00:56:39 +0000 | [diff] [blame] | 11796 | getRegClassForInlineAsmConstraint(const std::string &Constraint, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 11797 | EVT VT) const { |
Chris Lattner | 259e97c | 2006-01-31 19:43:35 +0000 | [diff] [blame] | 11798 | if (Constraint.size() == 1) { |
| 11799 | // FIXME: not handling fp-stack yet! |
Chris Lattner | 259e97c | 2006-01-31 19:43:35 +0000 | [diff] [blame] | 11800 | switch (Constraint[0]) { // GCC X86 Constraint Letters |
Chris Lattner | f4dff84 | 2006-07-11 02:54:03 +0000 | [diff] [blame] | 11801 | default: break; // Unknown constraint letter |
Evan Cheng | 47e9fab | 2009-07-17 22:13:25 +0000 | [diff] [blame] | 11802 | case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode. |
| 11803 | if (Subtarget->is64Bit()) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11804 | if (VT == MVT::i32) |
Evan Cheng | 47e9fab | 2009-07-17 22:13:25 +0000 | [diff] [blame] | 11805 | return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, |
| 11806 | X86::ESI, X86::EDI, X86::R8D, X86::R9D, |
| 11807 | X86::R10D,X86::R11D,X86::R12D, |
| 11808 | X86::R13D,X86::R14D,X86::R15D, |
| 11809 | X86::EBP, X86::ESP, 0); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11810 | else if (VT == MVT::i16) |
Evan Cheng | 47e9fab | 2009-07-17 22:13:25 +0000 | [diff] [blame] | 11811 | return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, |
| 11812 | X86::SI, X86::DI, X86::R8W,X86::R9W, |
| 11813 | X86::R10W,X86::R11W,X86::R12W, |
| 11814 | X86::R13W,X86::R14W,X86::R15W, |
| 11815 | X86::BP, X86::SP, 0); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11816 | else if (VT == MVT::i8) |
Evan Cheng | 47e9fab | 2009-07-17 22:13:25 +0000 | [diff] [blame] | 11817 | return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, |
| 11818 | X86::SIL, X86::DIL, X86::R8B,X86::R9B, |
| 11819 | X86::R10B,X86::R11B,X86::R12B, |
| 11820 | X86::R13B,X86::R14B,X86::R15B, |
| 11821 | X86::BPL, X86::SPL, 0); |
| 11822 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11823 | else if (VT == MVT::i64) |
Evan Cheng | 47e9fab | 2009-07-17 22:13:25 +0000 | [diff] [blame] | 11824 | return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, |
| 11825 | X86::RSI, X86::RDI, X86::R8, X86::R9, |
| 11826 | X86::R10, X86::R11, X86::R12, |
| 11827 | X86::R13, X86::R14, X86::R15, |
| 11828 | X86::RBP, X86::RSP, 0); |
| 11829 | |
| 11830 | break; |
| 11831 | } |
Eric Christopher | fd17929 | 2009-08-27 18:07:15 +0000 | [diff] [blame] | 11832 | // 32-bit fallthrough |
Chris Lattner | 259e97c | 2006-01-31 19:43:35 +0000 | [diff] [blame] | 11833 | case 'Q': // Q_REGS |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11834 | if (VT == MVT::i32) |
Chris Lattner | 80a7ecc | 2006-05-06 00:29:37 +0000 | [diff] [blame] | 11835 | 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] | 11836 | else if (VT == MVT::i16) |
Chris Lattner | 80a7ecc | 2006-05-06 00:29:37 +0000 | [diff] [blame] | 11837 | 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] | 11838 | else if (VT == MVT::i8) |
Evan Cheng | 1291438 | 2007-08-13 23:27:11 +0000 | [diff] [blame] | 11839 | 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] | 11840 | else if (VT == MVT::i64) |
Chris Lattner | 03e6c70 | 2007-11-04 06:51:12 +0000 | [diff] [blame] | 11841 | return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0); |
| 11842 | break; |
Chris Lattner | 259e97c | 2006-01-31 19:43:35 +0000 | [diff] [blame] | 11843 | } |
| 11844 | } |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 11845 | |
Chris Lattner | 1efa40f | 2006-02-22 00:56:39 +0000 | [diff] [blame] | 11846 | return std::vector<unsigned>(); |
Chris Lattner | 259e97c | 2006-01-31 19:43:35 +0000 | [diff] [blame] | 11847 | } |
Chris Lattner | f76d180 | 2006-07-31 23:26:50 +0000 | [diff] [blame] | 11848 | |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 11849 | std::pair<unsigned, const TargetRegisterClass*> |
Chris Lattner | f76d180 | 2006-07-31 23:26:50 +0000 | [diff] [blame] | 11850 | X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 11851 | EVT VT) const { |
Chris Lattner | ad043e8 | 2007-04-09 05:11:28 +0000 | [diff] [blame] | 11852 | // First, see if this is a constraint that directly corresponds to an LLVM |
| 11853 | // register class. |
| 11854 | if (Constraint.size() == 1) { |
| 11855 | // GCC Constraint Letters |
| 11856 | switch (Constraint[0]) { |
| 11857 | default: break; |
Chris Lattner | 0f65cad | 2007-04-09 05:49:22 +0000 | [diff] [blame] | 11858 | case 'r': // GENERAL_REGS |
Chris Lattner | 0f65cad | 2007-04-09 05:49:22 +0000 | [diff] [blame] | 11859 | case 'l': // INDEX_REGS |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11860 | if (VT == MVT::i8) |
Chris Lattner | 0f65cad | 2007-04-09 05:49:22 +0000 | [diff] [blame] | 11861 | return std::make_pair(0U, X86::GR8RegisterClass); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11862 | if (VT == MVT::i16) |
Chris Lattner | 1fa7198 | 2008-10-17 18:15:05 +0000 | [diff] [blame] | 11863 | return std::make_pair(0U, X86::GR16RegisterClass); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11864 | if (VT == MVT::i32 || !Subtarget->is64Bit()) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 11865 | return std::make_pair(0U, X86::GR32RegisterClass); |
Chris Lattner | 1fa7198 | 2008-10-17 18:15:05 +0000 | [diff] [blame] | 11866 | return std::make_pair(0U, X86::GR64RegisterClass); |
Dale Johannesen | 5f3663e | 2009-10-07 22:47:20 +0000 | [diff] [blame] | 11867 | case 'R': // LEGACY_REGS |
| 11868 | if (VT == MVT::i8) |
| 11869 | return std::make_pair(0U, X86::GR8_NOREXRegisterClass); |
| 11870 | if (VT == MVT::i16) |
| 11871 | return std::make_pair(0U, X86::GR16_NOREXRegisterClass); |
| 11872 | if (VT == MVT::i32 || !Subtarget->is64Bit()) |
| 11873 | return std::make_pair(0U, X86::GR32_NOREXRegisterClass); |
| 11874 | return std::make_pair(0U, X86::GR64_NOREXRegisterClass); |
Chris Lattner | fce84ac | 2008-03-11 19:06:29 +0000 | [diff] [blame] | 11875 | case 'f': // FP Stack registers. |
| 11876 | // If SSE is enabled for this VT, use f80 to ensure the isel moves the |
| 11877 | // value to the correct fpstack register class. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11878 | if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT)) |
Chris Lattner | fce84ac | 2008-03-11 19:06:29 +0000 | [diff] [blame] | 11879 | return std::make_pair(0U, X86::RFP32RegisterClass); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11880 | if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT)) |
Chris Lattner | fce84ac | 2008-03-11 19:06:29 +0000 | [diff] [blame] | 11881 | return std::make_pair(0U, X86::RFP64RegisterClass); |
| 11882 | return std::make_pair(0U, X86::RFP80RegisterClass); |
Chris Lattner | 6c284d7 | 2007-04-12 04:14:49 +0000 | [diff] [blame] | 11883 | case 'y': // MMX_REGS if MMX allowed. |
| 11884 | if (!Subtarget->hasMMX()) break; |
| 11885 | return std::make_pair(0U, X86::VR64RegisterClass); |
Chris Lattner | 0f65cad | 2007-04-09 05:49:22 +0000 | [diff] [blame] | 11886 | case 'Y': // SSE_REGS if SSE2 allowed |
| 11887 | if (!Subtarget->hasSSE2()) break; |
| 11888 | // FALL THROUGH. |
| 11889 | case 'x': // SSE_REGS if SSE1 allowed |
| 11890 | if (!Subtarget->hasSSE1()) break; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 11891 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11892 | switch (VT.getSimpleVT().SimpleTy) { |
Chris Lattner | 0f65cad | 2007-04-09 05:49:22 +0000 | [diff] [blame] | 11893 | default: break; |
| 11894 | // Scalar SSE types. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11895 | case MVT::f32: |
| 11896 | case MVT::i32: |
Chris Lattner | ad043e8 | 2007-04-09 05:11:28 +0000 | [diff] [blame] | 11897 | return std::make_pair(0U, X86::FR32RegisterClass); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11898 | case MVT::f64: |
| 11899 | case MVT::i64: |
Chris Lattner | ad043e8 | 2007-04-09 05:11:28 +0000 | [diff] [blame] | 11900 | return std::make_pair(0U, X86::FR64RegisterClass); |
Chris Lattner | 0f65cad | 2007-04-09 05:49:22 +0000 | [diff] [blame] | 11901 | // Vector types. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11902 | case MVT::v16i8: |
| 11903 | case MVT::v8i16: |
| 11904 | case MVT::v4i32: |
| 11905 | case MVT::v2i64: |
| 11906 | case MVT::v4f32: |
| 11907 | case MVT::v2f64: |
Chris Lattner | 0f65cad | 2007-04-09 05:49:22 +0000 | [diff] [blame] | 11908 | return std::make_pair(0U, X86::VR128RegisterClass); |
| 11909 | } |
Chris Lattner | ad043e8 | 2007-04-09 05:11:28 +0000 | [diff] [blame] | 11910 | break; |
| 11911 | } |
| 11912 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 11913 | |
Chris Lattner | f76d180 | 2006-07-31 23:26:50 +0000 | [diff] [blame] | 11914 | // Use the default implementation in TargetLowering to convert the register |
| 11915 | // constraint into a member of a register class. |
| 11916 | std::pair<unsigned, const TargetRegisterClass*> Res; |
| 11917 | Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT); |
Chris Lattner | 1a60aa7 | 2006-10-31 19:42:44 +0000 | [diff] [blame] | 11918 | |
| 11919 | // Not found as a standard register? |
| 11920 | if (Res.second == 0) { |
Chris Lattner | 56d77c7 | 2009-09-13 22:41:48 +0000 | [diff] [blame] | 11921 | // Map st(0) -> st(7) -> ST0 |
| 11922 | if (Constraint.size() == 7 && Constraint[0] == '{' && |
| 11923 | tolower(Constraint[1]) == 's' && |
| 11924 | tolower(Constraint[2]) == 't' && |
| 11925 | Constraint[3] == '(' && |
| 11926 | (Constraint[4] >= '0' && Constraint[4] <= '7') && |
| 11927 | Constraint[5] == ')' && |
| 11928 | Constraint[6] == '}') { |
Daniel Dunbar | a279bc3 | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 11929 | |
Chris Lattner | 56d77c7 | 2009-09-13 22:41:48 +0000 | [diff] [blame] | 11930 | Res.first = X86::ST0+Constraint[4]-'0'; |
| 11931 | Res.second = X86::RFP80RegisterClass; |
| 11932 | return Res; |
| 11933 | } |
Daniel Dunbar | a279bc3 | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 11934 | |
Chris Lattner | 56d77c7 | 2009-09-13 22:41:48 +0000 | [diff] [blame] | 11935 | // GCC allows "st(0)" to be called just plain "st". |
Benjamin Kramer | 05872ea | 2009-11-12 20:36:59 +0000 | [diff] [blame] | 11936 | if (StringRef("{st}").equals_lower(Constraint)) { |
Chris Lattner | 1a60aa7 | 2006-10-31 19:42:44 +0000 | [diff] [blame] | 11937 | Res.first = X86::ST0; |
Chris Lattner | 9b4baf1 | 2007-09-24 05:27:37 +0000 | [diff] [blame] | 11938 | Res.second = X86::RFP80RegisterClass; |
Chris Lattner | 56d77c7 | 2009-09-13 22:41:48 +0000 | [diff] [blame] | 11939 | return Res; |
Chris Lattner | 1a60aa7 | 2006-10-31 19:42:44 +0000 | [diff] [blame] | 11940 | } |
Chris Lattner | 56d77c7 | 2009-09-13 22:41:48 +0000 | [diff] [blame] | 11941 | |
| 11942 | // flags -> EFLAGS |
Benjamin Kramer | 05872ea | 2009-11-12 20:36:59 +0000 | [diff] [blame] | 11943 | if (StringRef("{flags}").equals_lower(Constraint)) { |
Chris Lattner | 56d77c7 | 2009-09-13 22:41:48 +0000 | [diff] [blame] | 11944 | Res.first = X86::EFLAGS; |
| 11945 | Res.second = X86::CCRRegisterClass; |
| 11946 | return Res; |
| 11947 | } |
Daniel Dunbar | a279bc3 | 2009-09-20 02:20:51 +0000 | [diff] [blame] | 11948 | |
Dale Johannesen | 330169f | 2008-11-13 21:52:36 +0000 | [diff] [blame] | 11949 | // 'A' means EAX + EDX. |
| 11950 | if (Constraint == "A") { |
| 11951 | Res.first = X86::EAX; |
Dan Gohman | 68a31c2 | 2009-07-30 17:02:08 +0000 | [diff] [blame] | 11952 | Res.second = X86::GR32_ADRegisterClass; |
Chris Lattner | 56d77c7 | 2009-09-13 22:41:48 +0000 | [diff] [blame] | 11953 | return Res; |
Dale Johannesen | 330169f | 2008-11-13 21:52:36 +0000 | [diff] [blame] | 11954 | } |
Chris Lattner | 1a60aa7 | 2006-10-31 19:42:44 +0000 | [diff] [blame] | 11955 | return Res; |
| 11956 | } |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 11957 | |
Chris Lattner | f76d180 | 2006-07-31 23:26:50 +0000 | [diff] [blame] | 11958 | // Otherwise, check to see if this is a register class of the wrong value |
| 11959 | // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to |
| 11960 | // turn into {ax},{dx}. |
| 11961 | if (Res.second->hasType(VT)) |
| 11962 | return Res; // Correct type already, nothing to do. |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 11963 | |
Chris Lattner | f76d180 | 2006-07-31 23:26:50 +0000 | [diff] [blame] | 11964 | // All of the single-register GCC register classes map their values onto |
| 11965 | // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we |
| 11966 | // really want an 8-bit or 32-bit register, map to the appropriate register |
| 11967 | // class and return the appropriate register. |
Chris Lattner | 6ba50a9 | 2008-08-26 06:19:02 +0000 | [diff] [blame] | 11968 | if (Res.second == X86::GR16RegisterClass) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11969 | if (VT == MVT::i8) { |
Chris Lattner | 6ba50a9 | 2008-08-26 06:19:02 +0000 | [diff] [blame] | 11970 | unsigned DestReg = 0; |
| 11971 | switch (Res.first) { |
| 11972 | default: break; |
| 11973 | case X86::AX: DestReg = X86::AL; break; |
| 11974 | case X86::DX: DestReg = X86::DL; break; |
| 11975 | case X86::CX: DestReg = X86::CL; break; |
| 11976 | case X86::BX: DestReg = X86::BL; break; |
| 11977 | } |
| 11978 | if (DestReg) { |
| 11979 | Res.first = DestReg; |
Duncan Sands | 005e798 | 2009-04-21 09:44:39 +0000 | [diff] [blame] | 11980 | Res.second = X86::GR8RegisterClass; |
Chris Lattner | 6ba50a9 | 2008-08-26 06:19:02 +0000 | [diff] [blame] | 11981 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11982 | } else if (VT == MVT::i32) { |
Chris Lattner | 6ba50a9 | 2008-08-26 06:19:02 +0000 | [diff] [blame] | 11983 | unsigned DestReg = 0; |
| 11984 | switch (Res.first) { |
| 11985 | default: break; |
| 11986 | case X86::AX: DestReg = X86::EAX; break; |
| 11987 | case X86::DX: DestReg = X86::EDX; break; |
| 11988 | case X86::CX: DestReg = X86::ECX; break; |
| 11989 | case X86::BX: DestReg = X86::EBX; break; |
| 11990 | case X86::SI: DestReg = X86::ESI; break; |
| 11991 | case X86::DI: DestReg = X86::EDI; break; |
| 11992 | case X86::BP: DestReg = X86::EBP; break; |
| 11993 | case X86::SP: DestReg = X86::ESP; break; |
| 11994 | } |
| 11995 | if (DestReg) { |
| 11996 | Res.first = DestReg; |
Duncan Sands | 005e798 | 2009-04-21 09:44:39 +0000 | [diff] [blame] | 11997 | Res.second = X86::GR32RegisterClass; |
Chris Lattner | 6ba50a9 | 2008-08-26 06:19:02 +0000 | [diff] [blame] | 11998 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 11999 | } else if (VT == MVT::i64) { |
Chris Lattner | 6ba50a9 | 2008-08-26 06:19:02 +0000 | [diff] [blame] | 12000 | unsigned DestReg = 0; |
| 12001 | switch (Res.first) { |
| 12002 | default: break; |
| 12003 | case X86::AX: DestReg = X86::RAX; break; |
| 12004 | case X86::DX: DestReg = X86::RDX; break; |
| 12005 | case X86::CX: DestReg = X86::RCX; break; |
| 12006 | case X86::BX: DestReg = X86::RBX; break; |
| 12007 | case X86::SI: DestReg = X86::RSI; break; |
| 12008 | case X86::DI: DestReg = X86::RDI; break; |
| 12009 | case X86::BP: DestReg = X86::RBP; break; |
| 12010 | case X86::SP: DestReg = X86::RSP; break; |
| 12011 | } |
| 12012 | if (DestReg) { |
| 12013 | Res.first = DestReg; |
Duncan Sands | 005e798 | 2009-04-21 09:44:39 +0000 | [diff] [blame] | 12014 | Res.second = X86::GR64RegisterClass; |
Chris Lattner | 6ba50a9 | 2008-08-26 06:19:02 +0000 | [diff] [blame] | 12015 | } |
Chris Lattner | f76d180 | 2006-07-31 23:26:50 +0000 | [diff] [blame] | 12016 | } |
Chris Lattner | 6ba50a9 | 2008-08-26 06:19:02 +0000 | [diff] [blame] | 12017 | } else if (Res.second == X86::FR32RegisterClass || |
| 12018 | Res.second == X86::FR64RegisterClass || |
| 12019 | Res.second == X86::VR128RegisterClass) { |
| 12020 | // Handle references to XMM physical registers that got mapped into the |
| 12021 | // wrong class. This can happen with constraints like {xmm0} where the |
| 12022 | // target independent register mapper will just pick the first match it can |
| 12023 | // find, ignoring the required type. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 12024 | if (VT == MVT::f32) |
Chris Lattner | 6ba50a9 | 2008-08-26 06:19:02 +0000 | [diff] [blame] | 12025 | Res.second = X86::FR32RegisterClass; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 12026 | else if (VT == MVT::f64) |
Chris Lattner | 6ba50a9 | 2008-08-26 06:19:02 +0000 | [diff] [blame] | 12027 | Res.second = X86::FR64RegisterClass; |
| 12028 | else if (X86::VR128RegisterClass->hasType(VT)) |
| 12029 | Res.second = X86::VR128RegisterClass; |
Chris Lattner | f76d180 | 2006-07-31 23:26:50 +0000 | [diff] [blame] | 12030 | } |
Anton Korobeynikov | 12c49af | 2006-11-21 00:01:06 +0000 | [diff] [blame] | 12031 | |
Chris Lattner | f76d180 | 2006-07-31 23:26:50 +0000 | [diff] [blame] | 12032 | return Res; |
| 12033 | } |