blob: 6c5a5ab9ea517e9e9e9bd155483727c3f87341bf [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 Gohmanbfaf7e12015-07-02 21:36:25 +000048 // WebAssembly does not produce floating-point exceptions on normal floating
49 // point operations.
50 setHasFloatingPointExceptions(false);
Dan Gohman489abd72015-07-07 22:38:06 +000051 // We don't know the microarchitecture here, so just reduce register pressure.
52 setSchedulingPreference(Sched::RegPressure);
JF Bastienb9073fb2015-07-22 21:28:15 +000053 // Tell ISel that we have a stack pointer.
54 setStackPointerRegisterToSaveRestore(
55 Subtarget->hasAddr64() ? WebAssembly::SP64 : WebAssembly::SP32);
56 // Set up the register classes.
Dan Gohmand0bf9812015-09-26 01:09:44 +000057 addRegisterClass(MVT::i32, &WebAssembly::I32RegClass);
58 addRegisterClass(MVT::i64, &WebAssembly::I64RegClass);
59 addRegisterClass(MVT::f32, &WebAssembly::F32RegClass);
60 addRegisterClass(MVT::f64, &WebAssembly::F64RegClass);
Derek Schuff39bf39f2016-08-02 23:16:09 +000061 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 Lively2b8b2972019-01-26 01:25:37 +000066 }
67 if (Subtarget->hasUnimplementedSIMD128()) {
68 addRegisterClass(MVT::v2i64, &WebAssembly::V128RegClass);
69 addRegisterClass(MVT::v2f64, &WebAssembly::V128RegClass);
Derek Schuff39bf39f2016-08-02 23:16:09 +000070 }
JF Bastienb9073fb2015-07-22 21:28:15 +000071 // Compute derived properties from the register classes.
72 computeRegisterProperties(Subtarget->getRegisterInfo());
73
JF Bastienaf111db2015-08-24 22:16:48 +000074 setOperationAction(ISD::GlobalAddress, MVTPtr, Custom);
Dan Gohman2c8fe6a2015-11-25 16:44:29 +000075 setOperationAction(ISD::ExternalSymbol, MVTPtr, Custom);
Dan Gohman950a13c2015-09-16 16:51:30 +000076 setOperationAction(ISD::JumpTable, MVTPtr, Custom);
Derek Schuff51699a82016-02-12 22:56:03 +000077 setOperationAction(ISD::BlockAddress, MVTPtr, Custom);
78 setOperationAction(ISD::BRIND, MVT::Other, Custom);
JF Bastienaf111db2015-08-24 22:16:48 +000079
Dan Gohman35bfb242015-12-04 23:22:35 +000080 // 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 Livelyebd4c902018-09-12 17:56:00 +000087 for (auto T : {MVT::f32, MVT::f64, MVT::v4f32, MVT::v2f64}) {
JF Bastienda06bce2015-08-11 21:02:46 +000088 // 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 Gohman32907a62015-08-20 22:57:13 +000094 // Expand floating-point library function operators.
Heejin Ahnf208f632018-09-05 01:27:38 +000095 for (auto Op :
96 {ISD::FSIN, ISD::FCOS, ISD::FSINCOS, ISD::FPOW, ISD::FREM, ISD::FMA})
Dan Gohman32907a62015-08-20 22:57:13 +000097 setOperationAction(Op, T, Expand);
Dan Gohman896e53f2015-08-24 18:23:13 +000098 // Note supported floating-point library function operators that otherwise
99 // default to expand.
Dan Gohman7a6b9822015-11-29 22:32:02 +0000100 for (auto Op :
101 {ISD::FCEIL, ISD::FFLOOR, ISD::FTRUNC, ISD::FNEARBYINT, ISD::FRINT})
Dan Gohman896e53f2015-08-24 18:23:13 +0000102 setOperationAction(Op, T, Legal);
Thomas Lively30f1d692018-10-24 22:49:55 +0000103 // Support minimum and maximum, which otherwise default to expand.
104 setOperationAction(ISD::FMINIMUM, T, Legal);
105 setOperationAction(ISD::FMAXIMUM, T, Legal);
Dan Gohmana63e8eb2017-02-22 16:28:00 +0000106 // 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 Bastienda06bce2015-08-11 21:02:46 +0000111 }
Dan Gohman32907a62015-08-20 22:57:13 +0000112
Thomas Lively66ea30c2018-11-29 22:01:01 +0000113 // Expand unavailable integer operations.
114 for (auto Op :
115 {ISD::BSWAP, ISD::SMUL_LOHI, ISD::UMUL_LOHI, ISD::MULHS, ISD::MULHU,
116 ISD::SDIVREM, ISD::UDIVREM, ISD::SHL_PARTS, ISD::SRA_PARTS,
117 ISD::SRL_PARTS, ISD::ADDC, ISD::ADDE, ISD::SUBC, ISD::SUBE}) {
Thomas Lively2b8b2972019-01-26 01:25:37 +0000118 for (auto T : {MVT::i32, MVT::i64})
Dan Gohman32907a62015-08-20 22:57:13 +0000119 setOperationAction(Op, T, Expand);
Thomas Lively2b8b2972019-01-26 01:25:37 +0000120 if (Subtarget->hasSIMD128())
121 for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32})
Thomas Lively66ea30c2018-11-29 22:01:01 +0000122 setOperationAction(Op, T, Expand);
Thomas Lively64a39a12019-01-10 22:32:11 +0000123 if (Subtarget->hasUnimplementedSIMD128())
Thomas Lively2b8b2972019-01-26 01:25:37 +0000124 setOperationAction(Op, MVT::v2i64, Expand);
Thomas Livelyb2382c82018-11-02 00:39:57 +0000125 }
Thomas Lively55735d52018-10-20 01:31:18 +0000126
Thomas Lively2b8b2972019-01-26 01:25:37 +0000127 // SIMD-specific configuration
128 if (Subtarget->hasSIMD128()) {
129 // Support saturating add for i8x16 and i16x8
130 for (auto Op : {ISD::SADDSAT, ISD::UADDSAT})
131 for (auto T : {MVT::v16i8, MVT::v8i16})
132 setOperationAction(Op, T, Legal);
133
Thomas Lively079816e2019-01-30 02:23:29 +0000134 // Custom lower BUILD_VECTORs to minimize number of replace_lanes
135 for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v4f32})
136 setOperationAction(ISD::BUILD_VECTOR, T, Custom);
137 if (Subtarget->hasUnimplementedSIMD128())
138 for (auto T : {MVT::v2i64, MVT::v2f64})
139 setOperationAction(ISD::BUILD_VECTOR, T, Custom);
140
Thomas Lively2b8b2972019-01-26 01:25:37 +0000141 // We have custom shuffle lowering to expose the shuffle mask
142 for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v4f32})
143 setOperationAction(ISD::VECTOR_SHUFFLE, T, Custom);
144 if (Subtarget->hasUnimplementedSIMD128())
145 for (auto T: {MVT::v2i64, MVT::v2f64})
146 setOperationAction(ISD::VECTOR_SHUFFLE, T, Custom);
147
148 // Custom lowering since wasm shifts must have a scalar shift amount
149 for (auto Op : {ISD::SHL, ISD::SRA, ISD::SRL}) {
150 for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32})
151 setOperationAction(Op, T, Custom);
152 if (Subtarget->hasUnimplementedSIMD128())
153 setOperationAction(Op, MVT::v2i64, Custom);
154 }
155
156 // Custom lower lane accesses to expand out variable indices
157 for (auto Op : {ISD::EXTRACT_VECTOR_ELT, ISD::INSERT_VECTOR_ELT}) {
158 for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v4f32})
159 setOperationAction(Op, T, Custom);
160 if (Subtarget->hasUnimplementedSIMD128())
161 for (auto T : {MVT::v2i64, MVT::v2f64})
162 setOperationAction(Op, T, Custom);
163 }
164
165 // There is no i64x2.mul instruction
166 setOperationAction(ISD::MUL, MVT::v2i64, Expand);
167
168 // There are no vector select instructions
Thomas Lively38c902b2018-11-09 01:38:44 +0000169 for (auto Op : {ISD::VSELECT, ISD::SELECT_CC, ISD::SELECT}) {
170 for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v4f32})
171 setOperationAction(Op, T, Expand);
Thomas Lively64a39a12019-01-10 22:32:11 +0000172 if (Subtarget->hasUnimplementedSIMD128())
Thomas Lively38c902b2018-11-09 01:38:44 +0000173 for (auto T : {MVT::v2i64, MVT::v2f64})
174 setOperationAction(Op, T, Expand);
175 }
Thomas Livelyd4891a12018-11-01 00:01:02 +0000176
Thomas Lively43876ae72019-03-02 03:32:25 +0000177 // Expand integer operations supported for scalars but not SIMD
178 for (auto Op : {ISD::CTLZ, ISD::CTTZ, ISD::CTPOP, ISD::SDIV, ISD::UDIV,
179 ISD::SREM, ISD::UREM, ISD::ROTL, ISD::ROTR}) {
180 for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32})
181 setOperationAction(Op, T, Expand);
182 if (Subtarget->hasUnimplementedSIMD128())
183 setOperationAction(Op, MVT::v2i64, Expand);
184 }
185
186 // Expand float operations supported for scalars but not SIMD
187 for (auto Op : {ISD::FCEIL, ISD::FFLOOR, ISD::FTRUNC, ISD::FNEARBYINT,
188 ISD::FCOPYSIGN}) {
189 setOperationAction(Op, MVT::v4f32, Expand);
190 if (Subtarget->hasUnimplementedSIMD128())
191 setOperationAction(Op, MVT::v2f64, Expand);
192 }
193
Thomas Lively2b8b2972019-01-26 01:25:37 +0000194 // Expand additional SIMD ops that V8 hasn't implemented yet
195 if (!Subtarget->hasUnimplementedSIMD128()) {
196 setOperationAction(ISD::FSQRT, MVT::v4f32, Expand);
197 setOperationAction(ISD::FDIV, MVT::v4f32, Expand);
198 }
199 }
200
Dan Gohman32907a62015-08-20 22:57:13 +0000201 // As a special case, these operators use the type to mean the type to
202 // sign-extend from.
Derek Schuffa519fe52017-09-13 00:29:06 +0000203 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Dan Gohman5d2b9352018-01-19 17:16:24 +0000204 if (!Subtarget->hasSignExt()) {
Thomas Lively64a39a12019-01-10 22:32:11 +0000205 // Sign extends are legal only when extending a vector extract
206 auto Action = Subtarget->hasSIMD128() ? Custom : Expand;
Derek Schuffa519fe52017-09-13 00:29:06 +0000207 for (auto T : {MVT::i8, MVT::i16, MVT::i32})
Thomas Lively64a39a12019-01-10 22:32:11 +0000208 setOperationAction(ISD::SIGN_EXTEND_INREG, T, Action);
Derek Schuffa519fe52017-09-13 00:29:06 +0000209 }
Thomas Lively5ea17d42018-10-20 01:35:23 +0000210 for (auto T : MVT::integer_vector_valuetypes())
211 setOperationAction(ISD::SIGN_EXTEND_INREG, T, Expand);
Dan Gohman32907a62015-08-20 22:57:13 +0000212
213 // Dynamic stack allocation: use the default expansion.
214 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
215 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Dan Gohman2683a552015-08-24 22:31:52 +0000216 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVTPtr, Expand);
JF Bastien73ff6af2015-08-31 22:24:11 +0000217
Derek Schuff9769deb2015-12-11 23:49:46 +0000218 setOperationAction(ISD::FrameIndex, MVT::i32, Custom);
Derek Schuffaadc89c2016-02-16 18:18:36 +0000219 setOperationAction(ISD::CopyToReg, MVT::Other, Custom);
Derek Schuff9769deb2015-12-11 23:49:46 +0000220
Dan Gohman950a13c2015-09-16 16:51:30 +0000221 // Expand these forms; we pattern-match the forms that we can handle in isel.
222 for (auto T : {MVT::i32, MVT::i64, MVT::f32, MVT::f64})
223 for (auto Op : {ISD::BR_CC, ISD::SELECT_CC})
224 setOperationAction(Op, T, Expand);
225
226 // We have custom switch handling.
227 setOperationAction(ISD::BR_JT, MVT::Other, Custom);
228
JF Bastien73ff6af2015-08-31 22:24:11 +0000229 // WebAssembly doesn't have:
230 // - Floating-point extending loads.
231 // - Floating-point truncating stores.
232 // - i1 extending loads.
Thomas Lively325c9c52018-10-25 01:46:07 +0000233 // - extending/truncating SIMD loads/stores
Dan Gohman60bddf12015-12-10 02:07:53 +0000234 setLoadExtAction(ISD::EXTLOAD, MVT::f64, MVT::f32, Expand);
JF Bastien73ff6af2015-08-31 22:24:11 +0000235 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
236 for (auto T : MVT::integer_valuetypes())
237 for (auto Ext : {ISD::EXTLOAD, ISD::ZEXTLOAD, ISD::SEXTLOAD})
238 setLoadExtAction(Ext, T, MVT::i1, Promote);
Thomas Lively325c9c52018-10-25 01:46:07 +0000239 if (Subtarget->hasSIMD128()) {
240 for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v2i64, MVT::v4f32,
241 MVT::v2f64}) {
242 for (auto MemT : MVT::vector_valuetypes()) {
243 if (MVT(T) != MemT) {
244 setTruncStoreAction(T, MemT, Expand);
245 for (auto Ext : {ISD::EXTLOAD, ISD::ZEXTLOAD, ISD::SEXTLOAD})
246 setLoadExtAction(Ext, T, MemT, Expand);
247 }
248 }
249 }
250 }
Derek Schuffffa143c2015-11-10 00:30:57 +0000251
Thomas Lively33f87b82019-01-28 23:44:31 +0000252 // Don't do anything clever with build_pairs
253 setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
254
Derek Schuffffa143c2015-11-10 00:30:57 +0000255 // Trap lowers to wasm unreachable
256 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Derek Schuff18ba1922017-08-30 18:07:45 +0000257
Heejin Ahn5ef4d5f2018-05-31 22:25:54 +0000258 // Exception handling intrinsics
259 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Heejin Ahnda419bd2018-11-14 02:46:21 +0000260 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
Heejin Ahn5ef4d5f2018-05-31 22:25:54 +0000261
Derek Schuff18ba1922017-08-30 18:07:45 +0000262 setMaxAtomicSizeInBitsSupported(64);
Thomas Livelyd99af232019-02-05 00:49:55 +0000263
264 if (Subtarget->hasBulkMemory()) {
Thomas Livelybba3f062019-02-13 22:25:18 +0000265 // Use memory.copy and friends over multiple loads and stores
Thomas Livelyd99af232019-02-05 00:49:55 +0000266 MaxStoresPerMemcpy = 1;
267 MaxStoresPerMemcpyOptSize = 1;
Thomas Lively31505662019-02-05 20:57:40 +0000268 MaxStoresPerMemmove = 1;
269 MaxStoresPerMemmoveOptSize = 1;
Thomas Livelybba3f062019-02-13 22:25:18 +0000270 MaxStoresPerMemset = 1;
271 MaxStoresPerMemsetOptSize = 1;
Thomas Livelyd99af232019-02-05 00:49:55 +0000272 }
Dan Gohmanbfaf7e12015-07-02 21:36:25 +0000273}
Dan Gohman10e730a2015-06-29 23:51:55 +0000274
Heejin Ahne8653bb2018-08-07 00:22:22 +0000275TargetLowering::AtomicExpansionKind
276WebAssemblyTargetLowering::shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const {
277 // We have wasm instructions for these
278 switch (AI->getOperation()) {
279 case AtomicRMWInst::Add:
280 case AtomicRMWInst::Sub:
281 case AtomicRMWInst::And:
282 case AtomicRMWInst::Or:
283 case AtomicRMWInst::Xor:
284 case AtomicRMWInst::Xchg:
285 return AtomicExpansionKind::None;
286 default:
287 break;
288 }
289 return AtomicExpansionKind::CmpXChg;
290}
291
Dan Gohman7b634842015-08-24 18:44:37 +0000292FastISel *WebAssemblyTargetLowering::createFastISel(
293 FunctionLoweringInfo &FuncInfo, const TargetLibraryInfo *LibInfo) const {
294 return WebAssembly::createFastISel(FuncInfo, LibInfo);
295}
296
JF Bastienaf111db2015-08-24 22:16:48 +0000297bool WebAssemblyTargetLowering::isOffsetFoldingLegal(
Dan Gohman7a6b9822015-11-29 22:32:02 +0000298 const GlobalAddressSDNode * /*GA*/) const {
Dan Gohmana4b710a2015-12-06 19:33:32 +0000299 // All offsets can be folded.
300 return true;
JF Bastienaf111db2015-08-24 22:16:48 +0000301}
302
Dan Gohman7a6b9822015-11-29 22:32:02 +0000303MVT WebAssemblyTargetLowering::getScalarShiftAmountTy(const DataLayout & /*DL*/,
JF Bastienfda53372015-08-03 00:00:11 +0000304 EVT VT) const {
Dan Gohmana8483752015-12-10 00:26:26 +0000305 unsigned BitWidth = NextPowerOf2(VT.getSizeInBits() - 1);
Heejin Ahnf208f632018-09-05 01:27:38 +0000306 if (BitWidth > 1 && BitWidth < 8)
307 BitWidth = 8;
Dan Gohman41729532015-12-16 23:25:51 +0000308
309 if (BitWidth > 64) {
Dan Gohmana01e8bd2016-05-14 02:15:47 +0000310 // The shift will be lowered to a libcall, and compiler-rt libcalls expect
311 // the count to be an i32.
312 BitWidth = 32;
Dan Gohman41729532015-12-16 23:25:51 +0000313 assert(BitWidth >= Log2_32_Ceil(VT.getSizeInBits()) &&
Dan Gohmana01e8bd2016-05-14 02:15:47 +0000314 "32-bit shift counts ought to be enough for anyone");
Dan Gohman41729532015-12-16 23:25:51 +0000315 }
316
Dan Gohmana8483752015-12-10 00:26:26 +0000317 MVT Result = MVT::getIntegerVT(BitWidth);
318 assert(Result != MVT::INVALID_SIMPLE_VALUE_TYPE &&
319 "Unable to represent scalar shift amount type");
320 return Result;
JF Bastienfda53372015-08-03 00:00:11 +0000321}
322
Dan Gohmancdd48b82017-11-28 01:13:40 +0000323// Lower an fp-to-int conversion operator from the LLVM opcode, which has an
324// undefined result on invalid/overflow, to the WebAssembly opcode, which
325// traps on invalid/overflow.
Heejin Ahnf208f632018-09-05 01:27:38 +0000326static MachineBasicBlock *LowerFPToInt(MachineInstr &MI, DebugLoc DL,
327 MachineBasicBlock *BB,
328 const TargetInstrInfo &TII,
329 bool IsUnsigned, bool Int64,
330 bool Float64, unsigned LoweredOpcode) {
Dan Gohmancdd48b82017-11-28 01:13:40 +0000331 MachineRegisterInfo &MRI = BB->getParent()->getRegInfo();
332
333 unsigned OutReg = MI.getOperand(0).getReg();
334 unsigned InReg = MI.getOperand(1).getReg();
335
336 unsigned Abs = Float64 ? WebAssembly::ABS_F64 : WebAssembly::ABS_F32;
337 unsigned FConst = Float64 ? WebAssembly::CONST_F64 : WebAssembly::CONST_F32;
338 unsigned LT = Float64 ? WebAssembly::LT_F64 : WebAssembly::LT_F32;
Dan Gohman580c1022017-11-29 20:20:11 +0000339 unsigned GE = Float64 ? WebAssembly::GE_F64 : WebAssembly::GE_F32;
Dan Gohmancdd48b82017-11-28 01:13:40 +0000340 unsigned IConst = Int64 ? WebAssembly::CONST_I64 : WebAssembly::CONST_I32;
Dan Gohman580c1022017-11-29 20:20:11 +0000341 unsigned Eqz = WebAssembly::EQZ_I32;
342 unsigned And = WebAssembly::AND_I32;
Dan Gohmancdd48b82017-11-28 01:13:40 +0000343 int64_t Limit = Int64 ? INT64_MIN : INT32_MIN;
344 int64_t Substitute = IsUnsigned ? 0 : Limit;
345 double CmpVal = IsUnsigned ? -(double)Limit * 2.0 : -(double)Limit;
David Blaikie21109242017-12-15 23:52:06 +0000346 auto &Context = BB->getParent()->getFunction().getContext();
Dan Gohmancdd48b82017-11-28 01:13:40 +0000347 Type *Ty = Float64 ? Type::getDoubleTy(Context) : Type::getFloatTy(Context);
348
Heejin Ahn18c56a02019-02-04 19:13:39 +0000349 const BasicBlock *LLVMBB = BB->getBasicBlock();
Dan Gohmancdd48b82017-11-28 01:13:40 +0000350 MachineFunction *F = BB->getParent();
Heejin Ahn18c56a02019-02-04 19:13:39 +0000351 MachineBasicBlock *TrueMBB = F->CreateMachineBasicBlock(LLVMBB);
352 MachineBasicBlock *FalseMBB = F->CreateMachineBasicBlock(LLVMBB);
353 MachineBasicBlock *DoneMBB = F->CreateMachineBasicBlock(LLVMBB);
Dan Gohmancdd48b82017-11-28 01:13:40 +0000354
355 MachineFunction::iterator It = ++BB->getIterator();
356 F->insert(It, FalseMBB);
357 F->insert(It, TrueMBB);
358 F->insert(It, DoneMBB);
359
360 // Transfer the remainder of BB and its successor edges to DoneMBB.
Heejin Ahn5c644c92019-03-05 21:05:09 +0000361 DoneMBB->splice(DoneMBB->begin(), BB, std::next(MI.getIterator()), BB->end());
Dan Gohmancdd48b82017-11-28 01:13:40 +0000362 DoneMBB->transferSuccessorsAndUpdatePHIs(BB);
363
364 BB->addSuccessor(TrueMBB);
365 BB->addSuccessor(FalseMBB);
366 TrueMBB->addSuccessor(DoneMBB);
367 FalseMBB->addSuccessor(DoneMBB);
368
Dan Gohman580c1022017-11-29 20:20:11 +0000369 unsigned Tmp0, Tmp1, CmpReg, EqzReg, FalseReg, TrueReg;
Dan Gohmancdd48b82017-11-28 01:13:40 +0000370 Tmp0 = MRI.createVirtualRegister(MRI.getRegClass(InReg));
371 Tmp1 = MRI.createVirtualRegister(MRI.getRegClass(InReg));
Dan Gohman580c1022017-11-29 20:20:11 +0000372 CmpReg = MRI.createVirtualRegister(&WebAssembly::I32RegClass);
373 EqzReg = MRI.createVirtualRegister(&WebAssembly::I32RegClass);
374 FalseReg = MRI.createVirtualRegister(MRI.getRegClass(OutReg));
375 TrueReg = MRI.createVirtualRegister(MRI.getRegClass(OutReg));
Dan Gohmancdd48b82017-11-28 01:13:40 +0000376
377 MI.eraseFromParent();
Dan Gohman580c1022017-11-29 20:20:11 +0000378 // For signed numbers, we can do a single comparison to determine whether
379 // fabs(x) is within range.
Dan Gohmancdd48b82017-11-28 01:13:40 +0000380 if (IsUnsigned) {
381 Tmp0 = InReg;
382 } else {
Heejin Ahnf208f632018-09-05 01:27:38 +0000383 BuildMI(BB, DL, TII.get(Abs), Tmp0).addReg(InReg);
Dan Gohmancdd48b82017-11-28 01:13:40 +0000384 }
385 BuildMI(BB, DL, TII.get(FConst), Tmp1)
386 .addFPImm(cast<ConstantFP>(ConstantFP::get(Ty, CmpVal)));
Heejin Ahnf208f632018-09-05 01:27:38 +0000387 BuildMI(BB, DL, TII.get(LT), CmpReg).addReg(Tmp0).addReg(Tmp1);
Dan Gohman580c1022017-11-29 20:20:11 +0000388
389 // For unsigned numbers, we have to do a separate comparison with zero.
390 if (IsUnsigned) {
391 Tmp1 = MRI.createVirtualRegister(MRI.getRegClass(InReg));
Heejin Ahnf208f632018-09-05 01:27:38 +0000392 unsigned SecondCmpReg =
393 MRI.createVirtualRegister(&WebAssembly::I32RegClass);
Dan Gohman580c1022017-11-29 20:20:11 +0000394 unsigned AndReg = MRI.createVirtualRegister(&WebAssembly::I32RegClass);
395 BuildMI(BB, DL, TII.get(FConst), Tmp1)
396 .addFPImm(cast<ConstantFP>(ConstantFP::get(Ty, 0.0)));
Heejin Ahnf208f632018-09-05 01:27:38 +0000397 BuildMI(BB, DL, TII.get(GE), SecondCmpReg).addReg(Tmp0).addReg(Tmp1);
398 BuildMI(BB, DL, TII.get(And), AndReg).addReg(CmpReg).addReg(SecondCmpReg);
Dan Gohman580c1022017-11-29 20:20:11 +0000399 CmpReg = AndReg;
400 }
401
Heejin Ahnf208f632018-09-05 01:27:38 +0000402 BuildMI(BB, DL, TII.get(Eqz), EqzReg).addReg(CmpReg);
Dan Gohman580c1022017-11-29 20:20:11 +0000403
404 // Create the CFG diamond to select between doing the conversion or using
405 // the substitute value.
Heejin Ahnf208f632018-09-05 01:27:38 +0000406 BuildMI(BB, DL, TII.get(WebAssembly::BR_IF)).addMBB(TrueMBB).addReg(EqzReg);
407 BuildMI(FalseMBB, DL, TII.get(LoweredOpcode), FalseReg).addReg(InReg);
408 BuildMI(FalseMBB, DL, TII.get(WebAssembly::BR)).addMBB(DoneMBB);
409 BuildMI(TrueMBB, DL, TII.get(IConst), TrueReg).addImm(Substitute);
Dan Gohmancdd48b82017-11-28 01:13:40 +0000410 BuildMI(*DoneMBB, DoneMBB->begin(), DL, TII.get(TargetOpcode::PHI), OutReg)
Dan Gohman580c1022017-11-29 20:20:11 +0000411 .addReg(FalseReg)
Dan Gohmancdd48b82017-11-28 01:13:40 +0000412 .addMBB(FalseMBB)
Dan Gohman580c1022017-11-29 20:20:11 +0000413 .addReg(TrueReg)
Dan Gohmancdd48b82017-11-28 01:13:40 +0000414 .addMBB(TrueMBB);
415
416 return DoneMBB;
417}
418
Heejin Ahnf208f632018-09-05 01:27:38 +0000419MachineBasicBlock *WebAssemblyTargetLowering::EmitInstrWithCustomInserter(
420 MachineInstr &MI, MachineBasicBlock *BB) const {
Dan Gohmancdd48b82017-11-28 01:13:40 +0000421 const TargetInstrInfo &TII = *Subtarget->getInstrInfo();
422 DebugLoc DL = MI.getDebugLoc();
423
424 switch (MI.getOpcode()) {
Heejin Ahnf208f632018-09-05 01:27:38 +0000425 default:
426 llvm_unreachable("Unexpected instr type to insert");
Dan Gohmancdd48b82017-11-28 01:13:40 +0000427 case WebAssembly::FP_TO_SINT_I32_F32:
428 return LowerFPToInt(MI, DL, BB, TII, false, false, false,
429 WebAssembly::I32_TRUNC_S_F32);
430 case WebAssembly::FP_TO_UINT_I32_F32:
431 return LowerFPToInt(MI, DL, BB, TII, true, false, false,
432 WebAssembly::I32_TRUNC_U_F32);
433 case WebAssembly::FP_TO_SINT_I64_F32:
434 return LowerFPToInt(MI, DL, BB, TII, false, true, false,
435 WebAssembly::I64_TRUNC_S_F32);
436 case WebAssembly::FP_TO_UINT_I64_F32:
437 return LowerFPToInt(MI, DL, BB, TII, true, true, false,
438 WebAssembly::I64_TRUNC_U_F32);
439 case WebAssembly::FP_TO_SINT_I32_F64:
440 return LowerFPToInt(MI, DL, BB, TII, false, false, true,
441 WebAssembly::I32_TRUNC_S_F64);
442 case WebAssembly::FP_TO_UINT_I32_F64:
443 return LowerFPToInt(MI, DL, BB, TII, true, false, true,
444 WebAssembly::I32_TRUNC_U_F64);
445 case WebAssembly::FP_TO_SINT_I64_F64:
446 return LowerFPToInt(MI, DL, BB, TII, false, true, true,
447 WebAssembly::I64_TRUNC_S_F64);
448 case WebAssembly::FP_TO_UINT_I64_F64:
449 return LowerFPToInt(MI, DL, BB, TII, true, true, true,
450 WebAssembly::I64_TRUNC_U_F64);
Heejin Ahnf208f632018-09-05 01:27:38 +0000451 llvm_unreachable("Unexpected instruction to emit with custom inserter");
Dan Gohmancdd48b82017-11-28 01:13:40 +0000452 }
453}
454
Heejin Ahnf208f632018-09-05 01:27:38 +0000455const char *
456WebAssemblyTargetLowering::getTargetNodeName(unsigned Opcode) const {
JF Bastien480c8402015-08-11 20:13:18 +0000457 switch (static_cast<WebAssemblyISD::NodeType>(Opcode)) {
Heejin Ahnf208f632018-09-05 01:27:38 +0000458 case WebAssemblyISD::FIRST_NUMBER:
459 break;
460#define HANDLE_NODETYPE(NODE) \
461 case WebAssemblyISD::NODE: \
JF Bastienaf111db2015-08-24 22:16:48 +0000462 return "WebAssemblyISD::" #NODE;
463#include "WebAssemblyISD.def"
464#undef HANDLE_NODETYPE
JF Bastien480c8402015-08-11 20:13:18 +0000465 }
466 return nullptr;
467}
468
Dan Gohmanf19ed562015-11-13 01:42:29 +0000469std::pair<unsigned, const TargetRegisterClass *>
470WebAssemblyTargetLowering::getRegForInlineAsmConstraint(
471 const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const {
472 // First, see if this is a constraint that directly corresponds to a
473 // WebAssembly register class.
474 if (Constraint.size() == 1) {
475 switch (Constraint[0]) {
Heejin Ahnf208f632018-09-05 01:27:38 +0000476 case 'r':
477 assert(VT != MVT::iPTR && "Pointer MVT not expected here");
478 if (Subtarget->hasSIMD128() && VT.isVector()) {
479 if (VT.getSizeInBits() == 128)
480 return std::make_pair(0U, &WebAssembly::V128RegClass);
481 }
482 if (VT.isInteger() && !VT.isVector()) {
483 if (VT.getSizeInBits() <= 32)
484 return std::make_pair(0U, &WebAssembly::I32RegClass);
485 if (VT.getSizeInBits() <= 64)
486 return std::make_pair(0U, &WebAssembly::I64RegClass);
487 }
488 break;
489 default:
490 break;
Dan Gohmanf19ed562015-11-13 01:42:29 +0000491 }
492 }
493
494 return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
495}
496
Dan Gohman3192ddf2015-11-19 23:04:59 +0000497bool WebAssemblyTargetLowering::isCheapToSpeculateCttz() const {
498 // Assume ctz is a relatively cheap operation.
499 return true;
500}
501
502bool WebAssemblyTargetLowering::isCheapToSpeculateCtlz() const {
503 // Assume clz is a relatively cheap operation.
504 return true;
505}
506
Dan Gohman4b9d7912015-12-15 22:01:29 +0000507bool WebAssemblyTargetLowering::isLegalAddressingMode(const DataLayout &DL,
508 const AddrMode &AM,
Heejin Ahnf208f632018-09-05 01:27:38 +0000509 Type *Ty, unsigned AS,
Jonas Paulsson024e3192017-07-21 11:59:37 +0000510 Instruction *I) const {
Dan Gohman4b9d7912015-12-15 22:01:29 +0000511 // WebAssembly offsets are added as unsigned without wrapping. The
512 // isLegalAddressingMode gives us no way to determine if wrapping could be
513 // happening, so we approximate this by accepting only non-negative offsets.
Heejin Ahnf208f632018-09-05 01:27:38 +0000514 if (AM.BaseOffs < 0)
515 return false;
Dan Gohman4b9d7912015-12-15 22:01:29 +0000516
517 // WebAssembly has no scale register operands.
Heejin Ahnf208f632018-09-05 01:27:38 +0000518 if (AM.Scale != 0)
519 return false;
Dan Gohman4b9d7912015-12-15 22:01:29 +0000520
521 // Everything else is legal.
522 return true;
523}
524
Dan Gohmanbb372242016-01-26 03:39:31 +0000525bool WebAssemblyTargetLowering::allowsMisalignedMemoryAccesses(
Derek Schuff3f063292016-02-11 20:57:09 +0000526 EVT /*VT*/, unsigned /*AddrSpace*/, unsigned /*Align*/, bool *Fast) const {
Dan Gohmanbb372242016-01-26 03:39:31 +0000527 // WebAssembly supports unaligned accesses, though it should be declared
528 // with the p2align attribute on loads and stores which do so, and there
529 // may be a performance impact. We tell LLVM they're "fast" because
Dan Gohmanfb619e92016-01-26 14:55:17 +0000530 // for the kinds of things that LLVM uses this for (merging adjacent stores
Dan Gohmanbb372242016-01-26 03:39:31 +0000531 // of constants, etc.), WebAssembly implementations will either want the
532 // unaligned access or they'll split anyway.
Heejin Ahnf208f632018-09-05 01:27:38 +0000533 if (Fast)
534 *Fast = true;
Dan Gohmanbb372242016-01-26 03:39:31 +0000535 return true;
536}
537
Reid Klecknerb5180542017-03-21 16:57:19 +0000538bool WebAssemblyTargetLowering::isIntDivCheap(EVT VT,
539 AttributeList Attr) const {
Dan Gohmanb4c3c382016-05-18 14:29:42 +0000540 // The current thinking is that wasm engines will perform this optimization,
541 // so we can save on code size.
542 return true;
543}
544
Simon Pilgrim99f70162018-06-28 17:27:09 +0000545EVT WebAssemblyTargetLowering::getSetCCResultType(const DataLayout &DL,
546 LLVMContext &C,
547 EVT VT) const {
548 if (VT.isVector())
549 return VT.changeVectorElementTypeToInteger();
550
551 return TargetLowering::getSetCCResultType(DL, C, VT);
552}
553
Heejin Ahn4128cb02018-08-02 21:44:24 +0000554bool WebAssemblyTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
555 const CallInst &I,
556 MachineFunction &MF,
557 unsigned Intrinsic) const {
558 switch (Intrinsic) {
559 case Intrinsic::wasm_atomic_notify:
560 Info.opc = ISD::INTRINSIC_W_CHAIN;
561 Info.memVT = MVT::i32;
562 Info.ptrVal = I.getArgOperand(0);
563 Info.offset = 0;
564 Info.align = 4;
565 // atomic.notify instruction does not really load the memory specified with
566 // this argument, but MachineMemOperand should either be load or store, so
567 // we set this to a load.
568 // FIXME Volatile isn't really correct, but currently all LLVM atomic
569 // instructions are treated as volatiles in the backend, so we should be
570 // consistent. The same applies for wasm_atomic_wait intrinsics too.
571 Info.flags = MachineMemOperand::MOVolatile | MachineMemOperand::MOLoad;
572 return true;
573 case Intrinsic::wasm_atomic_wait_i32:
574 Info.opc = ISD::INTRINSIC_W_CHAIN;
575 Info.memVT = MVT::i32;
576 Info.ptrVal = I.getArgOperand(0);
577 Info.offset = 0;
578 Info.align = 4;
579 Info.flags = MachineMemOperand::MOVolatile | MachineMemOperand::MOLoad;
580 return true;
581 case Intrinsic::wasm_atomic_wait_i64:
582 Info.opc = ISD::INTRINSIC_W_CHAIN;
583 Info.memVT = MVT::i64;
584 Info.ptrVal = I.getArgOperand(0);
585 Info.offset = 0;
586 Info.align = 8;
587 Info.flags = MachineMemOperand::MOVolatile | MachineMemOperand::MOLoad;
588 return true;
589 default:
590 return false;
591 }
592}
593
Dan Gohman10e730a2015-06-29 23:51:55 +0000594//===----------------------------------------------------------------------===//
595// WebAssembly Lowering private implementation.
596//===----------------------------------------------------------------------===//
597
598//===----------------------------------------------------------------------===//
599// Lowering Code
600//===----------------------------------------------------------------------===//
601
Heejin Ahn18c56a02019-02-04 19:13:39 +0000602static void fail(const SDLoc &DL, SelectionDAG &DAG, const char *Msg) {
JF Bastienb9073fb2015-07-22 21:28:15 +0000603 MachineFunction &MF = DAG.getMachineFunction();
604 DAG.getContext()->diagnose(
Heejin Ahn18c56a02019-02-04 19:13:39 +0000605 DiagnosticInfoUnsupported(MF.getFunction(), Msg, DL.getDebugLoc()));
JF Bastienb9073fb2015-07-22 21:28:15 +0000606}
607
Dan Gohman85dbdda2015-12-04 17:16:07 +0000608// Test whether the given calling convention is supported.
Heejin Ahn18c56a02019-02-04 19:13:39 +0000609static bool callingConvSupported(CallingConv::ID CallConv) {
Dan Gohman85dbdda2015-12-04 17:16:07 +0000610 // We currently support the language-independent target-independent
Dan Gohman1ce2b1a2015-12-04 18:27:03 +0000611 // conventions. We don't yet have a way to annotate calls with properties like
612 // "cold", and we don't have any call-clobbered registers, so these are mostly
613 // all handled the same.
Dan Gohmana3f5ce52015-12-04 17:18:32 +0000614 return CallConv == CallingConv::C || CallConv == CallingConv::Fast ||
Dan Gohman1ce2b1a2015-12-04 18:27:03 +0000615 CallConv == CallingConv::Cold ||
616 CallConv == CallingConv::PreserveMost ||
617 CallConv == CallingConv::PreserveAll ||
618 CallConv == CallingConv::CXX_FAST_TLS;
Dan Gohman85dbdda2015-12-04 17:16:07 +0000619}
620
Heejin Ahnf208f632018-09-05 01:27:38 +0000621SDValue
622WebAssemblyTargetLowering::LowerCall(CallLoweringInfo &CLI,
623 SmallVectorImpl<SDValue> &InVals) const {
JF Bastiend8a9d662015-08-24 21:59:51 +0000624 SelectionDAG &DAG = CLI.DAG;
625 SDLoc DL = CLI.DL;
626 SDValue Chain = CLI.Chain;
627 SDValue Callee = CLI.Callee;
628 MachineFunction &MF = DAG.getMachineFunction();
Derek Schuff992d83f2016-02-10 20:14:15 +0000629 auto Layout = MF.getDataLayout();
JF Bastiend8a9d662015-08-24 21:59:51 +0000630
631 CallingConv::ID CallConv = CLI.CallConv;
Heejin Ahn18c56a02019-02-04 19:13:39 +0000632 if (!callingConvSupported(CallConv))
Dan Gohman9cc692b2015-10-02 20:54:23 +0000633 fail(DL, DAG,
634 "WebAssembly doesn't support language-specific or target-specific "
635 "calling conventions yet");
JF Bastiend8a9d662015-08-24 21:59:51 +0000636 if (CLI.IsPatchPoint)
637 fail(DL, DAG, "WebAssembly doesn't support patch point yet");
638
Dan Gohman9cc692b2015-10-02 20:54:23 +0000639 // WebAssembly doesn't currently support explicit tail calls. If they are
640 // required, fail. Otherwise, just disable them.
641 if ((CallConv == CallingConv::Fast && CLI.IsTailCall &&
642 MF.getTarget().Options.GuaranteedTailCallOpt) ||
Peter Collingbourne081ffe22017-07-26 19:15:29 +0000643 (CLI.CS && CLI.CS.isMustTailCall()))
Dan Gohman9cc692b2015-10-02 20:54:23 +0000644 fail(DL, DAG, "WebAssembly doesn't support tail call yet");
645 CLI.IsTailCall = false;
646
JF Bastiend8a9d662015-08-24 21:59:51 +0000647 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Dan Gohmane590b332015-09-09 01:52:45 +0000648 if (Ins.size() > 1)
649 fail(DL, DAG, "WebAssembly doesn't support more than 1 returned value yet");
650
Dan Gohman2d822e72015-12-04 17:12:52 +0000651 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
Derek Schuff4dd67782016-01-27 21:17:39 +0000652 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
Dan Gohman910ba332018-06-26 03:18:38 +0000653 unsigned NumFixedArgs = 0;
Heejin Ahn18c56a02019-02-04 19:13:39 +0000654 for (unsigned I = 0; I < Outs.size(); ++I) {
655 const ISD::OutputArg &Out = Outs[I];
656 SDValue &OutVal = OutVals[I];
Dan Gohman7935fa32015-12-10 00:22:40 +0000657 if (Out.Flags.isNest())
658 fail(DL, DAG, "WebAssembly hasn't implemented nest arguments");
Dan Gohman2d822e72015-12-04 17:12:52 +0000659 if (Out.Flags.isInAlloca())
Dan Gohman7935fa32015-12-10 00:22:40 +0000660 fail(DL, DAG, "WebAssembly hasn't implemented inalloca arguments");
Dan Gohman2d822e72015-12-04 17:12:52 +0000661 if (Out.Flags.isInConsecutiveRegs())
Dan Gohman7935fa32015-12-10 00:22:40 +0000662 fail(DL, DAG, "WebAssembly hasn't implemented cons regs arguments");
Dan Gohman2d822e72015-12-04 17:12:52 +0000663 if (Out.Flags.isInConsecutiveRegsLast())
Dan Gohman7935fa32015-12-10 00:22:40 +0000664 fail(DL, DAG, "WebAssembly hasn't implemented cons regs last arguments");
Dan Gohmana6771b32016-02-12 21:30:18 +0000665 if (Out.Flags.isByVal() && Out.Flags.getByValSize() != 0) {
Matthias Braun941a7052016-07-28 18:40:00 +0000666 auto &MFI = MF.getFrameInfo();
667 int FI = MFI.CreateStackObject(Out.Flags.getByValSize(),
668 Out.Flags.getByValAlign(),
669 /*isSS=*/false);
Derek Schuff4dd67782016-01-27 21:17:39 +0000670 SDValue SizeNode =
671 DAG.getConstant(Out.Flags.getByValSize(), DL, MVT::i32);
Derek Schuff992d83f2016-02-10 20:14:15 +0000672 SDValue FINode = DAG.getFrameIndex(FI, getPointerTy(Layout));
Derek Schuff4dd67782016-01-27 21:17:39 +0000673 Chain = DAG.getMemcpy(
674 Chain, DL, FINode, OutVal, SizeNode, Out.Flags.getByValAlign(),
Dan Gohman476ffce2016-02-17 01:43:37 +0000675 /*isVolatile*/ false, /*AlwaysInline=*/false,
Derek Schuff4dd67782016-01-27 21:17:39 +0000676 /*isTailCall*/ false, MachinePointerInfo(), MachinePointerInfo());
677 OutVal = FINode;
678 }
Dan Gohman910ba332018-06-26 03:18:38 +0000679 // Count the number of fixed args *after* legalization.
680 NumFixedArgs += Out.IsFixed;
Dan Gohman2d822e72015-12-04 17:12:52 +0000681 }
682
JF Bastiend8a9d662015-08-24 21:59:51 +0000683 bool IsVarArg = CLI.IsVarArg;
Derek Schuff992d83f2016-02-10 20:14:15 +0000684 auto PtrVT = getPointerTy(Layout);
Dan Gohmane590b332015-09-09 01:52:45 +0000685
JF Bastiend8a9d662015-08-24 21:59:51 +0000686 // Analyze operands of the call, assigning locations to each operand.
687 SmallVector<CCValAssign, 16> ArgLocs;
688 CCState CCInfo(CallConv, IsVarArg, MF, ArgLocs, *DAG.getContext());
JF Bastiend8a9d662015-08-24 21:59:51 +0000689
Dan Gohman35bfb242015-12-04 23:22:35 +0000690 if (IsVarArg) {
Derek Schuff27501e22016-02-10 19:51:04 +0000691 // Outgoing non-fixed arguments are placed in a buffer. First
692 // compute their offsets and the total amount of buffer space needed.
Dan Gohmanc71132c2019-02-26 05:20:19 +0000693 for (unsigned I = NumFixedArgs; I < Outs.size(); ++I) {
694 const ISD::OutputArg &Out = Outs[I];
695 SDValue &Arg = OutVals[I];
Dan Gohman35bfb242015-12-04 23:22:35 +0000696 EVT VT = Arg.getValueType();
697 assert(VT != MVT::iPTR && "Legalized args should be concrete");
698 Type *Ty = VT.getTypeForEVT(*DAG.getContext());
Dan Gohmanc71132c2019-02-26 05:20:19 +0000699 unsigned Align = std::max(Out.Flags.getOrigAlign(),
700 Layout.getABITypeAlignment(Ty));
Derek Schuff992d83f2016-02-10 20:14:15 +0000701 unsigned Offset = CCInfo.AllocateStack(Layout.getTypeAllocSize(Ty),
Dan Gohmanc71132c2019-02-26 05:20:19 +0000702 Align);
Dan Gohman35bfb242015-12-04 23:22:35 +0000703 CCInfo.addLoc(CCValAssign::getMem(ArgLocs.size(), VT.getSimpleVT(),
704 Offset, VT.getSimpleVT(),
705 CCValAssign::Full));
706 }
707 }
708
709 unsigned NumBytes = CCInfo.getAlignedCallFrameSize();
710
Derek Schuff27501e22016-02-10 19:51:04 +0000711 SDValue FINode;
712 if (IsVarArg && NumBytes) {
Dan Gohman35bfb242015-12-04 23:22:35 +0000713 // For non-fixed arguments, next emit stores to store the argument values
Derek Schuff27501e22016-02-10 19:51:04 +0000714 // to the stack buffer at the offsets computed above.
Matthias Braun941a7052016-07-28 18:40:00 +0000715 int FI = MF.getFrameInfo().CreateStackObject(NumBytes,
716 Layout.getStackAlignment(),
717 /*isSS=*/false);
Dan Gohman35bfb242015-12-04 23:22:35 +0000718 unsigned ValNo = 0;
719 SmallVector<SDValue, 8> Chains;
720 for (SDValue Arg :
721 make_range(OutVals.begin() + NumFixedArgs, OutVals.end())) {
722 assert(ArgLocs[ValNo].getValNo() == ValNo &&
723 "ArgLocs should remain in order and only hold varargs args");
724 unsigned Offset = ArgLocs[ValNo++].getLocMemOffset();
Derek Schuff992d83f2016-02-10 20:14:15 +0000725 FINode = DAG.getFrameIndex(FI, getPointerTy(Layout));
Derek Schuff27501e22016-02-10 19:51:04 +0000726 SDValue Add = DAG.getNode(ISD::ADD, DL, PtrVT, FINode,
Dan Gohman35bfb242015-12-04 23:22:35 +0000727 DAG.getConstant(Offset, DL, PtrVT));
Heejin Ahnf208f632018-09-05 01:27:38 +0000728 Chains.push_back(
729 DAG.getStore(Chain, DL, Arg, Add,
730 MachinePointerInfo::getFixedStack(MF, FI, Offset), 0));
Dan Gohman35bfb242015-12-04 23:22:35 +0000731 }
732 if (!Chains.empty())
733 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chains);
Derek Schuff27501e22016-02-10 19:51:04 +0000734 } else if (IsVarArg) {
735 FINode = DAG.getIntPtrConstant(0, DL);
Dan Gohman35bfb242015-12-04 23:22:35 +0000736 }
737
738 // Compute the operands for the CALLn node.
JF Bastiend8a9d662015-08-24 21:59:51 +0000739 SmallVector<SDValue, 16> Ops;
740 Ops.push_back(Chain);
JF Bastienaf111db2015-08-24 22:16:48 +0000741 Ops.push_back(Callee);
Dan Gohman35bfb242015-12-04 23:22:35 +0000742
743 // Add all fixed arguments. Note that for non-varargs calls, NumFixedArgs
744 // isn't reliable.
745 Ops.append(OutVals.begin(),
746 IsVarArg ? OutVals.begin() + NumFixedArgs : OutVals.end());
Derek Schuff27501e22016-02-10 19:51:04 +0000747 // Add a pointer to the vararg buffer.
Heejin Ahnf208f632018-09-05 01:27:38 +0000748 if (IsVarArg)
749 Ops.push_back(FINode);
JF Bastiend8a9d662015-08-24 21:59:51 +0000750
Derek Schuff27501e22016-02-10 19:51:04 +0000751 SmallVector<EVT, 8> InTys;
Dan Gohman2d822e72015-12-04 17:12:52 +0000752 for (const auto &In : Ins) {
Dan Gohman7935fa32015-12-10 00:22:40 +0000753 assert(!In.Flags.isByVal() && "byval is not valid for return values");
754 assert(!In.Flags.isNest() && "nest is not valid for return values");
Dan Gohman2d822e72015-12-04 17:12:52 +0000755 if (In.Flags.isInAlloca())
Dan Gohman7935fa32015-12-10 00:22:40 +0000756 fail(DL, DAG, "WebAssembly hasn't implemented inalloca return values");
Dan Gohman2d822e72015-12-04 17:12:52 +0000757 if (In.Flags.isInConsecutiveRegs())
Dan Gohman7935fa32015-12-10 00:22:40 +0000758 fail(DL, DAG, "WebAssembly hasn't implemented cons regs return values");
Dan Gohman2d822e72015-12-04 17:12:52 +0000759 if (In.Flags.isInConsecutiveRegsLast())
Dan Gohman4b9d7912015-12-15 22:01:29 +0000760 fail(DL, DAG,
761 "WebAssembly hasn't implemented cons regs last return values");
Dan Gohman2d822e72015-12-04 17:12:52 +0000762 // Ignore In.getOrigAlign() because all our arguments are passed in
763 // registers.
Derek Schuff27501e22016-02-10 19:51:04 +0000764 InTys.push_back(In.VT);
Dan Gohman2d822e72015-12-04 17:12:52 +0000765 }
Derek Schuff27501e22016-02-10 19:51:04 +0000766 InTys.push_back(MVT::Other);
767 SDVTList InTyList = DAG.getVTList(InTys);
Dan Gohmanf71abef2015-09-09 16:13:47 +0000768 SDValue Res =
769 DAG.getNode(Ins.empty() ? WebAssemblyISD::CALL0 : WebAssemblyISD::CALL1,
Derek Schuff27501e22016-02-10 19:51:04 +0000770 DL, InTyList, Ops);
JF Bastienaf111db2015-08-24 22:16:48 +0000771 if (Ins.empty()) {
772 Chain = Res;
773 } else {
774 InVals.push_back(Res);
775 Chain = Res.getValue(1);
776 }
JF Bastiend8a9d662015-08-24 21:59:51 +0000777
JF Bastiend8a9d662015-08-24 21:59:51 +0000778 return Chain;
779}
780
JF Bastienb9073fb2015-07-22 21:28:15 +0000781bool WebAssemblyTargetLowering::CanLowerReturn(
Dan Gohman7a6b9822015-11-29 22:32:02 +0000782 CallingConv::ID /*CallConv*/, MachineFunction & /*MF*/, bool /*IsVarArg*/,
783 const SmallVectorImpl<ISD::OutputArg> &Outs,
784 LLVMContext & /*Context*/) const {
JF Bastienb9073fb2015-07-22 21:28:15 +0000785 // WebAssembly can't currently handle returning tuples.
786 return Outs.size() <= 1;
787}
788
789SDValue WebAssemblyTargetLowering::LowerReturn(
Dan Gohman35bfb242015-12-04 23:22:35 +0000790 SDValue Chain, CallingConv::ID CallConv, bool /*IsVarArg*/,
JF Bastienb9073fb2015-07-22 21:28:15 +0000791 const SmallVectorImpl<ISD::OutputArg> &Outs,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000792 const SmallVectorImpl<SDValue> &OutVals, const SDLoc &DL,
JF Bastienb9073fb2015-07-22 21:28:15 +0000793 SelectionDAG &DAG) const {
JF Bastienb9073fb2015-07-22 21:28:15 +0000794 assert(Outs.size() <= 1 && "WebAssembly can only return up to one value");
Heejin Ahn18c56a02019-02-04 19:13:39 +0000795 if (!callingConvSupported(CallConv))
JF Bastienb9073fb2015-07-22 21:28:15 +0000796 fail(DL, DAG, "WebAssembly doesn't support non-C calling conventions");
797
JF Bastien600aee92015-07-31 17:53:38 +0000798 SmallVector<SDValue, 4> RetOps(1, Chain);
799 RetOps.append(OutVals.begin(), OutVals.end());
JF Bastien4a2d5602015-07-31 21:04:18 +0000800 Chain = DAG.getNode(WebAssemblyISD::RETURN, DL, MVT::Other, RetOps);
JF Bastienb9073fb2015-07-22 21:28:15 +0000801
Dan Gohman754cd112015-11-11 01:33:02 +0000802 // Record the number and types of the return values.
803 for (const ISD::OutputArg &Out : Outs) {
Dan Gohmanac132e92015-12-02 23:40:03 +0000804 assert(!Out.Flags.isByVal() && "byval is not valid for return values");
805 assert(!Out.Flags.isNest() && "nest is not valid for return values");
Dan Gohman35bfb242015-12-04 23:22:35 +0000806 assert(Out.IsFixed && "non-fixed return value is not valid");
Dan Gohman754cd112015-11-11 01:33:02 +0000807 if (Out.Flags.isInAlloca())
808 fail(DL, DAG, "WebAssembly hasn't implemented inalloca results");
Dan Gohman754cd112015-11-11 01:33:02 +0000809 if (Out.Flags.isInConsecutiveRegs())
810 fail(DL, DAG, "WebAssembly hasn't implemented cons regs results");
811 if (Out.Flags.isInConsecutiveRegsLast())
812 fail(DL, DAG, "WebAssembly hasn't implemented cons regs last results");
Dan Gohman754cd112015-11-11 01:33:02 +0000813 }
814
JF Bastienb9073fb2015-07-22 21:28:15 +0000815 return Chain;
816}
817
818SDValue WebAssemblyTargetLowering::LowerFormalArguments(
Derek Schuff27501e22016-02-10 19:51:04 +0000819 SDValue Chain, CallingConv::ID CallConv, bool IsVarArg,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000820 const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &DL,
821 SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const {
Heejin Ahn18c56a02019-02-04 19:13:39 +0000822 if (!callingConvSupported(CallConv))
JF Bastienb9073fb2015-07-22 21:28:15 +0000823 fail(DL, DAG, "WebAssembly doesn't support non-C calling conventions");
JF Bastienb9073fb2015-07-22 21:28:15 +0000824
Dan Gohman2726b882016-10-06 22:29:32 +0000825 MachineFunction &MF = DAG.getMachineFunction();
826 auto *MFI = MF.getInfo<WebAssemblyFunctionInfo>();
827
Dan Gohmanfb3e0592015-11-25 19:36:19 +0000828 // Set up the incoming ARGUMENTS value, which serves to represent the liveness
829 // of the incoming values before they're represented by virtual registers.
830 MF.getRegInfo().addLiveIn(WebAssembly::ARGUMENTS);
831
JF Bastien600aee92015-07-31 17:53:38 +0000832 for (const ISD::InputArg &In : Ins) {
JF Bastien600aee92015-07-31 17:53:38 +0000833 if (In.Flags.isInAlloca())
834 fail(DL, DAG, "WebAssembly hasn't implemented inalloca arguments");
835 if (In.Flags.isNest())
836 fail(DL, DAG, "WebAssembly hasn't implemented nest arguments");
JF Bastien600aee92015-07-31 17:53:38 +0000837 if (In.Flags.isInConsecutiveRegs())
838 fail(DL, DAG, "WebAssembly hasn't implemented cons regs arguments");
839 if (In.Flags.isInConsecutiveRegsLast())
840 fail(DL, DAG, "WebAssembly hasn't implemented cons regs last arguments");
Dan Gohman9c54d3b2015-11-25 18:13:18 +0000841 // Ignore In.getOrigAlign() because all our arguments are passed in
842 // registers.
Heejin Ahnf208f632018-09-05 01:27:38 +0000843 InVals.push_back(In.Used ? DAG.getNode(WebAssemblyISD::ARGUMENT, DL, In.VT,
844 DAG.getTargetConstant(InVals.size(),
845 DL, MVT::i32))
846 : DAG.getUNDEF(In.VT));
Dan Gohman754cd112015-11-11 01:33:02 +0000847
848 // Record the number and types of arguments.
Derek Schuff27501e22016-02-10 19:51:04 +0000849 MFI->addParam(In.VT);
JF Bastien600aee92015-07-31 17:53:38 +0000850 }
JF Bastienb9073fb2015-07-22 21:28:15 +0000851
Derek Schuff27501e22016-02-10 19:51:04 +0000852 // Varargs are copied into a buffer allocated by the caller, and a pointer to
853 // the buffer is passed as an argument.
854 if (IsVarArg) {
855 MVT PtrVT = getPointerTy(MF.getDataLayout());
856 unsigned VarargVreg =
857 MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrVT));
858 MFI->setVarargBufferVreg(VarargVreg);
859 Chain = DAG.getCopyToReg(
860 Chain, DL, VarargVreg,
861 DAG.getNode(WebAssemblyISD::ARGUMENT, DL, PtrVT,
862 DAG.getTargetConstant(Ins.size(), DL, MVT::i32)));
863 MFI->addParam(PtrVT);
864 }
Dan Gohman35bfb242015-12-04 23:22:35 +0000865
Derek Schuff77a7a382018-10-03 22:22:48 +0000866 // Record the number and types of arguments and results.
Dan Gohman2726b882016-10-06 22:29:32 +0000867 SmallVector<MVT, 4> Params;
868 SmallVector<MVT, 4> Results;
Heejin Ahn18c56a02019-02-04 19:13:39 +0000869 computeSignatureVTs(MF.getFunction().getFunctionType(), MF.getFunction(),
Derek Schuff77a7a382018-10-03 22:22:48 +0000870 DAG.getTarget(), Params, Results);
Dan Gohman2726b882016-10-06 22:29:32 +0000871 for (MVT VT : Results)
872 MFI->addResult(VT);
Derek Schuff77a7a382018-10-03 22:22:48 +0000873 // TODO: Use signatures in WebAssemblyMachineFunctionInfo too and unify
874 // the param logic here with ComputeSignatureVTs
875 assert(MFI->getParams().size() == Params.size() &&
876 std::equal(MFI->getParams().begin(), MFI->getParams().end(),
877 Params.begin()));
Dan Gohman2726b882016-10-06 22:29:32 +0000878
JF Bastienb9073fb2015-07-22 21:28:15 +0000879 return Chain;
880}
881
Dan Gohman10e730a2015-06-29 23:51:55 +0000882//===----------------------------------------------------------------------===//
JF Bastienaf111db2015-08-24 22:16:48 +0000883// Custom lowering hooks.
Dan Gohman10e730a2015-06-29 23:51:55 +0000884//===----------------------------------------------------------------------===//
885
JF Bastienaf111db2015-08-24 22:16:48 +0000886SDValue WebAssemblyTargetLowering::LowerOperation(SDValue Op,
887 SelectionDAG &DAG) const {
Derek Schuff51699a82016-02-12 22:56:03 +0000888 SDLoc DL(Op);
JF Bastienaf111db2015-08-24 22:16:48 +0000889 switch (Op.getOpcode()) {
Heejin Ahnf208f632018-09-05 01:27:38 +0000890 default:
891 llvm_unreachable("unimplemented operation lowering");
892 return SDValue();
893 case ISD::FrameIndex:
894 return LowerFrameIndex(Op, DAG);
895 case ISD::GlobalAddress:
896 return LowerGlobalAddress(Op, DAG);
897 case ISD::ExternalSymbol:
898 return LowerExternalSymbol(Op, DAG);
899 case ISD::JumpTable:
900 return LowerJumpTable(Op, DAG);
901 case ISD::BR_JT:
902 return LowerBR_JT(Op, DAG);
903 case ISD::VASTART:
904 return LowerVASTART(Op, DAG);
905 case ISD::BlockAddress:
906 case ISD::BRIND:
907 fail(DL, DAG, "WebAssembly hasn't implemented computed gotos");
908 return SDValue();
909 case ISD::RETURNADDR: // Probably nothing meaningful can be returned here.
910 fail(DL, DAG, "WebAssembly hasn't implemented __builtin_return_address");
911 return SDValue();
912 case ISD::FRAMEADDR:
913 return LowerFRAMEADDR(Op, DAG);
914 case ISD::CopyToReg:
915 return LowerCopyToReg(Op, DAG);
Thomas Livelyfb84fd72018-11-02 00:06:56 +0000916 case ISD::EXTRACT_VECTOR_ELT:
917 case ISD::INSERT_VECTOR_ELT:
918 return LowerAccessVectorElement(Op, DAG);
Heejin Ahnda419bd2018-11-14 02:46:21 +0000919 case ISD::INTRINSIC_VOID:
Heejin Ahnd6f48782019-01-30 03:21:57 +0000920 case ISD::INTRINSIC_WO_CHAIN:
921 case ISD::INTRINSIC_W_CHAIN:
922 return LowerIntrinsic(Op, DAG);
Thomas Lively64a39a12019-01-10 22:32:11 +0000923 case ISD::SIGN_EXTEND_INREG:
924 return LowerSIGN_EXTEND_INREG(Op, DAG);
Thomas Lively079816e2019-01-30 02:23:29 +0000925 case ISD::BUILD_VECTOR:
926 return LowerBUILD_VECTOR(Op, DAG);
Thomas Livelya0d25812018-09-07 21:54:46 +0000927 case ISD::VECTOR_SHUFFLE:
928 return LowerVECTOR_SHUFFLE(Op, DAG);
Thomas Lively55735d52018-10-20 01:31:18 +0000929 case ISD::SHL:
930 case ISD::SRA:
931 case ISD::SRL:
932 return LowerShift(Op, DAG);
JF Bastienaf111db2015-08-24 22:16:48 +0000933 }
934}
935
Derek Schuffaadc89c2016-02-16 18:18:36 +0000936SDValue WebAssemblyTargetLowering::LowerCopyToReg(SDValue Op,
937 SelectionDAG &DAG) const {
938 SDValue Src = Op.getOperand(2);
939 if (isa<FrameIndexSDNode>(Src.getNode())) {
940 // CopyToReg nodes don't support FrameIndex operands. Other targets select
941 // the FI to some LEA-like instruction, but since we don't have that, we
942 // need to insert some kind of instruction that can take an FI operand and
943 // produces a value usable by CopyToReg (i.e. in a vreg). So insert a dummy
Thomas Lively6a87dda2019-01-08 06:25:55 +0000944 // local.copy between Op and its FI operand.
Dan Gohman02c08712016-02-20 23:09:44 +0000945 SDValue Chain = Op.getOperand(0);
Derek Schuffaadc89c2016-02-16 18:18:36 +0000946 SDLoc DL(Op);
Dan Gohman02c08712016-02-20 23:09:44 +0000947 unsigned Reg = cast<RegisterSDNode>(Op.getOperand(1))->getReg();
Derek Schuffaadc89c2016-02-16 18:18:36 +0000948 EVT VT = Src.getValueType();
Heejin Ahnf208f632018-09-05 01:27:38 +0000949 SDValue Copy(DAG.getMachineNode(VT == MVT::i32 ? WebAssembly::COPY_I32
950 : WebAssembly::COPY_I64,
951 DL, VT, Src),
952 0);
Dan Gohman02c08712016-02-20 23:09:44 +0000953 return Op.getNode()->getNumValues() == 1
954 ? DAG.getCopyToReg(Chain, DL, Reg, Copy)
Heejin Ahnf208f632018-09-05 01:27:38 +0000955 : DAG.getCopyToReg(Chain, DL, Reg, Copy,
956 Op.getNumOperands() == 4 ? Op.getOperand(3)
957 : SDValue());
Derek Schuffaadc89c2016-02-16 18:18:36 +0000958 }
959 return SDValue();
960}
961
Derek Schuff9769deb2015-12-11 23:49:46 +0000962SDValue WebAssemblyTargetLowering::LowerFrameIndex(SDValue Op,
963 SelectionDAG &DAG) const {
964 int FI = cast<FrameIndexSDNode>(Op)->getIndex();
965 return DAG.getTargetFrameIndex(FI, Op.getValueType());
966}
967
Dan Gohman94c65662016-02-16 23:48:04 +0000968SDValue WebAssemblyTargetLowering::LowerFRAMEADDR(SDValue Op,
969 SelectionDAG &DAG) const {
970 // Non-zero depths are not supported by WebAssembly currently. Use the
971 // legalizer's default expansion, which is to return 0 (what this function is
972 // documented to do).
Dan Gohman1d547bf2016-02-17 00:14:03 +0000973 if (Op.getConstantOperandVal(0) > 0)
Dan Gohman94c65662016-02-16 23:48:04 +0000974 return SDValue();
975
Matthias Braun941a7052016-07-28 18:40:00 +0000976 DAG.getMachineFunction().getFrameInfo().setFrameAddressIsTaken(true);
Dan Gohman94c65662016-02-16 23:48:04 +0000977 EVT VT = Op.getValueType();
978 unsigned FP =
979 Subtarget->getRegisterInfo()->getFrameRegister(DAG.getMachineFunction());
980 return DAG.getCopyFromReg(DAG.getEntryNode(), SDLoc(Op), FP, VT);
981}
982
JF Bastienaf111db2015-08-24 22:16:48 +0000983SDValue WebAssemblyTargetLowering::LowerGlobalAddress(SDValue Op,
984 SelectionDAG &DAG) const {
985 SDLoc DL(Op);
986 const auto *GA = cast<GlobalAddressSDNode>(Op);
987 EVT VT = Op.getValueType();
Dan Gohman26c67652016-01-11 23:38:05 +0000988 assert(GA->getTargetFlags() == 0 &&
989 "Unexpected target flags on generic GlobalAddressSDNode");
JF Bastienaf111db2015-08-24 22:16:48 +0000990 if (GA->getAddressSpace() != 0)
991 fail(DL, DAG, "WebAssembly only expects the 0 address space");
Dan Gohman4b9d7912015-12-15 22:01:29 +0000992 return DAG.getNode(
993 WebAssemblyISD::Wrapper, DL, VT,
994 DAG.getTargetGlobalAddress(GA->getGlobal(), DL, VT, GA->getOffset()));
JF Bastienaf111db2015-08-24 22:16:48 +0000995}
996
Heejin Ahnf208f632018-09-05 01:27:38 +0000997SDValue
998WebAssemblyTargetLowering::LowerExternalSymbol(SDValue Op,
999 SelectionDAG &DAG) const {
Dan Gohman2c8fe6a2015-11-25 16:44:29 +00001000 SDLoc DL(Op);
1001 const auto *ES = cast<ExternalSymbolSDNode>(Op);
1002 EVT VT = Op.getValueType();
Dan Gohman26c67652016-01-11 23:38:05 +00001003 assert(ES->getTargetFlags() == 0 &&
1004 "Unexpected target flags on generic ExternalSymbolSDNode");
1005 // Set the TargetFlags to 0x1 which indicates that this is a "function"
1006 // symbol rather than a data symbol. We do this unconditionally even though
1007 // we don't know anything about the symbol other than its name, because all
1008 // external symbols used in target-independent SelectionDAG code are for
1009 // functions.
Heejin Ahnf208f632018-09-05 01:27:38 +00001010 return DAG.getNode(
1011 WebAssemblyISD::Wrapper, DL, VT,
1012 DAG.getTargetExternalSymbol(ES->getSymbol(), VT,
1013 WebAssemblyII::MO_SYMBOL_FUNCTION));
Dan Gohman2c8fe6a2015-11-25 16:44:29 +00001014}
1015
Dan Gohman950a13c2015-09-16 16:51:30 +00001016SDValue WebAssemblyTargetLowering::LowerJumpTable(SDValue Op,
1017 SelectionDAG &DAG) const {
1018 // There's no need for a Wrapper node because we always incorporate a jump
Dan Gohman14026062016-03-08 03:18:12 +00001019 // table operand into a BR_TABLE instruction, rather than ever
Dan Gohmanbb7ce8e2015-11-20 03:02:49 +00001020 // materializing it in a register.
Dan Gohman950a13c2015-09-16 16:51:30 +00001021 const JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
1022 return DAG.getTargetJumpTable(JT->getIndex(), Op.getValueType(),
1023 JT->getTargetFlags());
1024}
1025
1026SDValue WebAssemblyTargetLowering::LowerBR_JT(SDValue Op,
1027 SelectionDAG &DAG) const {
1028 SDLoc DL(Op);
1029 SDValue Chain = Op.getOperand(0);
1030 const auto *JT = cast<JumpTableSDNode>(Op.getOperand(1));
1031 SDValue Index = Op.getOperand(2);
1032 assert(JT->getTargetFlags() == 0 && "WebAssembly doesn't set target flags");
1033
1034 SmallVector<SDValue, 8> Ops;
1035 Ops.push_back(Chain);
1036 Ops.push_back(Index);
1037
1038 MachineJumpTableInfo *MJTI = DAG.getMachineFunction().getJumpTableInfo();
1039 const auto &MBBs = MJTI->getJumpTables()[JT->getIndex()].MBBs;
1040
Dan Gohman14026062016-03-08 03:18:12 +00001041 // Add an operand for each case.
Heejin Ahnf208f632018-09-05 01:27:38 +00001042 for (auto MBB : MBBs)
1043 Ops.push_back(DAG.getBasicBlock(MBB));
Dan Gohman14026062016-03-08 03:18:12 +00001044
Dan Gohman950a13c2015-09-16 16:51:30 +00001045 // TODO: For now, we just pick something arbitrary for a default case for now.
1046 // We really want to sniff out the guard and put in the real default case (and
1047 // delete the guard).
1048 Ops.push_back(DAG.getBasicBlock(MBBs[0]));
1049
Dan Gohman14026062016-03-08 03:18:12 +00001050 return DAG.getNode(WebAssemblyISD::BR_TABLE, DL, MVT::Other, Ops);
Dan Gohman950a13c2015-09-16 16:51:30 +00001051}
1052
Dan Gohman35bfb242015-12-04 23:22:35 +00001053SDValue WebAssemblyTargetLowering::LowerVASTART(SDValue Op,
1054 SelectionDAG &DAG) const {
1055 SDLoc DL(Op);
1056 EVT PtrVT = getPointerTy(DAG.getMachineFunction().getDataLayout());
1057
Derek Schuff27501e22016-02-10 19:51:04 +00001058 auto *MFI = DAG.getMachineFunction().getInfo<WebAssemblyFunctionInfo>();
Dan Gohman35bfb242015-12-04 23:22:35 +00001059 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Derek Schuff27501e22016-02-10 19:51:04 +00001060
1061 SDValue ArgN = DAG.getCopyFromReg(DAG.getEntryNode(), DL,
1062 MFI->getVarargBufferVreg(), PtrVT);
1063 return DAG.getStore(Op.getOperand(0), DL, ArgN, Op.getOperand(1),
Derek Schuff1a946e42016-07-15 19:35:43 +00001064 MachinePointerInfo(SV), 0);
Dan Gohman35bfb242015-12-04 23:22:35 +00001065}
1066
Heejin Ahnd6f48782019-01-30 03:21:57 +00001067SDValue WebAssemblyTargetLowering::LowerIntrinsic(SDValue Op,
1068 SelectionDAG &DAG) const {
1069 MachineFunction &MF = DAG.getMachineFunction();
1070 unsigned IntNo;
1071 switch (Op.getOpcode()) {
1072 case ISD::INTRINSIC_VOID:
1073 case ISD::INTRINSIC_W_CHAIN:
1074 IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
1075 break;
1076 case ISD::INTRINSIC_WO_CHAIN:
1077 IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
1078 break;
1079 default:
1080 llvm_unreachable("Invalid intrinsic");
1081 }
Heejin Ahn5ef4d5f2018-05-31 22:25:54 +00001082 SDLoc DL(Op);
Heejin Ahnd6f48782019-01-30 03:21:57 +00001083
Heejin Ahn5ef4d5f2018-05-31 22:25:54 +00001084 switch (IntNo) {
1085 default:
Heejin Ahn18c56a02019-02-04 19:13:39 +00001086 return SDValue(); // Don't custom lower most intrinsics.
Thomas Lively5d461c92018-10-03 23:02:23 +00001087
Heejin Ahn24faf852018-10-25 23:55:10 +00001088 case Intrinsic::wasm_lsda: {
Heejin Ahn24faf852018-10-25 23:55:10 +00001089 EVT VT = Op.getValueType();
1090 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
1091 MVT PtrVT = TLI.getPointerTy(DAG.getDataLayout());
1092 auto &Context = MF.getMMI().getContext();
1093 MCSymbol *S = Context.getOrCreateSymbol(Twine("GCC_except_table") +
1094 Twine(MF.getFunctionNumber()));
1095 return DAG.getNode(WebAssemblyISD::Wrapper, DL, VT,
1096 DAG.getMCSymbol(S, PtrVT));
1097 }
Heejin Ahnda419bd2018-11-14 02:46:21 +00001098
1099 case Intrinsic::wasm_throw: {
Heejin Ahnd6f48782019-01-30 03:21:57 +00001100 // We only support C++ exceptions for now
Heejin Ahnda419bd2018-11-14 02:46:21 +00001101 int Tag = cast<ConstantSDNode>(Op.getOperand(2).getNode())->getZExtValue();
Heejin Ahnd6f48782019-01-30 03:21:57 +00001102 if (Tag != CPP_EXCEPTION)
Heejin Ahnda419bd2018-11-14 02:46:21 +00001103 llvm_unreachable("Invalid tag!");
Heejin Ahnd6f48782019-01-30 03:21:57 +00001104 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
1105 MVT PtrVT = TLI.getPointerTy(DAG.getDataLayout());
1106 const char *SymName = MF.createExternalSymbolName("__cpp_exception");
1107 SDValue SymNode =
1108 DAG.getNode(WebAssemblyISD::Wrapper, DL, PtrVT,
1109 DAG.getTargetExternalSymbol(
1110 SymName, PtrVT, WebAssemblyII::MO_SYMBOL_EVENT));
1111 return DAG.getNode(WebAssemblyISD::THROW, DL,
1112 MVT::Other, // outchain type
1113 {
1114 Op.getOperand(0), // inchain
1115 SymNode, // exception symbol
1116 Op.getOperand(3) // thrown value
1117 });
Heejin Ahnda419bd2018-11-14 02:46:21 +00001118 }
1119 }
1120}
1121
1122SDValue
Thomas Lively64a39a12019-01-10 22:32:11 +00001123WebAssemblyTargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
1124 SelectionDAG &DAG) const {
1125 // If sign extension operations are disabled, allow sext_inreg only if operand
1126 // is a vector extract. SIMD does not depend on sign extension operations, but
1127 // allowing sext_inreg in this context lets us have simple patterns to select
1128 // extract_lane_s instructions. Expanding sext_inreg everywhere would be
1129 // simpler in this file, but would necessitate large and brittle patterns to
1130 // undo the expansion and select extract_lane_s instructions.
1131 assert(!Subtarget->hasSignExt() && Subtarget->hasSIMD128());
1132 if (Op.getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT)
1133 return Op;
1134 // Otherwise expand
1135 return SDValue();
1136}
1137
Thomas Lively079816e2019-01-30 02:23:29 +00001138SDValue WebAssemblyTargetLowering::LowerBUILD_VECTOR(SDValue Op,
1139 SelectionDAG &DAG) const {
1140 SDLoc DL(Op);
1141 const EVT VecT = Op.getValueType();
1142 const EVT LaneT = Op.getOperand(0).getValueType();
1143 const size_t Lanes = Op.getNumOperands();
1144 auto IsConstant = [](const SDValue &V) {
1145 return V.getOpcode() == ISD::Constant || V.getOpcode() == ISD::ConstantFP;
1146 };
1147
1148 // Find the most common operand, which is approximately the best to splat
1149 using Entry = std::pair<SDValue, size_t>;
1150 SmallVector<Entry, 16> ValueCounts;
1151 size_t NumConst = 0, NumDynamic = 0;
1152 for (const SDValue &Lane : Op->op_values()) {
1153 if (Lane.isUndef()) {
1154 continue;
1155 } else if (IsConstant(Lane)) {
1156 NumConst++;
1157 } else {
1158 NumDynamic++;
1159 }
1160 auto CountIt = std::find_if(ValueCounts.begin(), ValueCounts.end(),
1161 [&Lane](Entry A) { return A.first == Lane; });
1162 if (CountIt == ValueCounts.end()) {
1163 ValueCounts.emplace_back(Lane, 1);
1164 } else {
1165 CountIt->second++;
1166 }
1167 }
1168 auto CommonIt =
1169 std::max_element(ValueCounts.begin(), ValueCounts.end(),
1170 [](Entry A, Entry B) { return A.second < B.second; });
1171 assert(CommonIt != ValueCounts.end() && "Unexpected all-undef build_vector");
1172 SDValue SplatValue = CommonIt->first;
1173 size_t NumCommon = CommonIt->second;
1174
1175 // If v128.const is available, consider using it instead of a splat
1176 if (Subtarget->hasUnimplementedSIMD128()) {
1177 // {i32,i64,f32,f64}.const opcode, and value
1178 const size_t ConstBytes = 1 + std::max(size_t(4), 16 / Lanes);
1179 // SIMD prefix and opcode
1180 const size_t SplatBytes = 2;
1181 const size_t SplatConstBytes = SplatBytes + ConstBytes;
1182 // SIMD prefix, opcode, and lane index
1183 const size_t ReplaceBytes = 3;
1184 const size_t ReplaceConstBytes = ReplaceBytes + ConstBytes;
1185 // SIMD prefix, v128.const opcode, and 128-bit value
1186 const size_t VecConstBytes = 18;
1187 // Initial v128.const and a replace_lane for each non-const operand
1188 const size_t ConstInitBytes = VecConstBytes + NumDynamic * ReplaceBytes;
1189 // Initial splat and all necessary replace_lanes
1190 const size_t SplatInitBytes =
1191 IsConstant(SplatValue)
1192 // Initial constant splat
1193 ? (SplatConstBytes +
1194 // Constant replace_lanes
1195 (NumConst - NumCommon) * ReplaceConstBytes +
1196 // Dynamic replace_lanes
1197 (NumDynamic * ReplaceBytes))
1198 // Initial dynamic splat
1199 : (SplatBytes +
1200 // Constant replace_lanes
1201 (NumConst * ReplaceConstBytes) +
1202 // Dynamic replace_lanes
1203 (NumDynamic - NumCommon) * ReplaceBytes);
1204 if (ConstInitBytes < SplatInitBytes) {
1205 // Create build_vector that will lower to initial v128.const
1206 SmallVector<SDValue, 16> ConstLanes;
1207 for (const SDValue &Lane : Op->op_values()) {
1208 if (IsConstant(Lane)) {
1209 ConstLanes.push_back(Lane);
1210 } else if (LaneT.isFloatingPoint()) {
1211 ConstLanes.push_back(DAG.getConstantFP(0, DL, LaneT));
1212 } else {
1213 ConstLanes.push_back(DAG.getConstant(0, DL, LaneT));
1214 }
1215 }
1216 SDValue Result = DAG.getBuildVector(VecT, DL, ConstLanes);
1217 // Add replace_lane instructions for non-const lanes
1218 for (size_t I = 0; I < Lanes; ++I) {
1219 const SDValue &Lane = Op->getOperand(I);
1220 if (!Lane.isUndef() && !IsConstant(Lane))
1221 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VecT, Result, Lane,
1222 DAG.getConstant(I, DL, MVT::i32));
1223 }
1224 return Result;
1225 }
1226 }
1227 // Use a splat for the initial vector
1228 SDValue Result = DAG.getSplatBuildVector(VecT, DL, SplatValue);
1229 // Add replace_lane instructions for other values
1230 for (size_t I = 0; I < Lanes; ++I) {
1231 const SDValue &Lane = Op->getOperand(I);
1232 if (Lane != SplatValue)
1233 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VecT, Result, Lane,
1234 DAG.getConstant(I, DL, MVT::i32));
1235 }
1236 return Result;
1237}
1238
Thomas Lively64a39a12019-01-10 22:32:11 +00001239SDValue
Thomas Livelya0d25812018-09-07 21:54:46 +00001240WebAssemblyTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
1241 SelectionDAG &DAG) const {
1242 SDLoc DL(Op);
1243 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Op.getNode())->getMask();
1244 MVT VecType = Op.getOperand(0).getSimpleValueType();
1245 assert(VecType.is128BitVector() && "Unexpected shuffle vector type");
1246 size_t LaneBytes = VecType.getVectorElementType().getSizeInBits() / 8;
1247
1248 // Space for two vector args and sixteen mask indices
1249 SDValue Ops[18];
1250 size_t OpIdx = 0;
1251 Ops[OpIdx++] = Op.getOperand(0);
1252 Ops[OpIdx++] = Op.getOperand(1);
1253
1254 // Expand mask indices to byte indices and materialize them as operands
Heejin Ahn18c56a02019-02-04 19:13:39 +00001255 for (int M : Mask) {
Thomas Livelya0d25812018-09-07 21:54:46 +00001256 for (size_t J = 0; J < LaneBytes; ++J) {
Thomas Lively11a332d02018-10-19 19:08:06 +00001257 // Lower undefs (represented by -1 in mask) to zero
Heejin Ahn18c56a02019-02-04 19:13:39 +00001258 uint64_t ByteIndex = M == -1 ? 0 : (uint64_t)M * LaneBytes + J;
Thomas Lively11a332d02018-10-19 19:08:06 +00001259 Ops[OpIdx++] = DAG.getConstant(ByteIndex, DL, MVT::i32);
Thomas Livelya0d25812018-09-07 21:54:46 +00001260 }
1261 }
1262
Thomas Livelyed951342018-10-24 23:27:40 +00001263 return DAG.getNode(WebAssemblyISD::SHUFFLE, DL, Op.getValueType(), Ops);
Thomas Livelya0d25812018-09-07 21:54:46 +00001264}
1265
Thomas Livelyfb84fd72018-11-02 00:06:56 +00001266SDValue
1267WebAssemblyTargetLowering::LowerAccessVectorElement(SDValue Op,
1268 SelectionDAG &DAG) const {
1269 // Allow constant lane indices, expand variable lane indices
1270 SDNode *IdxNode = Op.getOperand(Op.getNumOperands() - 1).getNode();
1271 if (isa<ConstantSDNode>(IdxNode) || IdxNode->isUndef())
1272 return Op;
1273 else
1274 // Perform default expansion
1275 return SDValue();
1276}
1277
Heejin Ahn18c56a02019-02-04 19:13:39 +00001278static SDValue unrollVectorShift(SDValue Op, SelectionDAG &DAG) {
Thomas Lively6bf2b402019-01-15 02:16:03 +00001279 EVT LaneT = Op.getSimpleValueType().getVectorElementType();
1280 // 32-bit and 64-bit unrolled shifts will have proper semantics
1281 if (LaneT.bitsGE(MVT::i32))
1282 return DAG.UnrollVectorOp(Op.getNode());
1283 // Otherwise mask the shift value to get proper semantics from 32-bit shift
1284 SDLoc DL(Op);
1285 SDValue ShiftVal = Op.getOperand(1);
1286 uint64_t MaskVal = LaneT.getSizeInBits() - 1;
1287 SDValue MaskedShiftVal = DAG.getNode(
1288 ISD::AND, // mask opcode
1289 DL, ShiftVal.getValueType(), // masked value type
1290 ShiftVal, // original shift value operand
1291 DAG.getConstant(MaskVal, DL, ShiftVal.getValueType()) // mask operand
1292 );
1293
1294 return DAG.UnrollVectorOp(
1295 DAG.getNode(Op.getOpcode(), // original shift opcode
1296 DL, Op.getValueType(), // original return type
1297 Op.getOperand(0), // original vector operand,
1298 MaskedShiftVal // new masked shift value operand
1299 )
1300 .getNode());
1301}
1302
Thomas Lively55735d52018-10-20 01:31:18 +00001303SDValue WebAssemblyTargetLowering::LowerShift(SDValue Op,
1304 SelectionDAG &DAG) const {
1305 SDLoc DL(Op);
Thomas Livelyb2382c82018-11-02 00:39:57 +00001306
1307 // Only manually lower vector shifts
1308 assert(Op.getSimpleValueType().isVector());
1309
Thomas Livelyd295f512019-03-01 17:43:55 +00001310 // Expand all vector shifts until V8 fixes its implementation
1311 // TODO: remove this once V8 is fixed
1312 if (!Subtarget->hasUnimplementedSIMD128())
1313 return unrollVectorShift(Op, DAG);
1314
Thomas Livelyb2382c82018-11-02 00:39:57 +00001315 // Unroll non-splat vector shifts
1316 BuildVectorSDNode *ShiftVec;
1317 SDValue SplatVal;
1318 if (!(ShiftVec = dyn_cast<BuildVectorSDNode>(Op.getOperand(1).getNode())) ||
1319 !(SplatVal = ShiftVec->getSplatValue()))
Heejin Ahn18c56a02019-02-04 19:13:39 +00001320 return unrollVectorShift(Op, DAG);
Thomas Livelyb2382c82018-11-02 00:39:57 +00001321
1322 // All splats except i64x2 const splats are handled by patterns
Heejin Ahn18c56a02019-02-04 19:13:39 +00001323 auto *SplatConst = dyn_cast<ConstantSDNode>(SplatVal);
Thomas Livelyb2382c82018-11-02 00:39:57 +00001324 if (!SplatConst || Op.getSimpleValueType() != MVT::v2i64)
Thomas Lively55735d52018-10-20 01:31:18 +00001325 return Op;
Thomas Livelyb2382c82018-11-02 00:39:57 +00001326
1327 // i64x2 const splats are custom lowered to avoid unnecessary wraps
Thomas Lively55735d52018-10-20 01:31:18 +00001328 unsigned Opcode;
1329 switch (Op.getOpcode()) {
1330 case ISD::SHL:
1331 Opcode = WebAssemblyISD::VEC_SHL;
1332 break;
1333 case ISD::SRA:
1334 Opcode = WebAssemblyISD::VEC_SHR_S;
1335 break;
1336 case ISD::SRL:
1337 Opcode = WebAssemblyISD::VEC_SHR_U;
1338 break;
1339 default:
1340 llvm_unreachable("unexpected opcode");
Thomas Lively55735d52018-10-20 01:31:18 +00001341 }
Thomas Livelyb2382c82018-11-02 00:39:57 +00001342 APInt Shift = SplatConst->getAPIntValue().zextOrTrunc(32);
Thomas Lively55735d52018-10-20 01:31:18 +00001343 return DAG.getNode(Opcode, DL, Op.getValueType(), Op.getOperand(0),
Thomas Livelyb2382c82018-11-02 00:39:57 +00001344 DAG.getConstant(Shift, DL, MVT::i32));
Thomas Lively55735d52018-10-20 01:31:18 +00001345}
1346
Dan Gohman10e730a2015-06-29 23:51:55 +00001347//===----------------------------------------------------------------------===//
1348// WebAssembly Optimization Hooks
1349//===----------------------------------------------------------------------===//