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