blob: 50bd5a94f4b7ebdb567b5b333d2eee905d4f91da [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 Lively2b8b2972019-01-26 01:25:37 +0000177 // Expand additional SIMD ops that V8 hasn't implemented yet
178 if (!Subtarget->hasUnimplementedSIMD128()) {
179 setOperationAction(ISD::FSQRT, MVT::v4f32, Expand);
180 setOperationAction(ISD::FDIV, MVT::v4f32, Expand);
181 }
182 }
183
Dan Gohman32907a62015-08-20 22:57:13 +0000184 // As a special case, these operators use the type to mean the type to
185 // sign-extend from.
Derek Schuffa519fe52017-09-13 00:29:06 +0000186 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Dan Gohman5d2b9352018-01-19 17:16:24 +0000187 if (!Subtarget->hasSignExt()) {
Thomas Lively64a39a12019-01-10 22:32:11 +0000188 // Sign extends are legal only when extending a vector extract
189 auto Action = Subtarget->hasSIMD128() ? Custom : Expand;
Derek Schuffa519fe52017-09-13 00:29:06 +0000190 for (auto T : {MVT::i8, MVT::i16, MVT::i32})
Thomas Lively64a39a12019-01-10 22:32:11 +0000191 setOperationAction(ISD::SIGN_EXTEND_INREG, T, Action);
Derek Schuffa519fe52017-09-13 00:29:06 +0000192 }
Thomas Lively5ea17d42018-10-20 01:35:23 +0000193 for (auto T : MVT::integer_vector_valuetypes())
194 setOperationAction(ISD::SIGN_EXTEND_INREG, T, Expand);
Dan Gohman32907a62015-08-20 22:57:13 +0000195
196 // Dynamic stack allocation: use the default expansion.
197 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
198 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Dan Gohman2683a552015-08-24 22:31:52 +0000199 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVTPtr, Expand);
JF Bastien73ff6af2015-08-31 22:24:11 +0000200
Derek Schuff9769deb2015-12-11 23:49:46 +0000201 setOperationAction(ISD::FrameIndex, MVT::i32, Custom);
Derek Schuffaadc89c2016-02-16 18:18:36 +0000202 setOperationAction(ISD::CopyToReg, MVT::Other, Custom);
Derek Schuff9769deb2015-12-11 23:49:46 +0000203
Dan Gohman950a13c2015-09-16 16:51:30 +0000204 // Expand these forms; we pattern-match the forms that we can handle in isel.
205 for (auto T : {MVT::i32, MVT::i64, MVT::f32, MVT::f64})
206 for (auto Op : {ISD::BR_CC, ISD::SELECT_CC})
207 setOperationAction(Op, T, Expand);
208
209 // We have custom switch handling.
210 setOperationAction(ISD::BR_JT, MVT::Other, Custom);
211
JF Bastien73ff6af2015-08-31 22:24:11 +0000212 // WebAssembly doesn't have:
213 // - Floating-point extending loads.
214 // - Floating-point truncating stores.
215 // - i1 extending loads.
Thomas Lively325c9c52018-10-25 01:46:07 +0000216 // - extending/truncating SIMD loads/stores
Dan Gohman60bddf12015-12-10 02:07:53 +0000217 setLoadExtAction(ISD::EXTLOAD, MVT::f64, MVT::f32, Expand);
JF Bastien73ff6af2015-08-31 22:24:11 +0000218 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
219 for (auto T : MVT::integer_valuetypes())
220 for (auto Ext : {ISD::EXTLOAD, ISD::ZEXTLOAD, ISD::SEXTLOAD})
221 setLoadExtAction(Ext, T, MVT::i1, Promote);
Thomas Lively325c9c52018-10-25 01:46:07 +0000222 if (Subtarget->hasSIMD128()) {
223 for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v2i64, MVT::v4f32,
224 MVT::v2f64}) {
225 for (auto MemT : MVT::vector_valuetypes()) {
226 if (MVT(T) != MemT) {
227 setTruncStoreAction(T, MemT, Expand);
228 for (auto Ext : {ISD::EXTLOAD, ISD::ZEXTLOAD, ISD::SEXTLOAD})
229 setLoadExtAction(Ext, T, MemT, Expand);
230 }
231 }
232 }
233 }
Derek Schuffffa143c2015-11-10 00:30:57 +0000234
Thomas Lively33f87b82019-01-28 23:44:31 +0000235 // Don't do anything clever with build_pairs
236 setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
237
Derek Schuffffa143c2015-11-10 00:30:57 +0000238 // Trap lowers to wasm unreachable
239 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Derek Schuff18ba1922017-08-30 18:07:45 +0000240
Heejin Ahn5ef4d5f2018-05-31 22:25:54 +0000241 // Exception handling intrinsics
242 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Heejin Ahnda419bd2018-11-14 02:46:21 +0000243 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
Heejin Ahn5ef4d5f2018-05-31 22:25:54 +0000244
Derek Schuff18ba1922017-08-30 18:07:45 +0000245 setMaxAtomicSizeInBitsSupported(64);
Thomas Livelyd99af232019-02-05 00:49:55 +0000246
247 if (Subtarget->hasBulkMemory()) {
Thomas Livelybba3f062019-02-13 22:25:18 +0000248 // Use memory.copy and friends over multiple loads and stores
Thomas Livelyd99af232019-02-05 00:49:55 +0000249 MaxStoresPerMemcpy = 1;
250 MaxStoresPerMemcpyOptSize = 1;
Thomas Lively31505662019-02-05 20:57:40 +0000251 MaxStoresPerMemmove = 1;
252 MaxStoresPerMemmoveOptSize = 1;
Thomas Livelybba3f062019-02-13 22:25:18 +0000253 MaxStoresPerMemset = 1;
254 MaxStoresPerMemsetOptSize = 1;
Thomas Livelyd99af232019-02-05 00:49:55 +0000255 }
Dan Gohmanbfaf7e12015-07-02 21:36:25 +0000256}
Dan Gohman10e730a2015-06-29 23:51:55 +0000257
Heejin Ahne8653bb2018-08-07 00:22:22 +0000258TargetLowering::AtomicExpansionKind
259WebAssemblyTargetLowering::shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const {
260 // We have wasm instructions for these
261 switch (AI->getOperation()) {
262 case AtomicRMWInst::Add:
263 case AtomicRMWInst::Sub:
264 case AtomicRMWInst::And:
265 case AtomicRMWInst::Or:
266 case AtomicRMWInst::Xor:
267 case AtomicRMWInst::Xchg:
268 return AtomicExpansionKind::None;
269 default:
270 break;
271 }
272 return AtomicExpansionKind::CmpXChg;
273}
274
Dan Gohman7b634842015-08-24 18:44:37 +0000275FastISel *WebAssemblyTargetLowering::createFastISel(
276 FunctionLoweringInfo &FuncInfo, const TargetLibraryInfo *LibInfo) const {
277 return WebAssembly::createFastISel(FuncInfo, LibInfo);
278}
279
JF Bastienaf111db2015-08-24 22:16:48 +0000280bool WebAssemblyTargetLowering::isOffsetFoldingLegal(
Dan Gohman7a6b9822015-11-29 22:32:02 +0000281 const GlobalAddressSDNode * /*GA*/) const {
Dan Gohmana4b710a2015-12-06 19:33:32 +0000282 // All offsets can be folded.
283 return true;
JF Bastienaf111db2015-08-24 22:16:48 +0000284}
285
Dan Gohman7a6b9822015-11-29 22:32:02 +0000286MVT WebAssemblyTargetLowering::getScalarShiftAmountTy(const DataLayout & /*DL*/,
JF Bastienfda53372015-08-03 00:00:11 +0000287 EVT VT) const {
Dan Gohmana8483752015-12-10 00:26:26 +0000288 unsigned BitWidth = NextPowerOf2(VT.getSizeInBits() - 1);
Heejin Ahnf208f632018-09-05 01:27:38 +0000289 if (BitWidth > 1 && BitWidth < 8)
290 BitWidth = 8;
Dan Gohman41729532015-12-16 23:25:51 +0000291
292 if (BitWidth > 64) {
Dan Gohmana01e8bd2016-05-14 02:15:47 +0000293 // The shift will be lowered to a libcall, and compiler-rt libcalls expect
294 // the count to be an i32.
295 BitWidth = 32;
Dan Gohman41729532015-12-16 23:25:51 +0000296 assert(BitWidth >= Log2_32_Ceil(VT.getSizeInBits()) &&
Dan Gohmana01e8bd2016-05-14 02:15:47 +0000297 "32-bit shift counts ought to be enough for anyone");
Dan Gohman41729532015-12-16 23:25:51 +0000298 }
299
Dan Gohmana8483752015-12-10 00:26:26 +0000300 MVT Result = MVT::getIntegerVT(BitWidth);
301 assert(Result != MVT::INVALID_SIMPLE_VALUE_TYPE &&
302 "Unable to represent scalar shift amount type");
303 return Result;
JF Bastienfda53372015-08-03 00:00:11 +0000304}
305
Dan Gohmancdd48b82017-11-28 01:13:40 +0000306// Lower an fp-to-int conversion operator from the LLVM opcode, which has an
307// undefined result on invalid/overflow, to the WebAssembly opcode, which
308// traps on invalid/overflow.
Heejin Ahnf208f632018-09-05 01:27:38 +0000309static MachineBasicBlock *LowerFPToInt(MachineInstr &MI, DebugLoc DL,
310 MachineBasicBlock *BB,
311 const TargetInstrInfo &TII,
312 bool IsUnsigned, bool Int64,
313 bool Float64, unsigned LoweredOpcode) {
Dan Gohmancdd48b82017-11-28 01:13:40 +0000314 MachineRegisterInfo &MRI = BB->getParent()->getRegInfo();
315
316 unsigned OutReg = MI.getOperand(0).getReg();
317 unsigned InReg = MI.getOperand(1).getReg();
318
319 unsigned Abs = Float64 ? WebAssembly::ABS_F64 : WebAssembly::ABS_F32;
320 unsigned FConst = Float64 ? WebAssembly::CONST_F64 : WebAssembly::CONST_F32;
321 unsigned LT = Float64 ? WebAssembly::LT_F64 : WebAssembly::LT_F32;
Dan Gohman580c1022017-11-29 20:20:11 +0000322 unsigned GE = Float64 ? WebAssembly::GE_F64 : WebAssembly::GE_F32;
Dan Gohmancdd48b82017-11-28 01:13:40 +0000323 unsigned IConst = Int64 ? WebAssembly::CONST_I64 : WebAssembly::CONST_I32;
Dan Gohman580c1022017-11-29 20:20:11 +0000324 unsigned Eqz = WebAssembly::EQZ_I32;
325 unsigned And = WebAssembly::AND_I32;
Dan Gohmancdd48b82017-11-28 01:13:40 +0000326 int64_t Limit = Int64 ? INT64_MIN : INT32_MIN;
327 int64_t Substitute = IsUnsigned ? 0 : Limit;
328 double CmpVal = IsUnsigned ? -(double)Limit * 2.0 : -(double)Limit;
David Blaikie21109242017-12-15 23:52:06 +0000329 auto &Context = BB->getParent()->getFunction().getContext();
Dan Gohmancdd48b82017-11-28 01:13:40 +0000330 Type *Ty = Float64 ? Type::getDoubleTy(Context) : Type::getFloatTy(Context);
331
Heejin Ahn18c56a02019-02-04 19:13:39 +0000332 const BasicBlock *LLVMBB = BB->getBasicBlock();
Dan Gohmancdd48b82017-11-28 01:13:40 +0000333 MachineFunction *F = BB->getParent();
Heejin Ahn18c56a02019-02-04 19:13:39 +0000334 MachineBasicBlock *TrueMBB = F->CreateMachineBasicBlock(LLVMBB);
335 MachineBasicBlock *FalseMBB = F->CreateMachineBasicBlock(LLVMBB);
336 MachineBasicBlock *DoneMBB = F->CreateMachineBasicBlock(LLVMBB);
Dan Gohmancdd48b82017-11-28 01:13:40 +0000337
338 MachineFunction::iterator It = ++BB->getIterator();
339 F->insert(It, FalseMBB);
340 F->insert(It, TrueMBB);
341 F->insert(It, DoneMBB);
342
343 // Transfer the remainder of BB and its successor edges to DoneMBB.
344 DoneMBB->splice(DoneMBB->begin(), BB,
Heejin Ahnf208f632018-09-05 01:27:38 +0000345 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohmancdd48b82017-11-28 01:13:40 +0000346 DoneMBB->transferSuccessorsAndUpdatePHIs(BB);
347
348 BB->addSuccessor(TrueMBB);
349 BB->addSuccessor(FalseMBB);
350 TrueMBB->addSuccessor(DoneMBB);
351 FalseMBB->addSuccessor(DoneMBB);
352
Dan Gohman580c1022017-11-29 20:20:11 +0000353 unsigned Tmp0, Tmp1, CmpReg, EqzReg, FalseReg, TrueReg;
Dan Gohmancdd48b82017-11-28 01:13:40 +0000354 Tmp0 = MRI.createVirtualRegister(MRI.getRegClass(InReg));
355 Tmp1 = MRI.createVirtualRegister(MRI.getRegClass(InReg));
Dan Gohman580c1022017-11-29 20:20:11 +0000356 CmpReg = MRI.createVirtualRegister(&WebAssembly::I32RegClass);
357 EqzReg = MRI.createVirtualRegister(&WebAssembly::I32RegClass);
358 FalseReg = MRI.createVirtualRegister(MRI.getRegClass(OutReg));
359 TrueReg = MRI.createVirtualRegister(MRI.getRegClass(OutReg));
Dan Gohmancdd48b82017-11-28 01:13:40 +0000360
361 MI.eraseFromParent();
Dan Gohman580c1022017-11-29 20:20:11 +0000362 // For signed numbers, we can do a single comparison to determine whether
363 // fabs(x) is within range.
Dan Gohmancdd48b82017-11-28 01:13:40 +0000364 if (IsUnsigned) {
365 Tmp0 = InReg;
366 } else {
Heejin Ahnf208f632018-09-05 01:27:38 +0000367 BuildMI(BB, DL, TII.get(Abs), Tmp0).addReg(InReg);
Dan Gohmancdd48b82017-11-28 01:13:40 +0000368 }
369 BuildMI(BB, DL, TII.get(FConst), Tmp1)
370 .addFPImm(cast<ConstantFP>(ConstantFP::get(Ty, CmpVal)));
Heejin Ahnf208f632018-09-05 01:27:38 +0000371 BuildMI(BB, DL, TII.get(LT), CmpReg).addReg(Tmp0).addReg(Tmp1);
Dan Gohman580c1022017-11-29 20:20:11 +0000372
373 // For unsigned numbers, we have to do a separate comparison with zero.
374 if (IsUnsigned) {
375 Tmp1 = MRI.createVirtualRegister(MRI.getRegClass(InReg));
Heejin Ahnf208f632018-09-05 01:27:38 +0000376 unsigned SecondCmpReg =
377 MRI.createVirtualRegister(&WebAssembly::I32RegClass);
Dan Gohman580c1022017-11-29 20:20:11 +0000378 unsigned AndReg = MRI.createVirtualRegister(&WebAssembly::I32RegClass);
379 BuildMI(BB, DL, TII.get(FConst), Tmp1)
380 .addFPImm(cast<ConstantFP>(ConstantFP::get(Ty, 0.0)));
Heejin Ahnf208f632018-09-05 01:27:38 +0000381 BuildMI(BB, DL, TII.get(GE), SecondCmpReg).addReg(Tmp0).addReg(Tmp1);
382 BuildMI(BB, DL, TII.get(And), AndReg).addReg(CmpReg).addReg(SecondCmpReg);
Dan Gohman580c1022017-11-29 20:20:11 +0000383 CmpReg = AndReg;
384 }
385
Heejin Ahnf208f632018-09-05 01:27:38 +0000386 BuildMI(BB, DL, TII.get(Eqz), EqzReg).addReg(CmpReg);
Dan Gohman580c1022017-11-29 20:20:11 +0000387
388 // Create the CFG diamond to select between doing the conversion or using
389 // the substitute value.
Heejin Ahnf208f632018-09-05 01:27:38 +0000390 BuildMI(BB, DL, TII.get(WebAssembly::BR_IF)).addMBB(TrueMBB).addReg(EqzReg);
391 BuildMI(FalseMBB, DL, TII.get(LoweredOpcode), FalseReg).addReg(InReg);
392 BuildMI(FalseMBB, DL, TII.get(WebAssembly::BR)).addMBB(DoneMBB);
393 BuildMI(TrueMBB, DL, TII.get(IConst), TrueReg).addImm(Substitute);
Dan Gohmancdd48b82017-11-28 01:13:40 +0000394 BuildMI(*DoneMBB, DoneMBB->begin(), DL, TII.get(TargetOpcode::PHI), OutReg)
Dan Gohman580c1022017-11-29 20:20:11 +0000395 .addReg(FalseReg)
Dan Gohmancdd48b82017-11-28 01:13:40 +0000396 .addMBB(FalseMBB)
Dan Gohman580c1022017-11-29 20:20:11 +0000397 .addReg(TrueReg)
Dan Gohmancdd48b82017-11-28 01:13:40 +0000398 .addMBB(TrueMBB);
399
400 return DoneMBB;
401}
402
Heejin Ahnf208f632018-09-05 01:27:38 +0000403MachineBasicBlock *WebAssemblyTargetLowering::EmitInstrWithCustomInserter(
404 MachineInstr &MI, MachineBasicBlock *BB) const {
Dan Gohmancdd48b82017-11-28 01:13:40 +0000405 const TargetInstrInfo &TII = *Subtarget->getInstrInfo();
406 DebugLoc DL = MI.getDebugLoc();
407
408 switch (MI.getOpcode()) {
Heejin Ahnf208f632018-09-05 01:27:38 +0000409 default:
410 llvm_unreachable("Unexpected instr type to insert");
Dan Gohmancdd48b82017-11-28 01:13:40 +0000411 case WebAssembly::FP_TO_SINT_I32_F32:
412 return LowerFPToInt(MI, DL, BB, TII, false, false, false,
413 WebAssembly::I32_TRUNC_S_F32);
414 case WebAssembly::FP_TO_UINT_I32_F32:
415 return LowerFPToInt(MI, DL, BB, TII, true, false, false,
416 WebAssembly::I32_TRUNC_U_F32);
417 case WebAssembly::FP_TO_SINT_I64_F32:
418 return LowerFPToInt(MI, DL, BB, TII, false, true, false,
419 WebAssembly::I64_TRUNC_S_F32);
420 case WebAssembly::FP_TO_UINT_I64_F32:
421 return LowerFPToInt(MI, DL, BB, TII, true, true, false,
422 WebAssembly::I64_TRUNC_U_F32);
423 case WebAssembly::FP_TO_SINT_I32_F64:
424 return LowerFPToInt(MI, DL, BB, TII, false, false, true,
425 WebAssembly::I32_TRUNC_S_F64);
426 case WebAssembly::FP_TO_UINT_I32_F64:
427 return LowerFPToInt(MI, DL, BB, TII, true, false, true,
428 WebAssembly::I32_TRUNC_U_F64);
429 case WebAssembly::FP_TO_SINT_I64_F64:
430 return LowerFPToInt(MI, DL, BB, TII, false, true, true,
431 WebAssembly::I64_TRUNC_S_F64);
432 case WebAssembly::FP_TO_UINT_I64_F64:
433 return LowerFPToInt(MI, DL, BB, TII, true, true, true,
434 WebAssembly::I64_TRUNC_U_F64);
Heejin Ahnf208f632018-09-05 01:27:38 +0000435 llvm_unreachable("Unexpected instruction to emit with custom inserter");
Dan Gohmancdd48b82017-11-28 01:13:40 +0000436 }
437}
438
Heejin Ahnf208f632018-09-05 01:27:38 +0000439const char *
440WebAssemblyTargetLowering::getTargetNodeName(unsigned Opcode) const {
JF Bastien480c8402015-08-11 20:13:18 +0000441 switch (static_cast<WebAssemblyISD::NodeType>(Opcode)) {
Heejin Ahnf208f632018-09-05 01:27:38 +0000442 case WebAssemblyISD::FIRST_NUMBER:
443 break;
444#define HANDLE_NODETYPE(NODE) \
445 case WebAssemblyISD::NODE: \
JF Bastienaf111db2015-08-24 22:16:48 +0000446 return "WebAssemblyISD::" #NODE;
447#include "WebAssemblyISD.def"
448#undef HANDLE_NODETYPE
JF Bastien480c8402015-08-11 20:13:18 +0000449 }
450 return nullptr;
451}
452
Dan Gohmanf19ed562015-11-13 01:42:29 +0000453std::pair<unsigned, const TargetRegisterClass *>
454WebAssemblyTargetLowering::getRegForInlineAsmConstraint(
455 const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const {
456 // First, see if this is a constraint that directly corresponds to a
457 // WebAssembly register class.
458 if (Constraint.size() == 1) {
459 switch (Constraint[0]) {
Heejin Ahnf208f632018-09-05 01:27:38 +0000460 case 'r':
461 assert(VT != MVT::iPTR && "Pointer MVT not expected here");
462 if (Subtarget->hasSIMD128() && VT.isVector()) {
463 if (VT.getSizeInBits() == 128)
464 return std::make_pair(0U, &WebAssembly::V128RegClass);
465 }
466 if (VT.isInteger() && !VT.isVector()) {
467 if (VT.getSizeInBits() <= 32)
468 return std::make_pair(0U, &WebAssembly::I32RegClass);
469 if (VT.getSizeInBits() <= 64)
470 return std::make_pair(0U, &WebAssembly::I64RegClass);
471 }
472 break;
473 default:
474 break;
Dan Gohmanf19ed562015-11-13 01:42:29 +0000475 }
476 }
477
478 return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
479}
480
Dan Gohman3192ddf2015-11-19 23:04:59 +0000481bool WebAssemblyTargetLowering::isCheapToSpeculateCttz() const {
482 // Assume ctz is a relatively cheap operation.
483 return true;
484}
485
486bool WebAssemblyTargetLowering::isCheapToSpeculateCtlz() const {
487 // Assume clz is a relatively cheap operation.
488 return true;
489}
490
Dan Gohman4b9d7912015-12-15 22:01:29 +0000491bool WebAssemblyTargetLowering::isLegalAddressingMode(const DataLayout &DL,
492 const AddrMode &AM,
Heejin Ahnf208f632018-09-05 01:27:38 +0000493 Type *Ty, unsigned AS,
Jonas Paulsson024e3192017-07-21 11:59:37 +0000494 Instruction *I) const {
Dan Gohman4b9d7912015-12-15 22:01:29 +0000495 // WebAssembly offsets are added as unsigned without wrapping. The
496 // isLegalAddressingMode gives us no way to determine if wrapping could be
497 // happening, so we approximate this by accepting only non-negative offsets.
Heejin Ahnf208f632018-09-05 01:27:38 +0000498 if (AM.BaseOffs < 0)
499 return false;
Dan Gohman4b9d7912015-12-15 22:01:29 +0000500
501 // WebAssembly has no scale register operands.
Heejin Ahnf208f632018-09-05 01:27:38 +0000502 if (AM.Scale != 0)
503 return false;
Dan Gohman4b9d7912015-12-15 22:01:29 +0000504
505 // Everything else is legal.
506 return true;
507}
508
Dan Gohmanbb372242016-01-26 03:39:31 +0000509bool WebAssemblyTargetLowering::allowsMisalignedMemoryAccesses(
Derek Schuff3f063292016-02-11 20:57:09 +0000510 EVT /*VT*/, unsigned /*AddrSpace*/, unsigned /*Align*/, bool *Fast) const {
Dan Gohmanbb372242016-01-26 03:39:31 +0000511 // WebAssembly supports unaligned accesses, though it should be declared
512 // with the p2align attribute on loads and stores which do so, and there
513 // may be a performance impact. We tell LLVM they're "fast" because
Dan Gohmanfb619e92016-01-26 14:55:17 +0000514 // for the kinds of things that LLVM uses this for (merging adjacent stores
Dan Gohmanbb372242016-01-26 03:39:31 +0000515 // of constants, etc.), WebAssembly implementations will either want the
516 // unaligned access or they'll split anyway.
Heejin Ahnf208f632018-09-05 01:27:38 +0000517 if (Fast)
518 *Fast = true;
Dan Gohmanbb372242016-01-26 03:39:31 +0000519 return true;
520}
521
Reid Klecknerb5180542017-03-21 16:57:19 +0000522bool WebAssemblyTargetLowering::isIntDivCheap(EVT VT,
523 AttributeList Attr) const {
Dan Gohmanb4c3c382016-05-18 14:29:42 +0000524 // The current thinking is that wasm engines will perform this optimization,
525 // so we can save on code size.
526 return true;
527}
528
Simon Pilgrim99f70162018-06-28 17:27:09 +0000529EVT WebAssemblyTargetLowering::getSetCCResultType(const DataLayout &DL,
530 LLVMContext &C,
531 EVT VT) const {
532 if (VT.isVector())
533 return VT.changeVectorElementTypeToInteger();
534
535 return TargetLowering::getSetCCResultType(DL, C, VT);
536}
537
Heejin Ahn4128cb02018-08-02 21:44:24 +0000538bool WebAssemblyTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
539 const CallInst &I,
540 MachineFunction &MF,
541 unsigned Intrinsic) const {
542 switch (Intrinsic) {
543 case Intrinsic::wasm_atomic_notify:
544 Info.opc = ISD::INTRINSIC_W_CHAIN;
545 Info.memVT = MVT::i32;
546 Info.ptrVal = I.getArgOperand(0);
547 Info.offset = 0;
548 Info.align = 4;
549 // atomic.notify instruction does not really load the memory specified with
550 // this argument, but MachineMemOperand should either be load or store, so
551 // we set this to a load.
552 // FIXME Volatile isn't really correct, but currently all LLVM atomic
553 // instructions are treated as volatiles in the backend, so we should be
554 // consistent. The same applies for wasm_atomic_wait intrinsics too.
555 Info.flags = MachineMemOperand::MOVolatile | MachineMemOperand::MOLoad;
556 return true;
557 case Intrinsic::wasm_atomic_wait_i32:
558 Info.opc = ISD::INTRINSIC_W_CHAIN;
559 Info.memVT = MVT::i32;
560 Info.ptrVal = I.getArgOperand(0);
561 Info.offset = 0;
562 Info.align = 4;
563 Info.flags = MachineMemOperand::MOVolatile | MachineMemOperand::MOLoad;
564 return true;
565 case Intrinsic::wasm_atomic_wait_i64:
566 Info.opc = ISD::INTRINSIC_W_CHAIN;
567 Info.memVT = MVT::i64;
568 Info.ptrVal = I.getArgOperand(0);
569 Info.offset = 0;
570 Info.align = 8;
571 Info.flags = MachineMemOperand::MOVolatile | MachineMemOperand::MOLoad;
572 return true;
573 default:
574 return false;
575 }
576}
577
Dan Gohman10e730a2015-06-29 23:51:55 +0000578//===----------------------------------------------------------------------===//
579// WebAssembly Lowering private implementation.
580//===----------------------------------------------------------------------===//
581
582//===----------------------------------------------------------------------===//
583// Lowering Code
584//===----------------------------------------------------------------------===//
585
Heejin Ahn18c56a02019-02-04 19:13:39 +0000586static void fail(const SDLoc &DL, SelectionDAG &DAG, const char *Msg) {
JF Bastienb9073fb2015-07-22 21:28:15 +0000587 MachineFunction &MF = DAG.getMachineFunction();
588 DAG.getContext()->diagnose(
Heejin Ahn18c56a02019-02-04 19:13:39 +0000589 DiagnosticInfoUnsupported(MF.getFunction(), Msg, DL.getDebugLoc()));
JF Bastienb9073fb2015-07-22 21:28:15 +0000590}
591
Dan Gohman85dbdda2015-12-04 17:16:07 +0000592// Test whether the given calling convention is supported.
Heejin Ahn18c56a02019-02-04 19:13:39 +0000593static bool callingConvSupported(CallingConv::ID CallConv) {
Dan Gohman85dbdda2015-12-04 17:16:07 +0000594 // We currently support the language-independent target-independent
Dan Gohman1ce2b1a2015-12-04 18:27:03 +0000595 // conventions. We don't yet have a way to annotate calls with properties like
596 // "cold", and we don't have any call-clobbered registers, so these are mostly
597 // all handled the same.
Dan Gohmana3f5ce52015-12-04 17:18:32 +0000598 return CallConv == CallingConv::C || CallConv == CallingConv::Fast ||
Dan Gohman1ce2b1a2015-12-04 18:27:03 +0000599 CallConv == CallingConv::Cold ||
600 CallConv == CallingConv::PreserveMost ||
601 CallConv == CallingConv::PreserveAll ||
602 CallConv == CallingConv::CXX_FAST_TLS;
Dan Gohman85dbdda2015-12-04 17:16:07 +0000603}
604
Heejin Ahnf208f632018-09-05 01:27:38 +0000605SDValue
606WebAssemblyTargetLowering::LowerCall(CallLoweringInfo &CLI,
607 SmallVectorImpl<SDValue> &InVals) const {
JF Bastiend8a9d662015-08-24 21:59:51 +0000608 SelectionDAG &DAG = CLI.DAG;
609 SDLoc DL = CLI.DL;
610 SDValue Chain = CLI.Chain;
611 SDValue Callee = CLI.Callee;
612 MachineFunction &MF = DAG.getMachineFunction();
Derek Schuff992d83f2016-02-10 20:14:15 +0000613 auto Layout = MF.getDataLayout();
JF Bastiend8a9d662015-08-24 21:59:51 +0000614
615 CallingConv::ID CallConv = CLI.CallConv;
Heejin Ahn18c56a02019-02-04 19:13:39 +0000616 if (!callingConvSupported(CallConv))
Dan Gohman9cc692b2015-10-02 20:54:23 +0000617 fail(DL, DAG,
618 "WebAssembly doesn't support language-specific or target-specific "
619 "calling conventions yet");
JF Bastiend8a9d662015-08-24 21:59:51 +0000620 if (CLI.IsPatchPoint)
621 fail(DL, DAG, "WebAssembly doesn't support patch point yet");
622
Dan Gohman9cc692b2015-10-02 20:54:23 +0000623 // WebAssembly doesn't currently support explicit tail calls. If they are
624 // required, fail. Otherwise, just disable them.
625 if ((CallConv == CallingConv::Fast && CLI.IsTailCall &&
626 MF.getTarget().Options.GuaranteedTailCallOpt) ||
Peter Collingbourne081ffe22017-07-26 19:15:29 +0000627 (CLI.CS && CLI.CS.isMustTailCall()))
Dan Gohman9cc692b2015-10-02 20:54:23 +0000628 fail(DL, DAG, "WebAssembly doesn't support tail call yet");
629 CLI.IsTailCall = false;
630
JF Bastiend8a9d662015-08-24 21:59:51 +0000631 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Dan Gohmane590b332015-09-09 01:52:45 +0000632 if (Ins.size() > 1)
633 fail(DL, DAG, "WebAssembly doesn't support more than 1 returned value yet");
634
Dan Gohman2d822e72015-12-04 17:12:52 +0000635 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
Derek Schuff4dd67782016-01-27 21:17:39 +0000636 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
Dan Gohman910ba332018-06-26 03:18:38 +0000637 unsigned NumFixedArgs = 0;
Heejin Ahn18c56a02019-02-04 19:13:39 +0000638 for (unsigned I = 0; I < Outs.size(); ++I) {
639 const ISD::OutputArg &Out = Outs[I];
640 SDValue &OutVal = OutVals[I];
Dan Gohman7935fa32015-12-10 00:22:40 +0000641 if (Out.Flags.isNest())
642 fail(DL, DAG, "WebAssembly hasn't implemented nest arguments");
Dan Gohman2d822e72015-12-04 17:12:52 +0000643 if (Out.Flags.isInAlloca())
Dan Gohman7935fa32015-12-10 00:22:40 +0000644 fail(DL, DAG, "WebAssembly hasn't implemented inalloca arguments");
Dan Gohman2d822e72015-12-04 17:12:52 +0000645 if (Out.Flags.isInConsecutiveRegs())
Dan Gohman7935fa32015-12-10 00:22:40 +0000646 fail(DL, DAG, "WebAssembly hasn't implemented cons regs arguments");
Dan Gohman2d822e72015-12-04 17:12:52 +0000647 if (Out.Flags.isInConsecutiveRegsLast())
Dan Gohman7935fa32015-12-10 00:22:40 +0000648 fail(DL, DAG, "WebAssembly hasn't implemented cons regs last arguments");
Dan Gohmana6771b32016-02-12 21:30:18 +0000649 if (Out.Flags.isByVal() && Out.Flags.getByValSize() != 0) {
Matthias Braun941a7052016-07-28 18:40:00 +0000650 auto &MFI = MF.getFrameInfo();
651 int FI = MFI.CreateStackObject(Out.Flags.getByValSize(),
652 Out.Flags.getByValAlign(),
653 /*isSS=*/false);
Derek Schuff4dd67782016-01-27 21:17:39 +0000654 SDValue SizeNode =
655 DAG.getConstant(Out.Flags.getByValSize(), DL, MVT::i32);
Derek Schuff992d83f2016-02-10 20:14:15 +0000656 SDValue FINode = DAG.getFrameIndex(FI, getPointerTy(Layout));
Derek Schuff4dd67782016-01-27 21:17:39 +0000657 Chain = DAG.getMemcpy(
658 Chain, DL, FINode, OutVal, SizeNode, Out.Flags.getByValAlign(),
Dan Gohman476ffce2016-02-17 01:43:37 +0000659 /*isVolatile*/ false, /*AlwaysInline=*/false,
Derek Schuff4dd67782016-01-27 21:17:39 +0000660 /*isTailCall*/ false, MachinePointerInfo(), MachinePointerInfo());
661 OutVal = FINode;
662 }
Dan Gohman910ba332018-06-26 03:18:38 +0000663 // Count the number of fixed args *after* legalization.
664 NumFixedArgs += Out.IsFixed;
Dan Gohman2d822e72015-12-04 17:12:52 +0000665 }
666
JF Bastiend8a9d662015-08-24 21:59:51 +0000667 bool IsVarArg = CLI.IsVarArg;
Derek Schuff992d83f2016-02-10 20:14:15 +0000668 auto PtrVT = getPointerTy(Layout);
Dan Gohmane590b332015-09-09 01:52:45 +0000669
JF Bastiend8a9d662015-08-24 21:59:51 +0000670 // Analyze operands of the call, assigning locations to each operand.
671 SmallVector<CCValAssign, 16> ArgLocs;
672 CCState CCInfo(CallConv, IsVarArg, MF, ArgLocs, *DAG.getContext());
JF Bastiend8a9d662015-08-24 21:59:51 +0000673
Dan Gohman35bfb242015-12-04 23:22:35 +0000674 if (IsVarArg) {
Derek Schuff27501e22016-02-10 19:51:04 +0000675 // Outgoing non-fixed arguments are placed in a buffer. First
676 // compute their offsets and the total amount of buffer space needed.
Dan Gohmanc71132c2019-02-26 05:20:19 +0000677 for (unsigned I = NumFixedArgs; I < Outs.size(); ++I) {
678 const ISD::OutputArg &Out = Outs[I];
679 SDValue &Arg = OutVals[I];
Dan Gohman35bfb242015-12-04 23:22:35 +0000680 EVT VT = Arg.getValueType();
681 assert(VT != MVT::iPTR && "Legalized args should be concrete");
682 Type *Ty = VT.getTypeForEVT(*DAG.getContext());
Dan Gohmanc71132c2019-02-26 05:20:19 +0000683 unsigned Align = std::max(Out.Flags.getOrigAlign(),
684 Layout.getABITypeAlignment(Ty));
Derek Schuff992d83f2016-02-10 20:14:15 +0000685 unsigned Offset = CCInfo.AllocateStack(Layout.getTypeAllocSize(Ty),
Dan Gohmanc71132c2019-02-26 05:20:19 +0000686 Align);
Dan Gohman35bfb242015-12-04 23:22:35 +0000687 CCInfo.addLoc(CCValAssign::getMem(ArgLocs.size(), VT.getSimpleVT(),
688 Offset, VT.getSimpleVT(),
689 CCValAssign::Full));
690 }
691 }
692
693 unsigned NumBytes = CCInfo.getAlignedCallFrameSize();
694
Derek Schuff27501e22016-02-10 19:51:04 +0000695 SDValue FINode;
696 if (IsVarArg && NumBytes) {
Dan Gohman35bfb242015-12-04 23:22:35 +0000697 // For non-fixed arguments, next emit stores to store the argument values
Derek Schuff27501e22016-02-10 19:51:04 +0000698 // to the stack buffer at the offsets computed above.
Matthias Braun941a7052016-07-28 18:40:00 +0000699 int FI = MF.getFrameInfo().CreateStackObject(NumBytes,
700 Layout.getStackAlignment(),
701 /*isSS=*/false);
Dan Gohman35bfb242015-12-04 23:22:35 +0000702 unsigned ValNo = 0;
703 SmallVector<SDValue, 8> Chains;
704 for (SDValue Arg :
705 make_range(OutVals.begin() + NumFixedArgs, OutVals.end())) {
706 assert(ArgLocs[ValNo].getValNo() == ValNo &&
707 "ArgLocs should remain in order and only hold varargs args");
708 unsigned Offset = ArgLocs[ValNo++].getLocMemOffset();
Derek Schuff992d83f2016-02-10 20:14:15 +0000709 FINode = DAG.getFrameIndex(FI, getPointerTy(Layout));
Derek Schuff27501e22016-02-10 19:51:04 +0000710 SDValue Add = DAG.getNode(ISD::ADD, DL, PtrVT, FINode,
Dan Gohman35bfb242015-12-04 23:22:35 +0000711 DAG.getConstant(Offset, DL, PtrVT));
Heejin Ahnf208f632018-09-05 01:27:38 +0000712 Chains.push_back(
713 DAG.getStore(Chain, DL, Arg, Add,
714 MachinePointerInfo::getFixedStack(MF, FI, Offset), 0));
Dan Gohman35bfb242015-12-04 23:22:35 +0000715 }
716 if (!Chains.empty())
717 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chains);
Derek Schuff27501e22016-02-10 19:51:04 +0000718 } else if (IsVarArg) {
719 FINode = DAG.getIntPtrConstant(0, DL);
Dan Gohman35bfb242015-12-04 23:22:35 +0000720 }
721
722 // Compute the operands for the CALLn node.
JF Bastiend8a9d662015-08-24 21:59:51 +0000723 SmallVector<SDValue, 16> Ops;
724 Ops.push_back(Chain);
JF Bastienaf111db2015-08-24 22:16:48 +0000725 Ops.push_back(Callee);
Dan Gohman35bfb242015-12-04 23:22:35 +0000726
727 // Add all fixed arguments. Note that for non-varargs calls, NumFixedArgs
728 // isn't reliable.
729 Ops.append(OutVals.begin(),
730 IsVarArg ? OutVals.begin() + NumFixedArgs : OutVals.end());
Derek Schuff27501e22016-02-10 19:51:04 +0000731 // Add a pointer to the vararg buffer.
Heejin Ahnf208f632018-09-05 01:27:38 +0000732 if (IsVarArg)
733 Ops.push_back(FINode);
JF Bastiend8a9d662015-08-24 21:59:51 +0000734
Derek Schuff27501e22016-02-10 19:51:04 +0000735 SmallVector<EVT, 8> InTys;
Dan Gohman2d822e72015-12-04 17:12:52 +0000736 for (const auto &In : Ins) {
Dan Gohman7935fa32015-12-10 00:22:40 +0000737 assert(!In.Flags.isByVal() && "byval is not valid for return values");
738 assert(!In.Flags.isNest() && "nest is not valid for return values");
Dan Gohman2d822e72015-12-04 17:12:52 +0000739 if (In.Flags.isInAlloca())
Dan Gohman7935fa32015-12-10 00:22:40 +0000740 fail(DL, DAG, "WebAssembly hasn't implemented inalloca return values");
Dan Gohman2d822e72015-12-04 17:12:52 +0000741 if (In.Flags.isInConsecutiveRegs())
Dan Gohman7935fa32015-12-10 00:22:40 +0000742 fail(DL, DAG, "WebAssembly hasn't implemented cons regs return values");
Dan Gohman2d822e72015-12-04 17:12:52 +0000743 if (In.Flags.isInConsecutiveRegsLast())
Dan Gohman4b9d7912015-12-15 22:01:29 +0000744 fail(DL, DAG,
745 "WebAssembly hasn't implemented cons regs last return values");
Dan Gohman2d822e72015-12-04 17:12:52 +0000746 // Ignore In.getOrigAlign() because all our arguments are passed in
747 // registers.
Derek Schuff27501e22016-02-10 19:51:04 +0000748 InTys.push_back(In.VT);
Dan Gohman2d822e72015-12-04 17:12:52 +0000749 }
Derek Schuff27501e22016-02-10 19:51:04 +0000750 InTys.push_back(MVT::Other);
751 SDVTList InTyList = DAG.getVTList(InTys);
Dan Gohmanf71abef2015-09-09 16:13:47 +0000752 SDValue Res =
753 DAG.getNode(Ins.empty() ? WebAssemblyISD::CALL0 : WebAssemblyISD::CALL1,
Derek Schuff27501e22016-02-10 19:51:04 +0000754 DL, InTyList, Ops);
JF Bastienaf111db2015-08-24 22:16:48 +0000755 if (Ins.empty()) {
756 Chain = Res;
757 } else {
758 InVals.push_back(Res);
759 Chain = Res.getValue(1);
760 }
JF Bastiend8a9d662015-08-24 21:59:51 +0000761
JF Bastiend8a9d662015-08-24 21:59:51 +0000762 return Chain;
763}
764
JF Bastienb9073fb2015-07-22 21:28:15 +0000765bool WebAssemblyTargetLowering::CanLowerReturn(
Dan Gohman7a6b9822015-11-29 22:32:02 +0000766 CallingConv::ID /*CallConv*/, MachineFunction & /*MF*/, bool /*IsVarArg*/,
767 const SmallVectorImpl<ISD::OutputArg> &Outs,
768 LLVMContext & /*Context*/) const {
JF Bastienb9073fb2015-07-22 21:28:15 +0000769 // WebAssembly can't currently handle returning tuples.
770 return Outs.size() <= 1;
771}
772
773SDValue WebAssemblyTargetLowering::LowerReturn(
Dan Gohman35bfb242015-12-04 23:22:35 +0000774 SDValue Chain, CallingConv::ID CallConv, bool /*IsVarArg*/,
JF Bastienb9073fb2015-07-22 21:28:15 +0000775 const SmallVectorImpl<ISD::OutputArg> &Outs,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000776 const SmallVectorImpl<SDValue> &OutVals, const SDLoc &DL,
JF Bastienb9073fb2015-07-22 21:28:15 +0000777 SelectionDAG &DAG) const {
JF Bastienb9073fb2015-07-22 21:28:15 +0000778 assert(Outs.size() <= 1 && "WebAssembly can only return up to one value");
Heejin Ahn18c56a02019-02-04 19:13:39 +0000779 if (!callingConvSupported(CallConv))
JF Bastienb9073fb2015-07-22 21:28:15 +0000780 fail(DL, DAG, "WebAssembly doesn't support non-C calling conventions");
781
JF Bastien600aee92015-07-31 17:53:38 +0000782 SmallVector<SDValue, 4> RetOps(1, Chain);
783 RetOps.append(OutVals.begin(), OutVals.end());
JF Bastien4a2d5602015-07-31 21:04:18 +0000784 Chain = DAG.getNode(WebAssemblyISD::RETURN, DL, MVT::Other, RetOps);
JF Bastienb9073fb2015-07-22 21:28:15 +0000785
Dan Gohman754cd112015-11-11 01:33:02 +0000786 // Record the number and types of the return values.
787 for (const ISD::OutputArg &Out : Outs) {
Dan Gohmanac132e92015-12-02 23:40:03 +0000788 assert(!Out.Flags.isByVal() && "byval is not valid for return values");
789 assert(!Out.Flags.isNest() && "nest is not valid for return values");
Dan Gohman35bfb242015-12-04 23:22:35 +0000790 assert(Out.IsFixed && "non-fixed return value is not valid");
Dan Gohman754cd112015-11-11 01:33:02 +0000791 if (Out.Flags.isInAlloca())
792 fail(DL, DAG, "WebAssembly hasn't implemented inalloca results");
Dan Gohman754cd112015-11-11 01:33:02 +0000793 if (Out.Flags.isInConsecutiveRegs())
794 fail(DL, DAG, "WebAssembly hasn't implemented cons regs results");
795 if (Out.Flags.isInConsecutiveRegsLast())
796 fail(DL, DAG, "WebAssembly hasn't implemented cons regs last results");
Dan Gohman754cd112015-11-11 01:33:02 +0000797 }
798
JF Bastienb9073fb2015-07-22 21:28:15 +0000799 return Chain;
800}
801
802SDValue WebAssemblyTargetLowering::LowerFormalArguments(
Derek Schuff27501e22016-02-10 19:51:04 +0000803 SDValue Chain, CallingConv::ID CallConv, bool IsVarArg,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000804 const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &DL,
805 SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const {
Heejin Ahn18c56a02019-02-04 19:13:39 +0000806 if (!callingConvSupported(CallConv))
JF Bastienb9073fb2015-07-22 21:28:15 +0000807 fail(DL, DAG, "WebAssembly doesn't support non-C calling conventions");
JF Bastienb9073fb2015-07-22 21:28:15 +0000808
Dan Gohman2726b882016-10-06 22:29:32 +0000809 MachineFunction &MF = DAG.getMachineFunction();
810 auto *MFI = MF.getInfo<WebAssemblyFunctionInfo>();
811
Dan Gohmanfb3e0592015-11-25 19:36:19 +0000812 // Set up the incoming ARGUMENTS value, which serves to represent the liveness
813 // of the incoming values before they're represented by virtual registers.
814 MF.getRegInfo().addLiveIn(WebAssembly::ARGUMENTS);
815
JF Bastien600aee92015-07-31 17:53:38 +0000816 for (const ISD::InputArg &In : Ins) {
JF Bastien600aee92015-07-31 17:53:38 +0000817 if (In.Flags.isInAlloca())
818 fail(DL, DAG, "WebAssembly hasn't implemented inalloca arguments");
819 if (In.Flags.isNest())
820 fail(DL, DAG, "WebAssembly hasn't implemented nest arguments");
JF Bastien600aee92015-07-31 17:53:38 +0000821 if (In.Flags.isInConsecutiveRegs())
822 fail(DL, DAG, "WebAssembly hasn't implemented cons regs arguments");
823 if (In.Flags.isInConsecutiveRegsLast())
824 fail(DL, DAG, "WebAssembly hasn't implemented cons regs last arguments");
Dan Gohman9c54d3b2015-11-25 18:13:18 +0000825 // Ignore In.getOrigAlign() because all our arguments are passed in
826 // registers.
Heejin Ahnf208f632018-09-05 01:27:38 +0000827 InVals.push_back(In.Used ? DAG.getNode(WebAssemblyISD::ARGUMENT, DL, In.VT,
828 DAG.getTargetConstant(InVals.size(),
829 DL, MVT::i32))
830 : DAG.getUNDEF(In.VT));
Dan Gohman754cd112015-11-11 01:33:02 +0000831
832 // Record the number and types of arguments.
Derek Schuff27501e22016-02-10 19:51:04 +0000833 MFI->addParam(In.VT);
JF Bastien600aee92015-07-31 17:53:38 +0000834 }
JF Bastienb9073fb2015-07-22 21:28:15 +0000835
Derek Schuff27501e22016-02-10 19:51:04 +0000836 // Varargs are copied into a buffer allocated by the caller, and a pointer to
837 // the buffer is passed as an argument.
838 if (IsVarArg) {
839 MVT PtrVT = getPointerTy(MF.getDataLayout());
840 unsigned VarargVreg =
841 MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrVT));
842 MFI->setVarargBufferVreg(VarargVreg);
843 Chain = DAG.getCopyToReg(
844 Chain, DL, VarargVreg,
845 DAG.getNode(WebAssemblyISD::ARGUMENT, DL, PtrVT,
846 DAG.getTargetConstant(Ins.size(), DL, MVT::i32)));
847 MFI->addParam(PtrVT);
848 }
Dan Gohman35bfb242015-12-04 23:22:35 +0000849
Derek Schuff77a7a382018-10-03 22:22:48 +0000850 // Record the number and types of arguments and results.
Dan Gohman2726b882016-10-06 22:29:32 +0000851 SmallVector<MVT, 4> Params;
852 SmallVector<MVT, 4> Results;
Heejin Ahn18c56a02019-02-04 19:13:39 +0000853 computeSignatureVTs(MF.getFunction().getFunctionType(), MF.getFunction(),
Derek Schuff77a7a382018-10-03 22:22:48 +0000854 DAG.getTarget(), Params, Results);
Dan Gohman2726b882016-10-06 22:29:32 +0000855 for (MVT VT : Results)
856 MFI->addResult(VT);
Derek Schuff77a7a382018-10-03 22:22:48 +0000857 // TODO: Use signatures in WebAssemblyMachineFunctionInfo too and unify
858 // the param logic here with ComputeSignatureVTs
859 assert(MFI->getParams().size() == Params.size() &&
860 std::equal(MFI->getParams().begin(), MFI->getParams().end(),
861 Params.begin()));
Dan Gohman2726b882016-10-06 22:29:32 +0000862
JF Bastienb9073fb2015-07-22 21:28:15 +0000863 return Chain;
864}
865
Dan Gohman10e730a2015-06-29 23:51:55 +0000866//===----------------------------------------------------------------------===//
JF Bastienaf111db2015-08-24 22:16:48 +0000867// Custom lowering hooks.
Dan Gohman10e730a2015-06-29 23:51:55 +0000868//===----------------------------------------------------------------------===//
869
JF Bastienaf111db2015-08-24 22:16:48 +0000870SDValue WebAssemblyTargetLowering::LowerOperation(SDValue Op,
871 SelectionDAG &DAG) const {
Derek Schuff51699a82016-02-12 22:56:03 +0000872 SDLoc DL(Op);
JF Bastienaf111db2015-08-24 22:16:48 +0000873 switch (Op.getOpcode()) {
Heejin Ahnf208f632018-09-05 01:27:38 +0000874 default:
875 llvm_unreachable("unimplemented operation lowering");
876 return SDValue();
877 case ISD::FrameIndex:
878 return LowerFrameIndex(Op, DAG);
879 case ISD::GlobalAddress:
880 return LowerGlobalAddress(Op, DAG);
881 case ISD::ExternalSymbol:
882 return LowerExternalSymbol(Op, DAG);
883 case ISD::JumpTable:
884 return LowerJumpTable(Op, DAG);
885 case ISD::BR_JT:
886 return LowerBR_JT(Op, DAG);
887 case ISD::VASTART:
888 return LowerVASTART(Op, DAG);
889 case ISD::BlockAddress:
890 case ISD::BRIND:
891 fail(DL, DAG, "WebAssembly hasn't implemented computed gotos");
892 return SDValue();
893 case ISD::RETURNADDR: // Probably nothing meaningful can be returned here.
894 fail(DL, DAG, "WebAssembly hasn't implemented __builtin_return_address");
895 return SDValue();
896 case ISD::FRAMEADDR:
897 return LowerFRAMEADDR(Op, DAG);
898 case ISD::CopyToReg:
899 return LowerCopyToReg(Op, DAG);
Thomas Livelyfb84fd72018-11-02 00:06:56 +0000900 case ISD::EXTRACT_VECTOR_ELT:
901 case ISD::INSERT_VECTOR_ELT:
902 return LowerAccessVectorElement(Op, DAG);
Heejin Ahnda419bd2018-11-14 02:46:21 +0000903 case ISD::INTRINSIC_VOID:
Heejin Ahnd6f48782019-01-30 03:21:57 +0000904 case ISD::INTRINSIC_WO_CHAIN:
905 case ISD::INTRINSIC_W_CHAIN:
906 return LowerIntrinsic(Op, DAG);
Thomas Lively64a39a12019-01-10 22:32:11 +0000907 case ISD::SIGN_EXTEND_INREG:
908 return LowerSIGN_EXTEND_INREG(Op, DAG);
Thomas Lively079816e2019-01-30 02:23:29 +0000909 case ISD::BUILD_VECTOR:
910 return LowerBUILD_VECTOR(Op, DAG);
Thomas Livelya0d25812018-09-07 21:54:46 +0000911 case ISD::VECTOR_SHUFFLE:
912 return LowerVECTOR_SHUFFLE(Op, DAG);
Thomas Lively55735d52018-10-20 01:31:18 +0000913 case ISD::SHL:
914 case ISD::SRA:
915 case ISD::SRL:
916 return LowerShift(Op, DAG);
JF Bastienaf111db2015-08-24 22:16:48 +0000917 }
918}
919
Derek Schuffaadc89c2016-02-16 18:18:36 +0000920SDValue WebAssemblyTargetLowering::LowerCopyToReg(SDValue Op,
921 SelectionDAG &DAG) const {
922 SDValue Src = Op.getOperand(2);
923 if (isa<FrameIndexSDNode>(Src.getNode())) {
924 // CopyToReg nodes don't support FrameIndex operands. Other targets select
925 // the FI to some LEA-like instruction, but since we don't have that, we
926 // need to insert some kind of instruction that can take an FI operand and
927 // produces a value usable by CopyToReg (i.e. in a vreg). So insert a dummy
Thomas Lively6a87dda2019-01-08 06:25:55 +0000928 // local.copy between Op and its FI operand.
Dan Gohman02c08712016-02-20 23:09:44 +0000929 SDValue Chain = Op.getOperand(0);
Derek Schuffaadc89c2016-02-16 18:18:36 +0000930 SDLoc DL(Op);
Dan Gohman02c08712016-02-20 23:09:44 +0000931 unsigned Reg = cast<RegisterSDNode>(Op.getOperand(1))->getReg();
Derek Schuffaadc89c2016-02-16 18:18:36 +0000932 EVT VT = Src.getValueType();
Heejin Ahnf208f632018-09-05 01:27:38 +0000933 SDValue Copy(DAG.getMachineNode(VT == MVT::i32 ? WebAssembly::COPY_I32
934 : WebAssembly::COPY_I64,
935 DL, VT, Src),
936 0);
Dan Gohman02c08712016-02-20 23:09:44 +0000937 return Op.getNode()->getNumValues() == 1
938 ? DAG.getCopyToReg(Chain, DL, Reg, Copy)
Heejin Ahnf208f632018-09-05 01:27:38 +0000939 : DAG.getCopyToReg(Chain, DL, Reg, Copy,
940 Op.getNumOperands() == 4 ? Op.getOperand(3)
941 : SDValue());
Derek Schuffaadc89c2016-02-16 18:18:36 +0000942 }
943 return SDValue();
944}
945
Derek Schuff9769deb2015-12-11 23:49:46 +0000946SDValue WebAssemblyTargetLowering::LowerFrameIndex(SDValue Op,
947 SelectionDAG &DAG) const {
948 int FI = cast<FrameIndexSDNode>(Op)->getIndex();
949 return DAG.getTargetFrameIndex(FI, Op.getValueType());
950}
951
Dan Gohman94c65662016-02-16 23:48:04 +0000952SDValue WebAssemblyTargetLowering::LowerFRAMEADDR(SDValue Op,
953 SelectionDAG &DAG) const {
954 // Non-zero depths are not supported by WebAssembly currently. Use the
955 // legalizer's default expansion, which is to return 0 (what this function is
956 // documented to do).
Dan Gohman1d547bf2016-02-17 00:14:03 +0000957 if (Op.getConstantOperandVal(0) > 0)
Dan Gohman94c65662016-02-16 23:48:04 +0000958 return SDValue();
959
Matthias Braun941a7052016-07-28 18:40:00 +0000960 DAG.getMachineFunction().getFrameInfo().setFrameAddressIsTaken(true);
Dan Gohman94c65662016-02-16 23:48:04 +0000961 EVT VT = Op.getValueType();
962 unsigned FP =
963 Subtarget->getRegisterInfo()->getFrameRegister(DAG.getMachineFunction());
964 return DAG.getCopyFromReg(DAG.getEntryNode(), SDLoc(Op), FP, VT);
965}
966
JF Bastienaf111db2015-08-24 22:16:48 +0000967SDValue WebAssemblyTargetLowering::LowerGlobalAddress(SDValue Op,
968 SelectionDAG &DAG) const {
969 SDLoc DL(Op);
970 const auto *GA = cast<GlobalAddressSDNode>(Op);
971 EVT VT = Op.getValueType();
Dan Gohman26c67652016-01-11 23:38:05 +0000972 assert(GA->getTargetFlags() == 0 &&
973 "Unexpected target flags on generic GlobalAddressSDNode");
JF Bastienaf111db2015-08-24 22:16:48 +0000974 if (GA->getAddressSpace() != 0)
975 fail(DL, DAG, "WebAssembly only expects the 0 address space");
Dan Gohman4b9d7912015-12-15 22:01:29 +0000976 return DAG.getNode(
977 WebAssemblyISD::Wrapper, DL, VT,
978 DAG.getTargetGlobalAddress(GA->getGlobal(), DL, VT, GA->getOffset()));
JF Bastienaf111db2015-08-24 22:16:48 +0000979}
980
Heejin Ahnf208f632018-09-05 01:27:38 +0000981SDValue
982WebAssemblyTargetLowering::LowerExternalSymbol(SDValue Op,
983 SelectionDAG &DAG) const {
Dan Gohman2c8fe6a2015-11-25 16:44:29 +0000984 SDLoc DL(Op);
985 const auto *ES = cast<ExternalSymbolSDNode>(Op);
986 EVT VT = Op.getValueType();
Dan Gohman26c67652016-01-11 23:38:05 +0000987 assert(ES->getTargetFlags() == 0 &&
988 "Unexpected target flags on generic ExternalSymbolSDNode");
989 // Set the TargetFlags to 0x1 which indicates that this is a "function"
990 // symbol rather than a data symbol. We do this unconditionally even though
991 // we don't know anything about the symbol other than its name, because all
992 // external symbols used in target-independent SelectionDAG code are for
993 // functions.
Heejin Ahnf208f632018-09-05 01:27:38 +0000994 return DAG.getNode(
995 WebAssemblyISD::Wrapper, DL, VT,
996 DAG.getTargetExternalSymbol(ES->getSymbol(), VT,
997 WebAssemblyII::MO_SYMBOL_FUNCTION));
Dan Gohman2c8fe6a2015-11-25 16:44:29 +0000998}
999
Dan Gohman950a13c2015-09-16 16:51:30 +00001000SDValue WebAssemblyTargetLowering::LowerJumpTable(SDValue Op,
1001 SelectionDAG &DAG) const {
1002 // There's no need for a Wrapper node because we always incorporate a jump
Dan Gohman14026062016-03-08 03:18:12 +00001003 // table operand into a BR_TABLE instruction, rather than ever
Dan Gohmanbb7ce8e2015-11-20 03:02:49 +00001004 // materializing it in a register.
Dan Gohman950a13c2015-09-16 16:51:30 +00001005 const JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
1006 return DAG.getTargetJumpTable(JT->getIndex(), Op.getValueType(),
1007 JT->getTargetFlags());
1008}
1009
1010SDValue WebAssemblyTargetLowering::LowerBR_JT(SDValue Op,
1011 SelectionDAG &DAG) const {
1012 SDLoc DL(Op);
1013 SDValue Chain = Op.getOperand(0);
1014 const auto *JT = cast<JumpTableSDNode>(Op.getOperand(1));
1015 SDValue Index = Op.getOperand(2);
1016 assert(JT->getTargetFlags() == 0 && "WebAssembly doesn't set target flags");
1017
1018 SmallVector<SDValue, 8> Ops;
1019 Ops.push_back(Chain);
1020 Ops.push_back(Index);
1021
1022 MachineJumpTableInfo *MJTI = DAG.getMachineFunction().getJumpTableInfo();
1023 const auto &MBBs = MJTI->getJumpTables()[JT->getIndex()].MBBs;
1024
Dan Gohman14026062016-03-08 03:18:12 +00001025 // Add an operand for each case.
Heejin Ahnf208f632018-09-05 01:27:38 +00001026 for (auto MBB : MBBs)
1027 Ops.push_back(DAG.getBasicBlock(MBB));
Dan Gohman14026062016-03-08 03:18:12 +00001028
Dan Gohman950a13c2015-09-16 16:51:30 +00001029 // TODO: For now, we just pick something arbitrary for a default case for now.
1030 // We really want to sniff out the guard and put in the real default case (and
1031 // delete the guard).
1032 Ops.push_back(DAG.getBasicBlock(MBBs[0]));
1033
Dan Gohman14026062016-03-08 03:18:12 +00001034 return DAG.getNode(WebAssemblyISD::BR_TABLE, DL, MVT::Other, Ops);
Dan Gohman950a13c2015-09-16 16:51:30 +00001035}
1036
Dan Gohman35bfb242015-12-04 23:22:35 +00001037SDValue WebAssemblyTargetLowering::LowerVASTART(SDValue Op,
1038 SelectionDAG &DAG) const {
1039 SDLoc DL(Op);
1040 EVT PtrVT = getPointerTy(DAG.getMachineFunction().getDataLayout());
1041
Derek Schuff27501e22016-02-10 19:51:04 +00001042 auto *MFI = DAG.getMachineFunction().getInfo<WebAssemblyFunctionInfo>();
Dan Gohman35bfb242015-12-04 23:22:35 +00001043 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Derek Schuff27501e22016-02-10 19:51:04 +00001044
1045 SDValue ArgN = DAG.getCopyFromReg(DAG.getEntryNode(), DL,
1046 MFI->getVarargBufferVreg(), PtrVT);
1047 return DAG.getStore(Op.getOperand(0), DL, ArgN, Op.getOperand(1),
Derek Schuff1a946e42016-07-15 19:35:43 +00001048 MachinePointerInfo(SV), 0);
Dan Gohman35bfb242015-12-04 23:22:35 +00001049}
1050
Heejin Ahnd6f48782019-01-30 03:21:57 +00001051SDValue WebAssemblyTargetLowering::LowerIntrinsic(SDValue Op,
1052 SelectionDAG &DAG) const {
1053 MachineFunction &MF = DAG.getMachineFunction();
1054 unsigned IntNo;
1055 switch (Op.getOpcode()) {
1056 case ISD::INTRINSIC_VOID:
1057 case ISD::INTRINSIC_W_CHAIN:
1058 IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
1059 break;
1060 case ISD::INTRINSIC_WO_CHAIN:
1061 IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
1062 break;
1063 default:
1064 llvm_unreachable("Invalid intrinsic");
1065 }
Heejin Ahn5ef4d5f2018-05-31 22:25:54 +00001066 SDLoc DL(Op);
Heejin Ahnd6f48782019-01-30 03:21:57 +00001067
Heejin Ahn5ef4d5f2018-05-31 22:25:54 +00001068 switch (IntNo) {
1069 default:
Heejin Ahn18c56a02019-02-04 19:13:39 +00001070 return SDValue(); // Don't custom lower most intrinsics.
Thomas Lively5d461c92018-10-03 23:02:23 +00001071
Heejin Ahn24faf852018-10-25 23:55:10 +00001072 case Intrinsic::wasm_lsda: {
Heejin Ahn24faf852018-10-25 23:55:10 +00001073 EVT VT = Op.getValueType();
1074 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
1075 MVT PtrVT = TLI.getPointerTy(DAG.getDataLayout());
1076 auto &Context = MF.getMMI().getContext();
1077 MCSymbol *S = Context.getOrCreateSymbol(Twine("GCC_except_table") +
1078 Twine(MF.getFunctionNumber()));
1079 return DAG.getNode(WebAssemblyISD::Wrapper, DL, VT,
1080 DAG.getMCSymbol(S, PtrVT));
1081 }
Heejin Ahnda419bd2018-11-14 02:46:21 +00001082
1083 case Intrinsic::wasm_throw: {
Heejin Ahnd6f48782019-01-30 03:21:57 +00001084 // We only support C++ exceptions for now
Heejin Ahnda419bd2018-11-14 02:46:21 +00001085 int Tag = cast<ConstantSDNode>(Op.getOperand(2).getNode())->getZExtValue();
Heejin Ahnd6f48782019-01-30 03:21:57 +00001086 if (Tag != CPP_EXCEPTION)
Heejin Ahnda419bd2018-11-14 02:46:21 +00001087 llvm_unreachable("Invalid tag!");
Heejin Ahnd6f48782019-01-30 03:21:57 +00001088 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
1089 MVT PtrVT = TLI.getPointerTy(DAG.getDataLayout());
1090 const char *SymName = MF.createExternalSymbolName("__cpp_exception");
1091 SDValue SymNode =
1092 DAG.getNode(WebAssemblyISD::Wrapper, DL, PtrVT,
1093 DAG.getTargetExternalSymbol(
1094 SymName, PtrVT, WebAssemblyII::MO_SYMBOL_EVENT));
1095 return DAG.getNode(WebAssemblyISD::THROW, DL,
1096 MVT::Other, // outchain type
1097 {
1098 Op.getOperand(0), // inchain
1099 SymNode, // exception symbol
1100 Op.getOperand(3) // thrown value
1101 });
Heejin Ahnda419bd2018-11-14 02:46:21 +00001102 }
1103 }
1104}
1105
1106SDValue
Thomas Lively64a39a12019-01-10 22:32:11 +00001107WebAssemblyTargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
1108 SelectionDAG &DAG) const {
1109 // If sign extension operations are disabled, allow sext_inreg only if operand
1110 // is a vector extract. SIMD does not depend on sign extension operations, but
1111 // allowing sext_inreg in this context lets us have simple patterns to select
1112 // extract_lane_s instructions. Expanding sext_inreg everywhere would be
1113 // simpler in this file, but would necessitate large and brittle patterns to
1114 // undo the expansion and select extract_lane_s instructions.
1115 assert(!Subtarget->hasSignExt() && Subtarget->hasSIMD128());
1116 if (Op.getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT)
1117 return Op;
1118 // Otherwise expand
1119 return SDValue();
1120}
1121
Thomas Lively079816e2019-01-30 02:23:29 +00001122SDValue WebAssemblyTargetLowering::LowerBUILD_VECTOR(SDValue Op,
1123 SelectionDAG &DAG) const {
1124 SDLoc DL(Op);
1125 const EVT VecT = Op.getValueType();
1126 const EVT LaneT = Op.getOperand(0).getValueType();
1127 const size_t Lanes = Op.getNumOperands();
1128 auto IsConstant = [](const SDValue &V) {
1129 return V.getOpcode() == ISD::Constant || V.getOpcode() == ISD::ConstantFP;
1130 };
1131
1132 // Find the most common operand, which is approximately the best to splat
1133 using Entry = std::pair<SDValue, size_t>;
1134 SmallVector<Entry, 16> ValueCounts;
1135 size_t NumConst = 0, NumDynamic = 0;
1136 for (const SDValue &Lane : Op->op_values()) {
1137 if (Lane.isUndef()) {
1138 continue;
1139 } else if (IsConstant(Lane)) {
1140 NumConst++;
1141 } else {
1142 NumDynamic++;
1143 }
1144 auto CountIt = std::find_if(ValueCounts.begin(), ValueCounts.end(),
1145 [&Lane](Entry A) { return A.first == Lane; });
1146 if (CountIt == ValueCounts.end()) {
1147 ValueCounts.emplace_back(Lane, 1);
1148 } else {
1149 CountIt->second++;
1150 }
1151 }
1152 auto CommonIt =
1153 std::max_element(ValueCounts.begin(), ValueCounts.end(),
1154 [](Entry A, Entry B) { return A.second < B.second; });
1155 assert(CommonIt != ValueCounts.end() && "Unexpected all-undef build_vector");
1156 SDValue SplatValue = CommonIt->first;
1157 size_t NumCommon = CommonIt->second;
1158
1159 // If v128.const is available, consider using it instead of a splat
1160 if (Subtarget->hasUnimplementedSIMD128()) {
1161 // {i32,i64,f32,f64}.const opcode, and value
1162 const size_t ConstBytes = 1 + std::max(size_t(4), 16 / Lanes);
1163 // SIMD prefix and opcode
1164 const size_t SplatBytes = 2;
1165 const size_t SplatConstBytes = SplatBytes + ConstBytes;
1166 // SIMD prefix, opcode, and lane index
1167 const size_t ReplaceBytes = 3;
1168 const size_t ReplaceConstBytes = ReplaceBytes + ConstBytes;
1169 // SIMD prefix, v128.const opcode, and 128-bit value
1170 const size_t VecConstBytes = 18;
1171 // Initial v128.const and a replace_lane for each non-const operand
1172 const size_t ConstInitBytes = VecConstBytes + NumDynamic * ReplaceBytes;
1173 // Initial splat and all necessary replace_lanes
1174 const size_t SplatInitBytes =
1175 IsConstant(SplatValue)
1176 // Initial constant splat
1177 ? (SplatConstBytes +
1178 // Constant replace_lanes
1179 (NumConst - NumCommon) * ReplaceConstBytes +
1180 // Dynamic replace_lanes
1181 (NumDynamic * ReplaceBytes))
1182 // Initial dynamic splat
1183 : (SplatBytes +
1184 // Constant replace_lanes
1185 (NumConst * ReplaceConstBytes) +
1186 // Dynamic replace_lanes
1187 (NumDynamic - NumCommon) * ReplaceBytes);
1188 if (ConstInitBytes < SplatInitBytes) {
1189 // Create build_vector that will lower to initial v128.const
1190 SmallVector<SDValue, 16> ConstLanes;
1191 for (const SDValue &Lane : Op->op_values()) {
1192 if (IsConstant(Lane)) {
1193 ConstLanes.push_back(Lane);
1194 } else if (LaneT.isFloatingPoint()) {
1195 ConstLanes.push_back(DAG.getConstantFP(0, DL, LaneT));
1196 } else {
1197 ConstLanes.push_back(DAG.getConstant(0, DL, LaneT));
1198 }
1199 }
1200 SDValue Result = DAG.getBuildVector(VecT, DL, ConstLanes);
1201 // Add replace_lane instructions for non-const lanes
1202 for (size_t I = 0; I < Lanes; ++I) {
1203 const SDValue &Lane = Op->getOperand(I);
1204 if (!Lane.isUndef() && !IsConstant(Lane))
1205 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VecT, Result, Lane,
1206 DAG.getConstant(I, DL, MVT::i32));
1207 }
1208 return Result;
1209 }
1210 }
1211 // Use a splat for the initial vector
1212 SDValue Result = DAG.getSplatBuildVector(VecT, DL, SplatValue);
1213 // Add replace_lane instructions for other values
1214 for (size_t I = 0; I < Lanes; ++I) {
1215 const SDValue &Lane = Op->getOperand(I);
1216 if (Lane != SplatValue)
1217 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VecT, Result, Lane,
1218 DAG.getConstant(I, DL, MVT::i32));
1219 }
1220 return Result;
1221}
1222
Thomas Lively64a39a12019-01-10 22:32:11 +00001223SDValue
Thomas Livelya0d25812018-09-07 21:54:46 +00001224WebAssemblyTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
1225 SelectionDAG &DAG) const {
1226 SDLoc DL(Op);
1227 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Op.getNode())->getMask();
1228 MVT VecType = Op.getOperand(0).getSimpleValueType();
1229 assert(VecType.is128BitVector() && "Unexpected shuffle vector type");
1230 size_t LaneBytes = VecType.getVectorElementType().getSizeInBits() / 8;
1231
1232 // Space for two vector args and sixteen mask indices
1233 SDValue Ops[18];
1234 size_t OpIdx = 0;
1235 Ops[OpIdx++] = Op.getOperand(0);
1236 Ops[OpIdx++] = Op.getOperand(1);
1237
1238 // Expand mask indices to byte indices and materialize them as operands
Heejin Ahn18c56a02019-02-04 19:13:39 +00001239 for (int M : Mask) {
Thomas Livelya0d25812018-09-07 21:54:46 +00001240 for (size_t J = 0; J < LaneBytes; ++J) {
Thomas Lively11a332d02018-10-19 19:08:06 +00001241 // Lower undefs (represented by -1 in mask) to zero
Heejin Ahn18c56a02019-02-04 19:13:39 +00001242 uint64_t ByteIndex = M == -1 ? 0 : (uint64_t)M * LaneBytes + J;
Thomas Lively11a332d02018-10-19 19:08:06 +00001243 Ops[OpIdx++] = DAG.getConstant(ByteIndex, DL, MVT::i32);
Thomas Livelya0d25812018-09-07 21:54:46 +00001244 }
1245 }
1246
Thomas Livelyed951342018-10-24 23:27:40 +00001247 return DAG.getNode(WebAssemblyISD::SHUFFLE, DL, Op.getValueType(), Ops);
Thomas Livelya0d25812018-09-07 21:54:46 +00001248}
1249
Thomas Livelyfb84fd72018-11-02 00:06:56 +00001250SDValue
1251WebAssemblyTargetLowering::LowerAccessVectorElement(SDValue Op,
1252 SelectionDAG &DAG) const {
1253 // Allow constant lane indices, expand variable lane indices
1254 SDNode *IdxNode = Op.getOperand(Op.getNumOperands() - 1).getNode();
1255 if (isa<ConstantSDNode>(IdxNode) || IdxNode->isUndef())
1256 return Op;
1257 else
1258 // Perform default expansion
1259 return SDValue();
1260}
1261
Heejin Ahn18c56a02019-02-04 19:13:39 +00001262static SDValue unrollVectorShift(SDValue Op, SelectionDAG &DAG) {
Thomas Lively6bf2b402019-01-15 02:16:03 +00001263 EVT LaneT = Op.getSimpleValueType().getVectorElementType();
1264 // 32-bit and 64-bit unrolled shifts will have proper semantics
1265 if (LaneT.bitsGE(MVT::i32))
1266 return DAG.UnrollVectorOp(Op.getNode());
1267 // Otherwise mask the shift value to get proper semantics from 32-bit shift
1268 SDLoc DL(Op);
1269 SDValue ShiftVal = Op.getOperand(1);
1270 uint64_t MaskVal = LaneT.getSizeInBits() - 1;
1271 SDValue MaskedShiftVal = DAG.getNode(
1272 ISD::AND, // mask opcode
1273 DL, ShiftVal.getValueType(), // masked value type
1274 ShiftVal, // original shift value operand
1275 DAG.getConstant(MaskVal, DL, ShiftVal.getValueType()) // mask operand
1276 );
1277
1278 return DAG.UnrollVectorOp(
1279 DAG.getNode(Op.getOpcode(), // original shift opcode
1280 DL, Op.getValueType(), // original return type
1281 Op.getOperand(0), // original vector operand,
1282 MaskedShiftVal // new masked shift value operand
1283 )
1284 .getNode());
1285}
1286
Thomas Lively55735d52018-10-20 01:31:18 +00001287SDValue WebAssemblyTargetLowering::LowerShift(SDValue Op,
1288 SelectionDAG &DAG) const {
1289 SDLoc DL(Op);
Thomas Livelyb2382c82018-11-02 00:39:57 +00001290
1291 // Only manually lower vector shifts
1292 assert(Op.getSimpleValueType().isVector());
1293
Thomas Lively6bf2b402019-01-15 02:16:03 +00001294 // Expand all vector shifts until V8 fixes its implementation
1295 // TODO: remove this once V8 is fixed
1296 if (!Subtarget->hasUnimplementedSIMD128())
Heejin Ahn18c56a02019-02-04 19:13:39 +00001297 return unrollVectorShift(Op, DAG);
Thomas Lively6bf2b402019-01-15 02:16:03 +00001298
Thomas Livelyb2382c82018-11-02 00:39:57 +00001299 // Unroll non-splat vector shifts
1300 BuildVectorSDNode *ShiftVec;
1301 SDValue SplatVal;
1302 if (!(ShiftVec = dyn_cast<BuildVectorSDNode>(Op.getOperand(1).getNode())) ||
1303 !(SplatVal = ShiftVec->getSplatValue()))
Heejin Ahn18c56a02019-02-04 19:13:39 +00001304 return unrollVectorShift(Op, DAG);
Thomas Livelyb2382c82018-11-02 00:39:57 +00001305
1306 // All splats except i64x2 const splats are handled by patterns
Heejin Ahn18c56a02019-02-04 19:13:39 +00001307 auto *SplatConst = dyn_cast<ConstantSDNode>(SplatVal);
Thomas Livelyb2382c82018-11-02 00:39:57 +00001308 if (!SplatConst || Op.getSimpleValueType() != MVT::v2i64)
Thomas Lively55735d52018-10-20 01:31:18 +00001309 return Op;
Thomas Livelyb2382c82018-11-02 00:39:57 +00001310
1311 // i64x2 const splats are custom lowered to avoid unnecessary wraps
Thomas Lively55735d52018-10-20 01:31:18 +00001312 unsigned Opcode;
1313 switch (Op.getOpcode()) {
1314 case ISD::SHL:
1315 Opcode = WebAssemblyISD::VEC_SHL;
1316 break;
1317 case ISD::SRA:
1318 Opcode = WebAssemblyISD::VEC_SHR_S;
1319 break;
1320 case ISD::SRL:
1321 Opcode = WebAssemblyISD::VEC_SHR_U;
1322 break;
1323 default:
1324 llvm_unreachable("unexpected opcode");
Thomas Lively55735d52018-10-20 01:31:18 +00001325 }
Thomas Livelyb2382c82018-11-02 00:39:57 +00001326 APInt Shift = SplatConst->getAPIntValue().zextOrTrunc(32);
Thomas Lively55735d52018-10-20 01:31:18 +00001327 return DAG.getNode(Opcode, DL, Op.getValueType(), Op.getOperand(0),
Thomas Livelyb2382c82018-11-02 00:39:57 +00001328 DAG.getConstant(Shift, DL, MVT::i32));
Thomas Lively55735d52018-10-20 01:31:18 +00001329}
1330
Dan Gohman10e730a2015-06-29 23:51:55 +00001331//===----------------------------------------------------------------------===//
1332// WebAssembly Optimization Hooks
1333//===----------------------------------------------------------------------===//