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