blob: 40a2602523269532a2bd1acff736604d9dc3ce64 [file] [log] [blame]
Dan Gohman10e730a2015-06-29 23:51:55 +00001//=- WebAssemblyISelLowering.cpp - WebAssembly DAG Lowering Implementation -==//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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 Gohman10e730a2015-06-29 23:51:55 +00006//
7//===----------------------------------------------------------------------===//
8///
9/// \file
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000010/// This file implements the WebAssemblyTargetLowering class.
Dan Gohman10e730a2015-06-29 23:51:55 +000011///
12//===----------------------------------------------------------------------===//
13
14#include "WebAssemblyISelLowering.h"
15#include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
16#include "WebAssemblyMachineFunctionInfo.h"
17#include "WebAssemblySubtarget.h"
18#include "WebAssemblyTargetMachine.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000019#include "llvm/CodeGen/Analysis.h"
JF Bastienaf111db2015-08-24 22:16:48 +000020#include "llvm/CodeGen/CallingConvLower.h"
Dan Gohmancdd48b82017-11-28 01:13:40 +000021#include "llvm/CodeGen/MachineInstrBuilder.h"
Dan Gohman950a13c2015-09-16 16:51:30 +000022#include "llvm/CodeGen/MachineJumpTableInfo.h"
Heejin Ahn24faf852018-10-25 23:55:10 +000023#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000024#include "llvm/CodeGen/MachineRegisterInfo.h"
25#include "llvm/CodeGen/SelectionDAG.h"
Heejin Ahnda419bd2018-11-14 02:46:21 +000026#include "llvm/CodeGen/WasmEHFuncInfo.h"
Oliver Stannard02fa1c82016-01-28 13:19:47 +000027#include "llvm/IR/DiagnosticInfo.h"
JF Bastienb9073fb2015-07-22 21:28:15 +000028#include "llvm/IR/DiagnosticPrinter.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000029#include "llvm/IR/Function.h"
30#include "llvm/IR/Intrinsics.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000031#include "llvm/Support/Debug.h"
32#include "llvm/Support/ErrorHandling.h"
33#include "llvm/Support/raw_ostream.h"
34#include "llvm/Target/TargetOptions.h"
35using namespace llvm;
36
37#define DEBUG_TYPE "wasm-lower"
38
39WebAssemblyTargetLowering::WebAssemblyTargetLowering(
40 const TargetMachine &TM, const WebAssemblySubtarget &STI)
Dan Gohmanbfaf7e12015-07-02 21:36:25 +000041 : TargetLowering(TM), Subtarget(&STI) {
JF Bastienaf111db2015-08-24 22:16:48 +000042 auto MVTPtr = Subtarget->hasAddr64() ? MVT::i64 : MVT::i32;
43
JF Bastien71d29ac2015-08-12 17:53:29 +000044 // Booleans always contain 0 or 1.
45 setBooleanContents(ZeroOrOneBooleanContent);
Thomas Lively5ea17d42018-10-20 01:35:23 +000046 // Except in SIMD vectors
47 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
Dan Gohman489abd72015-07-07 22:38:06 +000048 // We don't know the microarchitecture here, so just reduce register pressure.
49 setSchedulingPreference(Sched::RegPressure);
JF Bastienb9073fb2015-07-22 21:28:15 +000050 // Tell ISel that we have a stack pointer.
51 setStackPointerRegisterToSaveRestore(
52 Subtarget->hasAddr64() ? WebAssembly::SP64 : WebAssembly::SP32);
53 // Set up the register classes.
Dan Gohmand0bf9812015-09-26 01:09:44 +000054 addRegisterClass(MVT::i32, &WebAssembly::I32RegClass);
55 addRegisterClass(MVT::i64, &WebAssembly::I64RegClass);
56 addRegisterClass(MVT::f32, &WebAssembly::F32RegClass);
57 addRegisterClass(MVT::f64, &WebAssembly::F64RegClass);
Derek Schuff39bf39f2016-08-02 23:16:09 +000058 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 Lively2b8b2972019-01-26 01:25:37 +000063 }
64 if (Subtarget->hasUnimplementedSIMD128()) {
65 addRegisterClass(MVT::v2i64, &WebAssembly::V128RegClass);
66 addRegisterClass(MVT::v2f64, &WebAssembly::V128RegClass);
Derek Schuff39bf39f2016-08-02 23:16:09 +000067 }
JF Bastienb9073fb2015-07-22 21:28:15 +000068 // Compute derived properties from the register classes.
69 computeRegisterProperties(Subtarget->getRegisterInfo());
70
JF Bastienaf111db2015-08-24 22:16:48 +000071 setOperationAction(ISD::GlobalAddress, MVTPtr, Custom);
Dan Gohman2c8fe6a2015-11-25 16:44:29 +000072 setOperationAction(ISD::ExternalSymbol, MVTPtr, Custom);
Dan Gohman950a13c2015-09-16 16:51:30 +000073 setOperationAction(ISD::JumpTable, MVTPtr, Custom);
Derek Schuff51699a82016-02-12 22:56:03 +000074 setOperationAction(ISD::BlockAddress, MVTPtr, Custom);
75 setOperationAction(ISD::BRIND, MVT::Other, Custom);
JF Bastienaf111db2015-08-24 22:16:48 +000076
Dan Gohman35bfb242015-12-04 23:22:35 +000077 // 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 Livelyebd4c902018-09-12 17:56:00 +000084 for (auto T : {MVT::f32, MVT::f64, MVT::v4f32, MVT::v2f64}) {
JF Bastienda06bce2015-08-11 21:02:46 +000085 // 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 Gohman32907a62015-08-20 22:57:13 +000091 // Expand floating-point library function operators.
Heejin Ahnf208f632018-09-05 01:27:38 +000092 for (auto Op :
93 {ISD::FSIN, ISD::FCOS, ISD::FSINCOS, ISD::FPOW, ISD::FREM, ISD::FMA})
Dan Gohman32907a62015-08-20 22:57:13 +000094 setOperationAction(Op, T, Expand);
Dan Gohman896e53f2015-08-24 18:23:13 +000095 // Note supported floating-point library function operators that otherwise
96 // default to expand.
Dan Gohman7a6b9822015-11-29 22:32:02 +000097 for (auto Op :
98 {ISD::FCEIL, ISD::FFLOOR, ISD::FTRUNC, ISD::FNEARBYINT, ISD::FRINT})
Dan Gohman896e53f2015-08-24 18:23:13 +000099 setOperationAction(Op, T, Legal);
Thomas Lively30f1d692018-10-24 22:49:55 +0000100 // Support minimum and maximum, which otherwise default to expand.
101 setOperationAction(ISD::FMINIMUM, T, Legal);
102 setOperationAction(ISD::FMAXIMUM, T, Legal);
Dan Gohmana63e8eb2017-02-22 16:28:00 +0000103 // 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 Bastienda06bce2015-08-11 21:02:46 +0000108 }
Dan Gohman32907a62015-08-20 22:57:13 +0000109
Thomas Lively66ea30c2018-11-29 22:01:01 +0000110 // 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 Lively2b8b2972019-01-26 01:25:37 +0000115 for (auto T : {MVT::i32, MVT::i64})
Dan Gohman32907a62015-08-20 22:57:13 +0000116 setOperationAction(Op, T, Expand);
Thomas Lively2b8b2972019-01-26 01:25:37 +0000117 if (Subtarget->hasSIMD128())
118 for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32})
Thomas Lively66ea30c2018-11-29 22:01:01 +0000119 setOperationAction(Op, T, Expand);
Thomas Lively64a39a12019-01-10 22:32:11 +0000120 if (Subtarget->hasUnimplementedSIMD128())
Thomas Lively2b8b2972019-01-26 01:25:37 +0000121 setOperationAction(Op, MVT::v2i64, Expand);
Thomas Livelyb2382c82018-11-02 00:39:57 +0000122 }
Thomas Lively55735d52018-10-20 01:31:18 +0000123
Thomas Lively2b8b2972019-01-26 01:25:37 +0000124 // 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 Lively079816e2019-01-30 02:23:29 +0000131 // 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 Lively2b8b2972019-01-26 01:25:37 +0000138 // 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 Lively38c902b2018-11-09 01:38:44 +0000166 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 Lively64a39a12019-01-10 22:32:11 +0000169 if (Subtarget->hasUnimplementedSIMD128())
Thomas Lively38c902b2018-11-09 01:38:44 +0000170 for (auto T : {MVT::v2i64, MVT::v2f64})
171 setOperationAction(Op, T, Expand);
172 }
Thomas Livelyd4891a12018-11-01 00:01:02 +0000173
Thomas Lively43876ae72019-03-02 03:32:25 +0000174 // 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 Lively55229f62019-05-24 00:15:04 +0000185 ISD::FCOPYSIGN, ISD::FLOG, ISD::FLOG2, ISD::FLOG10,
186 ISD::FEXP, ISD::FEXP2, ISD::FRINT}) {
Thomas Lively43876ae72019-03-02 03:32:25 +0000187 setOperationAction(Op, MVT::v4f32, Expand);
188 if (Subtarget->hasUnimplementedSIMD128())
189 setOperationAction(Op, MVT::v2f64, Expand);
190 }
191
Thomas Lively2b8b2972019-01-26 01:25:37 +0000192 // 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 Gohman32907a62015-08-20 22:57:13 +0000199 // As a special case, these operators use the type to mean the type to
200 // sign-extend from.
Derek Schuffa519fe52017-09-13 00:29:06 +0000201 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Dan Gohman5d2b9352018-01-19 17:16:24 +0000202 if (!Subtarget->hasSignExt()) {
Thomas Lively64a39a12019-01-10 22:32:11 +0000203 // Sign extends are legal only when extending a vector extract
204 auto Action = Subtarget->hasSIMD128() ? Custom : Expand;
Derek Schuffa519fe52017-09-13 00:29:06 +0000205 for (auto T : {MVT::i8, MVT::i16, MVT::i32})
Thomas Lively64a39a12019-01-10 22:32:11 +0000206 setOperationAction(ISD::SIGN_EXTEND_INREG, T, Action);
Derek Schuffa519fe52017-09-13 00:29:06 +0000207 }
Graham Hunter1a9195d2019-09-17 10:19:23 +0000208 for (auto T : MVT::integer_fixedlen_vector_valuetypes())
Thomas Lively5ea17d42018-10-20 01:35:23 +0000209 setOperationAction(ISD::SIGN_EXTEND_INREG, T, Expand);
Dan Gohman32907a62015-08-20 22:57:13 +0000210
211 // Dynamic stack allocation: use the default expansion.
212 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
213 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Dan Gohman2683a552015-08-24 22:31:52 +0000214 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVTPtr, Expand);
JF Bastien73ff6af2015-08-31 22:24:11 +0000215
Derek Schuff9769deb2015-12-11 23:49:46 +0000216 setOperationAction(ISD::FrameIndex, MVT::i32, Custom);
Derek Schuffaadc89c2016-02-16 18:18:36 +0000217 setOperationAction(ISD::CopyToReg, MVT::Other, Custom);
Derek Schuff9769deb2015-12-11 23:49:46 +0000218
Dan Gohman950a13c2015-09-16 16:51:30 +0000219 // 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 Bastien73ff6af2015-08-31 22:24:11 +0000227 // WebAssembly doesn't have:
228 // - Floating-point extending loads.
229 // - Floating-point truncating stores.
230 // - i1 extending loads.
Thomas Lively81125f72019-09-27 02:06:50 +0000231 // - truncating SIMD stores and most extending loads
Dan Gohman60bddf12015-12-10 02:07:53 +0000232 setLoadExtAction(ISD::EXTLOAD, MVT::f64, MVT::f32, Expand);
JF Bastien73ff6af2015-08-31 22:24:11 +0000233 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 Lively325c9c52018-10-25 01:46:07 +0000237 if (Subtarget->hasSIMD128()) {
238 for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v2i64, MVT::v4f32,
239 MVT::v2f64}) {
Graham Hunter1a9195d2019-09-17 10:19:23 +0000240 for (auto MemT : MVT::fixedlen_vector_valuetypes()) {
Thomas Lively325c9c52018-10-25 01:46:07 +0000241 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 }
Thomas Lively81125f72019-09-27 02:06:50 +0000248 // But some vector extending loads are legal
249 if (Subtarget->hasUnimplementedSIMD128()) {
250 for (auto Ext : {ISD::EXTLOAD, ISD::SEXTLOAD, ISD::ZEXTLOAD}) {
251 setLoadExtAction(Ext, MVT::v8i16, MVT::v8i8, Legal);
252 setLoadExtAction(Ext, MVT::v4i32, MVT::v4i16, Legal);
253 setLoadExtAction(Ext, MVT::v2i64, MVT::v2i32, Legal);
254 }
255 }
Thomas Lively325c9c52018-10-25 01:46:07 +0000256 }
Derek Schuffffa143c2015-11-10 00:30:57 +0000257
Thomas Lively33f87b82019-01-28 23:44:31 +0000258 // Don't do anything clever with build_pairs
259 setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
260
Derek Schuffffa143c2015-11-10 00:30:57 +0000261 // Trap lowers to wasm unreachable
262 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Derek Schuff18ba1922017-08-30 18:07:45 +0000263
Heejin Ahn5ef4d5f2018-05-31 22:25:54 +0000264 // Exception handling intrinsics
265 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Heejin Ahnda419bd2018-11-14 02:46:21 +0000266 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
Heejin Ahn5ef4d5f2018-05-31 22:25:54 +0000267
Derek Schuff18ba1922017-08-30 18:07:45 +0000268 setMaxAtomicSizeInBitsSupported(64);
Thomas Livelyd99af232019-02-05 00:49:55 +0000269
Dan Gohman3a7532e2019-04-30 19:17:59 +0000270 // Override the __gnu_f2h_ieee/__gnu_h2f_ieee names so that the f32 name is
271 // consistent with the f64 and f128 names.
272 setLibcallName(RTLIB::FPEXT_F16_F32, "__extendhfsf2");
273 setLibcallName(RTLIB::FPROUND_F32_F16, "__truncsfhf2");
274
Thomas Lively1a3cbe72019-05-23 01:24:01 +0000275 // Define the emscripten name for return address helper.
276 // TODO: when implementing other WASM backends, make this generic or only do
277 // this on emscripten depending on what they end up doing.
278 setLibcallName(RTLIB::RETURN_ADDRESS, "emscripten_return_address");
279
Heejin Ahnb9f282d2019-04-23 21:30:30 +0000280 // Always convert switches to br_tables unless there is only one case, which
281 // is equivalent to a simple branch. This reduces code size for wasm, and we
282 // defer possible jump table optimizations to the VM.
283 setMinimumJumpTableEntries(2);
Dan Gohmanbfaf7e12015-07-02 21:36:25 +0000284}
Dan Gohman10e730a2015-06-29 23:51:55 +0000285
Heejin Ahne8653bb2018-08-07 00:22:22 +0000286TargetLowering::AtomicExpansionKind
287WebAssemblyTargetLowering::shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const {
288 // We have wasm instructions for these
289 switch (AI->getOperation()) {
290 case AtomicRMWInst::Add:
291 case AtomicRMWInst::Sub:
292 case AtomicRMWInst::And:
293 case AtomicRMWInst::Or:
294 case AtomicRMWInst::Xor:
295 case AtomicRMWInst::Xchg:
296 return AtomicExpansionKind::None;
297 default:
298 break;
299 }
300 return AtomicExpansionKind::CmpXChg;
301}
302
Dan Gohman7b634842015-08-24 18:44:37 +0000303FastISel *WebAssemblyTargetLowering::createFastISel(
304 FunctionLoweringInfo &FuncInfo, const TargetLibraryInfo *LibInfo) const {
305 return WebAssembly::createFastISel(FuncInfo, LibInfo);
306}
307
Dan Gohman7a6b9822015-11-29 22:32:02 +0000308MVT WebAssemblyTargetLowering::getScalarShiftAmountTy(const DataLayout & /*DL*/,
JF Bastienfda53372015-08-03 00:00:11 +0000309 EVT VT) const {
Dan Gohmana8483752015-12-10 00:26:26 +0000310 unsigned BitWidth = NextPowerOf2(VT.getSizeInBits() - 1);
Heejin Ahnf208f632018-09-05 01:27:38 +0000311 if (BitWidth > 1 && BitWidth < 8)
312 BitWidth = 8;
Dan Gohman41729532015-12-16 23:25:51 +0000313
314 if (BitWidth > 64) {
Dan Gohmana01e8bd2016-05-14 02:15:47 +0000315 // The shift will be lowered to a libcall, and compiler-rt libcalls expect
316 // the count to be an i32.
317 BitWidth = 32;
Dan Gohman41729532015-12-16 23:25:51 +0000318 assert(BitWidth >= Log2_32_Ceil(VT.getSizeInBits()) &&
Dan Gohmana01e8bd2016-05-14 02:15:47 +0000319 "32-bit shift counts ought to be enough for anyone");
Dan Gohman41729532015-12-16 23:25:51 +0000320 }
321
Dan Gohmana8483752015-12-10 00:26:26 +0000322 MVT Result = MVT::getIntegerVT(BitWidth);
323 assert(Result != MVT::INVALID_SIMPLE_VALUE_TYPE &&
324 "Unable to represent scalar shift amount type");
325 return Result;
JF Bastienfda53372015-08-03 00:00:11 +0000326}
327
Dan Gohmancdd48b82017-11-28 01:13:40 +0000328// Lower an fp-to-int conversion operator from the LLVM opcode, which has an
329// undefined result on invalid/overflow, to the WebAssembly opcode, which
330// traps on invalid/overflow.
Heejin Ahnf208f632018-09-05 01:27:38 +0000331static MachineBasicBlock *LowerFPToInt(MachineInstr &MI, DebugLoc DL,
332 MachineBasicBlock *BB,
333 const TargetInstrInfo &TII,
334 bool IsUnsigned, bool Int64,
335 bool Float64, unsigned LoweredOpcode) {
Dan Gohmancdd48b82017-11-28 01:13:40 +0000336 MachineRegisterInfo &MRI = BB->getParent()->getRegInfo();
337
Daniel Sanders05c145d2019-08-12 22:40:45 +0000338 Register OutReg = MI.getOperand(0).getReg();
339 Register InReg = MI.getOperand(1).getReg();
Dan Gohmancdd48b82017-11-28 01:13:40 +0000340
341 unsigned Abs = Float64 ? WebAssembly::ABS_F64 : WebAssembly::ABS_F32;
342 unsigned FConst = Float64 ? WebAssembly::CONST_F64 : WebAssembly::CONST_F32;
343 unsigned LT = Float64 ? WebAssembly::LT_F64 : WebAssembly::LT_F32;
Dan Gohman580c1022017-11-29 20:20:11 +0000344 unsigned GE = Float64 ? WebAssembly::GE_F64 : WebAssembly::GE_F32;
Dan Gohmancdd48b82017-11-28 01:13:40 +0000345 unsigned IConst = Int64 ? WebAssembly::CONST_I64 : WebAssembly::CONST_I32;
Dan Gohman580c1022017-11-29 20:20:11 +0000346 unsigned Eqz = WebAssembly::EQZ_I32;
347 unsigned And = WebAssembly::AND_I32;
Dan Gohmancdd48b82017-11-28 01:13:40 +0000348 int64_t Limit = Int64 ? INT64_MIN : INT32_MIN;
349 int64_t Substitute = IsUnsigned ? 0 : Limit;
350 double CmpVal = IsUnsigned ? -(double)Limit * 2.0 : -(double)Limit;
David Blaikie21109242017-12-15 23:52:06 +0000351 auto &Context = BB->getParent()->getFunction().getContext();
Dan Gohmancdd48b82017-11-28 01:13:40 +0000352 Type *Ty = Float64 ? Type::getDoubleTy(Context) : Type::getFloatTy(Context);
353
Heejin Ahn18c56a02019-02-04 19:13:39 +0000354 const BasicBlock *LLVMBB = BB->getBasicBlock();
Dan Gohmancdd48b82017-11-28 01:13:40 +0000355 MachineFunction *F = BB->getParent();
Heejin Ahn18c56a02019-02-04 19:13:39 +0000356 MachineBasicBlock *TrueMBB = F->CreateMachineBasicBlock(LLVMBB);
357 MachineBasicBlock *FalseMBB = F->CreateMachineBasicBlock(LLVMBB);
358 MachineBasicBlock *DoneMBB = F->CreateMachineBasicBlock(LLVMBB);
Dan Gohmancdd48b82017-11-28 01:13:40 +0000359
360 MachineFunction::iterator It = ++BB->getIterator();
361 F->insert(It, FalseMBB);
362 F->insert(It, TrueMBB);
363 F->insert(It, DoneMBB);
364
365 // Transfer the remainder of BB and its successor edges to DoneMBB.
Heejin Ahn5c644c92019-03-05 21:05:09 +0000366 DoneMBB->splice(DoneMBB->begin(), BB, std::next(MI.getIterator()), BB->end());
Dan Gohmancdd48b82017-11-28 01:13:40 +0000367 DoneMBB->transferSuccessorsAndUpdatePHIs(BB);
368
369 BB->addSuccessor(TrueMBB);
370 BB->addSuccessor(FalseMBB);
371 TrueMBB->addSuccessor(DoneMBB);
372 FalseMBB->addSuccessor(DoneMBB);
373
Dan Gohman580c1022017-11-29 20:20:11 +0000374 unsigned Tmp0, Tmp1, CmpReg, EqzReg, FalseReg, TrueReg;
Dan Gohmancdd48b82017-11-28 01:13:40 +0000375 Tmp0 = MRI.createVirtualRegister(MRI.getRegClass(InReg));
376 Tmp1 = MRI.createVirtualRegister(MRI.getRegClass(InReg));
Dan Gohman580c1022017-11-29 20:20:11 +0000377 CmpReg = MRI.createVirtualRegister(&WebAssembly::I32RegClass);
378 EqzReg = MRI.createVirtualRegister(&WebAssembly::I32RegClass);
379 FalseReg = MRI.createVirtualRegister(MRI.getRegClass(OutReg));
380 TrueReg = MRI.createVirtualRegister(MRI.getRegClass(OutReg));
Dan Gohmancdd48b82017-11-28 01:13:40 +0000381
382 MI.eraseFromParent();
Dan Gohman580c1022017-11-29 20:20:11 +0000383 // For signed numbers, we can do a single comparison to determine whether
384 // fabs(x) is within range.
Dan Gohmancdd48b82017-11-28 01:13:40 +0000385 if (IsUnsigned) {
386 Tmp0 = InReg;
387 } else {
Heejin Ahnf208f632018-09-05 01:27:38 +0000388 BuildMI(BB, DL, TII.get(Abs), Tmp0).addReg(InReg);
Dan Gohmancdd48b82017-11-28 01:13:40 +0000389 }
390 BuildMI(BB, DL, TII.get(FConst), Tmp1)
391 .addFPImm(cast<ConstantFP>(ConstantFP::get(Ty, CmpVal)));
Heejin Ahnf208f632018-09-05 01:27:38 +0000392 BuildMI(BB, DL, TII.get(LT), CmpReg).addReg(Tmp0).addReg(Tmp1);
Dan Gohman580c1022017-11-29 20:20:11 +0000393
394 // For unsigned numbers, we have to do a separate comparison with zero.
395 if (IsUnsigned) {
396 Tmp1 = MRI.createVirtualRegister(MRI.getRegClass(InReg));
Daniel Sanders05c145d2019-08-12 22:40:45 +0000397 Register SecondCmpReg =
Heejin Ahnf208f632018-09-05 01:27:38 +0000398 MRI.createVirtualRegister(&WebAssembly::I32RegClass);
Daniel Sanders05c145d2019-08-12 22:40:45 +0000399 Register AndReg = MRI.createVirtualRegister(&WebAssembly::I32RegClass);
Dan Gohman580c1022017-11-29 20:20:11 +0000400 BuildMI(BB, DL, TII.get(FConst), Tmp1)
401 .addFPImm(cast<ConstantFP>(ConstantFP::get(Ty, 0.0)));
Heejin Ahnf208f632018-09-05 01:27:38 +0000402 BuildMI(BB, DL, TII.get(GE), SecondCmpReg).addReg(Tmp0).addReg(Tmp1);
403 BuildMI(BB, DL, TII.get(And), AndReg).addReg(CmpReg).addReg(SecondCmpReg);
Dan Gohman580c1022017-11-29 20:20:11 +0000404 CmpReg = AndReg;
405 }
406
Heejin Ahnf208f632018-09-05 01:27:38 +0000407 BuildMI(BB, DL, TII.get(Eqz), EqzReg).addReg(CmpReg);
Dan Gohman580c1022017-11-29 20:20:11 +0000408
409 // Create the CFG diamond to select between doing the conversion or using
410 // the substitute value.
Heejin Ahnf208f632018-09-05 01:27:38 +0000411 BuildMI(BB, DL, TII.get(WebAssembly::BR_IF)).addMBB(TrueMBB).addReg(EqzReg);
412 BuildMI(FalseMBB, DL, TII.get(LoweredOpcode), FalseReg).addReg(InReg);
413 BuildMI(FalseMBB, DL, TII.get(WebAssembly::BR)).addMBB(DoneMBB);
414 BuildMI(TrueMBB, DL, TII.get(IConst), TrueReg).addImm(Substitute);
Dan Gohmancdd48b82017-11-28 01:13:40 +0000415 BuildMI(*DoneMBB, DoneMBB->begin(), DL, TII.get(TargetOpcode::PHI), OutReg)
Dan Gohman580c1022017-11-29 20:20:11 +0000416 .addReg(FalseReg)
Dan Gohmancdd48b82017-11-28 01:13:40 +0000417 .addMBB(FalseMBB)
Dan Gohman580c1022017-11-29 20:20:11 +0000418 .addReg(TrueReg)
Dan Gohmancdd48b82017-11-28 01:13:40 +0000419 .addMBB(TrueMBB);
420
421 return DoneMBB;
422}
423
Heejin Ahnf208f632018-09-05 01:27:38 +0000424MachineBasicBlock *WebAssemblyTargetLowering::EmitInstrWithCustomInserter(
425 MachineInstr &MI, MachineBasicBlock *BB) const {
Dan Gohmancdd48b82017-11-28 01:13:40 +0000426 const TargetInstrInfo &TII = *Subtarget->getInstrInfo();
427 DebugLoc DL = MI.getDebugLoc();
428
429 switch (MI.getOpcode()) {
Heejin Ahnf208f632018-09-05 01:27:38 +0000430 default:
431 llvm_unreachable("Unexpected instr type to insert");
Dan Gohmancdd48b82017-11-28 01:13:40 +0000432 case WebAssembly::FP_TO_SINT_I32_F32:
433 return LowerFPToInt(MI, DL, BB, TII, false, false, false,
434 WebAssembly::I32_TRUNC_S_F32);
435 case WebAssembly::FP_TO_UINT_I32_F32:
436 return LowerFPToInt(MI, DL, BB, TII, true, false, false,
437 WebAssembly::I32_TRUNC_U_F32);
438 case WebAssembly::FP_TO_SINT_I64_F32:
439 return LowerFPToInt(MI, DL, BB, TII, false, true, false,
440 WebAssembly::I64_TRUNC_S_F32);
441 case WebAssembly::FP_TO_UINT_I64_F32:
442 return LowerFPToInt(MI, DL, BB, TII, true, true, false,
443 WebAssembly::I64_TRUNC_U_F32);
444 case WebAssembly::FP_TO_SINT_I32_F64:
445 return LowerFPToInt(MI, DL, BB, TII, false, false, true,
446 WebAssembly::I32_TRUNC_S_F64);
447 case WebAssembly::FP_TO_UINT_I32_F64:
448 return LowerFPToInt(MI, DL, BB, TII, true, false, true,
449 WebAssembly::I32_TRUNC_U_F64);
450 case WebAssembly::FP_TO_SINT_I64_F64:
451 return LowerFPToInt(MI, DL, BB, TII, false, true, true,
452 WebAssembly::I64_TRUNC_S_F64);
453 case WebAssembly::FP_TO_UINT_I64_F64:
454 return LowerFPToInt(MI, DL, BB, TII, true, true, true,
455 WebAssembly::I64_TRUNC_U_F64);
Heejin Ahnf208f632018-09-05 01:27:38 +0000456 llvm_unreachable("Unexpected instruction to emit with custom inserter");
Dan Gohmancdd48b82017-11-28 01:13:40 +0000457 }
458}
459
Heejin Ahnf208f632018-09-05 01:27:38 +0000460const char *
461WebAssemblyTargetLowering::getTargetNodeName(unsigned Opcode) const {
JF Bastien480c8402015-08-11 20:13:18 +0000462 switch (static_cast<WebAssemblyISD::NodeType>(Opcode)) {
Heejin Ahnf208f632018-09-05 01:27:38 +0000463 case WebAssemblyISD::FIRST_NUMBER:
Thomas Lively3479fd22019-10-31 20:01:02 -0700464 case WebAssemblyISD::FIRST_MEM_OPCODE:
Heejin Ahnf208f632018-09-05 01:27:38 +0000465 break;
466#define HANDLE_NODETYPE(NODE) \
467 case WebAssemblyISD::NODE: \
JF Bastienaf111db2015-08-24 22:16:48 +0000468 return "WebAssemblyISD::" #NODE;
Thomas Lively3479fd22019-10-31 20:01:02 -0700469#define HANDLE_MEM_NODETYPE(NODE) HANDLE_NODETYPE(NODE)
JF Bastienaf111db2015-08-24 22:16:48 +0000470#include "WebAssemblyISD.def"
Thomas Lively3479fd22019-10-31 20:01:02 -0700471#undef HANDLE_MEM_NODETYPE
JF Bastienaf111db2015-08-24 22:16:48 +0000472#undef HANDLE_NODETYPE
JF Bastien480c8402015-08-11 20:13:18 +0000473 }
474 return nullptr;
475}
476
Dan Gohmanf19ed562015-11-13 01:42:29 +0000477std::pair<unsigned, const TargetRegisterClass *>
478WebAssemblyTargetLowering::getRegForInlineAsmConstraint(
479 const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const {
480 // First, see if this is a constraint that directly corresponds to a
481 // WebAssembly register class.
482 if (Constraint.size() == 1) {
483 switch (Constraint[0]) {
Heejin Ahnf208f632018-09-05 01:27:38 +0000484 case 'r':
485 assert(VT != MVT::iPTR && "Pointer MVT not expected here");
486 if (Subtarget->hasSIMD128() && VT.isVector()) {
487 if (VT.getSizeInBits() == 128)
488 return std::make_pair(0U, &WebAssembly::V128RegClass);
489 }
490 if (VT.isInteger() && !VT.isVector()) {
491 if (VT.getSizeInBits() <= 32)
492 return std::make_pair(0U, &WebAssembly::I32RegClass);
493 if (VT.getSizeInBits() <= 64)
494 return std::make_pair(0U, &WebAssembly::I64RegClass);
495 }
496 break;
497 default:
498 break;
Dan Gohmanf19ed562015-11-13 01:42:29 +0000499 }
500 }
501
502 return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
503}
504
Dan Gohman3192ddf2015-11-19 23:04:59 +0000505bool WebAssemblyTargetLowering::isCheapToSpeculateCttz() const {
506 // Assume ctz is a relatively cheap operation.
507 return true;
508}
509
510bool WebAssemblyTargetLowering::isCheapToSpeculateCtlz() const {
511 // Assume clz is a relatively cheap operation.
512 return true;
513}
514
Dan Gohman4b9d7912015-12-15 22:01:29 +0000515bool WebAssemblyTargetLowering::isLegalAddressingMode(const DataLayout &DL,
516 const AddrMode &AM,
Heejin Ahnf208f632018-09-05 01:27:38 +0000517 Type *Ty, unsigned AS,
Jonas Paulsson024e3192017-07-21 11:59:37 +0000518 Instruction *I) const {
Dan Gohman4b9d7912015-12-15 22:01:29 +0000519 // WebAssembly offsets are added as unsigned without wrapping. The
520 // isLegalAddressingMode gives us no way to determine if wrapping could be
521 // happening, so we approximate this by accepting only non-negative offsets.
Heejin Ahnf208f632018-09-05 01:27:38 +0000522 if (AM.BaseOffs < 0)
523 return false;
Dan Gohman4b9d7912015-12-15 22:01:29 +0000524
525 // WebAssembly has no scale register operands.
Heejin Ahnf208f632018-09-05 01:27:38 +0000526 if (AM.Scale != 0)
527 return false;
Dan Gohman4b9d7912015-12-15 22:01:29 +0000528
529 // Everything else is legal.
530 return true;
531}
532
Dan Gohmanbb372242016-01-26 03:39:31 +0000533bool WebAssemblyTargetLowering::allowsMisalignedMemoryAccesses(
Simon Pilgrim4e0648a2019-06-12 17:14:03 +0000534 EVT /*VT*/, unsigned /*AddrSpace*/, unsigned /*Align*/,
535 MachineMemOperand::Flags /*Flags*/, bool *Fast) const {
Dan Gohmanbb372242016-01-26 03:39:31 +0000536 // WebAssembly supports unaligned accesses, though it should be declared
537 // with the p2align attribute on loads and stores which do so, and there
538 // may be a performance impact. We tell LLVM they're "fast" because
Dan Gohmanfb619e92016-01-26 14:55:17 +0000539 // for the kinds of things that LLVM uses this for (merging adjacent stores
Dan Gohmanbb372242016-01-26 03:39:31 +0000540 // of constants, etc.), WebAssembly implementations will either want the
541 // unaligned access or they'll split anyway.
Heejin Ahnf208f632018-09-05 01:27:38 +0000542 if (Fast)
543 *Fast = true;
Dan Gohmanbb372242016-01-26 03:39:31 +0000544 return true;
545}
546
Reid Klecknerb5180542017-03-21 16:57:19 +0000547bool WebAssemblyTargetLowering::isIntDivCheap(EVT VT,
548 AttributeList Attr) const {
Dan Gohmanb4c3c382016-05-18 14:29:42 +0000549 // The current thinking is that wasm engines will perform this optimization,
550 // so we can save on code size.
551 return true;
552}
553
Thomas Lively81125f72019-09-27 02:06:50 +0000554bool WebAssemblyTargetLowering::isVectorLoadExtDesirable(SDValue ExtVal) const {
555 if (!Subtarget->hasUnimplementedSIMD128())
556 return false;
557 MVT ExtT = ExtVal.getSimpleValueType();
558 MVT MemT = cast<LoadSDNode>(ExtVal->getOperand(0))->getSimpleValueType(0);
559 return (ExtT == MVT::v8i16 && MemT == MVT::v8i8) ||
560 (ExtT == MVT::v4i32 && MemT == MVT::v4i16) ||
561 (ExtT == MVT::v2i64 && MemT == MVT::v2i32);
562}
563
Simon Pilgrim99f70162018-06-28 17:27:09 +0000564EVT WebAssemblyTargetLowering::getSetCCResultType(const DataLayout &DL,
565 LLVMContext &C,
566 EVT VT) const {
567 if (VT.isVector())
568 return VT.changeVectorElementTypeToInteger();
569
570 return TargetLowering::getSetCCResultType(DL, C, VT);
571}
572
Heejin Ahn4128cb02018-08-02 21:44:24 +0000573bool WebAssemblyTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
574 const CallInst &I,
575 MachineFunction &MF,
576 unsigned Intrinsic) const {
577 switch (Intrinsic) {
578 case Intrinsic::wasm_atomic_notify:
579 Info.opc = ISD::INTRINSIC_W_CHAIN;
580 Info.memVT = MVT::i32;
581 Info.ptrVal = I.getArgOperand(0);
582 Info.offset = 0;
Guillaume Chateletc97a3d12019-08-05 11:02:05 +0000583 Info.align = Align(4);
Heejin Ahn4128cb02018-08-02 21:44:24 +0000584 // atomic.notify instruction does not really load the memory specified with
585 // this argument, but MachineMemOperand should either be load or store, so
586 // we set this to a load.
587 // FIXME Volatile isn't really correct, but currently all LLVM atomic
588 // instructions are treated as volatiles in the backend, so we should be
589 // consistent. The same applies for wasm_atomic_wait intrinsics too.
590 Info.flags = MachineMemOperand::MOVolatile | MachineMemOperand::MOLoad;
591 return true;
592 case Intrinsic::wasm_atomic_wait_i32:
593 Info.opc = ISD::INTRINSIC_W_CHAIN;
594 Info.memVT = MVT::i32;
595 Info.ptrVal = I.getArgOperand(0);
596 Info.offset = 0;
Guillaume Chateletc97a3d12019-08-05 11:02:05 +0000597 Info.align = Align(4);
Heejin Ahn4128cb02018-08-02 21:44:24 +0000598 Info.flags = MachineMemOperand::MOVolatile | MachineMemOperand::MOLoad;
599 return true;
600 case Intrinsic::wasm_atomic_wait_i64:
601 Info.opc = ISD::INTRINSIC_W_CHAIN;
602 Info.memVT = MVT::i64;
603 Info.ptrVal = I.getArgOperand(0);
604 Info.offset = 0;
Guillaume Chateletc97a3d12019-08-05 11:02:05 +0000605 Info.align = Align(8);
Heejin Ahn4128cb02018-08-02 21:44:24 +0000606 Info.flags = MachineMemOperand::MOVolatile | MachineMemOperand::MOLoad;
607 return true;
608 default:
609 return false;
610 }
611}
612
Dan Gohman10e730a2015-06-29 23:51:55 +0000613//===----------------------------------------------------------------------===//
614// WebAssembly Lowering private implementation.
615//===----------------------------------------------------------------------===//
616
617//===----------------------------------------------------------------------===//
618// Lowering Code
619//===----------------------------------------------------------------------===//
620
Heejin Ahn18c56a02019-02-04 19:13:39 +0000621static void fail(const SDLoc &DL, SelectionDAG &DAG, const char *Msg) {
JF Bastienb9073fb2015-07-22 21:28:15 +0000622 MachineFunction &MF = DAG.getMachineFunction();
623 DAG.getContext()->diagnose(
Heejin Ahn18c56a02019-02-04 19:13:39 +0000624 DiagnosticInfoUnsupported(MF.getFunction(), Msg, DL.getDebugLoc()));
JF Bastienb9073fb2015-07-22 21:28:15 +0000625}
626
Dan Gohman85dbdda2015-12-04 17:16:07 +0000627// Test whether the given calling convention is supported.
Heejin Ahn18c56a02019-02-04 19:13:39 +0000628static bool callingConvSupported(CallingConv::ID CallConv) {
Dan Gohman85dbdda2015-12-04 17:16:07 +0000629 // We currently support the language-independent target-independent
Dan Gohman1ce2b1a2015-12-04 18:27:03 +0000630 // conventions. We don't yet have a way to annotate calls with properties like
631 // "cold", and we don't have any call-clobbered registers, so these are mostly
632 // all handled the same.
Dan Gohmana3f5ce52015-12-04 17:18:32 +0000633 return CallConv == CallingConv::C || CallConv == CallingConv::Fast ||
Dan Gohman1ce2b1a2015-12-04 18:27:03 +0000634 CallConv == CallingConv::Cold ||
635 CallConv == CallingConv::PreserveMost ||
636 CallConv == CallingConv::PreserveAll ||
Keno Fischer5c3cdef2019-08-05 21:36:09 +0000637 CallConv == CallingConv::CXX_FAST_TLS ||
638 CallConv == CallingConv::WASM_EmscriptenInvoke;
Dan Gohman85dbdda2015-12-04 17:16:07 +0000639}
640
Heejin Ahnf208f632018-09-05 01:27:38 +0000641SDValue
642WebAssemblyTargetLowering::LowerCall(CallLoweringInfo &CLI,
643 SmallVectorImpl<SDValue> &InVals) const {
JF Bastiend8a9d662015-08-24 21:59:51 +0000644 SelectionDAG &DAG = CLI.DAG;
645 SDLoc DL = CLI.DL;
646 SDValue Chain = CLI.Chain;
647 SDValue Callee = CLI.Callee;
648 MachineFunction &MF = DAG.getMachineFunction();
Derek Schuff992d83f2016-02-10 20:14:15 +0000649 auto Layout = MF.getDataLayout();
JF Bastiend8a9d662015-08-24 21:59:51 +0000650
651 CallingConv::ID CallConv = CLI.CallConv;
Heejin Ahn18c56a02019-02-04 19:13:39 +0000652 if (!callingConvSupported(CallConv))
Dan Gohman9cc692b2015-10-02 20:54:23 +0000653 fail(DL, DAG,
654 "WebAssembly doesn't support language-specific or target-specific "
655 "calling conventions yet");
JF Bastiend8a9d662015-08-24 21:59:51 +0000656 if (CLI.IsPatchPoint)
657 fail(DL, DAG, "WebAssembly doesn't support patch point yet");
658
Thomas Livelye0a9dce2019-07-30 18:08:39 +0000659 if (CLI.IsTailCall) {
660 bool MustTail = CLI.CS && CLI.CS.isMustTailCall();
661 if (Subtarget->hasTailCall() && !CLI.IsVarArg) {
662 // Do not tail call unless caller and callee return types match
663 const Function &F = MF.getFunction();
664 const TargetMachine &TM = getTargetMachine();
665 Type *RetTy = F.getReturnType();
666 SmallVector<MVT, 4> CallerRetTys;
667 SmallVector<MVT, 4> CalleeRetTys;
668 computeLegalValueVTs(F, TM, RetTy, CallerRetTys);
669 computeLegalValueVTs(F, TM, CLI.RetTy, CalleeRetTys);
670 bool TypesMatch = CallerRetTys.size() == CalleeRetTys.size() &&
671 std::equal(CallerRetTys.begin(), CallerRetTys.end(),
672 CalleeRetTys.begin());
673 if (!TypesMatch) {
674 // musttail in this case would be an LLVM IR validation failure
675 assert(!MustTail);
676 CLI.IsTailCall = false;
677 }
678 } else {
679 CLI.IsTailCall = false;
680 if (MustTail) {
681 if (CLI.IsVarArg) {
682 // The return would pop the argument buffer
683 fail(DL, DAG, "WebAssembly does not support varargs tail calls");
684 } else {
685 fail(DL, DAG, "WebAssembly 'tail-call' feature not enabled");
686 }
687 }
688 }
Thomas Livelya1d97a92019-06-26 16:17:15 +0000689 }
Dan Gohman9cc692b2015-10-02 20:54:23 +0000690
JF Bastiend8a9d662015-08-24 21:59:51 +0000691 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Dan Gohmane590b332015-09-09 01:52:45 +0000692 if (Ins.size() > 1)
693 fail(DL, DAG, "WebAssembly doesn't support more than 1 returned value yet");
694
Dan Gohman2d822e72015-12-04 17:12:52 +0000695 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
Derek Schuff4dd67782016-01-27 21:17:39 +0000696 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
Keno Fischer5c3cdef2019-08-05 21:36:09 +0000697
698 // The generic code may have added an sret argument. If we're lowering an
699 // invoke function, the ABI requires that the function pointer be the first
700 // argument, so we may have to swap the arguments.
701 if (CallConv == CallingConv::WASM_EmscriptenInvoke && Outs.size() >= 2 &&
702 Outs[0].Flags.isSRet()) {
703 std::swap(Outs[0], Outs[1]);
704 std::swap(OutVals[0], OutVals[1]);
705 }
706
Dan Gohman910ba332018-06-26 03:18:38 +0000707 unsigned NumFixedArgs = 0;
Heejin Ahn18c56a02019-02-04 19:13:39 +0000708 for (unsigned I = 0; I < Outs.size(); ++I) {
709 const ISD::OutputArg &Out = Outs[I];
710 SDValue &OutVal = OutVals[I];
Dan Gohman7935fa32015-12-10 00:22:40 +0000711 if (Out.Flags.isNest())
712 fail(DL, DAG, "WebAssembly hasn't implemented nest arguments");
Dan Gohman2d822e72015-12-04 17:12:52 +0000713 if (Out.Flags.isInAlloca())
Dan Gohman7935fa32015-12-10 00:22:40 +0000714 fail(DL, DAG, "WebAssembly hasn't implemented inalloca arguments");
Dan Gohman2d822e72015-12-04 17:12:52 +0000715 if (Out.Flags.isInConsecutiveRegs())
Dan Gohman7935fa32015-12-10 00:22:40 +0000716 fail(DL, DAG, "WebAssembly hasn't implemented cons regs arguments");
Dan Gohman2d822e72015-12-04 17:12:52 +0000717 if (Out.Flags.isInConsecutiveRegsLast())
Dan Gohman7935fa32015-12-10 00:22:40 +0000718 fail(DL, DAG, "WebAssembly hasn't implemented cons regs last arguments");
Dan Gohmana6771b32016-02-12 21:30:18 +0000719 if (Out.Flags.isByVal() && Out.Flags.getByValSize() != 0) {
Matthias Braun941a7052016-07-28 18:40:00 +0000720 auto &MFI = MF.getFrameInfo();
721 int FI = MFI.CreateStackObject(Out.Flags.getByValSize(),
722 Out.Flags.getByValAlign(),
723 /*isSS=*/false);
Derek Schuff4dd67782016-01-27 21:17:39 +0000724 SDValue SizeNode =
725 DAG.getConstant(Out.Flags.getByValSize(), DL, MVT::i32);
Derek Schuff992d83f2016-02-10 20:14:15 +0000726 SDValue FINode = DAG.getFrameIndex(FI, getPointerTy(Layout));
Derek Schuff4dd67782016-01-27 21:17:39 +0000727 Chain = DAG.getMemcpy(
728 Chain, DL, FINode, OutVal, SizeNode, Out.Flags.getByValAlign(),
Dan Gohman476ffce2016-02-17 01:43:37 +0000729 /*isVolatile*/ false, /*AlwaysInline=*/false,
Derek Schuff4dd67782016-01-27 21:17:39 +0000730 /*isTailCall*/ false, MachinePointerInfo(), MachinePointerInfo());
731 OutVal = FINode;
732 }
Dan Gohman910ba332018-06-26 03:18:38 +0000733 // Count the number of fixed args *after* legalization.
734 NumFixedArgs += Out.IsFixed;
Dan Gohman2d822e72015-12-04 17:12:52 +0000735 }
736
JF Bastiend8a9d662015-08-24 21:59:51 +0000737 bool IsVarArg = CLI.IsVarArg;
Derek Schuff992d83f2016-02-10 20:14:15 +0000738 auto PtrVT = getPointerTy(Layout);
Dan Gohmane590b332015-09-09 01:52:45 +0000739
JF Bastiend8a9d662015-08-24 21:59:51 +0000740 // Analyze operands of the call, assigning locations to each operand.
741 SmallVector<CCValAssign, 16> ArgLocs;
742 CCState CCInfo(CallConv, IsVarArg, MF, ArgLocs, *DAG.getContext());
JF Bastiend8a9d662015-08-24 21:59:51 +0000743
Dan Gohman35bfb242015-12-04 23:22:35 +0000744 if (IsVarArg) {
Derek Schuff27501e22016-02-10 19:51:04 +0000745 // Outgoing non-fixed arguments are placed in a buffer. First
746 // compute their offsets and the total amount of buffer space needed.
Dan Gohmanc71132c2019-02-26 05:20:19 +0000747 for (unsigned I = NumFixedArgs; I < Outs.size(); ++I) {
748 const ISD::OutputArg &Out = Outs[I];
749 SDValue &Arg = OutVals[I];
Dan Gohman35bfb242015-12-04 23:22:35 +0000750 EVT VT = Arg.getValueType();
751 assert(VT != MVT::iPTR && "Legalized args should be concrete");
752 Type *Ty = VT.getTypeForEVT(*DAG.getContext());
Dan Gohmanc71132c2019-02-26 05:20:19 +0000753 unsigned Align = std::max(Out.Flags.getOrigAlign(),
754 Layout.getABITypeAlignment(Ty));
Derek Schuff992d83f2016-02-10 20:14:15 +0000755 unsigned Offset = CCInfo.AllocateStack(Layout.getTypeAllocSize(Ty),
Dan Gohmanc71132c2019-02-26 05:20:19 +0000756 Align);
Dan Gohman35bfb242015-12-04 23:22:35 +0000757 CCInfo.addLoc(CCValAssign::getMem(ArgLocs.size(), VT.getSimpleVT(),
758 Offset, VT.getSimpleVT(),
759 CCValAssign::Full));
760 }
761 }
762
763 unsigned NumBytes = CCInfo.getAlignedCallFrameSize();
764
Derek Schuff27501e22016-02-10 19:51:04 +0000765 SDValue FINode;
766 if (IsVarArg && NumBytes) {
Dan Gohman35bfb242015-12-04 23:22:35 +0000767 // For non-fixed arguments, next emit stores to store the argument values
Derek Schuff27501e22016-02-10 19:51:04 +0000768 // to the stack buffer at the offsets computed above.
Matthias Braun941a7052016-07-28 18:40:00 +0000769 int FI = MF.getFrameInfo().CreateStackObject(NumBytes,
770 Layout.getStackAlignment(),
771 /*isSS=*/false);
Dan Gohman35bfb242015-12-04 23:22:35 +0000772 unsigned ValNo = 0;
773 SmallVector<SDValue, 8> Chains;
774 for (SDValue Arg :
775 make_range(OutVals.begin() + NumFixedArgs, OutVals.end())) {
776 assert(ArgLocs[ValNo].getValNo() == ValNo &&
777 "ArgLocs should remain in order and only hold varargs args");
778 unsigned Offset = ArgLocs[ValNo++].getLocMemOffset();
Derek Schuff992d83f2016-02-10 20:14:15 +0000779 FINode = DAG.getFrameIndex(FI, getPointerTy(Layout));
Derek Schuff27501e22016-02-10 19:51:04 +0000780 SDValue Add = DAG.getNode(ISD::ADD, DL, PtrVT, FINode,
Dan Gohman35bfb242015-12-04 23:22:35 +0000781 DAG.getConstant(Offset, DL, PtrVT));
Heejin Ahnf208f632018-09-05 01:27:38 +0000782 Chains.push_back(
783 DAG.getStore(Chain, DL, Arg, Add,
784 MachinePointerInfo::getFixedStack(MF, FI, Offset), 0));
Dan Gohman35bfb242015-12-04 23:22:35 +0000785 }
786 if (!Chains.empty())
787 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chains);
Derek Schuff27501e22016-02-10 19:51:04 +0000788 } else if (IsVarArg) {
789 FINode = DAG.getIntPtrConstant(0, DL);
Dan Gohman35bfb242015-12-04 23:22:35 +0000790 }
791
Sam Clegg492f7522019-03-26 19:46:15 +0000792 if (Callee->getOpcode() == ISD::GlobalAddress) {
793 // If the callee is a GlobalAddress node (quite common, every direct call
794 // is) turn it into a TargetGlobalAddress node so that LowerGlobalAddress
795 // doesn't at MO_GOT which is not needed for direct calls.
796 GlobalAddressSDNode* GA = cast<GlobalAddressSDNode>(Callee);
797 Callee = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
798 getPointerTy(DAG.getDataLayout()),
799 GA->getOffset());
800 Callee = DAG.getNode(WebAssemblyISD::Wrapper, DL,
801 getPointerTy(DAG.getDataLayout()), Callee);
802 }
803
Dan Gohman35bfb242015-12-04 23:22:35 +0000804 // Compute the operands for the CALLn node.
JF Bastiend8a9d662015-08-24 21:59:51 +0000805 SmallVector<SDValue, 16> Ops;
806 Ops.push_back(Chain);
JF Bastienaf111db2015-08-24 22:16:48 +0000807 Ops.push_back(Callee);
Dan Gohman35bfb242015-12-04 23:22:35 +0000808
809 // Add all fixed arguments. Note that for non-varargs calls, NumFixedArgs
810 // isn't reliable.
811 Ops.append(OutVals.begin(),
812 IsVarArg ? OutVals.begin() + NumFixedArgs : OutVals.end());
Derek Schuff27501e22016-02-10 19:51:04 +0000813 // Add a pointer to the vararg buffer.
Heejin Ahnf208f632018-09-05 01:27:38 +0000814 if (IsVarArg)
815 Ops.push_back(FINode);
JF Bastiend8a9d662015-08-24 21:59:51 +0000816
Derek Schuff27501e22016-02-10 19:51:04 +0000817 SmallVector<EVT, 8> InTys;
Dan Gohman2d822e72015-12-04 17:12:52 +0000818 for (const auto &In : Ins) {
Dan Gohman7935fa32015-12-10 00:22:40 +0000819 assert(!In.Flags.isByVal() && "byval is not valid for return values");
820 assert(!In.Flags.isNest() && "nest is not valid for return values");
Dan Gohman2d822e72015-12-04 17:12:52 +0000821 if (In.Flags.isInAlloca())
Dan Gohman7935fa32015-12-10 00:22:40 +0000822 fail(DL, DAG, "WebAssembly hasn't implemented inalloca return values");
Dan Gohman2d822e72015-12-04 17:12:52 +0000823 if (In.Flags.isInConsecutiveRegs())
Dan Gohman7935fa32015-12-10 00:22:40 +0000824 fail(DL, DAG, "WebAssembly hasn't implemented cons regs return values");
Dan Gohman2d822e72015-12-04 17:12:52 +0000825 if (In.Flags.isInConsecutiveRegsLast())
Dan Gohman4b9d7912015-12-15 22:01:29 +0000826 fail(DL, DAG,
827 "WebAssembly hasn't implemented cons regs last return values");
Dan Gohman2d822e72015-12-04 17:12:52 +0000828 // Ignore In.getOrigAlign() because all our arguments are passed in
829 // registers.
Derek Schuff27501e22016-02-10 19:51:04 +0000830 InTys.push_back(In.VT);
Dan Gohman2d822e72015-12-04 17:12:52 +0000831 }
Thomas Livelya1d97a92019-06-26 16:17:15 +0000832
833 if (CLI.IsTailCall) {
834 // ret_calls do not return values to the current frame
835 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
836 return DAG.getNode(WebAssemblyISD::RET_CALL, DL, NodeTys, Ops);
837 }
838
Derek Schuff27501e22016-02-10 19:51:04 +0000839 InTys.push_back(MVT::Other);
840 SDVTList InTyList = DAG.getVTList(InTys);
Dan Gohmanf71abef2015-09-09 16:13:47 +0000841 SDValue Res =
842 DAG.getNode(Ins.empty() ? WebAssemblyISD::CALL0 : WebAssemblyISD::CALL1,
Derek Schuff27501e22016-02-10 19:51:04 +0000843 DL, InTyList, Ops);
JF Bastienaf111db2015-08-24 22:16:48 +0000844 if (Ins.empty()) {
845 Chain = Res;
846 } else {
847 InVals.push_back(Res);
848 Chain = Res.getValue(1);
849 }
JF Bastiend8a9d662015-08-24 21:59:51 +0000850
JF Bastiend8a9d662015-08-24 21:59:51 +0000851 return Chain;
852}
853
JF Bastienb9073fb2015-07-22 21:28:15 +0000854bool WebAssemblyTargetLowering::CanLowerReturn(
Dan Gohman7a6b9822015-11-29 22:32:02 +0000855 CallingConv::ID /*CallConv*/, MachineFunction & /*MF*/, bool /*IsVarArg*/,
856 const SmallVectorImpl<ISD::OutputArg> &Outs,
857 LLVMContext & /*Context*/) const {
Thomas Lively00f9e5a2019-10-09 21:42:08 +0000858 // WebAssembly can only handle returning tuples with multivalue enabled
859 return Subtarget->hasMultivalue() || Outs.size() <= 1;
JF Bastienb9073fb2015-07-22 21:28:15 +0000860}
861
862SDValue WebAssemblyTargetLowering::LowerReturn(
Dan Gohman35bfb242015-12-04 23:22:35 +0000863 SDValue Chain, CallingConv::ID CallConv, bool /*IsVarArg*/,
JF Bastienb9073fb2015-07-22 21:28:15 +0000864 const SmallVectorImpl<ISD::OutputArg> &Outs,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000865 const SmallVectorImpl<SDValue> &OutVals, const SDLoc &DL,
JF Bastienb9073fb2015-07-22 21:28:15 +0000866 SelectionDAG &DAG) const {
Simon Pilgrim788ba152019-10-10 12:21:52 +0000867 assert((Subtarget->hasMultivalue() || Outs.size() <= 1) &&
868 "MVP WebAssembly can only return up to one value");
Heejin Ahn18c56a02019-02-04 19:13:39 +0000869 if (!callingConvSupported(CallConv))
JF Bastienb9073fb2015-07-22 21:28:15 +0000870 fail(DL, DAG, "WebAssembly doesn't support non-C calling conventions");
871
JF Bastien600aee92015-07-31 17:53:38 +0000872 SmallVector<SDValue, 4> RetOps(1, Chain);
873 RetOps.append(OutVals.begin(), OutVals.end());
JF Bastien4a2d5602015-07-31 21:04:18 +0000874 Chain = DAG.getNode(WebAssemblyISD::RETURN, DL, MVT::Other, RetOps);
JF Bastienb9073fb2015-07-22 21:28:15 +0000875
Dan Gohman754cd112015-11-11 01:33:02 +0000876 // Record the number and types of the return values.
877 for (const ISD::OutputArg &Out : Outs) {
Dan Gohmanac132e92015-12-02 23:40:03 +0000878 assert(!Out.Flags.isByVal() && "byval is not valid for return values");
879 assert(!Out.Flags.isNest() && "nest is not valid for return values");
Dan Gohman35bfb242015-12-04 23:22:35 +0000880 assert(Out.IsFixed && "non-fixed return value is not valid");
Dan Gohman754cd112015-11-11 01:33:02 +0000881 if (Out.Flags.isInAlloca())
882 fail(DL, DAG, "WebAssembly hasn't implemented inalloca results");
Dan Gohman754cd112015-11-11 01:33:02 +0000883 if (Out.Flags.isInConsecutiveRegs())
884 fail(DL, DAG, "WebAssembly hasn't implemented cons regs results");
885 if (Out.Flags.isInConsecutiveRegsLast())
886 fail(DL, DAG, "WebAssembly hasn't implemented cons regs last results");
Dan Gohman754cd112015-11-11 01:33:02 +0000887 }
888
JF Bastienb9073fb2015-07-22 21:28:15 +0000889 return Chain;
890}
891
892SDValue WebAssemblyTargetLowering::LowerFormalArguments(
Derek Schuff27501e22016-02-10 19:51:04 +0000893 SDValue Chain, CallingConv::ID CallConv, bool IsVarArg,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000894 const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &DL,
895 SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const {
Heejin Ahn18c56a02019-02-04 19:13:39 +0000896 if (!callingConvSupported(CallConv))
JF Bastienb9073fb2015-07-22 21:28:15 +0000897 fail(DL, DAG, "WebAssembly doesn't support non-C calling conventions");
JF Bastienb9073fb2015-07-22 21:28:15 +0000898
Dan Gohman2726b882016-10-06 22:29:32 +0000899 MachineFunction &MF = DAG.getMachineFunction();
900 auto *MFI = MF.getInfo<WebAssemblyFunctionInfo>();
901
Dan Gohmanfb3e0592015-11-25 19:36:19 +0000902 // Set up the incoming ARGUMENTS value, which serves to represent the liveness
903 // of the incoming values before they're represented by virtual registers.
904 MF.getRegInfo().addLiveIn(WebAssembly::ARGUMENTS);
905
JF Bastien600aee92015-07-31 17:53:38 +0000906 for (const ISD::InputArg &In : Ins) {
JF Bastien600aee92015-07-31 17:53:38 +0000907 if (In.Flags.isInAlloca())
908 fail(DL, DAG, "WebAssembly hasn't implemented inalloca arguments");
909 if (In.Flags.isNest())
910 fail(DL, DAG, "WebAssembly hasn't implemented nest arguments");
JF Bastien600aee92015-07-31 17:53:38 +0000911 if (In.Flags.isInConsecutiveRegs())
912 fail(DL, DAG, "WebAssembly hasn't implemented cons regs arguments");
913 if (In.Flags.isInConsecutiveRegsLast())
914 fail(DL, DAG, "WebAssembly hasn't implemented cons regs last arguments");
Dan Gohman9c54d3b2015-11-25 18:13:18 +0000915 // Ignore In.getOrigAlign() because all our arguments are passed in
916 // registers.
Heejin Ahnf208f632018-09-05 01:27:38 +0000917 InVals.push_back(In.Used ? DAG.getNode(WebAssemblyISD::ARGUMENT, DL, In.VT,
918 DAG.getTargetConstant(InVals.size(),
919 DL, MVT::i32))
920 : DAG.getUNDEF(In.VT));
Dan Gohman754cd112015-11-11 01:33:02 +0000921
922 // Record the number and types of arguments.
Derek Schuff27501e22016-02-10 19:51:04 +0000923 MFI->addParam(In.VT);
JF Bastien600aee92015-07-31 17:53:38 +0000924 }
JF Bastienb9073fb2015-07-22 21:28:15 +0000925
Derek Schuff27501e22016-02-10 19:51:04 +0000926 // Varargs are copied into a buffer allocated by the caller, and a pointer to
927 // the buffer is passed as an argument.
928 if (IsVarArg) {
929 MVT PtrVT = getPointerTy(MF.getDataLayout());
Daniel Sanders05c145d2019-08-12 22:40:45 +0000930 Register VarargVreg =
Derek Schuff27501e22016-02-10 19:51:04 +0000931 MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrVT));
932 MFI->setVarargBufferVreg(VarargVreg);
933 Chain = DAG.getCopyToReg(
934 Chain, DL, VarargVreg,
935 DAG.getNode(WebAssemblyISD::ARGUMENT, DL, PtrVT,
936 DAG.getTargetConstant(Ins.size(), DL, MVT::i32)));
937 MFI->addParam(PtrVT);
938 }
Dan Gohman35bfb242015-12-04 23:22:35 +0000939
Derek Schuff77a7a382018-10-03 22:22:48 +0000940 // Record the number and types of arguments and results.
Dan Gohman2726b882016-10-06 22:29:32 +0000941 SmallVector<MVT, 4> Params;
942 SmallVector<MVT, 4> Results;
Heejin Ahn18c56a02019-02-04 19:13:39 +0000943 computeSignatureVTs(MF.getFunction().getFunctionType(), MF.getFunction(),
Derek Schuff77a7a382018-10-03 22:22:48 +0000944 DAG.getTarget(), Params, Results);
Dan Gohman2726b882016-10-06 22:29:32 +0000945 for (MVT VT : Results)
946 MFI->addResult(VT);
Derek Schuff77a7a382018-10-03 22:22:48 +0000947 // TODO: Use signatures in WebAssemblyMachineFunctionInfo too and unify
948 // the param logic here with ComputeSignatureVTs
949 assert(MFI->getParams().size() == Params.size() &&
950 std::equal(MFI->getParams().begin(), MFI->getParams().end(),
951 Params.begin()));
Dan Gohman2726b882016-10-06 22:29:32 +0000952
JF Bastienb9073fb2015-07-22 21:28:15 +0000953 return Chain;
954}
955
Thomas Livelye18b5c62019-05-23 18:09:26 +0000956void WebAssemblyTargetLowering::ReplaceNodeResults(
957 SDNode *N, SmallVectorImpl<SDValue> &Results, SelectionDAG &DAG) const {
958 switch (N->getOpcode()) {
959 case ISD::SIGN_EXTEND_INREG:
960 // Do not add any results, signifying that N should not be custom lowered
961 // after all. This happens because simd128 turns on custom lowering for
962 // SIGN_EXTEND_INREG, but for non-vector sign extends the result might be an
963 // illegal type.
964 break;
965 default:
966 llvm_unreachable(
967 "ReplaceNodeResults not implemented for this op for WebAssembly!");
968 }
969}
970
Dan Gohman10e730a2015-06-29 23:51:55 +0000971//===----------------------------------------------------------------------===//
JF Bastienaf111db2015-08-24 22:16:48 +0000972// Custom lowering hooks.
Dan Gohman10e730a2015-06-29 23:51:55 +0000973//===----------------------------------------------------------------------===//
974
JF Bastienaf111db2015-08-24 22:16:48 +0000975SDValue WebAssemblyTargetLowering::LowerOperation(SDValue Op,
976 SelectionDAG &DAG) const {
Derek Schuff51699a82016-02-12 22:56:03 +0000977 SDLoc DL(Op);
JF Bastienaf111db2015-08-24 22:16:48 +0000978 switch (Op.getOpcode()) {
Heejin Ahnf208f632018-09-05 01:27:38 +0000979 default:
980 llvm_unreachable("unimplemented operation lowering");
981 return SDValue();
982 case ISD::FrameIndex:
983 return LowerFrameIndex(Op, DAG);
984 case ISD::GlobalAddress:
985 return LowerGlobalAddress(Op, DAG);
986 case ISD::ExternalSymbol:
987 return LowerExternalSymbol(Op, DAG);
988 case ISD::JumpTable:
989 return LowerJumpTable(Op, DAG);
990 case ISD::BR_JT:
991 return LowerBR_JT(Op, DAG);
992 case ISD::VASTART:
993 return LowerVASTART(Op, DAG);
994 case ISD::BlockAddress:
995 case ISD::BRIND:
996 fail(DL, DAG, "WebAssembly hasn't implemented computed gotos");
997 return SDValue();
Thomas Lively1a3cbe72019-05-23 01:24:01 +0000998 case ISD::RETURNADDR:
999 return LowerRETURNADDR(Op, DAG);
Heejin Ahnf208f632018-09-05 01:27:38 +00001000 case ISD::FRAMEADDR:
1001 return LowerFRAMEADDR(Op, DAG);
1002 case ISD::CopyToReg:
1003 return LowerCopyToReg(Op, DAG);
Thomas Livelyfb84fd72018-11-02 00:06:56 +00001004 case ISD::EXTRACT_VECTOR_ELT:
1005 case ISD::INSERT_VECTOR_ELT:
1006 return LowerAccessVectorElement(Op, DAG);
Heejin Ahnda419bd2018-11-14 02:46:21 +00001007 case ISD::INTRINSIC_VOID:
Heejin Ahnd6f48782019-01-30 03:21:57 +00001008 case ISD::INTRINSIC_WO_CHAIN:
1009 case ISD::INTRINSIC_W_CHAIN:
1010 return LowerIntrinsic(Op, DAG);
Thomas Lively64a39a12019-01-10 22:32:11 +00001011 case ISD::SIGN_EXTEND_INREG:
1012 return LowerSIGN_EXTEND_INREG(Op, DAG);
Thomas Lively079816e2019-01-30 02:23:29 +00001013 case ISD::BUILD_VECTOR:
1014 return LowerBUILD_VECTOR(Op, DAG);
Thomas Livelya0d25812018-09-07 21:54:46 +00001015 case ISD::VECTOR_SHUFFLE:
1016 return LowerVECTOR_SHUFFLE(Op, DAG);
Thomas Lively55735d52018-10-20 01:31:18 +00001017 case ISD::SHL:
1018 case ISD::SRA:
1019 case ISD::SRL:
1020 return LowerShift(Op, DAG);
JF Bastienaf111db2015-08-24 22:16:48 +00001021 }
1022}
1023
Derek Schuffaadc89c2016-02-16 18:18:36 +00001024SDValue WebAssemblyTargetLowering::LowerCopyToReg(SDValue Op,
1025 SelectionDAG &DAG) const {
1026 SDValue Src = Op.getOperand(2);
1027 if (isa<FrameIndexSDNode>(Src.getNode())) {
1028 // CopyToReg nodes don't support FrameIndex operands. Other targets select
1029 // the FI to some LEA-like instruction, but since we don't have that, we
1030 // need to insert some kind of instruction that can take an FI operand and
1031 // produces a value usable by CopyToReg (i.e. in a vreg). So insert a dummy
Thomas Lively6a87dda2019-01-08 06:25:55 +00001032 // local.copy between Op and its FI operand.
Dan Gohman02c08712016-02-20 23:09:44 +00001033 SDValue Chain = Op.getOperand(0);
Derek Schuffaadc89c2016-02-16 18:18:36 +00001034 SDLoc DL(Op);
Dan Gohman02c08712016-02-20 23:09:44 +00001035 unsigned Reg = cast<RegisterSDNode>(Op.getOperand(1))->getReg();
Derek Schuffaadc89c2016-02-16 18:18:36 +00001036 EVT VT = Src.getValueType();
Heejin Ahnf208f632018-09-05 01:27:38 +00001037 SDValue Copy(DAG.getMachineNode(VT == MVT::i32 ? WebAssembly::COPY_I32
1038 : WebAssembly::COPY_I64,
1039 DL, VT, Src),
1040 0);
Dan Gohman02c08712016-02-20 23:09:44 +00001041 return Op.getNode()->getNumValues() == 1
1042 ? DAG.getCopyToReg(Chain, DL, Reg, Copy)
Heejin Ahnf208f632018-09-05 01:27:38 +00001043 : DAG.getCopyToReg(Chain, DL, Reg, Copy,
1044 Op.getNumOperands() == 4 ? Op.getOperand(3)
1045 : SDValue());
Derek Schuffaadc89c2016-02-16 18:18:36 +00001046 }
1047 return SDValue();
1048}
1049
Derek Schuff9769deb2015-12-11 23:49:46 +00001050SDValue WebAssemblyTargetLowering::LowerFrameIndex(SDValue Op,
1051 SelectionDAG &DAG) const {
1052 int FI = cast<FrameIndexSDNode>(Op)->getIndex();
1053 return DAG.getTargetFrameIndex(FI, Op.getValueType());
1054}
1055
Thomas Lively1a3cbe72019-05-23 01:24:01 +00001056SDValue WebAssemblyTargetLowering::LowerRETURNADDR(SDValue Op,
1057 SelectionDAG &DAG) const {
1058 SDLoc DL(Op);
1059
1060 if (!Subtarget->getTargetTriple().isOSEmscripten()) {
1061 fail(DL, DAG,
1062 "Non-Emscripten WebAssembly hasn't implemented "
1063 "__builtin_return_address");
1064 return SDValue();
1065 }
1066
1067 if (verifyReturnAddressArgumentIsConstant(Op, DAG))
1068 return SDValue();
1069
1070 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Shiva Chen72a41e72019-08-22 04:59:43 +00001071 MakeLibCallOptions CallOptions;
Thomas Lively1a3cbe72019-05-23 01:24:01 +00001072 return makeLibCall(DAG, RTLIB::RETURN_ADDRESS, Op.getValueType(),
Shiva Chen72a41e72019-08-22 04:59:43 +00001073 {DAG.getConstant(Depth, DL, MVT::i32)}, CallOptions, DL)
Thomas Lively1a3cbe72019-05-23 01:24:01 +00001074 .first;
1075}
1076
Dan Gohman94c65662016-02-16 23:48:04 +00001077SDValue WebAssemblyTargetLowering::LowerFRAMEADDR(SDValue Op,
1078 SelectionDAG &DAG) const {
1079 // Non-zero depths are not supported by WebAssembly currently. Use the
1080 // legalizer's default expansion, which is to return 0 (what this function is
1081 // documented to do).
Dan Gohman1d547bf2016-02-17 00:14:03 +00001082 if (Op.getConstantOperandVal(0) > 0)
Dan Gohman94c65662016-02-16 23:48:04 +00001083 return SDValue();
1084
Matthias Braun941a7052016-07-28 18:40:00 +00001085 DAG.getMachineFunction().getFrameInfo().setFrameAddressIsTaken(true);
Dan Gohman94c65662016-02-16 23:48:04 +00001086 EVT VT = Op.getValueType();
Daniel Sanders05c145d2019-08-12 22:40:45 +00001087 Register FP =
Dan Gohman94c65662016-02-16 23:48:04 +00001088 Subtarget->getRegisterInfo()->getFrameRegister(DAG.getMachineFunction());
1089 return DAG.getCopyFromReg(DAG.getEntryNode(), SDLoc(Op), FP, VT);
1090}
1091
JF Bastienaf111db2015-08-24 22:16:48 +00001092SDValue WebAssemblyTargetLowering::LowerGlobalAddress(SDValue Op,
1093 SelectionDAG &DAG) const {
1094 SDLoc DL(Op);
1095 const auto *GA = cast<GlobalAddressSDNode>(Op);
1096 EVT VT = Op.getValueType();
Dan Gohman26c67652016-01-11 23:38:05 +00001097 assert(GA->getTargetFlags() == 0 &&
1098 "Unexpected target flags on generic GlobalAddressSDNode");
JF Bastienaf111db2015-08-24 22:16:48 +00001099 if (GA->getAddressSpace() != 0)
1100 fail(DL, DAG, "WebAssembly only expects the 0 address space");
Sam Clegg492f7522019-03-26 19:46:15 +00001101
Sam Cleggef4c66c2019-04-03 00:17:29 +00001102 unsigned OperandFlags = 0;
Sam Clegg492f7522019-03-26 19:46:15 +00001103 if (isPositionIndependent()) {
1104 const GlobalValue *GV = GA->getGlobal();
1105 if (getTargetMachine().shouldAssumeDSOLocal(*GV->getParent(), GV)) {
1106 MachineFunction &MF = DAG.getMachineFunction();
1107 MVT PtrVT = getPointerTy(MF.getDataLayout());
1108 const char *BaseName;
Sam Clegg2a7cac92019-04-04 17:43:50 +00001109 if (GV->getValueType()->isFunctionTy()) {
Sam Clegg492f7522019-03-26 19:46:15 +00001110 BaseName = MF.createExternalSymbolName("__table_base");
Sam Clegg2a7cac92019-04-04 17:43:50 +00001111 OperandFlags = WebAssemblyII::MO_TABLE_BASE_REL;
1112 }
1113 else {
Sam Clegg492f7522019-03-26 19:46:15 +00001114 BaseName = MF.createExternalSymbolName("__memory_base");
Sam Clegg2a7cac92019-04-04 17:43:50 +00001115 OperandFlags = WebAssemblyII::MO_MEMORY_BASE_REL;
1116 }
Sam Clegg492f7522019-03-26 19:46:15 +00001117 SDValue BaseAddr =
1118 DAG.getNode(WebAssemblyISD::Wrapper, DL, PtrVT,
1119 DAG.getTargetExternalSymbol(BaseName, PtrVT));
1120
1121 SDValue SymAddr = DAG.getNode(
1122 WebAssemblyISD::WrapperPIC, DL, VT,
Sam Clegg2a7cac92019-04-04 17:43:50 +00001123 DAG.getTargetGlobalAddress(GA->getGlobal(), DL, VT, GA->getOffset(),
1124 OperandFlags));
Sam Clegg492f7522019-03-26 19:46:15 +00001125
1126 return DAG.getNode(ISD::ADD, DL, VT, BaseAddr, SymAddr);
1127 } else {
Sam Cleggef4c66c2019-04-03 00:17:29 +00001128 OperandFlags = WebAssemblyII::MO_GOT;
Sam Clegg492f7522019-03-26 19:46:15 +00001129 }
1130 }
1131
1132 return DAG.getNode(WebAssemblyISD::Wrapper, DL, VT,
1133 DAG.getTargetGlobalAddress(GA->getGlobal(), DL, VT,
Sam Cleggef4c66c2019-04-03 00:17:29 +00001134 GA->getOffset(), OperandFlags));
JF Bastienaf111db2015-08-24 22:16:48 +00001135}
1136
Heejin Ahnf208f632018-09-05 01:27:38 +00001137SDValue
1138WebAssemblyTargetLowering::LowerExternalSymbol(SDValue Op,
1139 SelectionDAG &DAG) const {
Dan Gohman2c8fe6a2015-11-25 16:44:29 +00001140 SDLoc DL(Op);
1141 const auto *ES = cast<ExternalSymbolSDNode>(Op);
1142 EVT VT = Op.getValueType();
Dan Gohman26c67652016-01-11 23:38:05 +00001143 assert(ES->getTargetFlags() == 0 &&
1144 "Unexpected target flags on generic ExternalSymbolSDNode");
Sam Cleggef4c66c2019-04-03 00:17:29 +00001145 return DAG.getNode(WebAssemblyISD::Wrapper, DL, VT,
1146 DAG.getTargetExternalSymbol(ES->getSymbol(), VT));
Dan Gohman2c8fe6a2015-11-25 16:44:29 +00001147}
1148
Dan Gohman950a13c2015-09-16 16:51:30 +00001149SDValue WebAssemblyTargetLowering::LowerJumpTable(SDValue Op,
1150 SelectionDAG &DAG) const {
1151 // There's no need for a Wrapper node because we always incorporate a jump
Dan Gohman14026062016-03-08 03:18:12 +00001152 // table operand into a BR_TABLE instruction, rather than ever
Dan Gohmanbb7ce8e2015-11-20 03:02:49 +00001153 // materializing it in a register.
Dan Gohman950a13c2015-09-16 16:51:30 +00001154 const JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
1155 return DAG.getTargetJumpTable(JT->getIndex(), Op.getValueType(),
1156 JT->getTargetFlags());
1157}
1158
1159SDValue WebAssemblyTargetLowering::LowerBR_JT(SDValue Op,
1160 SelectionDAG &DAG) const {
1161 SDLoc DL(Op);
1162 SDValue Chain = Op.getOperand(0);
1163 const auto *JT = cast<JumpTableSDNode>(Op.getOperand(1));
1164 SDValue Index = Op.getOperand(2);
1165 assert(JT->getTargetFlags() == 0 && "WebAssembly doesn't set target flags");
1166
1167 SmallVector<SDValue, 8> Ops;
1168 Ops.push_back(Chain);
1169 Ops.push_back(Index);
1170
1171 MachineJumpTableInfo *MJTI = DAG.getMachineFunction().getJumpTableInfo();
1172 const auto &MBBs = MJTI->getJumpTables()[JT->getIndex()].MBBs;
1173
Dan Gohman14026062016-03-08 03:18:12 +00001174 // Add an operand for each case.
Heejin Ahnf208f632018-09-05 01:27:38 +00001175 for (auto MBB : MBBs)
1176 Ops.push_back(DAG.getBasicBlock(MBB));
Dan Gohman14026062016-03-08 03:18:12 +00001177
Dan Gohman950a13c2015-09-16 16:51:30 +00001178 // TODO: For now, we just pick something arbitrary for a default case for now.
1179 // We really want to sniff out the guard and put in the real default case (and
1180 // delete the guard).
1181 Ops.push_back(DAG.getBasicBlock(MBBs[0]));
1182
Dan Gohman14026062016-03-08 03:18:12 +00001183 return DAG.getNode(WebAssemblyISD::BR_TABLE, DL, MVT::Other, Ops);
Dan Gohman950a13c2015-09-16 16:51:30 +00001184}
1185
Dan Gohman35bfb242015-12-04 23:22:35 +00001186SDValue WebAssemblyTargetLowering::LowerVASTART(SDValue Op,
1187 SelectionDAG &DAG) const {
1188 SDLoc DL(Op);
1189 EVT PtrVT = getPointerTy(DAG.getMachineFunction().getDataLayout());
1190
Derek Schuff27501e22016-02-10 19:51:04 +00001191 auto *MFI = DAG.getMachineFunction().getInfo<WebAssemblyFunctionInfo>();
Dan Gohman35bfb242015-12-04 23:22:35 +00001192 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Derek Schuff27501e22016-02-10 19:51:04 +00001193
1194 SDValue ArgN = DAG.getCopyFromReg(DAG.getEntryNode(), DL,
1195 MFI->getVarargBufferVreg(), PtrVT);
1196 return DAG.getStore(Op.getOperand(0), DL, ArgN, Op.getOperand(1),
Derek Schuff1a946e42016-07-15 19:35:43 +00001197 MachinePointerInfo(SV), 0);
Dan Gohman35bfb242015-12-04 23:22:35 +00001198}
1199
Heejin Ahnd6f48782019-01-30 03:21:57 +00001200SDValue WebAssemblyTargetLowering::LowerIntrinsic(SDValue Op,
1201 SelectionDAG &DAG) const {
1202 MachineFunction &MF = DAG.getMachineFunction();
1203 unsigned IntNo;
1204 switch (Op.getOpcode()) {
1205 case ISD::INTRINSIC_VOID:
1206 case ISD::INTRINSIC_W_CHAIN:
1207 IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
1208 break;
1209 case ISD::INTRINSIC_WO_CHAIN:
1210 IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
1211 break;
1212 default:
1213 llvm_unreachable("Invalid intrinsic");
1214 }
Heejin Ahn5ef4d5f2018-05-31 22:25:54 +00001215 SDLoc DL(Op);
Heejin Ahnd6f48782019-01-30 03:21:57 +00001216
Heejin Ahn5ef4d5f2018-05-31 22:25:54 +00001217 switch (IntNo) {
1218 default:
Heejin Ahn18c56a02019-02-04 19:13:39 +00001219 return SDValue(); // Don't custom lower most intrinsics.
Thomas Lively5d461c92018-10-03 23:02:23 +00001220
Heejin Ahn24faf852018-10-25 23:55:10 +00001221 case Intrinsic::wasm_lsda: {
Heejin Ahn24faf852018-10-25 23:55:10 +00001222 EVT VT = Op.getValueType();
1223 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
1224 MVT PtrVT = TLI.getPointerTy(DAG.getDataLayout());
1225 auto &Context = MF.getMMI().getContext();
1226 MCSymbol *S = Context.getOrCreateSymbol(Twine("GCC_except_table") +
1227 Twine(MF.getFunctionNumber()));
1228 return DAG.getNode(WebAssemblyISD::Wrapper, DL, VT,
1229 DAG.getMCSymbol(S, PtrVT));
1230 }
Heejin Ahnda419bd2018-11-14 02:46:21 +00001231
1232 case Intrinsic::wasm_throw: {
Heejin Ahnd6f48782019-01-30 03:21:57 +00001233 // We only support C++ exceptions for now
Heejin Ahnda419bd2018-11-14 02:46:21 +00001234 int Tag = cast<ConstantSDNode>(Op.getOperand(2).getNode())->getZExtValue();
Heejin Ahnd6f48782019-01-30 03:21:57 +00001235 if (Tag != CPP_EXCEPTION)
Heejin Ahnda419bd2018-11-14 02:46:21 +00001236 llvm_unreachable("Invalid tag!");
Heejin Ahnd6f48782019-01-30 03:21:57 +00001237 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
1238 MVT PtrVT = TLI.getPointerTy(DAG.getDataLayout());
1239 const char *SymName = MF.createExternalSymbolName("__cpp_exception");
Sam Cleggef4c66c2019-04-03 00:17:29 +00001240 SDValue SymNode = DAG.getNode(WebAssemblyISD::Wrapper, DL, PtrVT,
1241 DAG.getTargetExternalSymbol(SymName, PtrVT));
Heejin Ahnd6f48782019-01-30 03:21:57 +00001242 return DAG.getNode(WebAssemblyISD::THROW, DL,
1243 MVT::Other, // outchain type
1244 {
1245 Op.getOperand(0), // inchain
1246 SymNode, // exception symbol
1247 Op.getOperand(3) // thrown value
1248 });
Heejin Ahnda419bd2018-11-14 02:46:21 +00001249 }
1250 }
1251}
1252
1253SDValue
Thomas Lively64a39a12019-01-10 22:32:11 +00001254WebAssemblyTargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
1255 SelectionDAG &DAG) const {
Thomas Lively3d9ca002019-06-04 21:08:20 +00001256 SDLoc DL(Op);
Thomas Lively64a39a12019-01-10 22:32:11 +00001257 // If sign extension operations are disabled, allow sext_inreg only if operand
1258 // is a vector extract. SIMD does not depend on sign extension operations, but
1259 // allowing sext_inreg in this context lets us have simple patterns to select
1260 // extract_lane_s instructions. Expanding sext_inreg everywhere would be
1261 // simpler in this file, but would necessitate large and brittle patterns to
1262 // undo the expansion and select extract_lane_s instructions.
1263 assert(!Subtarget->hasSignExt() && Subtarget->hasSIMD128());
Thomas Lively3d9ca002019-06-04 21:08:20 +00001264 if (Op.getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
1265 const SDValue &Extract = Op.getOperand(0);
1266 MVT VecT = Extract.getOperand(0).getSimpleValueType();
1267 MVT ExtractedLaneT = static_cast<VTSDNode *>(Op.getOperand(1).getNode())
1268 ->getVT()
1269 .getSimpleVT();
1270 MVT ExtractedVecT =
1271 MVT::getVectorVT(ExtractedLaneT, 128 / ExtractedLaneT.getSizeInBits());
1272 if (ExtractedVecT == VecT)
1273 return Op;
1274 // Bitcast vector to appropriate type to ensure ISel pattern coverage
1275 const SDValue &Index = Extract.getOperand(1);
1276 unsigned IndexVal =
1277 static_cast<ConstantSDNode *>(Index.getNode())->getZExtValue();
1278 unsigned Scale =
1279 ExtractedVecT.getVectorNumElements() / VecT.getVectorNumElements();
1280 assert(Scale > 1);
1281 SDValue NewIndex =
1282 DAG.getConstant(IndexVal * Scale, DL, Index.getValueType());
1283 SDValue NewExtract = DAG.getNode(
1284 ISD::EXTRACT_VECTOR_ELT, DL, Extract.getValueType(),
1285 DAG.getBitcast(ExtractedVecT, Extract.getOperand(0)), NewIndex);
1286 return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, Op.getValueType(),
1287 NewExtract, Op.getOperand(1));
1288 }
Thomas Lively64a39a12019-01-10 22:32:11 +00001289 // Otherwise expand
1290 return SDValue();
1291}
1292
Thomas Lively079816e2019-01-30 02:23:29 +00001293SDValue WebAssemblyTargetLowering::LowerBUILD_VECTOR(SDValue Op,
1294 SelectionDAG &DAG) const {
1295 SDLoc DL(Op);
1296 const EVT VecT = Op.getValueType();
1297 const EVT LaneT = Op.getOperand(0).getValueType();
1298 const size_t Lanes = Op.getNumOperands();
Thomas Livelyd5b7a4e2019-10-09 17:39:19 +00001299 bool CanSwizzle = Subtarget->hasUnimplementedSIMD128() && VecT == MVT::v16i8;
1300
1301 // BUILD_VECTORs are lowered to the instruction that initializes the highest
1302 // possible number of lanes at once followed by a sequence of replace_lane
1303 // instructions to individually initialize any remaining lanes.
1304
1305 // TODO: Tune this. For example, lanewise swizzling is very expensive, so
1306 // swizzled lanes should be given greater weight.
1307
1308 // TODO: Investigate building vectors by shuffling together vectors built by
1309 // separately specialized means.
1310
Thomas Lively079816e2019-01-30 02:23:29 +00001311 auto IsConstant = [](const SDValue &V) {
1312 return V.getOpcode() == ISD::Constant || V.getOpcode() == ISD::ConstantFP;
1313 };
1314
Thomas Livelyd5b7a4e2019-10-09 17:39:19 +00001315 // Returns the source vector and index vector pair if they exist. Checks for:
1316 // (extract_vector_elt
1317 // $src,
1318 // (sign_extend_inreg (extract_vector_elt $indices, $i))
1319 // )
1320 auto GetSwizzleSrcs = [](size_t I, const SDValue &Lane) {
1321 auto Bail = std::make_pair(SDValue(), SDValue());
1322 if (Lane->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
1323 return Bail;
1324 const SDValue &SwizzleSrc = Lane->getOperand(0);
1325 const SDValue &IndexExt = Lane->getOperand(1);
1326 if (IndexExt->getOpcode() != ISD::SIGN_EXTEND_INREG)
1327 return Bail;
1328 const SDValue &Index = IndexExt->getOperand(0);
1329 if (Index->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
1330 return Bail;
1331 const SDValue &SwizzleIndices = Index->getOperand(0);
1332 if (SwizzleSrc.getValueType() != MVT::v16i8 ||
1333 SwizzleIndices.getValueType() != MVT::v16i8 ||
1334 Index->getOperand(1)->getOpcode() != ISD::Constant ||
1335 Index->getConstantOperandVal(1) != I)
1336 return Bail;
1337 return std::make_pair(SwizzleSrc, SwizzleIndices);
1338 };
1339
1340 using ValueEntry = std::pair<SDValue, size_t>;
1341 SmallVector<ValueEntry, 16> SplatValueCounts;
1342
1343 using SwizzleEntry = std::pair<std::pair<SDValue, SDValue>, size_t>;
1344 SmallVector<SwizzleEntry, 16> SwizzleCounts;
1345
1346 auto AddCount = [](auto &Counts, const auto &Val) {
1347 auto CountIt = std::find_if(Counts.begin(), Counts.end(),
1348 [&Val](auto E) { return E.first == Val; });
1349 if (CountIt == Counts.end()) {
1350 Counts.emplace_back(Val, 1);
Thomas Lively079816e2019-01-30 02:23:29 +00001351 } else {
1352 CountIt->second++;
1353 }
Thomas Livelyd5b7a4e2019-10-09 17:39:19 +00001354 };
Thomas Lively079816e2019-01-30 02:23:29 +00001355
Thomas Livelyd5b7a4e2019-10-09 17:39:19 +00001356 auto GetMostCommon = [](auto &Counts) {
1357 auto CommonIt =
1358 std::max_element(Counts.begin(), Counts.end(),
1359 [](auto A, auto B) { return A.second < B.second; });
1360 assert(CommonIt != Counts.end() && "Unexpected all-undef build_vector");
1361 return *CommonIt;
1362 };
1363
1364 size_t NumConstantLanes = 0;
1365
1366 // Count eligible lanes for each type of vector creation op
1367 for (size_t I = 0; I < Lanes; ++I) {
1368 const SDValue &Lane = Op->getOperand(I);
1369 if (Lane.isUndef())
1370 continue;
1371
1372 AddCount(SplatValueCounts, Lane);
1373
1374 if (IsConstant(Lane)) {
1375 NumConstantLanes++;
1376 } else if (CanSwizzle) {
1377 auto SwizzleSrcs = GetSwizzleSrcs(I, Lane);
1378 if (SwizzleSrcs.first)
1379 AddCount(SwizzleCounts, SwizzleSrcs);
1380 }
1381 }
1382
1383 SDValue SplatValue;
1384 size_t NumSplatLanes;
1385 std::tie(SplatValue, NumSplatLanes) = GetMostCommon(SplatValueCounts);
1386
1387 SDValue SwizzleSrc;
1388 SDValue SwizzleIndices;
1389 size_t NumSwizzleLanes = 0;
1390 if (SwizzleCounts.size())
1391 std::forward_as_tuple(std::tie(SwizzleSrc, SwizzleIndices),
1392 NumSwizzleLanes) = GetMostCommon(SwizzleCounts);
1393
1394 // Predicate returning true if the lane is properly initialized by the
1395 // original instruction
1396 std::function<bool(size_t, const SDValue &)> IsLaneConstructed;
1397 SDValue Result;
Thomas Lively079816e2019-01-30 02:23:29 +00001398 if (Subtarget->hasUnimplementedSIMD128()) {
Thomas Livelyd5b7a4e2019-10-09 17:39:19 +00001399 // Prefer swizzles over vector consts over splats
1400 if (NumSwizzleLanes >= NumSplatLanes &&
1401 NumSwizzleLanes >= NumConstantLanes) {
1402 Result = DAG.getNode(WebAssemblyISD::SWIZZLE, DL, VecT, SwizzleSrc,
1403 SwizzleIndices);
1404 auto Swizzled = std::make_pair(SwizzleSrc, SwizzleIndices);
1405 IsLaneConstructed = [&, Swizzled](size_t I, const SDValue &Lane) {
1406 return Swizzled == GetSwizzleSrcs(I, Lane);
1407 };
1408 } else if (NumConstantLanes >= NumSplatLanes) {
Thomas Lively079816e2019-01-30 02:23:29 +00001409 SmallVector<SDValue, 16> ConstLanes;
1410 for (const SDValue &Lane : Op->op_values()) {
1411 if (IsConstant(Lane)) {
1412 ConstLanes.push_back(Lane);
1413 } else if (LaneT.isFloatingPoint()) {
1414 ConstLanes.push_back(DAG.getConstantFP(0, DL, LaneT));
1415 } else {
1416 ConstLanes.push_back(DAG.getConstant(0, DL, LaneT));
1417 }
1418 }
Thomas Livelyd5b7a4e2019-10-09 17:39:19 +00001419 Result = DAG.getBuildVector(VecT, DL, ConstLanes);
1420 IsLaneConstructed = [&](size_t _, const SDValue &Lane) {
1421 return IsConstant(Lane);
1422 };
Thomas Lively079816e2019-01-30 02:23:29 +00001423 }
1424 }
Thomas Livelyd5b7a4e2019-10-09 17:39:19 +00001425 if (!Result) {
1426 // Use a splat, but possibly a load_splat
1427 LoadSDNode *SplattedLoad;
1428 if (Subtarget->hasUnimplementedSIMD128() &&
1429 (SplattedLoad = dyn_cast<LoadSDNode>(SplatValue)) &&
1430 SplattedLoad->getMemoryVT() == VecT.getVectorElementType()) {
Thomas Lively3479fd22019-10-31 20:01:02 -07001431 Result = DAG.getMemIntrinsicNode(
1432 WebAssemblyISD::LOAD_SPLAT, DL, DAG.getVTList(VecT),
1433 {SplattedLoad->getChain(), SplattedLoad->getBasePtr(),
1434 SplattedLoad->getOffset()},
1435 SplattedLoad->getMemoryVT(), SplattedLoad->getMemOperand());
Thomas Livelyd5b7a4e2019-10-09 17:39:19 +00001436 } else {
1437 Result = DAG.getSplatBuildVector(VecT, DL, SplatValue);
1438 }
1439 IsLaneConstructed = [&](size_t _, const SDValue &Lane) {
1440 return Lane == SplatValue;
1441 };
Thomas Lively99d3dd22019-09-23 20:42:12 +00001442 }
Thomas Livelyd5b7a4e2019-10-09 17:39:19 +00001443
1444 // Add replace_lane instructions for any unhandled values
Thomas Lively079816e2019-01-30 02:23:29 +00001445 for (size_t I = 0; I < Lanes; ++I) {
1446 const SDValue &Lane = Op->getOperand(I);
Thomas Livelyd5b7a4e2019-10-09 17:39:19 +00001447 if (!Lane.isUndef() && !IsLaneConstructed(I, Lane))
Thomas Lively079816e2019-01-30 02:23:29 +00001448 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VecT, Result, Lane,
1449 DAG.getConstant(I, DL, MVT::i32));
1450 }
Thomas Livelyd5b7a4e2019-10-09 17:39:19 +00001451
Thomas Lively079816e2019-01-30 02:23:29 +00001452 return Result;
1453}
1454
Thomas Lively64a39a12019-01-10 22:32:11 +00001455SDValue
Thomas Livelya0d25812018-09-07 21:54:46 +00001456WebAssemblyTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
1457 SelectionDAG &DAG) const {
1458 SDLoc DL(Op);
1459 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Op.getNode())->getMask();
1460 MVT VecType = Op.getOperand(0).getSimpleValueType();
1461 assert(VecType.is128BitVector() && "Unexpected shuffle vector type");
1462 size_t LaneBytes = VecType.getVectorElementType().getSizeInBits() / 8;
1463
1464 // Space for two vector args and sixteen mask indices
1465 SDValue Ops[18];
1466 size_t OpIdx = 0;
1467 Ops[OpIdx++] = Op.getOperand(0);
1468 Ops[OpIdx++] = Op.getOperand(1);
1469
1470 // Expand mask indices to byte indices and materialize them as operands
Heejin Ahn18c56a02019-02-04 19:13:39 +00001471 for (int M : Mask) {
Thomas Livelya0d25812018-09-07 21:54:46 +00001472 for (size_t J = 0; J < LaneBytes; ++J) {
Thomas Lively11a332d02018-10-19 19:08:06 +00001473 // Lower undefs (represented by -1 in mask) to zero
Heejin Ahn18c56a02019-02-04 19:13:39 +00001474 uint64_t ByteIndex = M == -1 ? 0 : (uint64_t)M * LaneBytes + J;
Thomas Lively11a332d02018-10-19 19:08:06 +00001475 Ops[OpIdx++] = DAG.getConstant(ByteIndex, DL, MVT::i32);
Thomas Livelya0d25812018-09-07 21:54:46 +00001476 }
1477 }
1478
Thomas Livelyed951342018-10-24 23:27:40 +00001479 return DAG.getNode(WebAssemblyISD::SHUFFLE, DL, Op.getValueType(), Ops);
Thomas Livelya0d25812018-09-07 21:54:46 +00001480}
1481
Thomas Livelyfb84fd72018-11-02 00:06:56 +00001482SDValue
1483WebAssemblyTargetLowering::LowerAccessVectorElement(SDValue Op,
1484 SelectionDAG &DAG) const {
1485 // Allow constant lane indices, expand variable lane indices
1486 SDNode *IdxNode = Op.getOperand(Op.getNumOperands() - 1).getNode();
1487 if (isa<ConstantSDNode>(IdxNode) || IdxNode->isUndef())
1488 return Op;
1489 else
1490 // Perform default expansion
1491 return SDValue();
1492}
1493
Heejin Ahn18c56a02019-02-04 19:13:39 +00001494static SDValue unrollVectorShift(SDValue Op, SelectionDAG &DAG) {
Thomas Lively6bf2b402019-01-15 02:16:03 +00001495 EVT LaneT = Op.getSimpleValueType().getVectorElementType();
1496 // 32-bit and 64-bit unrolled shifts will have proper semantics
1497 if (LaneT.bitsGE(MVT::i32))
1498 return DAG.UnrollVectorOp(Op.getNode());
1499 // Otherwise mask the shift value to get proper semantics from 32-bit shift
1500 SDLoc DL(Op);
1501 SDValue ShiftVal = Op.getOperand(1);
1502 uint64_t MaskVal = LaneT.getSizeInBits() - 1;
1503 SDValue MaskedShiftVal = DAG.getNode(
1504 ISD::AND, // mask opcode
1505 DL, ShiftVal.getValueType(), // masked value type
1506 ShiftVal, // original shift value operand
1507 DAG.getConstant(MaskVal, DL, ShiftVal.getValueType()) // mask operand
1508 );
1509
1510 return DAG.UnrollVectorOp(
1511 DAG.getNode(Op.getOpcode(), // original shift opcode
1512 DL, Op.getValueType(), // original return type
1513 Op.getOperand(0), // original vector operand,
1514 MaskedShiftVal // new masked shift value operand
1515 )
1516 .getNode());
1517}
1518
Thomas Lively55735d52018-10-20 01:31:18 +00001519SDValue WebAssemblyTargetLowering::LowerShift(SDValue Op,
1520 SelectionDAG &DAG) const {
1521 SDLoc DL(Op);
Thomas Livelyb2382c82018-11-02 00:39:57 +00001522
1523 // Only manually lower vector shifts
1524 assert(Op.getSimpleValueType().isVector());
1525
1526 // Unroll non-splat vector shifts
1527 BuildVectorSDNode *ShiftVec;
1528 SDValue SplatVal;
1529 if (!(ShiftVec = dyn_cast<BuildVectorSDNode>(Op.getOperand(1).getNode())) ||
1530 !(SplatVal = ShiftVec->getSplatValue()))
Heejin Ahn18c56a02019-02-04 19:13:39 +00001531 return unrollVectorShift(Op, DAG);
Thomas Livelyb2382c82018-11-02 00:39:57 +00001532
1533 // All splats except i64x2 const splats are handled by patterns
Heejin Ahn18c56a02019-02-04 19:13:39 +00001534 auto *SplatConst = dyn_cast<ConstantSDNode>(SplatVal);
Thomas Livelyb2382c82018-11-02 00:39:57 +00001535 if (!SplatConst || Op.getSimpleValueType() != MVT::v2i64)
Thomas Lively55735d52018-10-20 01:31:18 +00001536 return Op;
Thomas Livelyb2382c82018-11-02 00:39:57 +00001537
1538 // i64x2 const splats are custom lowered to avoid unnecessary wraps
Thomas Lively55735d52018-10-20 01:31:18 +00001539 unsigned Opcode;
1540 switch (Op.getOpcode()) {
1541 case ISD::SHL:
1542 Opcode = WebAssemblyISD::VEC_SHL;
1543 break;
1544 case ISD::SRA:
1545 Opcode = WebAssemblyISD::VEC_SHR_S;
1546 break;
1547 case ISD::SRL:
1548 Opcode = WebAssemblyISD::VEC_SHR_U;
1549 break;
1550 default:
1551 llvm_unreachable("unexpected opcode");
Thomas Lively55735d52018-10-20 01:31:18 +00001552 }
Thomas Livelyb2382c82018-11-02 00:39:57 +00001553 APInt Shift = SplatConst->getAPIntValue().zextOrTrunc(32);
Thomas Lively55735d52018-10-20 01:31:18 +00001554 return DAG.getNode(Opcode, DL, Op.getValueType(), Op.getOperand(0),
Thomas Livelyb2382c82018-11-02 00:39:57 +00001555 DAG.getConstant(Shift, DL, MVT::i32));
Thomas Lively55735d52018-10-20 01:31:18 +00001556}
1557
Dan Gohman10e730a2015-06-29 23:51:55 +00001558//===----------------------------------------------------------------------===//
1559// WebAssembly Optimization Hooks
1560//===----------------------------------------------------------------------===//