Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 1 | //=- WebAssemblyISelLowering.cpp - WebAssembly DAG Lowering Implementation -==// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | /// |
| 9 | /// \file |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 10 | /// This file implements the WebAssemblyTargetLowering class. |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 11 | /// |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "WebAssemblyISelLowering.h" |
| 15 | #include "MCTargetDesc/WebAssemblyMCTargetDesc.h" |
| 16 | #include "WebAssemblyMachineFunctionInfo.h" |
| 17 | #include "WebAssemblySubtarget.h" |
| 18 | #include "WebAssemblyTargetMachine.h" |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/Analysis.h" |
JF Bastien | af111db | 2015-08-24 22:16:48 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/CallingConvLower.h" |
Dan Gohman | cdd48b8 | 2017-11-28 01:13:40 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/MachineJumpTableInfo.h" |
Heejin Ahn | 24faf85 | 2018-10-25 23:55:10 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 25 | #include "llvm/CodeGen/SelectionDAG.h" |
Heejin Ahn | da419bd | 2018-11-14 02:46:21 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/WasmEHFuncInfo.h" |
Oliver Stannard | 02fa1c8 | 2016-01-28 13:19:47 +0000 | [diff] [blame] | 27 | #include "llvm/IR/DiagnosticInfo.h" |
JF Bastien | b9073fb | 2015-07-22 21:28:15 +0000 | [diff] [blame] | 28 | #include "llvm/IR/DiagnosticPrinter.h" |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 29 | #include "llvm/IR/Function.h" |
| 30 | #include "llvm/IR/Intrinsics.h" |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 31 | #include "llvm/Support/Debug.h" |
| 32 | #include "llvm/Support/ErrorHandling.h" |
| 33 | #include "llvm/Support/raw_ostream.h" |
| 34 | #include "llvm/Target/TargetOptions.h" |
| 35 | using namespace llvm; |
| 36 | |
| 37 | #define DEBUG_TYPE "wasm-lower" |
| 38 | |
| 39 | WebAssemblyTargetLowering::WebAssemblyTargetLowering( |
| 40 | const TargetMachine &TM, const WebAssemblySubtarget &STI) |
Dan Gohman | bfaf7e1 | 2015-07-02 21:36:25 +0000 | [diff] [blame] | 41 | : TargetLowering(TM), Subtarget(&STI) { |
JF Bastien | af111db | 2015-08-24 22:16:48 +0000 | [diff] [blame] | 42 | auto MVTPtr = Subtarget->hasAddr64() ? MVT::i64 : MVT::i32; |
| 43 | |
JF Bastien | 71d29ac | 2015-08-12 17:53:29 +0000 | [diff] [blame] | 44 | // Booleans always contain 0 or 1. |
| 45 | setBooleanContents(ZeroOrOneBooleanContent); |
Thomas Lively | 5ea17d4 | 2018-10-20 01:35:23 +0000 | [diff] [blame] | 46 | // Except in SIMD vectors |
| 47 | setBooleanVectorContents(ZeroOrNegativeOneBooleanContent); |
Dan Gohman | 489abd7 | 2015-07-07 22:38:06 +0000 | [diff] [blame] | 48 | // We don't know the microarchitecture here, so just reduce register pressure. |
| 49 | setSchedulingPreference(Sched::RegPressure); |
JF Bastien | b9073fb | 2015-07-22 21:28:15 +0000 | [diff] [blame] | 50 | // Tell ISel that we have a stack pointer. |
| 51 | setStackPointerRegisterToSaveRestore( |
| 52 | Subtarget->hasAddr64() ? WebAssembly::SP64 : WebAssembly::SP32); |
| 53 | // Set up the register classes. |
Dan Gohman | d0bf981 | 2015-09-26 01:09:44 +0000 | [diff] [blame] | 54 | addRegisterClass(MVT::i32, &WebAssembly::I32RegClass); |
| 55 | addRegisterClass(MVT::i64, &WebAssembly::I64RegClass); |
| 56 | addRegisterClass(MVT::f32, &WebAssembly::F32RegClass); |
| 57 | addRegisterClass(MVT::f64, &WebAssembly::F64RegClass); |
Derek Schuff | 39bf39f | 2016-08-02 23:16:09 +0000 | [diff] [blame] | 58 | if (Subtarget->hasSIMD128()) { |
| 59 | addRegisterClass(MVT::v16i8, &WebAssembly::V128RegClass); |
| 60 | addRegisterClass(MVT::v8i16, &WebAssembly::V128RegClass); |
| 61 | addRegisterClass(MVT::v4i32, &WebAssembly::V128RegClass); |
| 62 | addRegisterClass(MVT::v4f32, &WebAssembly::V128RegClass); |
Thomas Lively | 2b8b297 | 2019-01-26 01:25:37 +0000 | [diff] [blame] | 63 | } |
| 64 | if (Subtarget->hasUnimplementedSIMD128()) { |
| 65 | addRegisterClass(MVT::v2i64, &WebAssembly::V128RegClass); |
| 66 | addRegisterClass(MVT::v2f64, &WebAssembly::V128RegClass); |
Derek Schuff | 39bf39f | 2016-08-02 23:16:09 +0000 | [diff] [blame] | 67 | } |
JF Bastien | b9073fb | 2015-07-22 21:28:15 +0000 | [diff] [blame] | 68 | // Compute derived properties from the register classes. |
| 69 | computeRegisterProperties(Subtarget->getRegisterInfo()); |
| 70 | |
JF Bastien | af111db | 2015-08-24 22:16:48 +0000 | [diff] [blame] | 71 | setOperationAction(ISD::GlobalAddress, MVTPtr, Custom); |
Dan Gohman | 2c8fe6a | 2015-11-25 16:44:29 +0000 | [diff] [blame] | 72 | setOperationAction(ISD::ExternalSymbol, MVTPtr, Custom); |
Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 73 | setOperationAction(ISD::JumpTable, MVTPtr, Custom); |
Derek Schuff | 51699a8 | 2016-02-12 22:56:03 +0000 | [diff] [blame] | 74 | setOperationAction(ISD::BlockAddress, MVTPtr, Custom); |
| 75 | setOperationAction(ISD::BRIND, MVT::Other, Custom); |
JF Bastien | af111db | 2015-08-24 22:16:48 +0000 | [diff] [blame] | 76 | |
Dan Gohman | 35bfb24 | 2015-12-04 23:22:35 +0000 | [diff] [blame] | 77 | // Take the default expansion for va_arg, va_copy, and va_end. There is no |
| 78 | // default action for va_start, so we do that custom. |
| 79 | setOperationAction(ISD::VASTART, MVT::Other, Custom); |
| 80 | setOperationAction(ISD::VAARG, MVT::Other, Expand); |
| 81 | setOperationAction(ISD::VACOPY, MVT::Other, Expand); |
| 82 | setOperationAction(ISD::VAEND, MVT::Other, Expand); |
| 83 | |
Thomas Lively | ebd4c90 | 2018-09-12 17:56:00 +0000 | [diff] [blame] | 84 | for (auto T : {MVT::f32, MVT::f64, MVT::v4f32, MVT::v2f64}) { |
JF Bastien | da06bce | 2015-08-11 21:02:46 +0000 | [diff] [blame] | 85 | // Don't expand the floating-point types to constant pools. |
| 86 | setOperationAction(ISD::ConstantFP, T, Legal); |
| 87 | // Expand floating-point comparisons. |
| 88 | for (auto CC : {ISD::SETO, ISD::SETUO, ISD::SETUEQ, ISD::SETONE, |
| 89 | ISD::SETULT, ISD::SETULE, ISD::SETUGT, ISD::SETUGE}) |
| 90 | setCondCodeAction(CC, T, Expand); |
Dan Gohman | 32907a6 | 2015-08-20 22:57:13 +0000 | [diff] [blame] | 91 | // Expand floating-point library function operators. |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 92 | for (auto Op : |
| 93 | {ISD::FSIN, ISD::FCOS, ISD::FSINCOS, ISD::FPOW, ISD::FREM, ISD::FMA}) |
Dan Gohman | 32907a6 | 2015-08-20 22:57:13 +0000 | [diff] [blame] | 94 | setOperationAction(Op, T, Expand); |
Dan Gohman | 896e53f | 2015-08-24 18:23:13 +0000 | [diff] [blame] | 95 | // Note supported floating-point library function operators that otherwise |
| 96 | // default to expand. |
Dan Gohman | 7a6b982 | 2015-11-29 22:32:02 +0000 | [diff] [blame] | 97 | for (auto Op : |
| 98 | {ISD::FCEIL, ISD::FFLOOR, ISD::FTRUNC, ISD::FNEARBYINT, ISD::FRINT}) |
Dan Gohman | 896e53f | 2015-08-24 18:23:13 +0000 | [diff] [blame] | 99 | setOperationAction(Op, T, Legal); |
Thomas Lively | 30f1d69 | 2018-10-24 22:49:55 +0000 | [diff] [blame] | 100 | // Support minimum and maximum, which otherwise default to expand. |
| 101 | setOperationAction(ISD::FMINIMUM, T, Legal); |
| 102 | setOperationAction(ISD::FMAXIMUM, T, Legal); |
Dan Gohman | a63e8eb | 2017-02-22 16:28:00 +0000 | [diff] [blame] | 103 | // WebAssembly currently has no builtin f16 support. |
| 104 | setOperationAction(ISD::FP16_TO_FP, T, Expand); |
| 105 | setOperationAction(ISD::FP_TO_FP16, T, Expand); |
| 106 | setLoadExtAction(ISD::EXTLOAD, T, MVT::f16, Expand); |
| 107 | setTruncStoreAction(T, MVT::f16, Expand); |
JF Bastien | da06bce | 2015-08-11 21:02:46 +0000 | [diff] [blame] | 108 | } |
Dan Gohman | 32907a6 | 2015-08-20 22:57:13 +0000 | [diff] [blame] | 109 | |
Thomas Lively | 66ea30c | 2018-11-29 22:01:01 +0000 | [diff] [blame] | 110 | // Expand unavailable integer operations. |
| 111 | for (auto Op : |
| 112 | {ISD::BSWAP, ISD::SMUL_LOHI, ISD::UMUL_LOHI, ISD::MULHS, ISD::MULHU, |
| 113 | ISD::SDIVREM, ISD::UDIVREM, ISD::SHL_PARTS, ISD::SRA_PARTS, |
| 114 | ISD::SRL_PARTS, ISD::ADDC, ISD::ADDE, ISD::SUBC, ISD::SUBE}) { |
Thomas Lively | 2b8b297 | 2019-01-26 01:25:37 +0000 | [diff] [blame] | 115 | for (auto T : {MVT::i32, MVT::i64}) |
Dan Gohman | 32907a6 | 2015-08-20 22:57:13 +0000 | [diff] [blame] | 116 | setOperationAction(Op, T, Expand); |
Thomas Lively | 2b8b297 | 2019-01-26 01:25:37 +0000 | [diff] [blame] | 117 | if (Subtarget->hasSIMD128()) |
| 118 | for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32}) |
Thomas Lively | 66ea30c | 2018-11-29 22:01:01 +0000 | [diff] [blame] | 119 | setOperationAction(Op, T, Expand); |
Thomas Lively | 64a39a1 | 2019-01-10 22:32:11 +0000 | [diff] [blame] | 120 | if (Subtarget->hasUnimplementedSIMD128()) |
Thomas Lively | 2b8b297 | 2019-01-26 01:25:37 +0000 | [diff] [blame] | 121 | setOperationAction(Op, MVT::v2i64, Expand); |
Thomas Lively | b2382c8 | 2018-11-02 00:39:57 +0000 | [diff] [blame] | 122 | } |
Thomas Lively | 55735d5 | 2018-10-20 01:31:18 +0000 | [diff] [blame] | 123 | |
Thomas Lively | 2b8b297 | 2019-01-26 01:25:37 +0000 | [diff] [blame] | 124 | // SIMD-specific configuration |
| 125 | if (Subtarget->hasSIMD128()) { |
| 126 | // Support saturating add for i8x16 and i16x8 |
| 127 | for (auto Op : {ISD::SADDSAT, ISD::UADDSAT}) |
| 128 | for (auto T : {MVT::v16i8, MVT::v8i16}) |
| 129 | setOperationAction(Op, T, Legal); |
| 130 | |
Thomas Lively | 079816e | 2019-01-30 02:23:29 +0000 | [diff] [blame] | 131 | // Custom lower BUILD_VECTORs to minimize number of replace_lanes |
| 132 | for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v4f32}) |
| 133 | setOperationAction(ISD::BUILD_VECTOR, T, Custom); |
| 134 | if (Subtarget->hasUnimplementedSIMD128()) |
| 135 | for (auto T : {MVT::v2i64, MVT::v2f64}) |
| 136 | setOperationAction(ISD::BUILD_VECTOR, T, Custom); |
| 137 | |
Thomas Lively | 2b8b297 | 2019-01-26 01:25:37 +0000 | [diff] [blame] | 138 | // We have custom shuffle lowering to expose the shuffle mask |
| 139 | for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v4f32}) |
| 140 | setOperationAction(ISD::VECTOR_SHUFFLE, T, Custom); |
| 141 | if (Subtarget->hasUnimplementedSIMD128()) |
| 142 | for (auto T: {MVT::v2i64, MVT::v2f64}) |
| 143 | setOperationAction(ISD::VECTOR_SHUFFLE, T, Custom); |
| 144 | |
| 145 | // Custom lowering since wasm shifts must have a scalar shift amount |
| 146 | for (auto Op : {ISD::SHL, ISD::SRA, ISD::SRL}) { |
| 147 | for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32}) |
| 148 | setOperationAction(Op, T, Custom); |
| 149 | if (Subtarget->hasUnimplementedSIMD128()) |
| 150 | setOperationAction(Op, MVT::v2i64, Custom); |
| 151 | } |
| 152 | |
| 153 | // Custom lower lane accesses to expand out variable indices |
| 154 | for (auto Op : {ISD::EXTRACT_VECTOR_ELT, ISD::INSERT_VECTOR_ELT}) { |
| 155 | for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v4f32}) |
| 156 | setOperationAction(Op, T, Custom); |
| 157 | if (Subtarget->hasUnimplementedSIMD128()) |
| 158 | for (auto T : {MVT::v2i64, MVT::v2f64}) |
| 159 | setOperationAction(Op, T, Custom); |
| 160 | } |
| 161 | |
| 162 | // There is no i64x2.mul instruction |
| 163 | setOperationAction(ISD::MUL, MVT::v2i64, Expand); |
| 164 | |
| 165 | // There are no vector select instructions |
Thomas Lively | 38c902b | 2018-11-09 01:38:44 +0000 | [diff] [blame] | 166 | for (auto Op : {ISD::VSELECT, ISD::SELECT_CC, ISD::SELECT}) { |
| 167 | for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v4f32}) |
| 168 | setOperationAction(Op, T, Expand); |
Thomas Lively | 64a39a1 | 2019-01-10 22:32:11 +0000 | [diff] [blame] | 169 | if (Subtarget->hasUnimplementedSIMD128()) |
Thomas Lively | 38c902b | 2018-11-09 01:38:44 +0000 | [diff] [blame] | 170 | for (auto T : {MVT::v2i64, MVT::v2f64}) |
| 171 | setOperationAction(Op, T, Expand); |
| 172 | } |
Thomas Lively | d4891a1 | 2018-11-01 00:01:02 +0000 | [diff] [blame] | 173 | |
Thomas Lively | 43876ae7 | 2019-03-02 03:32:25 +0000 | [diff] [blame] | 174 | // Expand integer operations supported for scalars but not SIMD |
| 175 | for (auto Op : {ISD::CTLZ, ISD::CTTZ, ISD::CTPOP, ISD::SDIV, ISD::UDIV, |
| 176 | ISD::SREM, ISD::UREM, ISD::ROTL, ISD::ROTR}) { |
| 177 | for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32}) |
| 178 | setOperationAction(Op, T, Expand); |
| 179 | if (Subtarget->hasUnimplementedSIMD128()) |
| 180 | setOperationAction(Op, MVT::v2i64, Expand); |
| 181 | } |
| 182 | |
| 183 | // Expand float operations supported for scalars but not SIMD |
| 184 | for (auto Op : {ISD::FCEIL, ISD::FFLOOR, ISD::FTRUNC, ISD::FNEARBYINT, |
| 185 | ISD::FCOPYSIGN}) { |
| 186 | setOperationAction(Op, MVT::v4f32, Expand); |
| 187 | if (Subtarget->hasUnimplementedSIMD128()) |
| 188 | setOperationAction(Op, MVT::v2f64, Expand); |
| 189 | } |
| 190 | |
Thomas Lively | 2b8b297 | 2019-01-26 01:25:37 +0000 | [diff] [blame] | 191 | // Expand additional SIMD ops that V8 hasn't implemented yet |
| 192 | if (!Subtarget->hasUnimplementedSIMD128()) { |
| 193 | setOperationAction(ISD::FSQRT, MVT::v4f32, Expand); |
| 194 | setOperationAction(ISD::FDIV, MVT::v4f32, Expand); |
| 195 | } |
| 196 | } |
| 197 | |
Dan Gohman | 32907a6 | 2015-08-20 22:57:13 +0000 | [diff] [blame] | 198 | // As a special case, these operators use the type to mean the type to |
| 199 | // sign-extend from. |
Derek Schuff | a519fe5 | 2017-09-13 00:29:06 +0000 | [diff] [blame] | 200 | setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand); |
Dan Gohman | 5d2b935 | 2018-01-19 17:16:24 +0000 | [diff] [blame] | 201 | if (!Subtarget->hasSignExt()) { |
Thomas Lively | 64a39a1 | 2019-01-10 22:32:11 +0000 | [diff] [blame] | 202 | // Sign extends are legal only when extending a vector extract |
| 203 | auto Action = Subtarget->hasSIMD128() ? Custom : Expand; |
Derek Schuff | a519fe5 | 2017-09-13 00:29:06 +0000 | [diff] [blame] | 204 | for (auto T : {MVT::i8, MVT::i16, MVT::i32}) |
Thomas Lively | 64a39a1 | 2019-01-10 22:32:11 +0000 | [diff] [blame] | 205 | setOperationAction(ISD::SIGN_EXTEND_INREG, T, Action); |
Derek Schuff | a519fe5 | 2017-09-13 00:29:06 +0000 | [diff] [blame] | 206 | } |
Thomas Lively | 5ea17d4 | 2018-10-20 01:35:23 +0000 | [diff] [blame] | 207 | for (auto T : MVT::integer_vector_valuetypes()) |
| 208 | setOperationAction(ISD::SIGN_EXTEND_INREG, T, Expand); |
Dan Gohman | 32907a6 | 2015-08-20 22:57:13 +0000 | [diff] [blame] | 209 | |
| 210 | // Dynamic stack allocation: use the default expansion. |
| 211 | setOperationAction(ISD::STACKSAVE, MVT::Other, Expand); |
| 212 | setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand); |
Dan Gohman | 2683a55 | 2015-08-24 22:31:52 +0000 | [diff] [blame] | 213 | setOperationAction(ISD::DYNAMIC_STACKALLOC, MVTPtr, Expand); |
JF Bastien | 73ff6af | 2015-08-31 22:24:11 +0000 | [diff] [blame] | 214 | |
Derek Schuff | 9769deb | 2015-12-11 23:49:46 +0000 | [diff] [blame] | 215 | setOperationAction(ISD::FrameIndex, MVT::i32, Custom); |
Derek Schuff | aadc89c | 2016-02-16 18:18:36 +0000 | [diff] [blame] | 216 | setOperationAction(ISD::CopyToReg, MVT::Other, Custom); |
Derek Schuff | 9769deb | 2015-12-11 23:49:46 +0000 | [diff] [blame] | 217 | |
Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 218 | // Expand these forms; we pattern-match the forms that we can handle in isel. |
| 219 | for (auto T : {MVT::i32, MVT::i64, MVT::f32, MVT::f64}) |
| 220 | for (auto Op : {ISD::BR_CC, ISD::SELECT_CC}) |
| 221 | setOperationAction(Op, T, Expand); |
| 222 | |
| 223 | // We have custom switch handling. |
| 224 | setOperationAction(ISD::BR_JT, MVT::Other, Custom); |
| 225 | |
JF Bastien | 73ff6af | 2015-08-31 22:24:11 +0000 | [diff] [blame] | 226 | // WebAssembly doesn't have: |
| 227 | // - Floating-point extending loads. |
| 228 | // - Floating-point truncating stores. |
| 229 | // - i1 extending loads. |
Thomas Lively | 325c9c5 | 2018-10-25 01:46:07 +0000 | [diff] [blame] | 230 | // - extending/truncating SIMD loads/stores |
Dan Gohman | 60bddf1 | 2015-12-10 02:07:53 +0000 | [diff] [blame] | 231 | setLoadExtAction(ISD::EXTLOAD, MVT::f64, MVT::f32, Expand); |
JF Bastien | 73ff6af | 2015-08-31 22:24:11 +0000 | [diff] [blame] | 232 | setTruncStoreAction(MVT::f64, MVT::f32, Expand); |
| 233 | for (auto T : MVT::integer_valuetypes()) |
| 234 | for (auto Ext : {ISD::EXTLOAD, ISD::ZEXTLOAD, ISD::SEXTLOAD}) |
| 235 | setLoadExtAction(Ext, T, MVT::i1, Promote); |
Thomas Lively | 325c9c5 | 2018-10-25 01:46:07 +0000 | [diff] [blame] | 236 | if (Subtarget->hasSIMD128()) { |
| 237 | for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v2i64, MVT::v4f32, |
| 238 | MVT::v2f64}) { |
| 239 | for (auto MemT : MVT::vector_valuetypes()) { |
| 240 | if (MVT(T) != MemT) { |
| 241 | setTruncStoreAction(T, MemT, Expand); |
| 242 | for (auto Ext : {ISD::EXTLOAD, ISD::ZEXTLOAD, ISD::SEXTLOAD}) |
| 243 | setLoadExtAction(Ext, T, MemT, Expand); |
| 244 | } |
| 245 | } |
| 246 | } |
| 247 | } |
Derek Schuff | ffa143c | 2015-11-10 00:30:57 +0000 | [diff] [blame] | 248 | |
Thomas Lively | 33f87b8 | 2019-01-28 23:44:31 +0000 | [diff] [blame] | 249 | // Don't do anything clever with build_pairs |
| 250 | setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand); |
| 251 | |
Derek Schuff | ffa143c | 2015-11-10 00:30:57 +0000 | [diff] [blame] | 252 | // Trap lowers to wasm unreachable |
| 253 | setOperationAction(ISD::TRAP, MVT::Other, Legal); |
Derek Schuff | 18ba192 | 2017-08-30 18:07:45 +0000 | [diff] [blame] | 254 | |
Heejin Ahn | 5ef4d5f | 2018-05-31 22:25:54 +0000 | [diff] [blame] | 255 | // Exception handling intrinsics |
| 256 | setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom); |
Heejin Ahn | da419bd | 2018-11-14 02:46:21 +0000 | [diff] [blame] | 257 | setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom); |
Heejin Ahn | 5ef4d5f | 2018-05-31 22:25:54 +0000 | [diff] [blame] | 258 | |
Derek Schuff | 18ba192 | 2017-08-30 18:07:45 +0000 | [diff] [blame] | 259 | setMaxAtomicSizeInBitsSupported(64); |
Thomas Lively | d99af23 | 2019-02-05 00:49:55 +0000 | [diff] [blame] | 260 | |
| 261 | if (Subtarget->hasBulkMemory()) { |
Thomas Lively | bba3f06 | 2019-02-13 22:25:18 +0000 | [diff] [blame] | 262 | // Use memory.copy and friends over multiple loads and stores |
Thomas Lively | d99af23 | 2019-02-05 00:49:55 +0000 | [diff] [blame] | 263 | MaxStoresPerMemcpy = 1; |
| 264 | MaxStoresPerMemcpyOptSize = 1; |
Thomas Lively | 3150566 | 2019-02-05 20:57:40 +0000 | [diff] [blame] | 265 | MaxStoresPerMemmove = 1; |
| 266 | MaxStoresPerMemmoveOptSize = 1; |
Thomas Lively | bba3f06 | 2019-02-13 22:25:18 +0000 | [diff] [blame] | 267 | MaxStoresPerMemset = 1; |
| 268 | MaxStoresPerMemsetOptSize = 1; |
Thomas Lively | d99af23 | 2019-02-05 00:49:55 +0000 | [diff] [blame] | 269 | } |
Heejin Ahn | b9f282d | 2019-04-23 21:30:30 +0000 | [diff] [blame] | 270 | |
Dan Gohman | 3a7532e | 2019-04-30 19:17:59 +0000 | [diff] [blame] | 271 | // Override the __gnu_f2h_ieee/__gnu_h2f_ieee names so that the f32 name is |
| 272 | // consistent with the f64 and f128 names. |
| 273 | setLibcallName(RTLIB::FPEXT_F16_F32, "__extendhfsf2"); |
| 274 | setLibcallName(RTLIB::FPROUND_F32_F16, "__truncsfhf2"); |
| 275 | |
Thomas Lively | 1a3cbe7 | 2019-05-23 01:24:01 +0000 | [diff] [blame] | 276 | // Define the emscripten name for return address helper. |
| 277 | // TODO: when implementing other WASM backends, make this generic or only do |
| 278 | // this on emscripten depending on what they end up doing. |
| 279 | setLibcallName(RTLIB::RETURN_ADDRESS, "emscripten_return_address"); |
| 280 | |
Heejin Ahn | b9f282d | 2019-04-23 21:30:30 +0000 | [diff] [blame] | 281 | // Always convert switches to br_tables unless there is only one case, which |
| 282 | // is equivalent to a simple branch. This reduces code size for wasm, and we |
| 283 | // defer possible jump table optimizations to the VM. |
| 284 | setMinimumJumpTableEntries(2); |
Dan Gohman | bfaf7e1 | 2015-07-02 21:36:25 +0000 | [diff] [blame] | 285 | } |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 286 | |
Heejin Ahn | e8653bb | 2018-08-07 00:22:22 +0000 | [diff] [blame] | 287 | TargetLowering::AtomicExpansionKind |
| 288 | WebAssemblyTargetLowering::shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const { |
| 289 | // We have wasm instructions for these |
| 290 | switch (AI->getOperation()) { |
| 291 | case AtomicRMWInst::Add: |
| 292 | case AtomicRMWInst::Sub: |
| 293 | case AtomicRMWInst::And: |
| 294 | case AtomicRMWInst::Or: |
| 295 | case AtomicRMWInst::Xor: |
| 296 | case AtomicRMWInst::Xchg: |
| 297 | return AtomicExpansionKind::None; |
| 298 | default: |
| 299 | break; |
| 300 | } |
| 301 | return AtomicExpansionKind::CmpXChg; |
| 302 | } |
| 303 | |
Dan Gohman | 7b63484 | 2015-08-24 18:44:37 +0000 | [diff] [blame] | 304 | FastISel *WebAssemblyTargetLowering::createFastISel( |
| 305 | FunctionLoweringInfo &FuncInfo, const TargetLibraryInfo *LibInfo) const { |
| 306 | return WebAssembly::createFastISel(FuncInfo, LibInfo); |
| 307 | } |
| 308 | |
Dan Gohman | 7a6b982 | 2015-11-29 22:32:02 +0000 | [diff] [blame] | 309 | MVT WebAssemblyTargetLowering::getScalarShiftAmountTy(const DataLayout & /*DL*/, |
JF Bastien | fda5337 | 2015-08-03 00:00:11 +0000 | [diff] [blame] | 310 | EVT VT) const { |
Dan Gohman | a848375 | 2015-12-10 00:26:26 +0000 | [diff] [blame] | 311 | unsigned BitWidth = NextPowerOf2(VT.getSizeInBits() - 1); |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 312 | if (BitWidth > 1 && BitWidth < 8) |
| 313 | BitWidth = 8; |
Dan Gohman | 4172953 | 2015-12-16 23:25:51 +0000 | [diff] [blame] | 314 | |
| 315 | if (BitWidth > 64) { |
Dan Gohman | a01e8bd | 2016-05-14 02:15:47 +0000 | [diff] [blame] | 316 | // The shift will be lowered to a libcall, and compiler-rt libcalls expect |
| 317 | // the count to be an i32. |
| 318 | BitWidth = 32; |
Dan Gohman | 4172953 | 2015-12-16 23:25:51 +0000 | [diff] [blame] | 319 | assert(BitWidth >= Log2_32_Ceil(VT.getSizeInBits()) && |
Dan Gohman | a01e8bd | 2016-05-14 02:15:47 +0000 | [diff] [blame] | 320 | "32-bit shift counts ought to be enough for anyone"); |
Dan Gohman | 4172953 | 2015-12-16 23:25:51 +0000 | [diff] [blame] | 321 | } |
| 322 | |
Dan Gohman | a848375 | 2015-12-10 00:26:26 +0000 | [diff] [blame] | 323 | MVT Result = MVT::getIntegerVT(BitWidth); |
| 324 | assert(Result != MVT::INVALID_SIMPLE_VALUE_TYPE && |
| 325 | "Unable to represent scalar shift amount type"); |
| 326 | return Result; |
JF Bastien | fda5337 | 2015-08-03 00:00:11 +0000 | [diff] [blame] | 327 | } |
| 328 | |
Dan Gohman | cdd48b8 | 2017-11-28 01:13:40 +0000 | [diff] [blame] | 329 | // Lower an fp-to-int conversion operator from the LLVM opcode, which has an |
| 330 | // undefined result on invalid/overflow, to the WebAssembly opcode, which |
| 331 | // traps on invalid/overflow. |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 332 | static MachineBasicBlock *LowerFPToInt(MachineInstr &MI, DebugLoc DL, |
| 333 | MachineBasicBlock *BB, |
| 334 | const TargetInstrInfo &TII, |
| 335 | bool IsUnsigned, bool Int64, |
| 336 | bool Float64, unsigned LoweredOpcode) { |
Dan Gohman | cdd48b8 | 2017-11-28 01:13:40 +0000 | [diff] [blame] | 337 | MachineRegisterInfo &MRI = BB->getParent()->getRegInfo(); |
| 338 | |
| 339 | unsigned OutReg = MI.getOperand(0).getReg(); |
| 340 | unsigned InReg = MI.getOperand(1).getReg(); |
| 341 | |
| 342 | unsigned Abs = Float64 ? WebAssembly::ABS_F64 : WebAssembly::ABS_F32; |
| 343 | unsigned FConst = Float64 ? WebAssembly::CONST_F64 : WebAssembly::CONST_F32; |
| 344 | unsigned LT = Float64 ? WebAssembly::LT_F64 : WebAssembly::LT_F32; |
Dan Gohman | 580c102 | 2017-11-29 20:20:11 +0000 | [diff] [blame] | 345 | unsigned GE = Float64 ? WebAssembly::GE_F64 : WebAssembly::GE_F32; |
Dan Gohman | cdd48b8 | 2017-11-28 01:13:40 +0000 | [diff] [blame] | 346 | unsigned IConst = Int64 ? WebAssembly::CONST_I64 : WebAssembly::CONST_I32; |
Dan Gohman | 580c102 | 2017-11-29 20:20:11 +0000 | [diff] [blame] | 347 | unsigned Eqz = WebAssembly::EQZ_I32; |
| 348 | unsigned And = WebAssembly::AND_I32; |
Dan Gohman | cdd48b8 | 2017-11-28 01:13:40 +0000 | [diff] [blame] | 349 | int64_t Limit = Int64 ? INT64_MIN : INT32_MIN; |
| 350 | int64_t Substitute = IsUnsigned ? 0 : Limit; |
| 351 | double CmpVal = IsUnsigned ? -(double)Limit * 2.0 : -(double)Limit; |
David Blaikie | 2110924 | 2017-12-15 23:52:06 +0000 | [diff] [blame] | 352 | auto &Context = BB->getParent()->getFunction().getContext(); |
Dan Gohman | cdd48b8 | 2017-11-28 01:13:40 +0000 | [diff] [blame] | 353 | Type *Ty = Float64 ? Type::getDoubleTy(Context) : Type::getFloatTy(Context); |
| 354 | |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 355 | const BasicBlock *LLVMBB = BB->getBasicBlock(); |
Dan Gohman | cdd48b8 | 2017-11-28 01:13:40 +0000 | [diff] [blame] | 356 | MachineFunction *F = BB->getParent(); |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 357 | MachineBasicBlock *TrueMBB = F->CreateMachineBasicBlock(LLVMBB); |
| 358 | MachineBasicBlock *FalseMBB = F->CreateMachineBasicBlock(LLVMBB); |
| 359 | MachineBasicBlock *DoneMBB = F->CreateMachineBasicBlock(LLVMBB); |
Dan Gohman | cdd48b8 | 2017-11-28 01:13:40 +0000 | [diff] [blame] | 360 | |
| 361 | MachineFunction::iterator It = ++BB->getIterator(); |
| 362 | F->insert(It, FalseMBB); |
| 363 | F->insert(It, TrueMBB); |
| 364 | F->insert(It, DoneMBB); |
| 365 | |
| 366 | // Transfer the remainder of BB and its successor edges to DoneMBB. |
Heejin Ahn | 5c644c9 | 2019-03-05 21:05:09 +0000 | [diff] [blame] | 367 | DoneMBB->splice(DoneMBB->begin(), BB, std::next(MI.getIterator()), BB->end()); |
Dan Gohman | cdd48b8 | 2017-11-28 01:13:40 +0000 | [diff] [blame] | 368 | DoneMBB->transferSuccessorsAndUpdatePHIs(BB); |
| 369 | |
| 370 | BB->addSuccessor(TrueMBB); |
| 371 | BB->addSuccessor(FalseMBB); |
| 372 | TrueMBB->addSuccessor(DoneMBB); |
| 373 | FalseMBB->addSuccessor(DoneMBB); |
| 374 | |
Dan Gohman | 580c102 | 2017-11-29 20:20:11 +0000 | [diff] [blame] | 375 | unsigned Tmp0, Tmp1, CmpReg, EqzReg, FalseReg, TrueReg; |
Dan Gohman | cdd48b8 | 2017-11-28 01:13:40 +0000 | [diff] [blame] | 376 | Tmp0 = MRI.createVirtualRegister(MRI.getRegClass(InReg)); |
| 377 | Tmp1 = MRI.createVirtualRegister(MRI.getRegClass(InReg)); |
Dan Gohman | 580c102 | 2017-11-29 20:20:11 +0000 | [diff] [blame] | 378 | CmpReg = MRI.createVirtualRegister(&WebAssembly::I32RegClass); |
| 379 | EqzReg = MRI.createVirtualRegister(&WebAssembly::I32RegClass); |
| 380 | FalseReg = MRI.createVirtualRegister(MRI.getRegClass(OutReg)); |
| 381 | TrueReg = MRI.createVirtualRegister(MRI.getRegClass(OutReg)); |
Dan Gohman | cdd48b8 | 2017-11-28 01:13:40 +0000 | [diff] [blame] | 382 | |
| 383 | MI.eraseFromParent(); |
Dan Gohman | 580c102 | 2017-11-29 20:20:11 +0000 | [diff] [blame] | 384 | // For signed numbers, we can do a single comparison to determine whether |
| 385 | // fabs(x) is within range. |
Dan Gohman | cdd48b8 | 2017-11-28 01:13:40 +0000 | [diff] [blame] | 386 | if (IsUnsigned) { |
| 387 | Tmp0 = InReg; |
| 388 | } else { |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 389 | BuildMI(BB, DL, TII.get(Abs), Tmp0).addReg(InReg); |
Dan Gohman | cdd48b8 | 2017-11-28 01:13:40 +0000 | [diff] [blame] | 390 | } |
| 391 | BuildMI(BB, DL, TII.get(FConst), Tmp1) |
| 392 | .addFPImm(cast<ConstantFP>(ConstantFP::get(Ty, CmpVal))); |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 393 | BuildMI(BB, DL, TII.get(LT), CmpReg).addReg(Tmp0).addReg(Tmp1); |
Dan Gohman | 580c102 | 2017-11-29 20:20:11 +0000 | [diff] [blame] | 394 | |
| 395 | // For unsigned numbers, we have to do a separate comparison with zero. |
| 396 | if (IsUnsigned) { |
| 397 | Tmp1 = MRI.createVirtualRegister(MRI.getRegClass(InReg)); |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 398 | unsigned SecondCmpReg = |
| 399 | MRI.createVirtualRegister(&WebAssembly::I32RegClass); |
Dan Gohman | 580c102 | 2017-11-29 20:20:11 +0000 | [diff] [blame] | 400 | unsigned AndReg = MRI.createVirtualRegister(&WebAssembly::I32RegClass); |
| 401 | BuildMI(BB, DL, TII.get(FConst), Tmp1) |
| 402 | .addFPImm(cast<ConstantFP>(ConstantFP::get(Ty, 0.0))); |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 403 | BuildMI(BB, DL, TII.get(GE), SecondCmpReg).addReg(Tmp0).addReg(Tmp1); |
| 404 | BuildMI(BB, DL, TII.get(And), AndReg).addReg(CmpReg).addReg(SecondCmpReg); |
Dan Gohman | 580c102 | 2017-11-29 20:20:11 +0000 | [diff] [blame] | 405 | CmpReg = AndReg; |
| 406 | } |
| 407 | |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 408 | BuildMI(BB, DL, TII.get(Eqz), EqzReg).addReg(CmpReg); |
Dan Gohman | 580c102 | 2017-11-29 20:20:11 +0000 | [diff] [blame] | 409 | |
| 410 | // Create the CFG diamond to select between doing the conversion or using |
| 411 | // the substitute value. |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 412 | BuildMI(BB, DL, TII.get(WebAssembly::BR_IF)).addMBB(TrueMBB).addReg(EqzReg); |
| 413 | BuildMI(FalseMBB, DL, TII.get(LoweredOpcode), FalseReg).addReg(InReg); |
| 414 | BuildMI(FalseMBB, DL, TII.get(WebAssembly::BR)).addMBB(DoneMBB); |
| 415 | BuildMI(TrueMBB, DL, TII.get(IConst), TrueReg).addImm(Substitute); |
Dan Gohman | cdd48b8 | 2017-11-28 01:13:40 +0000 | [diff] [blame] | 416 | BuildMI(*DoneMBB, DoneMBB->begin(), DL, TII.get(TargetOpcode::PHI), OutReg) |
Dan Gohman | 580c102 | 2017-11-29 20:20:11 +0000 | [diff] [blame] | 417 | .addReg(FalseReg) |
Dan Gohman | cdd48b8 | 2017-11-28 01:13:40 +0000 | [diff] [blame] | 418 | .addMBB(FalseMBB) |
Dan Gohman | 580c102 | 2017-11-29 20:20:11 +0000 | [diff] [blame] | 419 | .addReg(TrueReg) |
Dan Gohman | cdd48b8 | 2017-11-28 01:13:40 +0000 | [diff] [blame] | 420 | .addMBB(TrueMBB); |
| 421 | |
| 422 | return DoneMBB; |
| 423 | } |
| 424 | |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 425 | MachineBasicBlock *WebAssemblyTargetLowering::EmitInstrWithCustomInserter( |
| 426 | MachineInstr &MI, MachineBasicBlock *BB) const { |
Dan Gohman | cdd48b8 | 2017-11-28 01:13:40 +0000 | [diff] [blame] | 427 | const TargetInstrInfo &TII = *Subtarget->getInstrInfo(); |
| 428 | DebugLoc DL = MI.getDebugLoc(); |
| 429 | |
| 430 | switch (MI.getOpcode()) { |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 431 | default: |
| 432 | llvm_unreachable("Unexpected instr type to insert"); |
Dan Gohman | cdd48b8 | 2017-11-28 01:13:40 +0000 | [diff] [blame] | 433 | case WebAssembly::FP_TO_SINT_I32_F32: |
| 434 | return LowerFPToInt(MI, DL, BB, TII, false, false, false, |
| 435 | WebAssembly::I32_TRUNC_S_F32); |
| 436 | case WebAssembly::FP_TO_UINT_I32_F32: |
| 437 | return LowerFPToInt(MI, DL, BB, TII, true, false, false, |
| 438 | WebAssembly::I32_TRUNC_U_F32); |
| 439 | case WebAssembly::FP_TO_SINT_I64_F32: |
| 440 | return LowerFPToInt(MI, DL, BB, TII, false, true, false, |
| 441 | WebAssembly::I64_TRUNC_S_F32); |
| 442 | case WebAssembly::FP_TO_UINT_I64_F32: |
| 443 | return LowerFPToInt(MI, DL, BB, TII, true, true, false, |
| 444 | WebAssembly::I64_TRUNC_U_F32); |
| 445 | case WebAssembly::FP_TO_SINT_I32_F64: |
| 446 | return LowerFPToInt(MI, DL, BB, TII, false, false, true, |
| 447 | WebAssembly::I32_TRUNC_S_F64); |
| 448 | case WebAssembly::FP_TO_UINT_I32_F64: |
| 449 | return LowerFPToInt(MI, DL, BB, TII, true, false, true, |
| 450 | WebAssembly::I32_TRUNC_U_F64); |
| 451 | case WebAssembly::FP_TO_SINT_I64_F64: |
| 452 | return LowerFPToInt(MI, DL, BB, TII, false, true, true, |
| 453 | WebAssembly::I64_TRUNC_S_F64); |
| 454 | case WebAssembly::FP_TO_UINT_I64_F64: |
| 455 | return LowerFPToInt(MI, DL, BB, TII, true, true, true, |
| 456 | WebAssembly::I64_TRUNC_U_F64); |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 457 | llvm_unreachable("Unexpected instruction to emit with custom inserter"); |
Dan Gohman | cdd48b8 | 2017-11-28 01:13:40 +0000 | [diff] [blame] | 458 | } |
| 459 | } |
| 460 | |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 461 | const char * |
| 462 | WebAssemblyTargetLowering::getTargetNodeName(unsigned Opcode) const { |
JF Bastien | 480c840 | 2015-08-11 20:13:18 +0000 | [diff] [blame] | 463 | switch (static_cast<WebAssemblyISD::NodeType>(Opcode)) { |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 464 | case WebAssemblyISD::FIRST_NUMBER: |
| 465 | break; |
| 466 | #define HANDLE_NODETYPE(NODE) \ |
| 467 | case WebAssemblyISD::NODE: \ |
JF Bastien | af111db | 2015-08-24 22:16:48 +0000 | [diff] [blame] | 468 | return "WebAssemblyISD::" #NODE; |
| 469 | #include "WebAssemblyISD.def" |
| 470 | #undef HANDLE_NODETYPE |
JF Bastien | 480c840 | 2015-08-11 20:13:18 +0000 | [diff] [blame] | 471 | } |
| 472 | return nullptr; |
| 473 | } |
| 474 | |
Dan Gohman | f19ed56 | 2015-11-13 01:42:29 +0000 | [diff] [blame] | 475 | std::pair<unsigned, const TargetRegisterClass *> |
| 476 | WebAssemblyTargetLowering::getRegForInlineAsmConstraint( |
| 477 | const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const { |
| 478 | // First, see if this is a constraint that directly corresponds to a |
| 479 | // WebAssembly register class. |
| 480 | if (Constraint.size() == 1) { |
| 481 | switch (Constraint[0]) { |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 482 | case 'r': |
| 483 | assert(VT != MVT::iPTR && "Pointer MVT not expected here"); |
| 484 | if (Subtarget->hasSIMD128() && VT.isVector()) { |
| 485 | if (VT.getSizeInBits() == 128) |
| 486 | return std::make_pair(0U, &WebAssembly::V128RegClass); |
| 487 | } |
| 488 | if (VT.isInteger() && !VT.isVector()) { |
| 489 | if (VT.getSizeInBits() <= 32) |
| 490 | return std::make_pair(0U, &WebAssembly::I32RegClass); |
| 491 | if (VT.getSizeInBits() <= 64) |
| 492 | return std::make_pair(0U, &WebAssembly::I64RegClass); |
| 493 | } |
| 494 | break; |
| 495 | default: |
| 496 | break; |
Dan Gohman | f19ed56 | 2015-11-13 01:42:29 +0000 | [diff] [blame] | 497 | } |
| 498 | } |
| 499 | |
| 500 | return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT); |
| 501 | } |
| 502 | |
Dan Gohman | 3192ddf | 2015-11-19 23:04:59 +0000 | [diff] [blame] | 503 | bool WebAssemblyTargetLowering::isCheapToSpeculateCttz() const { |
| 504 | // Assume ctz is a relatively cheap operation. |
| 505 | return true; |
| 506 | } |
| 507 | |
| 508 | bool WebAssemblyTargetLowering::isCheapToSpeculateCtlz() const { |
| 509 | // Assume clz is a relatively cheap operation. |
| 510 | return true; |
| 511 | } |
| 512 | |
Dan Gohman | 4b9d791 | 2015-12-15 22:01:29 +0000 | [diff] [blame] | 513 | bool WebAssemblyTargetLowering::isLegalAddressingMode(const DataLayout &DL, |
| 514 | const AddrMode &AM, |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 515 | Type *Ty, unsigned AS, |
Jonas Paulsson | 024e319 | 2017-07-21 11:59:37 +0000 | [diff] [blame] | 516 | Instruction *I) const { |
Dan Gohman | 4b9d791 | 2015-12-15 22:01:29 +0000 | [diff] [blame] | 517 | // WebAssembly offsets are added as unsigned without wrapping. The |
| 518 | // isLegalAddressingMode gives us no way to determine if wrapping could be |
| 519 | // happening, so we approximate this by accepting only non-negative offsets. |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 520 | if (AM.BaseOffs < 0) |
| 521 | return false; |
Dan Gohman | 4b9d791 | 2015-12-15 22:01:29 +0000 | [diff] [blame] | 522 | |
| 523 | // WebAssembly has no scale register operands. |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 524 | if (AM.Scale != 0) |
| 525 | return false; |
Dan Gohman | 4b9d791 | 2015-12-15 22:01:29 +0000 | [diff] [blame] | 526 | |
| 527 | // Everything else is legal. |
| 528 | return true; |
| 529 | } |
| 530 | |
Dan Gohman | bb37224 | 2016-01-26 03:39:31 +0000 | [diff] [blame] | 531 | bool WebAssemblyTargetLowering::allowsMisalignedMemoryAccesses( |
Derek Schuff | 3f06329 | 2016-02-11 20:57:09 +0000 | [diff] [blame] | 532 | EVT /*VT*/, unsigned /*AddrSpace*/, unsigned /*Align*/, bool *Fast) const { |
Dan Gohman | bb37224 | 2016-01-26 03:39:31 +0000 | [diff] [blame] | 533 | // WebAssembly supports unaligned accesses, though it should be declared |
| 534 | // with the p2align attribute on loads and stores which do so, and there |
| 535 | // may be a performance impact. We tell LLVM they're "fast" because |
Dan Gohman | fb619e9 | 2016-01-26 14:55:17 +0000 | [diff] [blame] | 536 | // for the kinds of things that LLVM uses this for (merging adjacent stores |
Dan Gohman | bb37224 | 2016-01-26 03:39:31 +0000 | [diff] [blame] | 537 | // of constants, etc.), WebAssembly implementations will either want the |
| 538 | // unaligned access or they'll split anyway. |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 539 | if (Fast) |
| 540 | *Fast = true; |
Dan Gohman | bb37224 | 2016-01-26 03:39:31 +0000 | [diff] [blame] | 541 | return true; |
| 542 | } |
| 543 | |
Reid Kleckner | b518054 | 2017-03-21 16:57:19 +0000 | [diff] [blame] | 544 | bool WebAssemblyTargetLowering::isIntDivCheap(EVT VT, |
| 545 | AttributeList Attr) const { |
Dan Gohman | b4c3c38 | 2016-05-18 14:29:42 +0000 | [diff] [blame] | 546 | // The current thinking is that wasm engines will perform this optimization, |
| 547 | // so we can save on code size. |
| 548 | return true; |
| 549 | } |
| 550 | |
Simon Pilgrim | 99f7016 | 2018-06-28 17:27:09 +0000 | [diff] [blame] | 551 | EVT WebAssemblyTargetLowering::getSetCCResultType(const DataLayout &DL, |
| 552 | LLVMContext &C, |
| 553 | EVT VT) const { |
| 554 | if (VT.isVector()) |
| 555 | return VT.changeVectorElementTypeToInteger(); |
| 556 | |
| 557 | return TargetLowering::getSetCCResultType(DL, C, VT); |
| 558 | } |
| 559 | |
Heejin Ahn | 4128cb0 | 2018-08-02 21:44:24 +0000 | [diff] [blame] | 560 | bool WebAssemblyTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info, |
| 561 | const CallInst &I, |
| 562 | MachineFunction &MF, |
| 563 | unsigned Intrinsic) const { |
| 564 | switch (Intrinsic) { |
| 565 | case Intrinsic::wasm_atomic_notify: |
| 566 | Info.opc = ISD::INTRINSIC_W_CHAIN; |
| 567 | Info.memVT = MVT::i32; |
| 568 | Info.ptrVal = I.getArgOperand(0); |
| 569 | Info.offset = 0; |
| 570 | Info.align = 4; |
| 571 | // atomic.notify instruction does not really load the memory specified with |
| 572 | // this argument, but MachineMemOperand should either be load or store, so |
| 573 | // we set this to a load. |
| 574 | // FIXME Volatile isn't really correct, but currently all LLVM atomic |
| 575 | // instructions are treated as volatiles in the backend, so we should be |
| 576 | // consistent. The same applies for wasm_atomic_wait intrinsics too. |
| 577 | Info.flags = MachineMemOperand::MOVolatile | MachineMemOperand::MOLoad; |
| 578 | return true; |
| 579 | case Intrinsic::wasm_atomic_wait_i32: |
| 580 | Info.opc = ISD::INTRINSIC_W_CHAIN; |
| 581 | Info.memVT = MVT::i32; |
| 582 | Info.ptrVal = I.getArgOperand(0); |
| 583 | Info.offset = 0; |
| 584 | Info.align = 4; |
| 585 | Info.flags = MachineMemOperand::MOVolatile | MachineMemOperand::MOLoad; |
| 586 | return true; |
| 587 | case Intrinsic::wasm_atomic_wait_i64: |
| 588 | Info.opc = ISD::INTRINSIC_W_CHAIN; |
| 589 | Info.memVT = MVT::i64; |
| 590 | Info.ptrVal = I.getArgOperand(0); |
| 591 | Info.offset = 0; |
| 592 | Info.align = 8; |
| 593 | Info.flags = MachineMemOperand::MOVolatile | MachineMemOperand::MOLoad; |
| 594 | return true; |
| 595 | default: |
| 596 | return false; |
| 597 | } |
| 598 | } |
| 599 | |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 600 | //===----------------------------------------------------------------------===// |
| 601 | // WebAssembly Lowering private implementation. |
| 602 | //===----------------------------------------------------------------------===// |
| 603 | |
| 604 | //===----------------------------------------------------------------------===// |
| 605 | // Lowering Code |
| 606 | //===----------------------------------------------------------------------===// |
| 607 | |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 608 | static void fail(const SDLoc &DL, SelectionDAG &DAG, const char *Msg) { |
JF Bastien | b9073fb | 2015-07-22 21:28:15 +0000 | [diff] [blame] | 609 | MachineFunction &MF = DAG.getMachineFunction(); |
| 610 | DAG.getContext()->diagnose( |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 611 | DiagnosticInfoUnsupported(MF.getFunction(), Msg, DL.getDebugLoc())); |
JF Bastien | b9073fb | 2015-07-22 21:28:15 +0000 | [diff] [blame] | 612 | } |
| 613 | |
Dan Gohman | 85dbdda | 2015-12-04 17:16:07 +0000 | [diff] [blame] | 614 | // Test whether the given calling convention is supported. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 615 | static bool callingConvSupported(CallingConv::ID CallConv) { |
Dan Gohman | 85dbdda | 2015-12-04 17:16:07 +0000 | [diff] [blame] | 616 | // We currently support the language-independent target-independent |
Dan Gohman | 1ce2b1a | 2015-12-04 18:27:03 +0000 | [diff] [blame] | 617 | // conventions. We don't yet have a way to annotate calls with properties like |
| 618 | // "cold", and we don't have any call-clobbered registers, so these are mostly |
| 619 | // all handled the same. |
Dan Gohman | a3f5ce5 | 2015-12-04 17:18:32 +0000 | [diff] [blame] | 620 | return CallConv == CallingConv::C || CallConv == CallingConv::Fast || |
Dan Gohman | 1ce2b1a | 2015-12-04 18:27:03 +0000 | [diff] [blame] | 621 | CallConv == CallingConv::Cold || |
| 622 | CallConv == CallingConv::PreserveMost || |
| 623 | CallConv == CallingConv::PreserveAll || |
| 624 | CallConv == CallingConv::CXX_FAST_TLS; |
Dan Gohman | 85dbdda | 2015-12-04 17:16:07 +0000 | [diff] [blame] | 625 | } |
| 626 | |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 627 | SDValue |
| 628 | WebAssemblyTargetLowering::LowerCall(CallLoweringInfo &CLI, |
| 629 | SmallVectorImpl<SDValue> &InVals) const { |
JF Bastien | d8a9d66 | 2015-08-24 21:59:51 +0000 | [diff] [blame] | 630 | SelectionDAG &DAG = CLI.DAG; |
| 631 | SDLoc DL = CLI.DL; |
| 632 | SDValue Chain = CLI.Chain; |
| 633 | SDValue Callee = CLI.Callee; |
| 634 | MachineFunction &MF = DAG.getMachineFunction(); |
Derek Schuff | 992d83f | 2016-02-10 20:14:15 +0000 | [diff] [blame] | 635 | auto Layout = MF.getDataLayout(); |
JF Bastien | d8a9d66 | 2015-08-24 21:59:51 +0000 | [diff] [blame] | 636 | |
| 637 | CallingConv::ID CallConv = CLI.CallConv; |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 638 | if (!callingConvSupported(CallConv)) |
Dan Gohman | 9cc692b | 2015-10-02 20:54:23 +0000 | [diff] [blame] | 639 | fail(DL, DAG, |
| 640 | "WebAssembly doesn't support language-specific or target-specific " |
| 641 | "calling conventions yet"); |
JF Bastien | d8a9d66 | 2015-08-24 21:59:51 +0000 | [diff] [blame] | 642 | if (CLI.IsPatchPoint) |
| 643 | fail(DL, DAG, "WebAssembly doesn't support patch point yet"); |
| 644 | |
Dan Gohman | 9cc692b | 2015-10-02 20:54:23 +0000 | [diff] [blame] | 645 | // WebAssembly doesn't currently support explicit tail calls. If they are |
| 646 | // required, fail. Otherwise, just disable them. |
| 647 | if ((CallConv == CallingConv::Fast && CLI.IsTailCall && |
| 648 | MF.getTarget().Options.GuaranteedTailCallOpt) || |
Peter Collingbourne | 081ffe2 | 2017-07-26 19:15:29 +0000 | [diff] [blame] | 649 | (CLI.CS && CLI.CS.isMustTailCall())) |
Dan Gohman | 9cc692b | 2015-10-02 20:54:23 +0000 | [diff] [blame] | 650 | fail(DL, DAG, "WebAssembly doesn't support tail call yet"); |
| 651 | CLI.IsTailCall = false; |
| 652 | |
JF Bastien | d8a9d66 | 2015-08-24 21:59:51 +0000 | [diff] [blame] | 653 | SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins; |
Dan Gohman | e590b33 | 2015-09-09 01:52:45 +0000 | [diff] [blame] | 654 | if (Ins.size() > 1) |
| 655 | fail(DL, DAG, "WebAssembly doesn't support more than 1 returned value yet"); |
| 656 | |
Dan Gohman | 2d822e7 | 2015-12-04 17:12:52 +0000 | [diff] [blame] | 657 | SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs; |
Derek Schuff | 4dd6778 | 2016-01-27 21:17:39 +0000 | [diff] [blame] | 658 | SmallVectorImpl<SDValue> &OutVals = CLI.OutVals; |
Dan Gohman | 910ba33 | 2018-06-26 03:18:38 +0000 | [diff] [blame] | 659 | unsigned NumFixedArgs = 0; |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 660 | for (unsigned I = 0; I < Outs.size(); ++I) { |
| 661 | const ISD::OutputArg &Out = Outs[I]; |
| 662 | SDValue &OutVal = OutVals[I]; |
Dan Gohman | 7935fa3 | 2015-12-10 00:22:40 +0000 | [diff] [blame] | 663 | if (Out.Flags.isNest()) |
| 664 | fail(DL, DAG, "WebAssembly hasn't implemented nest arguments"); |
Dan Gohman | 2d822e7 | 2015-12-04 17:12:52 +0000 | [diff] [blame] | 665 | if (Out.Flags.isInAlloca()) |
Dan Gohman | 7935fa3 | 2015-12-10 00:22:40 +0000 | [diff] [blame] | 666 | fail(DL, DAG, "WebAssembly hasn't implemented inalloca arguments"); |
Dan Gohman | 2d822e7 | 2015-12-04 17:12:52 +0000 | [diff] [blame] | 667 | if (Out.Flags.isInConsecutiveRegs()) |
Dan Gohman | 7935fa3 | 2015-12-10 00:22:40 +0000 | [diff] [blame] | 668 | fail(DL, DAG, "WebAssembly hasn't implemented cons regs arguments"); |
Dan Gohman | 2d822e7 | 2015-12-04 17:12:52 +0000 | [diff] [blame] | 669 | if (Out.Flags.isInConsecutiveRegsLast()) |
Dan Gohman | 7935fa3 | 2015-12-10 00:22:40 +0000 | [diff] [blame] | 670 | fail(DL, DAG, "WebAssembly hasn't implemented cons regs last arguments"); |
Dan Gohman | a6771b3 | 2016-02-12 21:30:18 +0000 | [diff] [blame] | 671 | if (Out.Flags.isByVal() && Out.Flags.getByValSize() != 0) { |
Matthias Braun | 941a705 | 2016-07-28 18:40:00 +0000 | [diff] [blame] | 672 | auto &MFI = MF.getFrameInfo(); |
| 673 | int FI = MFI.CreateStackObject(Out.Flags.getByValSize(), |
| 674 | Out.Flags.getByValAlign(), |
| 675 | /*isSS=*/false); |
Derek Schuff | 4dd6778 | 2016-01-27 21:17:39 +0000 | [diff] [blame] | 676 | SDValue SizeNode = |
| 677 | DAG.getConstant(Out.Flags.getByValSize(), DL, MVT::i32); |
Derek Schuff | 992d83f | 2016-02-10 20:14:15 +0000 | [diff] [blame] | 678 | SDValue FINode = DAG.getFrameIndex(FI, getPointerTy(Layout)); |
Derek Schuff | 4dd6778 | 2016-01-27 21:17:39 +0000 | [diff] [blame] | 679 | Chain = DAG.getMemcpy( |
| 680 | Chain, DL, FINode, OutVal, SizeNode, Out.Flags.getByValAlign(), |
Dan Gohman | 476ffce | 2016-02-17 01:43:37 +0000 | [diff] [blame] | 681 | /*isVolatile*/ false, /*AlwaysInline=*/false, |
Derek Schuff | 4dd6778 | 2016-01-27 21:17:39 +0000 | [diff] [blame] | 682 | /*isTailCall*/ false, MachinePointerInfo(), MachinePointerInfo()); |
| 683 | OutVal = FINode; |
| 684 | } |
Dan Gohman | 910ba33 | 2018-06-26 03:18:38 +0000 | [diff] [blame] | 685 | // Count the number of fixed args *after* legalization. |
| 686 | NumFixedArgs += Out.IsFixed; |
Dan Gohman | 2d822e7 | 2015-12-04 17:12:52 +0000 | [diff] [blame] | 687 | } |
| 688 | |
JF Bastien | d8a9d66 | 2015-08-24 21:59:51 +0000 | [diff] [blame] | 689 | bool IsVarArg = CLI.IsVarArg; |
Derek Schuff | 992d83f | 2016-02-10 20:14:15 +0000 | [diff] [blame] | 690 | auto PtrVT = getPointerTy(Layout); |
Dan Gohman | e590b33 | 2015-09-09 01:52:45 +0000 | [diff] [blame] | 691 | |
JF Bastien | d8a9d66 | 2015-08-24 21:59:51 +0000 | [diff] [blame] | 692 | // Analyze operands of the call, assigning locations to each operand. |
| 693 | SmallVector<CCValAssign, 16> ArgLocs; |
| 694 | CCState CCInfo(CallConv, IsVarArg, MF, ArgLocs, *DAG.getContext()); |
JF Bastien | d8a9d66 | 2015-08-24 21:59:51 +0000 | [diff] [blame] | 695 | |
Dan Gohman | 35bfb24 | 2015-12-04 23:22:35 +0000 | [diff] [blame] | 696 | if (IsVarArg) { |
Derek Schuff | 27501e2 | 2016-02-10 19:51:04 +0000 | [diff] [blame] | 697 | // Outgoing non-fixed arguments are placed in a buffer. First |
| 698 | // compute their offsets and the total amount of buffer space needed. |
Dan Gohman | c71132c | 2019-02-26 05:20:19 +0000 | [diff] [blame] | 699 | for (unsigned I = NumFixedArgs; I < Outs.size(); ++I) { |
| 700 | const ISD::OutputArg &Out = Outs[I]; |
| 701 | SDValue &Arg = OutVals[I]; |
Dan Gohman | 35bfb24 | 2015-12-04 23:22:35 +0000 | [diff] [blame] | 702 | EVT VT = Arg.getValueType(); |
| 703 | assert(VT != MVT::iPTR && "Legalized args should be concrete"); |
| 704 | Type *Ty = VT.getTypeForEVT(*DAG.getContext()); |
Dan Gohman | c71132c | 2019-02-26 05:20:19 +0000 | [diff] [blame] | 705 | unsigned Align = std::max(Out.Flags.getOrigAlign(), |
| 706 | Layout.getABITypeAlignment(Ty)); |
Derek Schuff | 992d83f | 2016-02-10 20:14:15 +0000 | [diff] [blame] | 707 | unsigned Offset = CCInfo.AllocateStack(Layout.getTypeAllocSize(Ty), |
Dan Gohman | c71132c | 2019-02-26 05:20:19 +0000 | [diff] [blame] | 708 | Align); |
Dan Gohman | 35bfb24 | 2015-12-04 23:22:35 +0000 | [diff] [blame] | 709 | CCInfo.addLoc(CCValAssign::getMem(ArgLocs.size(), VT.getSimpleVT(), |
| 710 | Offset, VT.getSimpleVT(), |
| 711 | CCValAssign::Full)); |
| 712 | } |
| 713 | } |
| 714 | |
| 715 | unsigned NumBytes = CCInfo.getAlignedCallFrameSize(); |
| 716 | |
Derek Schuff | 27501e2 | 2016-02-10 19:51:04 +0000 | [diff] [blame] | 717 | SDValue FINode; |
| 718 | if (IsVarArg && NumBytes) { |
Dan Gohman | 35bfb24 | 2015-12-04 23:22:35 +0000 | [diff] [blame] | 719 | // For non-fixed arguments, next emit stores to store the argument values |
Derek Schuff | 27501e2 | 2016-02-10 19:51:04 +0000 | [diff] [blame] | 720 | // to the stack buffer at the offsets computed above. |
Matthias Braun | 941a705 | 2016-07-28 18:40:00 +0000 | [diff] [blame] | 721 | int FI = MF.getFrameInfo().CreateStackObject(NumBytes, |
| 722 | Layout.getStackAlignment(), |
| 723 | /*isSS=*/false); |
Dan Gohman | 35bfb24 | 2015-12-04 23:22:35 +0000 | [diff] [blame] | 724 | unsigned ValNo = 0; |
| 725 | SmallVector<SDValue, 8> Chains; |
| 726 | for (SDValue Arg : |
| 727 | make_range(OutVals.begin() + NumFixedArgs, OutVals.end())) { |
| 728 | assert(ArgLocs[ValNo].getValNo() == ValNo && |
| 729 | "ArgLocs should remain in order and only hold varargs args"); |
| 730 | unsigned Offset = ArgLocs[ValNo++].getLocMemOffset(); |
Derek Schuff | 992d83f | 2016-02-10 20:14:15 +0000 | [diff] [blame] | 731 | FINode = DAG.getFrameIndex(FI, getPointerTy(Layout)); |
Derek Schuff | 27501e2 | 2016-02-10 19:51:04 +0000 | [diff] [blame] | 732 | SDValue Add = DAG.getNode(ISD::ADD, DL, PtrVT, FINode, |
Dan Gohman | 35bfb24 | 2015-12-04 23:22:35 +0000 | [diff] [blame] | 733 | DAG.getConstant(Offset, DL, PtrVT)); |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 734 | Chains.push_back( |
| 735 | DAG.getStore(Chain, DL, Arg, Add, |
| 736 | MachinePointerInfo::getFixedStack(MF, FI, Offset), 0)); |
Dan Gohman | 35bfb24 | 2015-12-04 23:22:35 +0000 | [diff] [blame] | 737 | } |
| 738 | if (!Chains.empty()) |
| 739 | Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chains); |
Derek Schuff | 27501e2 | 2016-02-10 19:51:04 +0000 | [diff] [blame] | 740 | } else if (IsVarArg) { |
| 741 | FINode = DAG.getIntPtrConstant(0, DL); |
Dan Gohman | 35bfb24 | 2015-12-04 23:22:35 +0000 | [diff] [blame] | 742 | } |
| 743 | |
Sam Clegg | 492f752 | 2019-03-26 19:46:15 +0000 | [diff] [blame] | 744 | if (Callee->getOpcode() == ISD::GlobalAddress) { |
| 745 | // If the callee is a GlobalAddress node (quite common, every direct call |
| 746 | // is) turn it into a TargetGlobalAddress node so that LowerGlobalAddress |
| 747 | // doesn't at MO_GOT which is not needed for direct calls. |
| 748 | GlobalAddressSDNode* GA = cast<GlobalAddressSDNode>(Callee); |
| 749 | Callee = DAG.getTargetGlobalAddress(GA->getGlobal(), DL, |
| 750 | getPointerTy(DAG.getDataLayout()), |
| 751 | GA->getOffset()); |
| 752 | Callee = DAG.getNode(WebAssemblyISD::Wrapper, DL, |
| 753 | getPointerTy(DAG.getDataLayout()), Callee); |
| 754 | } |
| 755 | |
Dan Gohman | 35bfb24 | 2015-12-04 23:22:35 +0000 | [diff] [blame] | 756 | // Compute the operands for the CALLn node. |
JF Bastien | d8a9d66 | 2015-08-24 21:59:51 +0000 | [diff] [blame] | 757 | SmallVector<SDValue, 16> Ops; |
| 758 | Ops.push_back(Chain); |
JF Bastien | af111db | 2015-08-24 22:16:48 +0000 | [diff] [blame] | 759 | Ops.push_back(Callee); |
Dan Gohman | 35bfb24 | 2015-12-04 23:22:35 +0000 | [diff] [blame] | 760 | |
| 761 | // Add all fixed arguments. Note that for non-varargs calls, NumFixedArgs |
| 762 | // isn't reliable. |
| 763 | Ops.append(OutVals.begin(), |
| 764 | IsVarArg ? OutVals.begin() + NumFixedArgs : OutVals.end()); |
Derek Schuff | 27501e2 | 2016-02-10 19:51:04 +0000 | [diff] [blame] | 765 | // Add a pointer to the vararg buffer. |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 766 | if (IsVarArg) |
| 767 | Ops.push_back(FINode); |
JF Bastien | d8a9d66 | 2015-08-24 21:59:51 +0000 | [diff] [blame] | 768 | |
Derek Schuff | 27501e2 | 2016-02-10 19:51:04 +0000 | [diff] [blame] | 769 | SmallVector<EVT, 8> InTys; |
Dan Gohman | 2d822e7 | 2015-12-04 17:12:52 +0000 | [diff] [blame] | 770 | for (const auto &In : Ins) { |
Dan Gohman | 7935fa3 | 2015-12-10 00:22:40 +0000 | [diff] [blame] | 771 | assert(!In.Flags.isByVal() && "byval is not valid for return values"); |
| 772 | assert(!In.Flags.isNest() && "nest is not valid for return values"); |
Dan Gohman | 2d822e7 | 2015-12-04 17:12:52 +0000 | [diff] [blame] | 773 | if (In.Flags.isInAlloca()) |
Dan Gohman | 7935fa3 | 2015-12-10 00:22:40 +0000 | [diff] [blame] | 774 | fail(DL, DAG, "WebAssembly hasn't implemented inalloca return values"); |
Dan Gohman | 2d822e7 | 2015-12-04 17:12:52 +0000 | [diff] [blame] | 775 | if (In.Flags.isInConsecutiveRegs()) |
Dan Gohman | 7935fa3 | 2015-12-10 00:22:40 +0000 | [diff] [blame] | 776 | fail(DL, DAG, "WebAssembly hasn't implemented cons regs return values"); |
Dan Gohman | 2d822e7 | 2015-12-04 17:12:52 +0000 | [diff] [blame] | 777 | if (In.Flags.isInConsecutiveRegsLast()) |
Dan Gohman | 4b9d791 | 2015-12-15 22:01:29 +0000 | [diff] [blame] | 778 | fail(DL, DAG, |
| 779 | "WebAssembly hasn't implemented cons regs last return values"); |
Dan Gohman | 2d822e7 | 2015-12-04 17:12:52 +0000 | [diff] [blame] | 780 | // Ignore In.getOrigAlign() because all our arguments are passed in |
| 781 | // registers. |
Derek Schuff | 27501e2 | 2016-02-10 19:51:04 +0000 | [diff] [blame] | 782 | InTys.push_back(In.VT); |
Dan Gohman | 2d822e7 | 2015-12-04 17:12:52 +0000 | [diff] [blame] | 783 | } |
Derek Schuff | 27501e2 | 2016-02-10 19:51:04 +0000 | [diff] [blame] | 784 | InTys.push_back(MVT::Other); |
| 785 | SDVTList InTyList = DAG.getVTList(InTys); |
Dan Gohman | f71abef | 2015-09-09 16:13:47 +0000 | [diff] [blame] | 786 | SDValue Res = |
| 787 | DAG.getNode(Ins.empty() ? WebAssemblyISD::CALL0 : WebAssemblyISD::CALL1, |
Derek Schuff | 27501e2 | 2016-02-10 19:51:04 +0000 | [diff] [blame] | 788 | DL, InTyList, Ops); |
JF Bastien | af111db | 2015-08-24 22:16:48 +0000 | [diff] [blame] | 789 | if (Ins.empty()) { |
| 790 | Chain = Res; |
| 791 | } else { |
| 792 | InVals.push_back(Res); |
| 793 | Chain = Res.getValue(1); |
| 794 | } |
JF Bastien | d8a9d66 | 2015-08-24 21:59:51 +0000 | [diff] [blame] | 795 | |
JF Bastien | d8a9d66 | 2015-08-24 21:59:51 +0000 | [diff] [blame] | 796 | return Chain; |
| 797 | } |
| 798 | |
JF Bastien | b9073fb | 2015-07-22 21:28:15 +0000 | [diff] [blame] | 799 | bool WebAssemblyTargetLowering::CanLowerReturn( |
Dan Gohman | 7a6b982 | 2015-11-29 22:32:02 +0000 | [diff] [blame] | 800 | CallingConv::ID /*CallConv*/, MachineFunction & /*MF*/, bool /*IsVarArg*/, |
| 801 | const SmallVectorImpl<ISD::OutputArg> &Outs, |
| 802 | LLVMContext & /*Context*/) const { |
JF Bastien | b9073fb | 2015-07-22 21:28:15 +0000 | [diff] [blame] | 803 | // WebAssembly can't currently handle returning tuples. |
| 804 | return Outs.size() <= 1; |
| 805 | } |
| 806 | |
| 807 | SDValue WebAssemblyTargetLowering::LowerReturn( |
Dan Gohman | 35bfb24 | 2015-12-04 23:22:35 +0000 | [diff] [blame] | 808 | SDValue Chain, CallingConv::ID CallConv, bool /*IsVarArg*/, |
JF Bastien | b9073fb | 2015-07-22 21:28:15 +0000 | [diff] [blame] | 809 | const SmallVectorImpl<ISD::OutputArg> &Outs, |
Benjamin Kramer | bdc4956 | 2016-06-12 15:39:02 +0000 | [diff] [blame] | 810 | const SmallVectorImpl<SDValue> &OutVals, const SDLoc &DL, |
JF Bastien | b9073fb | 2015-07-22 21:28:15 +0000 | [diff] [blame] | 811 | SelectionDAG &DAG) const { |
JF Bastien | b9073fb | 2015-07-22 21:28:15 +0000 | [diff] [blame] | 812 | assert(Outs.size() <= 1 && "WebAssembly can only return up to one value"); |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 813 | if (!callingConvSupported(CallConv)) |
JF Bastien | b9073fb | 2015-07-22 21:28:15 +0000 | [diff] [blame] | 814 | fail(DL, DAG, "WebAssembly doesn't support non-C calling conventions"); |
| 815 | |
JF Bastien | 600aee9 | 2015-07-31 17:53:38 +0000 | [diff] [blame] | 816 | SmallVector<SDValue, 4> RetOps(1, Chain); |
| 817 | RetOps.append(OutVals.begin(), OutVals.end()); |
JF Bastien | 4a2d560 | 2015-07-31 21:04:18 +0000 | [diff] [blame] | 818 | Chain = DAG.getNode(WebAssemblyISD::RETURN, DL, MVT::Other, RetOps); |
JF Bastien | b9073fb | 2015-07-22 21:28:15 +0000 | [diff] [blame] | 819 | |
Dan Gohman | 754cd11 | 2015-11-11 01:33:02 +0000 | [diff] [blame] | 820 | // Record the number and types of the return values. |
| 821 | for (const ISD::OutputArg &Out : Outs) { |
Dan Gohman | ac132e9 | 2015-12-02 23:40:03 +0000 | [diff] [blame] | 822 | assert(!Out.Flags.isByVal() && "byval is not valid for return values"); |
| 823 | assert(!Out.Flags.isNest() && "nest is not valid for return values"); |
Dan Gohman | 35bfb24 | 2015-12-04 23:22:35 +0000 | [diff] [blame] | 824 | assert(Out.IsFixed && "non-fixed return value is not valid"); |
Dan Gohman | 754cd11 | 2015-11-11 01:33:02 +0000 | [diff] [blame] | 825 | if (Out.Flags.isInAlloca()) |
| 826 | fail(DL, DAG, "WebAssembly hasn't implemented inalloca results"); |
Dan Gohman | 754cd11 | 2015-11-11 01:33:02 +0000 | [diff] [blame] | 827 | if (Out.Flags.isInConsecutiveRegs()) |
| 828 | fail(DL, DAG, "WebAssembly hasn't implemented cons regs results"); |
| 829 | if (Out.Flags.isInConsecutiveRegsLast()) |
| 830 | fail(DL, DAG, "WebAssembly hasn't implemented cons regs last results"); |
Dan Gohman | 754cd11 | 2015-11-11 01:33:02 +0000 | [diff] [blame] | 831 | } |
| 832 | |
JF Bastien | b9073fb | 2015-07-22 21:28:15 +0000 | [diff] [blame] | 833 | return Chain; |
| 834 | } |
| 835 | |
| 836 | SDValue WebAssemblyTargetLowering::LowerFormalArguments( |
Derek Schuff | 27501e2 | 2016-02-10 19:51:04 +0000 | [diff] [blame] | 837 | SDValue Chain, CallingConv::ID CallConv, bool IsVarArg, |
Benjamin Kramer | bdc4956 | 2016-06-12 15:39:02 +0000 | [diff] [blame] | 838 | const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &DL, |
| 839 | SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const { |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 840 | if (!callingConvSupported(CallConv)) |
JF Bastien | b9073fb | 2015-07-22 21:28:15 +0000 | [diff] [blame] | 841 | fail(DL, DAG, "WebAssembly doesn't support non-C calling conventions"); |
JF Bastien | b9073fb | 2015-07-22 21:28:15 +0000 | [diff] [blame] | 842 | |
Dan Gohman | 2726b88 | 2016-10-06 22:29:32 +0000 | [diff] [blame] | 843 | MachineFunction &MF = DAG.getMachineFunction(); |
| 844 | auto *MFI = MF.getInfo<WebAssemblyFunctionInfo>(); |
| 845 | |
Dan Gohman | fb3e059 | 2015-11-25 19:36:19 +0000 | [diff] [blame] | 846 | // Set up the incoming ARGUMENTS value, which serves to represent the liveness |
| 847 | // of the incoming values before they're represented by virtual registers. |
| 848 | MF.getRegInfo().addLiveIn(WebAssembly::ARGUMENTS); |
| 849 | |
JF Bastien | 600aee9 | 2015-07-31 17:53:38 +0000 | [diff] [blame] | 850 | for (const ISD::InputArg &In : Ins) { |
JF Bastien | 600aee9 | 2015-07-31 17:53:38 +0000 | [diff] [blame] | 851 | if (In.Flags.isInAlloca()) |
| 852 | fail(DL, DAG, "WebAssembly hasn't implemented inalloca arguments"); |
| 853 | if (In.Flags.isNest()) |
| 854 | fail(DL, DAG, "WebAssembly hasn't implemented nest arguments"); |
JF Bastien | 600aee9 | 2015-07-31 17:53:38 +0000 | [diff] [blame] | 855 | if (In.Flags.isInConsecutiveRegs()) |
| 856 | fail(DL, DAG, "WebAssembly hasn't implemented cons regs arguments"); |
| 857 | if (In.Flags.isInConsecutiveRegsLast()) |
| 858 | fail(DL, DAG, "WebAssembly hasn't implemented cons regs last arguments"); |
Dan Gohman | 9c54d3b | 2015-11-25 18:13:18 +0000 | [diff] [blame] | 859 | // Ignore In.getOrigAlign() because all our arguments are passed in |
| 860 | // registers. |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 861 | InVals.push_back(In.Used ? DAG.getNode(WebAssemblyISD::ARGUMENT, DL, In.VT, |
| 862 | DAG.getTargetConstant(InVals.size(), |
| 863 | DL, MVT::i32)) |
| 864 | : DAG.getUNDEF(In.VT)); |
Dan Gohman | 754cd11 | 2015-11-11 01:33:02 +0000 | [diff] [blame] | 865 | |
| 866 | // Record the number and types of arguments. |
Derek Schuff | 27501e2 | 2016-02-10 19:51:04 +0000 | [diff] [blame] | 867 | MFI->addParam(In.VT); |
JF Bastien | 600aee9 | 2015-07-31 17:53:38 +0000 | [diff] [blame] | 868 | } |
JF Bastien | b9073fb | 2015-07-22 21:28:15 +0000 | [diff] [blame] | 869 | |
Derek Schuff | 27501e2 | 2016-02-10 19:51:04 +0000 | [diff] [blame] | 870 | // Varargs are copied into a buffer allocated by the caller, and a pointer to |
| 871 | // the buffer is passed as an argument. |
| 872 | if (IsVarArg) { |
| 873 | MVT PtrVT = getPointerTy(MF.getDataLayout()); |
| 874 | unsigned VarargVreg = |
| 875 | MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrVT)); |
| 876 | MFI->setVarargBufferVreg(VarargVreg); |
| 877 | Chain = DAG.getCopyToReg( |
| 878 | Chain, DL, VarargVreg, |
| 879 | DAG.getNode(WebAssemblyISD::ARGUMENT, DL, PtrVT, |
| 880 | DAG.getTargetConstant(Ins.size(), DL, MVT::i32))); |
| 881 | MFI->addParam(PtrVT); |
| 882 | } |
Dan Gohman | 35bfb24 | 2015-12-04 23:22:35 +0000 | [diff] [blame] | 883 | |
Derek Schuff | 77a7a38 | 2018-10-03 22:22:48 +0000 | [diff] [blame] | 884 | // Record the number and types of arguments and results. |
Dan Gohman | 2726b88 | 2016-10-06 22:29:32 +0000 | [diff] [blame] | 885 | SmallVector<MVT, 4> Params; |
| 886 | SmallVector<MVT, 4> Results; |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 887 | computeSignatureVTs(MF.getFunction().getFunctionType(), MF.getFunction(), |
Derek Schuff | 77a7a38 | 2018-10-03 22:22:48 +0000 | [diff] [blame] | 888 | DAG.getTarget(), Params, Results); |
Dan Gohman | 2726b88 | 2016-10-06 22:29:32 +0000 | [diff] [blame] | 889 | for (MVT VT : Results) |
| 890 | MFI->addResult(VT); |
Derek Schuff | 77a7a38 | 2018-10-03 22:22:48 +0000 | [diff] [blame] | 891 | // TODO: Use signatures in WebAssemblyMachineFunctionInfo too and unify |
| 892 | // the param logic here with ComputeSignatureVTs |
| 893 | assert(MFI->getParams().size() == Params.size() && |
| 894 | std::equal(MFI->getParams().begin(), MFI->getParams().end(), |
| 895 | Params.begin())); |
Dan Gohman | 2726b88 | 2016-10-06 22:29:32 +0000 | [diff] [blame] | 896 | |
JF Bastien | b9073fb | 2015-07-22 21:28:15 +0000 | [diff] [blame] | 897 | return Chain; |
| 898 | } |
| 899 | |
Thomas Lively | e18b5c6 | 2019-05-23 18:09:26 +0000 | [diff] [blame^] | 900 | void WebAssemblyTargetLowering::ReplaceNodeResults( |
| 901 | SDNode *N, SmallVectorImpl<SDValue> &Results, SelectionDAG &DAG) const { |
| 902 | switch (N->getOpcode()) { |
| 903 | case ISD::SIGN_EXTEND_INREG: |
| 904 | // Do not add any results, signifying that N should not be custom lowered |
| 905 | // after all. This happens because simd128 turns on custom lowering for |
| 906 | // SIGN_EXTEND_INREG, but for non-vector sign extends the result might be an |
| 907 | // illegal type. |
| 908 | break; |
| 909 | default: |
| 910 | llvm_unreachable( |
| 911 | "ReplaceNodeResults not implemented for this op for WebAssembly!"); |
| 912 | } |
| 913 | } |
| 914 | |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 915 | //===----------------------------------------------------------------------===// |
JF Bastien | af111db | 2015-08-24 22:16:48 +0000 | [diff] [blame] | 916 | // Custom lowering hooks. |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 917 | //===----------------------------------------------------------------------===// |
| 918 | |
JF Bastien | af111db | 2015-08-24 22:16:48 +0000 | [diff] [blame] | 919 | SDValue WebAssemblyTargetLowering::LowerOperation(SDValue Op, |
| 920 | SelectionDAG &DAG) const { |
Derek Schuff | 51699a8 | 2016-02-12 22:56:03 +0000 | [diff] [blame] | 921 | SDLoc DL(Op); |
JF Bastien | af111db | 2015-08-24 22:16:48 +0000 | [diff] [blame] | 922 | switch (Op.getOpcode()) { |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 923 | default: |
| 924 | llvm_unreachable("unimplemented operation lowering"); |
| 925 | return SDValue(); |
| 926 | case ISD::FrameIndex: |
| 927 | return LowerFrameIndex(Op, DAG); |
| 928 | case ISD::GlobalAddress: |
| 929 | return LowerGlobalAddress(Op, DAG); |
| 930 | case ISD::ExternalSymbol: |
| 931 | return LowerExternalSymbol(Op, DAG); |
| 932 | case ISD::JumpTable: |
| 933 | return LowerJumpTable(Op, DAG); |
| 934 | case ISD::BR_JT: |
| 935 | return LowerBR_JT(Op, DAG); |
| 936 | case ISD::VASTART: |
| 937 | return LowerVASTART(Op, DAG); |
| 938 | case ISD::BlockAddress: |
| 939 | case ISD::BRIND: |
| 940 | fail(DL, DAG, "WebAssembly hasn't implemented computed gotos"); |
| 941 | return SDValue(); |
Thomas Lively | 1a3cbe7 | 2019-05-23 01:24:01 +0000 | [diff] [blame] | 942 | case ISD::RETURNADDR: |
| 943 | return LowerRETURNADDR(Op, DAG); |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 944 | case ISD::FRAMEADDR: |
| 945 | return LowerFRAMEADDR(Op, DAG); |
| 946 | case ISD::CopyToReg: |
| 947 | return LowerCopyToReg(Op, DAG); |
Thomas Lively | fb84fd7 | 2018-11-02 00:06:56 +0000 | [diff] [blame] | 948 | case ISD::EXTRACT_VECTOR_ELT: |
| 949 | case ISD::INSERT_VECTOR_ELT: |
| 950 | return LowerAccessVectorElement(Op, DAG); |
Heejin Ahn | da419bd | 2018-11-14 02:46:21 +0000 | [diff] [blame] | 951 | case ISD::INTRINSIC_VOID: |
Heejin Ahn | d6f4878 | 2019-01-30 03:21:57 +0000 | [diff] [blame] | 952 | case ISD::INTRINSIC_WO_CHAIN: |
| 953 | case ISD::INTRINSIC_W_CHAIN: |
| 954 | return LowerIntrinsic(Op, DAG); |
Thomas Lively | 64a39a1 | 2019-01-10 22:32:11 +0000 | [diff] [blame] | 955 | case ISD::SIGN_EXTEND_INREG: |
| 956 | return LowerSIGN_EXTEND_INREG(Op, DAG); |
Thomas Lively | 079816e | 2019-01-30 02:23:29 +0000 | [diff] [blame] | 957 | case ISD::BUILD_VECTOR: |
| 958 | return LowerBUILD_VECTOR(Op, DAG); |
Thomas Lively | a0d2581 | 2018-09-07 21:54:46 +0000 | [diff] [blame] | 959 | case ISD::VECTOR_SHUFFLE: |
| 960 | return LowerVECTOR_SHUFFLE(Op, DAG); |
Thomas Lively | 55735d5 | 2018-10-20 01:31:18 +0000 | [diff] [blame] | 961 | case ISD::SHL: |
| 962 | case ISD::SRA: |
| 963 | case ISD::SRL: |
| 964 | return LowerShift(Op, DAG); |
JF Bastien | af111db | 2015-08-24 22:16:48 +0000 | [diff] [blame] | 965 | } |
| 966 | } |
| 967 | |
Derek Schuff | aadc89c | 2016-02-16 18:18:36 +0000 | [diff] [blame] | 968 | SDValue WebAssemblyTargetLowering::LowerCopyToReg(SDValue Op, |
| 969 | SelectionDAG &DAG) const { |
| 970 | SDValue Src = Op.getOperand(2); |
| 971 | if (isa<FrameIndexSDNode>(Src.getNode())) { |
| 972 | // CopyToReg nodes don't support FrameIndex operands. Other targets select |
| 973 | // the FI to some LEA-like instruction, but since we don't have that, we |
| 974 | // need to insert some kind of instruction that can take an FI operand and |
| 975 | // produces a value usable by CopyToReg (i.e. in a vreg). So insert a dummy |
Thomas Lively | 6a87dda | 2019-01-08 06:25:55 +0000 | [diff] [blame] | 976 | // local.copy between Op and its FI operand. |
Dan Gohman | 02c0871 | 2016-02-20 23:09:44 +0000 | [diff] [blame] | 977 | SDValue Chain = Op.getOperand(0); |
Derek Schuff | aadc89c | 2016-02-16 18:18:36 +0000 | [diff] [blame] | 978 | SDLoc DL(Op); |
Dan Gohman | 02c0871 | 2016-02-20 23:09:44 +0000 | [diff] [blame] | 979 | unsigned Reg = cast<RegisterSDNode>(Op.getOperand(1))->getReg(); |
Derek Schuff | aadc89c | 2016-02-16 18:18:36 +0000 | [diff] [blame] | 980 | EVT VT = Src.getValueType(); |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 981 | SDValue Copy(DAG.getMachineNode(VT == MVT::i32 ? WebAssembly::COPY_I32 |
| 982 | : WebAssembly::COPY_I64, |
| 983 | DL, VT, Src), |
| 984 | 0); |
Dan Gohman | 02c0871 | 2016-02-20 23:09:44 +0000 | [diff] [blame] | 985 | return Op.getNode()->getNumValues() == 1 |
| 986 | ? DAG.getCopyToReg(Chain, DL, Reg, Copy) |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 987 | : DAG.getCopyToReg(Chain, DL, Reg, Copy, |
| 988 | Op.getNumOperands() == 4 ? Op.getOperand(3) |
| 989 | : SDValue()); |
Derek Schuff | aadc89c | 2016-02-16 18:18:36 +0000 | [diff] [blame] | 990 | } |
| 991 | return SDValue(); |
| 992 | } |
| 993 | |
Derek Schuff | 9769deb | 2015-12-11 23:49:46 +0000 | [diff] [blame] | 994 | SDValue WebAssemblyTargetLowering::LowerFrameIndex(SDValue Op, |
| 995 | SelectionDAG &DAG) const { |
| 996 | int FI = cast<FrameIndexSDNode>(Op)->getIndex(); |
| 997 | return DAG.getTargetFrameIndex(FI, Op.getValueType()); |
| 998 | } |
| 999 | |
Thomas Lively | 1a3cbe7 | 2019-05-23 01:24:01 +0000 | [diff] [blame] | 1000 | SDValue WebAssemblyTargetLowering::LowerRETURNADDR(SDValue Op, |
| 1001 | SelectionDAG &DAG) const { |
| 1002 | SDLoc DL(Op); |
| 1003 | |
| 1004 | if (!Subtarget->getTargetTriple().isOSEmscripten()) { |
| 1005 | fail(DL, DAG, |
| 1006 | "Non-Emscripten WebAssembly hasn't implemented " |
| 1007 | "__builtin_return_address"); |
| 1008 | return SDValue(); |
| 1009 | } |
| 1010 | |
| 1011 | if (verifyReturnAddressArgumentIsConstant(Op, DAG)) |
| 1012 | return SDValue(); |
| 1013 | |
| 1014 | unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); |
| 1015 | return makeLibCall(DAG, RTLIB::RETURN_ADDRESS, Op.getValueType(), |
| 1016 | {DAG.getConstant(Depth, DL, MVT::i32)}, false, DL) |
| 1017 | .first; |
| 1018 | } |
| 1019 | |
Dan Gohman | 94c6566 | 2016-02-16 23:48:04 +0000 | [diff] [blame] | 1020 | SDValue WebAssemblyTargetLowering::LowerFRAMEADDR(SDValue Op, |
| 1021 | SelectionDAG &DAG) const { |
| 1022 | // Non-zero depths are not supported by WebAssembly currently. Use the |
| 1023 | // legalizer's default expansion, which is to return 0 (what this function is |
| 1024 | // documented to do). |
Dan Gohman | 1d547bf | 2016-02-17 00:14:03 +0000 | [diff] [blame] | 1025 | if (Op.getConstantOperandVal(0) > 0) |
Dan Gohman | 94c6566 | 2016-02-16 23:48:04 +0000 | [diff] [blame] | 1026 | return SDValue(); |
| 1027 | |
Matthias Braun | 941a705 | 2016-07-28 18:40:00 +0000 | [diff] [blame] | 1028 | DAG.getMachineFunction().getFrameInfo().setFrameAddressIsTaken(true); |
Dan Gohman | 94c6566 | 2016-02-16 23:48:04 +0000 | [diff] [blame] | 1029 | EVT VT = Op.getValueType(); |
| 1030 | unsigned FP = |
| 1031 | Subtarget->getRegisterInfo()->getFrameRegister(DAG.getMachineFunction()); |
| 1032 | return DAG.getCopyFromReg(DAG.getEntryNode(), SDLoc(Op), FP, VT); |
| 1033 | } |
| 1034 | |
JF Bastien | af111db | 2015-08-24 22:16:48 +0000 | [diff] [blame] | 1035 | SDValue WebAssemblyTargetLowering::LowerGlobalAddress(SDValue Op, |
| 1036 | SelectionDAG &DAG) const { |
| 1037 | SDLoc DL(Op); |
| 1038 | const auto *GA = cast<GlobalAddressSDNode>(Op); |
| 1039 | EVT VT = Op.getValueType(); |
Dan Gohman | 26c6765 | 2016-01-11 23:38:05 +0000 | [diff] [blame] | 1040 | assert(GA->getTargetFlags() == 0 && |
| 1041 | "Unexpected target flags on generic GlobalAddressSDNode"); |
JF Bastien | af111db | 2015-08-24 22:16:48 +0000 | [diff] [blame] | 1042 | if (GA->getAddressSpace() != 0) |
| 1043 | fail(DL, DAG, "WebAssembly only expects the 0 address space"); |
Sam Clegg | 492f752 | 2019-03-26 19:46:15 +0000 | [diff] [blame] | 1044 | |
Sam Clegg | ef4c66c | 2019-04-03 00:17:29 +0000 | [diff] [blame] | 1045 | unsigned OperandFlags = 0; |
Sam Clegg | 492f752 | 2019-03-26 19:46:15 +0000 | [diff] [blame] | 1046 | if (isPositionIndependent()) { |
| 1047 | const GlobalValue *GV = GA->getGlobal(); |
| 1048 | if (getTargetMachine().shouldAssumeDSOLocal(*GV->getParent(), GV)) { |
| 1049 | MachineFunction &MF = DAG.getMachineFunction(); |
| 1050 | MVT PtrVT = getPointerTy(MF.getDataLayout()); |
| 1051 | const char *BaseName; |
Sam Clegg | 2a7cac9 | 2019-04-04 17:43:50 +0000 | [diff] [blame] | 1052 | if (GV->getValueType()->isFunctionTy()) { |
Sam Clegg | 492f752 | 2019-03-26 19:46:15 +0000 | [diff] [blame] | 1053 | BaseName = MF.createExternalSymbolName("__table_base"); |
Sam Clegg | 2a7cac9 | 2019-04-04 17:43:50 +0000 | [diff] [blame] | 1054 | OperandFlags = WebAssemblyII::MO_TABLE_BASE_REL; |
| 1055 | } |
| 1056 | else { |
Sam Clegg | 492f752 | 2019-03-26 19:46:15 +0000 | [diff] [blame] | 1057 | BaseName = MF.createExternalSymbolName("__memory_base"); |
Sam Clegg | 2a7cac9 | 2019-04-04 17:43:50 +0000 | [diff] [blame] | 1058 | OperandFlags = WebAssemblyII::MO_MEMORY_BASE_REL; |
| 1059 | } |
Sam Clegg | 492f752 | 2019-03-26 19:46:15 +0000 | [diff] [blame] | 1060 | SDValue BaseAddr = |
| 1061 | DAG.getNode(WebAssemblyISD::Wrapper, DL, PtrVT, |
| 1062 | DAG.getTargetExternalSymbol(BaseName, PtrVT)); |
| 1063 | |
| 1064 | SDValue SymAddr = DAG.getNode( |
| 1065 | WebAssemblyISD::WrapperPIC, DL, VT, |
Sam Clegg | 2a7cac9 | 2019-04-04 17:43:50 +0000 | [diff] [blame] | 1066 | DAG.getTargetGlobalAddress(GA->getGlobal(), DL, VT, GA->getOffset(), |
| 1067 | OperandFlags)); |
Sam Clegg | 492f752 | 2019-03-26 19:46:15 +0000 | [diff] [blame] | 1068 | |
| 1069 | return DAG.getNode(ISD::ADD, DL, VT, BaseAddr, SymAddr); |
| 1070 | } else { |
Sam Clegg | ef4c66c | 2019-04-03 00:17:29 +0000 | [diff] [blame] | 1071 | OperandFlags = WebAssemblyII::MO_GOT; |
Sam Clegg | 492f752 | 2019-03-26 19:46:15 +0000 | [diff] [blame] | 1072 | } |
| 1073 | } |
| 1074 | |
| 1075 | return DAG.getNode(WebAssemblyISD::Wrapper, DL, VT, |
| 1076 | DAG.getTargetGlobalAddress(GA->getGlobal(), DL, VT, |
Sam Clegg | ef4c66c | 2019-04-03 00:17:29 +0000 | [diff] [blame] | 1077 | GA->getOffset(), OperandFlags)); |
JF Bastien | af111db | 2015-08-24 22:16:48 +0000 | [diff] [blame] | 1078 | } |
| 1079 | |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 1080 | SDValue |
| 1081 | WebAssemblyTargetLowering::LowerExternalSymbol(SDValue Op, |
| 1082 | SelectionDAG &DAG) const { |
Dan Gohman | 2c8fe6a | 2015-11-25 16:44:29 +0000 | [diff] [blame] | 1083 | SDLoc DL(Op); |
| 1084 | const auto *ES = cast<ExternalSymbolSDNode>(Op); |
| 1085 | EVT VT = Op.getValueType(); |
Dan Gohman | 26c6765 | 2016-01-11 23:38:05 +0000 | [diff] [blame] | 1086 | assert(ES->getTargetFlags() == 0 && |
| 1087 | "Unexpected target flags on generic ExternalSymbolSDNode"); |
Sam Clegg | ef4c66c | 2019-04-03 00:17:29 +0000 | [diff] [blame] | 1088 | return DAG.getNode(WebAssemblyISD::Wrapper, DL, VT, |
| 1089 | DAG.getTargetExternalSymbol(ES->getSymbol(), VT)); |
Dan Gohman | 2c8fe6a | 2015-11-25 16:44:29 +0000 | [diff] [blame] | 1090 | } |
| 1091 | |
Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 1092 | SDValue WebAssemblyTargetLowering::LowerJumpTable(SDValue Op, |
| 1093 | SelectionDAG &DAG) const { |
| 1094 | // There's no need for a Wrapper node because we always incorporate a jump |
Dan Gohman | 1402606 | 2016-03-08 03:18:12 +0000 | [diff] [blame] | 1095 | // table operand into a BR_TABLE instruction, rather than ever |
Dan Gohman | bb7ce8e | 2015-11-20 03:02:49 +0000 | [diff] [blame] | 1096 | // materializing it in a register. |
Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 1097 | const JumpTableSDNode *JT = cast<JumpTableSDNode>(Op); |
| 1098 | return DAG.getTargetJumpTable(JT->getIndex(), Op.getValueType(), |
| 1099 | JT->getTargetFlags()); |
| 1100 | } |
| 1101 | |
| 1102 | SDValue WebAssemblyTargetLowering::LowerBR_JT(SDValue Op, |
| 1103 | SelectionDAG &DAG) const { |
| 1104 | SDLoc DL(Op); |
| 1105 | SDValue Chain = Op.getOperand(0); |
| 1106 | const auto *JT = cast<JumpTableSDNode>(Op.getOperand(1)); |
| 1107 | SDValue Index = Op.getOperand(2); |
| 1108 | assert(JT->getTargetFlags() == 0 && "WebAssembly doesn't set target flags"); |
| 1109 | |
| 1110 | SmallVector<SDValue, 8> Ops; |
| 1111 | Ops.push_back(Chain); |
| 1112 | Ops.push_back(Index); |
| 1113 | |
| 1114 | MachineJumpTableInfo *MJTI = DAG.getMachineFunction().getJumpTableInfo(); |
| 1115 | const auto &MBBs = MJTI->getJumpTables()[JT->getIndex()].MBBs; |
| 1116 | |
Dan Gohman | 1402606 | 2016-03-08 03:18:12 +0000 | [diff] [blame] | 1117 | // Add an operand for each case. |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 1118 | for (auto MBB : MBBs) |
| 1119 | Ops.push_back(DAG.getBasicBlock(MBB)); |
Dan Gohman | 1402606 | 2016-03-08 03:18:12 +0000 | [diff] [blame] | 1120 | |
Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 1121 | // TODO: For now, we just pick something arbitrary for a default case for now. |
| 1122 | // We really want to sniff out the guard and put in the real default case (and |
| 1123 | // delete the guard). |
| 1124 | Ops.push_back(DAG.getBasicBlock(MBBs[0])); |
| 1125 | |
Dan Gohman | 1402606 | 2016-03-08 03:18:12 +0000 | [diff] [blame] | 1126 | return DAG.getNode(WebAssemblyISD::BR_TABLE, DL, MVT::Other, Ops); |
Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 1127 | } |
| 1128 | |
Dan Gohman | 35bfb24 | 2015-12-04 23:22:35 +0000 | [diff] [blame] | 1129 | SDValue WebAssemblyTargetLowering::LowerVASTART(SDValue Op, |
| 1130 | SelectionDAG &DAG) const { |
| 1131 | SDLoc DL(Op); |
| 1132 | EVT PtrVT = getPointerTy(DAG.getMachineFunction().getDataLayout()); |
| 1133 | |
Derek Schuff | 27501e2 | 2016-02-10 19:51:04 +0000 | [diff] [blame] | 1134 | auto *MFI = DAG.getMachineFunction().getInfo<WebAssemblyFunctionInfo>(); |
Dan Gohman | 35bfb24 | 2015-12-04 23:22:35 +0000 | [diff] [blame] | 1135 | const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue(); |
Derek Schuff | 27501e2 | 2016-02-10 19:51:04 +0000 | [diff] [blame] | 1136 | |
| 1137 | SDValue ArgN = DAG.getCopyFromReg(DAG.getEntryNode(), DL, |
| 1138 | MFI->getVarargBufferVreg(), PtrVT); |
| 1139 | return DAG.getStore(Op.getOperand(0), DL, ArgN, Op.getOperand(1), |
Derek Schuff | 1a946e4 | 2016-07-15 19:35:43 +0000 | [diff] [blame] | 1140 | MachinePointerInfo(SV), 0); |
Dan Gohman | 35bfb24 | 2015-12-04 23:22:35 +0000 | [diff] [blame] | 1141 | } |
| 1142 | |
Heejin Ahn | d6f4878 | 2019-01-30 03:21:57 +0000 | [diff] [blame] | 1143 | SDValue WebAssemblyTargetLowering::LowerIntrinsic(SDValue Op, |
| 1144 | SelectionDAG &DAG) const { |
| 1145 | MachineFunction &MF = DAG.getMachineFunction(); |
| 1146 | unsigned IntNo; |
| 1147 | switch (Op.getOpcode()) { |
| 1148 | case ISD::INTRINSIC_VOID: |
| 1149 | case ISD::INTRINSIC_W_CHAIN: |
| 1150 | IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue(); |
| 1151 | break; |
| 1152 | case ISD::INTRINSIC_WO_CHAIN: |
| 1153 | IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); |
| 1154 | break; |
| 1155 | default: |
| 1156 | llvm_unreachable("Invalid intrinsic"); |
| 1157 | } |
Heejin Ahn | 5ef4d5f | 2018-05-31 22:25:54 +0000 | [diff] [blame] | 1158 | SDLoc DL(Op); |
Heejin Ahn | d6f4878 | 2019-01-30 03:21:57 +0000 | [diff] [blame] | 1159 | |
Heejin Ahn | 5ef4d5f | 2018-05-31 22:25:54 +0000 | [diff] [blame] | 1160 | switch (IntNo) { |
| 1161 | default: |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 1162 | return SDValue(); // Don't custom lower most intrinsics. |
Thomas Lively | 5d461c9 | 2018-10-03 23:02:23 +0000 | [diff] [blame] | 1163 | |
Heejin Ahn | 24faf85 | 2018-10-25 23:55:10 +0000 | [diff] [blame] | 1164 | case Intrinsic::wasm_lsda: { |
Heejin Ahn | 24faf85 | 2018-10-25 23:55:10 +0000 | [diff] [blame] | 1165 | EVT VT = Op.getValueType(); |
| 1166 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
| 1167 | MVT PtrVT = TLI.getPointerTy(DAG.getDataLayout()); |
| 1168 | auto &Context = MF.getMMI().getContext(); |
| 1169 | MCSymbol *S = Context.getOrCreateSymbol(Twine("GCC_except_table") + |
| 1170 | Twine(MF.getFunctionNumber())); |
| 1171 | return DAG.getNode(WebAssemblyISD::Wrapper, DL, VT, |
| 1172 | DAG.getMCSymbol(S, PtrVT)); |
| 1173 | } |
Heejin Ahn | da419bd | 2018-11-14 02:46:21 +0000 | [diff] [blame] | 1174 | |
| 1175 | case Intrinsic::wasm_throw: { |
Heejin Ahn | d6f4878 | 2019-01-30 03:21:57 +0000 | [diff] [blame] | 1176 | // We only support C++ exceptions for now |
Heejin Ahn | da419bd | 2018-11-14 02:46:21 +0000 | [diff] [blame] | 1177 | int Tag = cast<ConstantSDNode>(Op.getOperand(2).getNode())->getZExtValue(); |
Heejin Ahn | d6f4878 | 2019-01-30 03:21:57 +0000 | [diff] [blame] | 1178 | if (Tag != CPP_EXCEPTION) |
Heejin Ahn | da419bd | 2018-11-14 02:46:21 +0000 | [diff] [blame] | 1179 | llvm_unreachable("Invalid tag!"); |
Heejin Ahn | d6f4878 | 2019-01-30 03:21:57 +0000 | [diff] [blame] | 1180 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
| 1181 | MVT PtrVT = TLI.getPointerTy(DAG.getDataLayout()); |
| 1182 | const char *SymName = MF.createExternalSymbolName("__cpp_exception"); |
Sam Clegg | ef4c66c | 2019-04-03 00:17:29 +0000 | [diff] [blame] | 1183 | SDValue SymNode = DAG.getNode(WebAssemblyISD::Wrapper, DL, PtrVT, |
| 1184 | DAG.getTargetExternalSymbol(SymName, PtrVT)); |
Heejin Ahn | d6f4878 | 2019-01-30 03:21:57 +0000 | [diff] [blame] | 1185 | return DAG.getNode(WebAssemblyISD::THROW, DL, |
| 1186 | MVT::Other, // outchain type |
| 1187 | { |
| 1188 | Op.getOperand(0), // inchain |
| 1189 | SymNode, // exception symbol |
| 1190 | Op.getOperand(3) // thrown value |
| 1191 | }); |
Heejin Ahn | da419bd | 2018-11-14 02:46:21 +0000 | [diff] [blame] | 1192 | } |
| 1193 | } |
| 1194 | } |
| 1195 | |
| 1196 | SDValue |
Thomas Lively | 64a39a1 | 2019-01-10 22:32:11 +0000 | [diff] [blame] | 1197 | WebAssemblyTargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op, |
| 1198 | SelectionDAG &DAG) const { |
| 1199 | // If sign extension operations are disabled, allow sext_inreg only if operand |
| 1200 | // is a vector extract. SIMD does not depend on sign extension operations, but |
| 1201 | // allowing sext_inreg in this context lets us have simple patterns to select |
| 1202 | // extract_lane_s instructions. Expanding sext_inreg everywhere would be |
| 1203 | // simpler in this file, but would necessitate large and brittle patterns to |
| 1204 | // undo the expansion and select extract_lane_s instructions. |
| 1205 | assert(!Subtarget->hasSignExt() && Subtarget->hasSIMD128()); |
| 1206 | if (Op.getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT) |
| 1207 | return Op; |
| 1208 | // Otherwise expand |
| 1209 | return SDValue(); |
| 1210 | } |
| 1211 | |
Thomas Lively | 079816e | 2019-01-30 02:23:29 +0000 | [diff] [blame] | 1212 | SDValue WebAssemblyTargetLowering::LowerBUILD_VECTOR(SDValue Op, |
| 1213 | SelectionDAG &DAG) const { |
| 1214 | SDLoc DL(Op); |
| 1215 | const EVT VecT = Op.getValueType(); |
| 1216 | const EVT LaneT = Op.getOperand(0).getValueType(); |
| 1217 | const size_t Lanes = Op.getNumOperands(); |
| 1218 | auto IsConstant = [](const SDValue &V) { |
| 1219 | return V.getOpcode() == ISD::Constant || V.getOpcode() == ISD::ConstantFP; |
| 1220 | }; |
| 1221 | |
| 1222 | // Find the most common operand, which is approximately the best to splat |
| 1223 | using Entry = std::pair<SDValue, size_t>; |
| 1224 | SmallVector<Entry, 16> ValueCounts; |
| 1225 | size_t NumConst = 0, NumDynamic = 0; |
| 1226 | for (const SDValue &Lane : Op->op_values()) { |
| 1227 | if (Lane.isUndef()) { |
| 1228 | continue; |
| 1229 | } else if (IsConstant(Lane)) { |
| 1230 | NumConst++; |
| 1231 | } else { |
| 1232 | NumDynamic++; |
| 1233 | } |
| 1234 | auto CountIt = std::find_if(ValueCounts.begin(), ValueCounts.end(), |
| 1235 | [&Lane](Entry A) { return A.first == Lane; }); |
| 1236 | if (CountIt == ValueCounts.end()) { |
| 1237 | ValueCounts.emplace_back(Lane, 1); |
| 1238 | } else { |
| 1239 | CountIt->second++; |
| 1240 | } |
| 1241 | } |
| 1242 | auto CommonIt = |
| 1243 | std::max_element(ValueCounts.begin(), ValueCounts.end(), |
| 1244 | [](Entry A, Entry B) { return A.second < B.second; }); |
| 1245 | assert(CommonIt != ValueCounts.end() && "Unexpected all-undef build_vector"); |
| 1246 | SDValue SplatValue = CommonIt->first; |
| 1247 | size_t NumCommon = CommonIt->second; |
| 1248 | |
| 1249 | // If v128.const is available, consider using it instead of a splat |
| 1250 | if (Subtarget->hasUnimplementedSIMD128()) { |
| 1251 | // {i32,i64,f32,f64}.const opcode, and value |
| 1252 | const size_t ConstBytes = 1 + std::max(size_t(4), 16 / Lanes); |
| 1253 | // SIMD prefix and opcode |
| 1254 | const size_t SplatBytes = 2; |
| 1255 | const size_t SplatConstBytes = SplatBytes + ConstBytes; |
| 1256 | // SIMD prefix, opcode, and lane index |
| 1257 | const size_t ReplaceBytes = 3; |
| 1258 | const size_t ReplaceConstBytes = ReplaceBytes + ConstBytes; |
| 1259 | // SIMD prefix, v128.const opcode, and 128-bit value |
| 1260 | const size_t VecConstBytes = 18; |
| 1261 | // Initial v128.const and a replace_lane for each non-const operand |
| 1262 | const size_t ConstInitBytes = VecConstBytes + NumDynamic * ReplaceBytes; |
| 1263 | // Initial splat and all necessary replace_lanes |
| 1264 | const size_t SplatInitBytes = |
| 1265 | IsConstant(SplatValue) |
| 1266 | // Initial constant splat |
| 1267 | ? (SplatConstBytes + |
| 1268 | // Constant replace_lanes |
| 1269 | (NumConst - NumCommon) * ReplaceConstBytes + |
| 1270 | // Dynamic replace_lanes |
| 1271 | (NumDynamic * ReplaceBytes)) |
| 1272 | // Initial dynamic splat |
| 1273 | : (SplatBytes + |
| 1274 | // Constant replace_lanes |
| 1275 | (NumConst * ReplaceConstBytes) + |
| 1276 | // Dynamic replace_lanes |
| 1277 | (NumDynamic - NumCommon) * ReplaceBytes); |
| 1278 | if (ConstInitBytes < SplatInitBytes) { |
| 1279 | // Create build_vector that will lower to initial v128.const |
| 1280 | SmallVector<SDValue, 16> ConstLanes; |
| 1281 | for (const SDValue &Lane : Op->op_values()) { |
| 1282 | if (IsConstant(Lane)) { |
| 1283 | ConstLanes.push_back(Lane); |
| 1284 | } else if (LaneT.isFloatingPoint()) { |
| 1285 | ConstLanes.push_back(DAG.getConstantFP(0, DL, LaneT)); |
| 1286 | } else { |
| 1287 | ConstLanes.push_back(DAG.getConstant(0, DL, LaneT)); |
| 1288 | } |
| 1289 | } |
| 1290 | SDValue Result = DAG.getBuildVector(VecT, DL, ConstLanes); |
| 1291 | // Add replace_lane instructions for non-const lanes |
| 1292 | for (size_t I = 0; I < Lanes; ++I) { |
| 1293 | const SDValue &Lane = Op->getOperand(I); |
| 1294 | if (!Lane.isUndef() && !IsConstant(Lane)) |
| 1295 | Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VecT, Result, Lane, |
| 1296 | DAG.getConstant(I, DL, MVT::i32)); |
| 1297 | } |
| 1298 | return Result; |
| 1299 | } |
| 1300 | } |
| 1301 | // Use a splat for the initial vector |
| 1302 | SDValue Result = DAG.getSplatBuildVector(VecT, DL, SplatValue); |
| 1303 | // Add replace_lane instructions for other values |
| 1304 | for (size_t I = 0; I < Lanes; ++I) { |
| 1305 | const SDValue &Lane = Op->getOperand(I); |
| 1306 | if (Lane != SplatValue) |
| 1307 | Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VecT, Result, Lane, |
| 1308 | DAG.getConstant(I, DL, MVT::i32)); |
| 1309 | } |
| 1310 | return Result; |
| 1311 | } |
| 1312 | |
Thomas Lively | 64a39a1 | 2019-01-10 22:32:11 +0000 | [diff] [blame] | 1313 | SDValue |
Thomas Lively | a0d2581 | 2018-09-07 21:54:46 +0000 | [diff] [blame] | 1314 | WebAssemblyTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, |
| 1315 | SelectionDAG &DAG) const { |
| 1316 | SDLoc DL(Op); |
| 1317 | ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Op.getNode())->getMask(); |
| 1318 | MVT VecType = Op.getOperand(0).getSimpleValueType(); |
| 1319 | assert(VecType.is128BitVector() && "Unexpected shuffle vector type"); |
| 1320 | size_t LaneBytes = VecType.getVectorElementType().getSizeInBits() / 8; |
| 1321 | |
| 1322 | // Space for two vector args and sixteen mask indices |
| 1323 | SDValue Ops[18]; |
| 1324 | size_t OpIdx = 0; |
| 1325 | Ops[OpIdx++] = Op.getOperand(0); |
| 1326 | Ops[OpIdx++] = Op.getOperand(1); |
| 1327 | |
| 1328 | // Expand mask indices to byte indices and materialize them as operands |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 1329 | for (int M : Mask) { |
Thomas Lively | a0d2581 | 2018-09-07 21:54:46 +0000 | [diff] [blame] | 1330 | for (size_t J = 0; J < LaneBytes; ++J) { |
Thomas Lively | 11a332d0 | 2018-10-19 19:08:06 +0000 | [diff] [blame] | 1331 | // Lower undefs (represented by -1 in mask) to zero |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 1332 | uint64_t ByteIndex = M == -1 ? 0 : (uint64_t)M * LaneBytes + J; |
Thomas Lively | 11a332d0 | 2018-10-19 19:08:06 +0000 | [diff] [blame] | 1333 | Ops[OpIdx++] = DAG.getConstant(ByteIndex, DL, MVT::i32); |
Thomas Lively | a0d2581 | 2018-09-07 21:54:46 +0000 | [diff] [blame] | 1334 | } |
| 1335 | } |
| 1336 | |
Thomas Lively | ed95134 | 2018-10-24 23:27:40 +0000 | [diff] [blame] | 1337 | return DAG.getNode(WebAssemblyISD::SHUFFLE, DL, Op.getValueType(), Ops); |
Thomas Lively | a0d2581 | 2018-09-07 21:54:46 +0000 | [diff] [blame] | 1338 | } |
| 1339 | |
Thomas Lively | fb84fd7 | 2018-11-02 00:06:56 +0000 | [diff] [blame] | 1340 | SDValue |
| 1341 | WebAssemblyTargetLowering::LowerAccessVectorElement(SDValue Op, |
| 1342 | SelectionDAG &DAG) const { |
| 1343 | // Allow constant lane indices, expand variable lane indices |
| 1344 | SDNode *IdxNode = Op.getOperand(Op.getNumOperands() - 1).getNode(); |
| 1345 | if (isa<ConstantSDNode>(IdxNode) || IdxNode->isUndef()) |
| 1346 | return Op; |
| 1347 | else |
| 1348 | // Perform default expansion |
| 1349 | return SDValue(); |
| 1350 | } |
| 1351 | |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 1352 | static SDValue unrollVectorShift(SDValue Op, SelectionDAG &DAG) { |
Thomas Lively | 6bf2b40 | 2019-01-15 02:16:03 +0000 | [diff] [blame] | 1353 | EVT LaneT = Op.getSimpleValueType().getVectorElementType(); |
| 1354 | // 32-bit and 64-bit unrolled shifts will have proper semantics |
| 1355 | if (LaneT.bitsGE(MVT::i32)) |
| 1356 | return DAG.UnrollVectorOp(Op.getNode()); |
| 1357 | // Otherwise mask the shift value to get proper semantics from 32-bit shift |
| 1358 | SDLoc DL(Op); |
| 1359 | SDValue ShiftVal = Op.getOperand(1); |
| 1360 | uint64_t MaskVal = LaneT.getSizeInBits() - 1; |
| 1361 | SDValue MaskedShiftVal = DAG.getNode( |
| 1362 | ISD::AND, // mask opcode |
| 1363 | DL, ShiftVal.getValueType(), // masked value type |
| 1364 | ShiftVal, // original shift value operand |
| 1365 | DAG.getConstant(MaskVal, DL, ShiftVal.getValueType()) // mask operand |
| 1366 | ); |
| 1367 | |
| 1368 | return DAG.UnrollVectorOp( |
| 1369 | DAG.getNode(Op.getOpcode(), // original shift opcode |
| 1370 | DL, Op.getValueType(), // original return type |
| 1371 | Op.getOperand(0), // original vector operand, |
| 1372 | MaskedShiftVal // new masked shift value operand |
| 1373 | ) |
| 1374 | .getNode()); |
| 1375 | } |
| 1376 | |
Thomas Lively | 55735d5 | 2018-10-20 01:31:18 +0000 | [diff] [blame] | 1377 | SDValue WebAssemblyTargetLowering::LowerShift(SDValue Op, |
| 1378 | SelectionDAG &DAG) const { |
| 1379 | SDLoc DL(Op); |
Thomas Lively | b2382c8 | 2018-11-02 00:39:57 +0000 | [diff] [blame] | 1380 | |
| 1381 | // Only manually lower vector shifts |
| 1382 | assert(Op.getSimpleValueType().isVector()); |
| 1383 | |
Thomas Lively | d295f51 | 2019-03-01 17:43:55 +0000 | [diff] [blame] | 1384 | // Expand all vector shifts until V8 fixes its implementation |
| 1385 | // TODO: remove this once V8 is fixed |
| 1386 | if (!Subtarget->hasUnimplementedSIMD128()) |
| 1387 | return unrollVectorShift(Op, DAG); |
| 1388 | |
Thomas Lively | b2382c8 | 2018-11-02 00:39:57 +0000 | [diff] [blame] | 1389 | // Unroll non-splat vector shifts |
| 1390 | BuildVectorSDNode *ShiftVec; |
| 1391 | SDValue SplatVal; |
| 1392 | if (!(ShiftVec = dyn_cast<BuildVectorSDNode>(Op.getOperand(1).getNode())) || |
| 1393 | !(SplatVal = ShiftVec->getSplatValue())) |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 1394 | return unrollVectorShift(Op, DAG); |
Thomas Lively | b2382c8 | 2018-11-02 00:39:57 +0000 | [diff] [blame] | 1395 | |
| 1396 | // All splats except i64x2 const splats are handled by patterns |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 1397 | auto *SplatConst = dyn_cast<ConstantSDNode>(SplatVal); |
Thomas Lively | b2382c8 | 2018-11-02 00:39:57 +0000 | [diff] [blame] | 1398 | if (!SplatConst || Op.getSimpleValueType() != MVT::v2i64) |
Thomas Lively | 55735d5 | 2018-10-20 01:31:18 +0000 | [diff] [blame] | 1399 | return Op; |
Thomas Lively | b2382c8 | 2018-11-02 00:39:57 +0000 | [diff] [blame] | 1400 | |
| 1401 | // i64x2 const splats are custom lowered to avoid unnecessary wraps |
Thomas Lively | 55735d5 | 2018-10-20 01:31:18 +0000 | [diff] [blame] | 1402 | unsigned Opcode; |
| 1403 | switch (Op.getOpcode()) { |
| 1404 | case ISD::SHL: |
| 1405 | Opcode = WebAssemblyISD::VEC_SHL; |
| 1406 | break; |
| 1407 | case ISD::SRA: |
| 1408 | Opcode = WebAssemblyISD::VEC_SHR_S; |
| 1409 | break; |
| 1410 | case ISD::SRL: |
| 1411 | Opcode = WebAssemblyISD::VEC_SHR_U; |
| 1412 | break; |
| 1413 | default: |
| 1414 | llvm_unreachable("unexpected opcode"); |
Thomas Lively | 55735d5 | 2018-10-20 01:31:18 +0000 | [diff] [blame] | 1415 | } |
Thomas Lively | b2382c8 | 2018-11-02 00:39:57 +0000 | [diff] [blame] | 1416 | APInt Shift = SplatConst->getAPIntValue().zextOrTrunc(32); |
Thomas Lively | 55735d5 | 2018-10-20 01:31:18 +0000 | [diff] [blame] | 1417 | return DAG.getNode(Opcode, DL, Op.getValueType(), Op.getOperand(0), |
Thomas Lively | b2382c8 | 2018-11-02 00:39:57 +0000 | [diff] [blame] | 1418 | DAG.getConstant(Shift, DL, MVT::i32)); |
Thomas Lively | 55735d5 | 2018-10-20 01:31:18 +0000 | [diff] [blame] | 1419 | } |
| 1420 | |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 1421 | //===----------------------------------------------------------------------===// |
| 1422 | // WebAssembly Optimization Hooks |
| 1423 | //===----------------------------------------------------------------------===// |