xref: /freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp (revision 5e801ac66d24704442eba426ed13c3effb8a34e7)
1 //=- WebAssemblyISelLowering.cpp - WebAssembly DAG Lowering Implementation -==//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 ///
9 /// \file
10 /// This file implements the WebAssemblyTargetLowering class.
11 ///
12 //===----------------------------------------------------------------------===//
13 
14 #include "WebAssemblyISelLowering.h"
15 #include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
16 #include "Utils/WebAssemblyTypeUtilities.h"
17 #include "Utils/WebAssemblyUtilities.h"
18 #include "WebAssemblyMachineFunctionInfo.h"
19 #include "WebAssemblySubtarget.h"
20 #include "WebAssemblyTargetMachine.h"
21 #include "llvm/CodeGen/CallingConvLower.h"
22 #include "llvm/CodeGen/MachineInstrBuilder.h"
23 #include "llvm/CodeGen/MachineJumpTableInfo.h"
24 #include "llvm/CodeGen/MachineModuleInfo.h"
25 #include "llvm/CodeGen/MachineRegisterInfo.h"
26 #include "llvm/CodeGen/SelectionDAG.h"
27 #include "llvm/CodeGen/SelectionDAGNodes.h"
28 #include "llvm/IR/DiagnosticInfo.h"
29 #include "llvm/IR/DiagnosticPrinter.h"
30 #include "llvm/IR/Function.h"
31 #include "llvm/IR/Intrinsics.h"
32 #include "llvm/IR/IntrinsicsWebAssembly.h"
33 #include "llvm/Support/Debug.h"
34 #include "llvm/Support/ErrorHandling.h"
35 #include "llvm/Support/KnownBits.h"
36 #include "llvm/Support/MathExtras.h"
37 #include "llvm/Support/raw_ostream.h"
38 #include "llvm/Target/TargetOptions.h"
39 using namespace llvm;
40 
41 #define DEBUG_TYPE "wasm-lower"
42 
43 WebAssemblyTargetLowering::WebAssemblyTargetLowering(
44     const TargetMachine &TM, const WebAssemblySubtarget &STI)
45     : TargetLowering(TM), Subtarget(&STI) {
46   auto MVTPtr = Subtarget->hasAddr64() ? MVT::i64 : MVT::i32;
47 
48   // Booleans always contain 0 or 1.
49   setBooleanContents(ZeroOrOneBooleanContent);
50   // Except in SIMD vectors
51   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
52   // We don't know the microarchitecture here, so just reduce register pressure.
53   setSchedulingPreference(Sched::RegPressure);
54   // Tell ISel that we have a stack pointer.
55   setStackPointerRegisterToSaveRestore(
56       Subtarget->hasAddr64() ? WebAssembly::SP64 : WebAssembly::SP32);
57   // Set up the register classes.
58   addRegisterClass(MVT::i32, &WebAssembly::I32RegClass);
59   addRegisterClass(MVT::i64, &WebAssembly::I64RegClass);
60   addRegisterClass(MVT::f32, &WebAssembly::F32RegClass);
61   addRegisterClass(MVT::f64, &WebAssembly::F64RegClass);
62   if (Subtarget->hasSIMD128()) {
63     addRegisterClass(MVT::v16i8, &WebAssembly::V128RegClass);
64     addRegisterClass(MVT::v8i16, &WebAssembly::V128RegClass);
65     addRegisterClass(MVT::v4i32, &WebAssembly::V128RegClass);
66     addRegisterClass(MVT::v4f32, &WebAssembly::V128RegClass);
67     addRegisterClass(MVT::v2i64, &WebAssembly::V128RegClass);
68     addRegisterClass(MVT::v2f64, &WebAssembly::V128RegClass);
69   }
70   if (Subtarget->hasReferenceTypes()) {
71     addRegisterClass(MVT::externref, &WebAssembly::EXTERNREFRegClass);
72     addRegisterClass(MVT::funcref, &WebAssembly::FUNCREFRegClass);
73   }
74   // Compute derived properties from the register classes.
75   computeRegisterProperties(Subtarget->getRegisterInfo());
76 
77   // Transform loads and stores to pointers in address space 1 to loads and
78   // stores to WebAssembly global variables, outside linear memory.
79   for (auto T : {MVT::i32, MVT::i64, MVT::f32, MVT::f64}) {
80     setOperationAction(ISD::LOAD, T, Custom);
81     setOperationAction(ISD::STORE, T, Custom);
82   }
83   if (Subtarget->hasSIMD128()) {
84     for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v4f32, MVT::v2i64,
85                    MVT::v2f64}) {
86       setOperationAction(ISD::LOAD, T, Custom);
87       setOperationAction(ISD::STORE, T, Custom);
88     }
89   }
90   if (Subtarget->hasReferenceTypes()) {
91     // We need custom load and store lowering for both externref, funcref and
92     // Other. The MVT::Other here represents tables of reference types.
93     for (auto T : {MVT::externref, MVT::funcref, MVT::Other}) {
94       setOperationAction(ISD::LOAD, T, Custom);
95       setOperationAction(ISD::STORE, T, Custom);
96     }
97   }
98 
99   setOperationAction(ISD::GlobalAddress, MVTPtr, Custom);
100   setOperationAction(ISD::GlobalTLSAddress, MVTPtr, Custom);
101   setOperationAction(ISD::ExternalSymbol, MVTPtr, Custom);
102   setOperationAction(ISD::JumpTable, MVTPtr, Custom);
103   setOperationAction(ISD::BlockAddress, MVTPtr, Custom);
104   setOperationAction(ISD::BRIND, MVT::Other, Custom);
105 
106   // Take the default expansion for va_arg, va_copy, and va_end. There is no
107   // default action for va_start, so we do that custom.
108   setOperationAction(ISD::VASTART, MVT::Other, Custom);
109   setOperationAction(ISD::VAARG, MVT::Other, Expand);
110   setOperationAction(ISD::VACOPY, MVT::Other, Expand);
111   setOperationAction(ISD::VAEND, MVT::Other, Expand);
112 
113   for (auto T : {MVT::f32, MVT::f64, MVT::v4f32, MVT::v2f64}) {
114     // Don't expand the floating-point types to constant pools.
115     setOperationAction(ISD::ConstantFP, T, Legal);
116     // Expand floating-point comparisons.
117     for (auto CC : {ISD::SETO, ISD::SETUO, ISD::SETUEQ, ISD::SETONE,
118                     ISD::SETULT, ISD::SETULE, ISD::SETUGT, ISD::SETUGE})
119       setCondCodeAction(CC, T, Expand);
120     // Expand floating-point library function operators.
121     for (auto Op :
122          {ISD::FSIN, ISD::FCOS, ISD::FSINCOS, ISD::FPOW, ISD::FREM, ISD::FMA})
123       setOperationAction(Op, T, Expand);
124     // Note supported floating-point library function operators that otherwise
125     // default to expand.
126     for (auto Op :
127          {ISD::FCEIL, ISD::FFLOOR, ISD::FTRUNC, ISD::FNEARBYINT, ISD::FRINT})
128       setOperationAction(Op, T, Legal);
129     // Support minimum and maximum, which otherwise default to expand.
130     setOperationAction(ISD::FMINIMUM, T, Legal);
131     setOperationAction(ISD::FMAXIMUM, T, Legal);
132     // WebAssembly currently has no builtin f16 support.
133     setOperationAction(ISD::FP16_TO_FP, T, Expand);
134     setOperationAction(ISD::FP_TO_FP16, T, Expand);
135     setLoadExtAction(ISD::EXTLOAD, T, MVT::f16, Expand);
136     setTruncStoreAction(T, MVT::f16, Expand);
137   }
138 
139   // Expand unavailable integer operations.
140   for (auto Op :
141        {ISD::BSWAP, ISD::SMUL_LOHI, ISD::UMUL_LOHI, ISD::MULHS, ISD::MULHU,
142         ISD::SDIVREM, ISD::UDIVREM, ISD::SHL_PARTS, ISD::SRA_PARTS,
143         ISD::SRL_PARTS, ISD::ADDC, ISD::ADDE, ISD::SUBC, ISD::SUBE}) {
144     for (auto T : {MVT::i32, MVT::i64})
145       setOperationAction(Op, T, Expand);
146     if (Subtarget->hasSIMD128())
147       for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v2i64})
148         setOperationAction(Op, T, Expand);
149   }
150 
151   if (Subtarget->hasNontrappingFPToInt())
152     for (auto Op : {ISD::FP_TO_SINT_SAT, ISD::FP_TO_UINT_SAT})
153       for (auto T : {MVT::i32, MVT::i64})
154         setOperationAction(Op, T, Custom);
155 
156   // SIMD-specific configuration
157   if (Subtarget->hasSIMD128()) {
158     // Hoist bitcasts out of shuffles
159     setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
160 
161     // Combine extends of extract_subvectors into widening ops
162     setTargetDAGCombine(ISD::SIGN_EXTEND);
163     setTargetDAGCombine(ISD::ZERO_EXTEND);
164 
165     // Combine int_to_fp or fp_extend of extract_vectors and vice versa into
166     // conversions ops
167     setTargetDAGCombine(ISD::SINT_TO_FP);
168     setTargetDAGCombine(ISD::UINT_TO_FP);
169     setTargetDAGCombine(ISD::FP_EXTEND);
170     setTargetDAGCombine(ISD::EXTRACT_SUBVECTOR);
171 
172     // Combine fp_to_{s,u}int_sat or fp_round of concat_vectors or vice versa
173     // into conversion ops
174     setTargetDAGCombine(ISD::FP_TO_SINT_SAT);
175     setTargetDAGCombine(ISD::FP_TO_UINT_SAT);
176     setTargetDAGCombine(ISD::FP_ROUND);
177     setTargetDAGCombine(ISD::CONCAT_VECTORS);
178 
179     // Support saturating add for i8x16 and i16x8
180     for (auto Op : {ISD::SADDSAT, ISD::UADDSAT})
181       for (auto T : {MVT::v16i8, MVT::v8i16})
182         setOperationAction(Op, T, Legal);
183 
184     // Support integer abs
185     for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v2i64})
186       setOperationAction(ISD::ABS, T, Legal);
187 
188     // Custom lower BUILD_VECTORs to minimize number of replace_lanes
189     for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v4f32, MVT::v2i64,
190                    MVT::v2f64})
191       setOperationAction(ISD::BUILD_VECTOR, T, Custom);
192 
193     // We have custom shuffle lowering to expose the shuffle mask
194     for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v4f32, MVT::v2i64,
195                    MVT::v2f64})
196       setOperationAction(ISD::VECTOR_SHUFFLE, T, Custom);
197 
198     // Custom lowering since wasm shifts must have a scalar shift amount
199     for (auto Op : {ISD::SHL, ISD::SRA, ISD::SRL})
200       for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v2i64})
201         setOperationAction(Op, T, Custom);
202 
203     // Custom lower lane accesses to expand out variable indices
204     for (auto Op : {ISD::EXTRACT_VECTOR_ELT, ISD::INSERT_VECTOR_ELT})
205       for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v4f32, MVT::v2i64,
206                      MVT::v2f64})
207         setOperationAction(Op, T, Custom);
208 
209     // There is no i8x16.mul instruction
210     setOperationAction(ISD::MUL, MVT::v16i8, Expand);
211 
212     // There is no vector conditional select instruction
213     for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v4f32, MVT::v2i64,
214                    MVT::v2f64})
215       setOperationAction(ISD::SELECT_CC, T, Expand);
216 
217     // Expand integer operations supported for scalars but not SIMD
218     for (auto Op :
219          {ISD::SDIV, ISD::UDIV, ISD::SREM, ISD::UREM, ISD::ROTL, ISD::ROTR})
220       for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v2i64})
221         setOperationAction(Op, T, Expand);
222 
223     // But we do have integer min and max operations
224     for (auto Op : {ISD::SMIN, ISD::SMAX, ISD::UMIN, ISD::UMAX})
225       for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32})
226         setOperationAction(Op, T, Legal);
227 
228     // And we have popcnt for i8x16. It can be used to expand ctlz/cttz.
229     setOperationAction(ISD::CTPOP, MVT::v16i8, Legal);
230     setOperationAction(ISD::CTLZ, MVT::v16i8, Expand);
231     setOperationAction(ISD::CTTZ, MVT::v16i8, Expand);
232 
233     // Custom lower bit counting operations for other types to scalarize them.
234     for (auto Op : {ISD::CTLZ, ISD::CTTZ, ISD::CTPOP})
235       for (auto T : {MVT::v8i16, MVT::v4i32, MVT::v2i64})
236         setOperationAction(Op, T, Custom);
237 
238     // Expand float operations supported for scalars but not SIMD
239     for (auto Op : {ISD::FCOPYSIGN, ISD::FLOG, ISD::FLOG2, ISD::FLOG10,
240                     ISD::FEXP, ISD::FEXP2, ISD::FRINT})
241       for (auto T : {MVT::v4f32, MVT::v2f64})
242         setOperationAction(Op, T, Expand);
243 
244     // Unsigned comparison operations are unavailable for i64x2 vectors.
245     for (auto CC : {ISD::SETUGT, ISD::SETUGE, ISD::SETULT, ISD::SETULE})
246       setCondCodeAction(CC, MVT::v2i64, Custom);
247 
248     // 64x2 conversions are not in the spec
249     for (auto Op :
250          {ISD::SINT_TO_FP, ISD::UINT_TO_FP, ISD::FP_TO_SINT, ISD::FP_TO_UINT})
251       for (auto T : {MVT::v2i64, MVT::v2f64})
252         setOperationAction(Op, T, Expand);
253 
254     // But saturating fp_to_int converstions are
255     for (auto Op : {ISD::FP_TO_SINT_SAT, ISD::FP_TO_UINT_SAT})
256       setOperationAction(Op, MVT::v4i32, Custom);
257   }
258 
259   // As a special case, these operators use the type to mean the type to
260   // sign-extend from.
261   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
262   if (!Subtarget->hasSignExt()) {
263     // Sign extends are legal only when extending a vector extract
264     auto Action = Subtarget->hasSIMD128() ? Custom : Expand;
265     for (auto T : {MVT::i8, MVT::i16, MVT::i32})
266       setOperationAction(ISD::SIGN_EXTEND_INREG, T, Action);
267   }
268   for (auto T : MVT::integer_fixedlen_vector_valuetypes())
269     setOperationAction(ISD::SIGN_EXTEND_INREG, T, Expand);
270 
271   // Dynamic stack allocation: use the default expansion.
272   setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
273   setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
274   setOperationAction(ISD::DYNAMIC_STACKALLOC, MVTPtr, Expand);
275 
276   setOperationAction(ISD::FrameIndex, MVT::i32, Custom);
277   setOperationAction(ISD::FrameIndex, MVT::i64, Custom);
278   setOperationAction(ISD::CopyToReg, MVT::Other, Custom);
279 
280   // Expand these forms; we pattern-match the forms that we can handle in isel.
281   for (auto T : {MVT::i32, MVT::i64, MVT::f32, MVT::f64})
282     for (auto Op : {ISD::BR_CC, ISD::SELECT_CC})
283       setOperationAction(Op, T, Expand);
284 
285   // We have custom switch handling.
286   setOperationAction(ISD::BR_JT, MVT::Other, Custom);
287 
288   // WebAssembly doesn't have:
289   //  - Floating-point extending loads.
290   //  - Floating-point truncating stores.
291   //  - i1 extending loads.
292   //  - truncating SIMD stores and most extending loads
293   setLoadExtAction(ISD::EXTLOAD, MVT::f64, MVT::f32, Expand);
294   setTruncStoreAction(MVT::f64, MVT::f32, Expand);
295   for (auto T : MVT::integer_valuetypes())
296     for (auto Ext : {ISD::EXTLOAD, ISD::ZEXTLOAD, ISD::SEXTLOAD})
297       setLoadExtAction(Ext, T, MVT::i1, Promote);
298   if (Subtarget->hasSIMD128()) {
299     for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v2i64, MVT::v4f32,
300                    MVT::v2f64}) {
301       for (auto MemT : MVT::fixedlen_vector_valuetypes()) {
302         if (MVT(T) != MemT) {
303           setTruncStoreAction(T, MemT, Expand);
304           for (auto Ext : {ISD::EXTLOAD, ISD::ZEXTLOAD, ISD::SEXTLOAD})
305             setLoadExtAction(Ext, T, MemT, Expand);
306         }
307       }
308     }
309     // But some vector extending loads are legal
310     for (auto Ext : {ISD::EXTLOAD, ISD::SEXTLOAD, ISD::ZEXTLOAD}) {
311       setLoadExtAction(Ext, MVT::v8i16, MVT::v8i8, Legal);
312       setLoadExtAction(Ext, MVT::v4i32, MVT::v4i16, Legal);
313       setLoadExtAction(Ext, MVT::v2i64, MVT::v2i32, Legal);
314     }
315     setLoadExtAction(ISD::EXTLOAD, MVT::v2f64, MVT::v2f32, Legal);
316   }
317 
318   // Don't do anything clever with build_pairs
319   setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
320 
321   // Trap lowers to wasm unreachable
322   setOperationAction(ISD::TRAP, MVT::Other, Legal);
323   setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
324 
325   // Exception handling intrinsics
326   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
327   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
328   setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
329 
330   setMaxAtomicSizeInBitsSupported(64);
331 
332   // Override the __gnu_f2h_ieee/__gnu_h2f_ieee names so that the f32 name is
333   // consistent with the f64 and f128 names.
334   setLibcallName(RTLIB::FPEXT_F16_F32, "__extendhfsf2");
335   setLibcallName(RTLIB::FPROUND_F32_F16, "__truncsfhf2");
336 
337   // Define the emscripten name for return address helper.
338   // TODO: when implementing other Wasm backends, make this generic or only do
339   // this on emscripten depending on what they end up doing.
340   setLibcallName(RTLIB::RETURN_ADDRESS, "emscripten_return_address");
341 
342   // Always convert switches to br_tables unless there is only one case, which
343   // is equivalent to a simple branch. This reduces code size for wasm, and we
344   // defer possible jump table optimizations to the VM.
345   setMinimumJumpTableEntries(2);
346 }
347 
348 MVT WebAssemblyTargetLowering::getPointerTy(const DataLayout &DL,
349                                             uint32_t AS) const {
350   if (AS == WebAssembly::WasmAddressSpace::WASM_ADDRESS_SPACE_EXTERNREF)
351     return MVT::externref;
352   if (AS == WebAssembly::WasmAddressSpace::WASM_ADDRESS_SPACE_FUNCREF)
353     return MVT::funcref;
354   return TargetLowering::getPointerTy(DL, AS);
355 }
356 
357 MVT WebAssemblyTargetLowering::getPointerMemTy(const DataLayout &DL,
358                                                uint32_t AS) const {
359   if (AS == WebAssembly::WasmAddressSpace::WASM_ADDRESS_SPACE_EXTERNREF)
360     return MVT::externref;
361   if (AS == WebAssembly::WasmAddressSpace::WASM_ADDRESS_SPACE_FUNCREF)
362     return MVT::funcref;
363   return TargetLowering::getPointerMemTy(DL, AS);
364 }
365 
366 TargetLowering::AtomicExpansionKind
367 WebAssemblyTargetLowering::shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const {
368   // We have wasm instructions for these
369   switch (AI->getOperation()) {
370   case AtomicRMWInst::Add:
371   case AtomicRMWInst::Sub:
372   case AtomicRMWInst::And:
373   case AtomicRMWInst::Or:
374   case AtomicRMWInst::Xor:
375   case AtomicRMWInst::Xchg:
376     return AtomicExpansionKind::None;
377   default:
378     break;
379   }
380   return AtomicExpansionKind::CmpXChg;
381 }
382 
383 bool WebAssemblyTargetLowering::shouldScalarizeBinop(SDValue VecOp) const {
384   // Implementation copied from X86TargetLowering.
385   unsigned Opc = VecOp.getOpcode();
386 
387   // Assume target opcodes can't be scalarized.
388   // TODO - do we have any exceptions?
389   if (Opc >= ISD::BUILTIN_OP_END)
390     return false;
391 
392   // If the vector op is not supported, try to convert to scalar.
393   EVT VecVT = VecOp.getValueType();
394   if (!isOperationLegalOrCustomOrPromote(Opc, VecVT))
395     return true;
396 
397   // If the vector op is supported, but the scalar op is not, the transform may
398   // not be worthwhile.
399   EVT ScalarVT = VecVT.getScalarType();
400   return isOperationLegalOrCustomOrPromote(Opc, ScalarVT);
401 }
402 
403 FastISel *WebAssemblyTargetLowering::createFastISel(
404     FunctionLoweringInfo &FuncInfo, const TargetLibraryInfo *LibInfo) const {
405   return WebAssembly::createFastISel(FuncInfo, LibInfo);
406 }
407 
408 MVT WebAssemblyTargetLowering::getScalarShiftAmountTy(const DataLayout & /*DL*/,
409                                                       EVT VT) const {
410   unsigned BitWidth = NextPowerOf2(VT.getSizeInBits() - 1);
411   if (BitWidth > 1 && BitWidth < 8)
412     BitWidth = 8;
413 
414   if (BitWidth > 64) {
415     // The shift will be lowered to a libcall, and compiler-rt libcalls expect
416     // the count to be an i32.
417     BitWidth = 32;
418     assert(BitWidth >= Log2_32_Ceil(VT.getSizeInBits()) &&
419            "32-bit shift counts ought to be enough for anyone");
420   }
421 
422   MVT Result = MVT::getIntegerVT(BitWidth);
423   assert(Result != MVT::INVALID_SIMPLE_VALUE_TYPE &&
424          "Unable to represent scalar shift amount type");
425   return Result;
426 }
427 
428 // Lower an fp-to-int conversion operator from the LLVM opcode, which has an
429 // undefined result on invalid/overflow, to the WebAssembly opcode, which
430 // traps on invalid/overflow.
431 static MachineBasicBlock *LowerFPToInt(MachineInstr &MI, DebugLoc DL,
432                                        MachineBasicBlock *BB,
433                                        const TargetInstrInfo &TII,
434                                        bool IsUnsigned, bool Int64,
435                                        bool Float64, unsigned LoweredOpcode) {
436   MachineRegisterInfo &MRI = BB->getParent()->getRegInfo();
437 
438   Register OutReg = MI.getOperand(0).getReg();
439   Register InReg = MI.getOperand(1).getReg();
440 
441   unsigned Abs = Float64 ? WebAssembly::ABS_F64 : WebAssembly::ABS_F32;
442   unsigned FConst = Float64 ? WebAssembly::CONST_F64 : WebAssembly::CONST_F32;
443   unsigned LT = Float64 ? WebAssembly::LT_F64 : WebAssembly::LT_F32;
444   unsigned GE = Float64 ? WebAssembly::GE_F64 : WebAssembly::GE_F32;
445   unsigned IConst = Int64 ? WebAssembly::CONST_I64 : WebAssembly::CONST_I32;
446   unsigned Eqz = WebAssembly::EQZ_I32;
447   unsigned And = WebAssembly::AND_I32;
448   int64_t Limit = Int64 ? INT64_MIN : INT32_MIN;
449   int64_t Substitute = IsUnsigned ? 0 : Limit;
450   double CmpVal = IsUnsigned ? -(double)Limit * 2.0 : -(double)Limit;
451   auto &Context = BB->getParent()->getFunction().getContext();
452   Type *Ty = Float64 ? Type::getDoubleTy(Context) : Type::getFloatTy(Context);
453 
454   const BasicBlock *LLVMBB = BB->getBasicBlock();
455   MachineFunction *F = BB->getParent();
456   MachineBasicBlock *TrueMBB = F->CreateMachineBasicBlock(LLVMBB);
457   MachineBasicBlock *FalseMBB = F->CreateMachineBasicBlock(LLVMBB);
458   MachineBasicBlock *DoneMBB = F->CreateMachineBasicBlock(LLVMBB);
459 
460   MachineFunction::iterator It = ++BB->getIterator();
461   F->insert(It, FalseMBB);
462   F->insert(It, TrueMBB);
463   F->insert(It, DoneMBB);
464 
465   // Transfer the remainder of BB and its successor edges to DoneMBB.
466   DoneMBB->splice(DoneMBB->begin(), BB, std::next(MI.getIterator()), BB->end());
467   DoneMBB->transferSuccessorsAndUpdatePHIs(BB);
468 
469   BB->addSuccessor(TrueMBB);
470   BB->addSuccessor(FalseMBB);
471   TrueMBB->addSuccessor(DoneMBB);
472   FalseMBB->addSuccessor(DoneMBB);
473 
474   unsigned Tmp0, Tmp1, CmpReg, EqzReg, FalseReg, TrueReg;
475   Tmp0 = MRI.createVirtualRegister(MRI.getRegClass(InReg));
476   Tmp1 = MRI.createVirtualRegister(MRI.getRegClass(InReg));
477   CmpReg = MRI.createVirtualRegister(&WebAssembly::I32RegClass);
478   EqzReg = MRI.createVirtualRegister(&WebAssembly::I32RegClass);
479   FalseReg = MRI.createVirtualRegister(MRI.getRegClass(OutReg));
480   TrueReg = MRI.createVirtualRegister(MRI.getRegClass(OutReg));
481 
482   MI.eraseFromParent();
483   // For signed numbers, we can do a single comparison to determine whether
484   // fabs(x) is within range.
485   if (IsUnsigned) {
486     Tmp0 = InReg;
487   } else {
488     BuildMI(BB, DL, TII.get(Abs), Tmp0).addReg(InReg);
489   }
490   BuildMI(BB, DL, TII.get(FConst), Tmp1)
491       .addFPImm(cast<ConstantFP>(ConstantFP::get(Ty, CmpVal)));
492   BuildMI(BB, DL, TII.get(LT), CmpReg).addReg(Tmp0).addReg(Tmp1);
493 
494   // For unsigned numbers, we have to do a separate comparison with zero.
495   if (IsUnsigned) {
496     Tmp1 = MRI.createVirtualRegister(MRI.getRegClass(InReg));
497     Register SecondCmpReg =
498         MRI.createVirtualRegister(&WebAssembly::I32RegClass);
499     Register AndReg = MRI.createVirtualRegister(&WebAssembly::I32RegClass);
500     BuildMI(BB, DL, TII.get(FConst), Tmp1)
501         .addFPImm(cast<ConstantFP>(ConstantFP::get(Ty, 0.0)));
502     BuildMI(BB, DL, TII.get(GE), SecondCmpReg).addReg(Tmp0).addReg(Tmp1);
503     BuildMI(BB, DL, TII.get(And), AndReg).addReg(CmpReg).addReg(SecondCmpReg);
504     CmpReg = AndReg;
505   }
506 
507   BuildMI(BB, DL, TII.get(Eqz), EqzReg).addReg(CmpReg);
508 
509   // Create the CFG diamond to select between doing the conversion or using
510   // the substitute value.
511   BuildMI(BB, DL, TII.get(WebAssembly::BR_IF)).addMBB(TrueMBB).addReg(EqzReg);
512   BuildMI(FalseMBB, DL, TII.get(LoweredOpcode), FalseReg).addReg(InReg);
513   BuildMI(FalseMBB, DL, TII.get(WebAssembly::BR)).addMBB(DoneMBB);
514   BuildMI(TrueMBB, DL, TII.get(IConst), TrueReg).addImm(Substitute);
515   BuildMI(*DoneMBB, DoneMBB->begin(), DL, TII.get(TargetOpcode::PHI), OutReg)
516       .addReg(FalseReg)
517       .addMBB(FalseMBB)
518       .addReg(TrueReg)
519       .addMBB(TrueMBB);
520 
521   return DoneMBB;
522 }
523 
524 static MachineBasicBlock *
525 LowerCallResults(MachineInstr &CallResults, DebugLoc DL, MachineBasicBlock *BB,
526                  const WebAssemblySubtarget *Subtarget,
527                  const TargetInstrInfo &TII) {
528   MachineInstr &CallParams = *CallResults.getPrevNode();
529   assert(CallParams.getOpcode() == WebAssembly::CALL_PARAMS);
530   assert(CallResults.getOpcode() == WebAssembly::CALL_RESULTS ||
531          CallResults.getOpcode() == WebAssembly::RET_CALL_RESULTS);
532 
533   bool IsIndirect = CallParams.getOperand(0).isReg();
534   bool IsRetCall = CallResults.getOpcode() == WebAssembly::RET_CALL_RESULTS;
535 
536   bool IsFuncrefCall = false;
537   if (IsIndirect) {
538     Register Reg = CallParams.getOperand(0).getReg();
539     const MachineFunction *MF = BB->getParent();
540     const MachineRegisterInfo &MRI = MF->getRegInfo();
541     const TargetRegisterClass *TRC = MRI.getRegClass(Reg);
542     IsFuncrefCall = (TRC == &WebAssembly::FUNCREFRegClass);
543     assert(!IsFuncrefCall || Subtarget->hasReferenceTypes());
544   }
545 
546   unsigned CallOp;
547   if (IsIndirect && IsRetCall) {
548     CallOp = WebAssembly::RET_CALL_INDIRECT;
549   } else if (IsIndirect) {
550     CallOp = WebAssembly::CALL_INDIRECT;
551   } else if (IsRetCall) {
552     CallOp = WebAssembly::RET_CALL;
553   } else {
554     CallOp = WebAssembly::CALL;
555   }
556 
557   MachineFunction &MF = *BB->getParent();
558   const MCInstrDesc &MCID = TII.get(CallOp);
559   MachineInstrBuilder MIB(MF, MF.CreateMachineInstr(MCID, DL));
560 
561   // See if we must truncate the function pointer.
562   // CALL_INDIRECT takes an i32, but in wasm64 we represent function pointers
563   // as 64-bit for uniformity with other pointer types.
564   // See also: WebAssemblyFastISel::selectCall
565   if (IsIndirect && MF.getSubtarget<WebAssemblySubtarget>().hasAddr64()) {
566     Register Reg32 =
567         MF.getRegInfo().createVirtualRegister(&WebAssembly::I32RegClass);
568     auto &FnPtr = CallParams.getOperand(0);
569     BuildMI(*BB, CallResults.getIterator(), DL,
570             TII.get(WebAssembly::I32_WRAP_I64), Reg32)
571         .addReg(FnPtr.getReg());
572     FnPtr.setReg(Reg32);
573   }
574 
575   // Move the function pointer to the end of the arguments for indirect calls
576   if (IsIndirect) {
577     auto FnPtr = CallParams.getOperand(0);
578     CallParams.RemoveOperand(0);
579 
580     // For funcrefs, call_indirect is done through __funcref_call_table and the
581     // funcref is always installed in slot 0 of the table, therefore instead of having
582     // the function pointer added at the end of the params list, a zero (the index in
583     // __funcref_call_table is added).
584     if (IsFuncrefCall) {
585       Register RegZero =
586           MF.getRegInfo().createVirtualRegister(&WebAssembly::I32RegClass);
587       MachineInstrBuilder MIBC0 =
588           BuildMI(MF, DL, TII.get(WebAssembly::CONST_I32), RegZero).addImm(0);
589 
590       BB->insert(CallResults.getIterator(), MIBC0);
591       MachineInstrBuilder(MF, CallParams).addReg(RegZero);
592     } else
593       CallParams.addOperand(FnPtr);
594   }
595 
596   for (auto Def : CallResults.defs())
597     MIB.add(Def);
598 
599   if (IsIndirect) {
600     // Placeholder for the type index.
601     MIB.addImm(0);
602     // The table into which this call_indirect indexes.
603     MCSymbolWasm *Table = IsFuncrefCall
604                               ? WebAssembly::getOrCreateFuncrefCallTableSymbol(
605                                     MF.getContext(), Subtarget)
606                               : WebAssembly::getOrCreateFunctionTableSymbol(
607                                     MF.getContext(), Subtarget);
608     if (Subtarget->hasReferenceTypes()) {
609       MIB.addSym(Table);
610     } else {
611       // For the MVP there is at most one table whose number is 0, but we can't
612       // write a table symbol or issue relocations.  Instead we just ensure the
613       // table is live and write a zero.
614       Table->setNoStrip();
615       MIB.addImm(0);
616     }
617   }
618 
619   for (auto Use : CallParams.uses())
620     MIB.add(Use);
621 
622   BB->insert(CallResults.getIterator(), MIB);
623   CallParams.eraseFromParent();
624   CallResults.eraseFromParent();
625 
626   // If this is a funcref call, to avoid hidden GC roots, we need to clear the
627   // table slot with ref.null upon call_indirect return.
628   //
629   // This generates the following code, which comes right after a call_indirect
630   // of a funcref:
631   //
632   //    i32.const 0
633   //    ref.null func
634   //    table.set __funcref_call_table
635   if (IsIndirect && IsFuncrefCall) {
636     MCSymbolWasm *Table = WebAssembly::getOrCreateFuncrefCallTableSymbol(
637         MF.getContext(), Subtarget);
638     Register RegZero =
639         MF.getRegInfo().createVirtualRegister(&WebAssembly::I32RegClass);
640     MachineInstr *Const0 =
641         BuildMI(MF, DL, TII.get(WebAssembly::CONST_I32), RegZero).addImm(0);
642     BB->insertAfter(MIB.getInstr()->getIterator(), Const0);
643 
644     Register RegFuncref =
645         MF.getRegInfo().createVirtualRegister(&WebAssembly::FUNCREFRegClass);
646     MachineInstr *RefNull =
647         BuildMI(MF, DL, TII.get(WebAssembly::REF_NULL_FUNCREF), RegFuncref)
648             .addImm(static_cast<int32_t>(WebAssembly::HeapType::Funcref));
649     BB->insertAfter(Const0->getIterator(), RefNull);
650 
651     MachineInstr *TableSet =
652         BuildMI(MF, DL, TII.get(WebAssembly::TABLE_SET_FUNCREF))
653             .addSym(Table)
654             .addReg(RegZero)
655             .addReg(RegFuncref);
656     BB->insertAfter(RefNull->getIterator(), TableSet);
657   }
658 
659   return BB;
660 }
661 
662 MachineBasicBlock *WebAssemblyTargetLowering::EmitInstrWithCustomInserter(
663     MachineInstr &MI, MachineBasicBlock *BB) const {
664   const TargetInstrInfo &TII = *Subtarget->getInstrInfo();
665   DebugLoc DL = MI.getDebugLoc();
666 
667   switch (MI.getOpcode()) {
668   default:
669     llvm_unreachable("Unexpected instr type to insert");
670   case WebAssembly::FP_TO_SINT_I32_F32:
671     return LowerFPToInt(MI, DL, BB, TII, false, false, false,
672                         WebAssembly::I32_TRUNC_S_F32);
673   case WebAssembly::FP_TO_UINT_I32_F32:
674     return LowerFPToInt(MI, DL, BB, TII, true, false, false,
675                         WebAssembly::I32_TRUNC_U_F32);
676   case WebAssembly::FP_TO_SINT_I64_F32:
677     return LowerFPToInt(MI, DL, BB, TII, false, true, false,
678                         WebAssembly::I64_TRUNC_S_F32);
679   case WebAssembly::FP_TO_UINT_I64_F32:
680     return LowerFPToInt(MI, DL, BB, TII, true, true, false,
681                         WebAssembly::I64_TRUNC_U_F32);
682   case WebAssembly::FP_TO_SINT_I32_F64:
683     return LowerFPToInt(MI, DL, BB, TII, false, false, true,
684                         WebAssembly::I32_TRUNC_S_F64);
685   case WebAssembly::FP_TO_UINT_I32_F64:
686     return LowerFPToInt(MI, DL, BB, TII, true, false, true,
687                         WebAssembly::I32_TRUNC_U_F64);
688   case WebAssembly::FP_TO_SINT_I64_F64:
689     return LowerFPToInt(MI, DL, BB, TII, false, true, true,
690                         WebAssembly::I64_TRUNC_S_F64);
691   case WebAssembly::FP_TO_UINT_I64_F64:
692     return LowerFPToInt(MI, DL, BB, TII, true, true, true,
693                         WebAssembly::I64_TRUNC_U_F64);
694   case WebAssembly::CALL_RESULTS:
695   case WebAssembly::RET_CALL_RESULTS:
696     return LowerCallResults(MI, DL, BB, Subtarget, TII);
697   }
698 }
699 
700 const char *
701 WebAssemblyTargetLowering::getTargetNodeName(unsigned Opcode) const {
702   switch (static_cast<WebAssemblyISD::NodeType>(Opcode)) {
703   case WebAssemblyISD::FIRST_NUMBER:
704   case WebAssemblyISD::FIRST_MEM_OPCODE:
705     break;
706 #define HANDLE_NODETYPE(NODE)                                                  \
707   case WebAssemblyISD::NODE:                                                   \
708     return "WebAssemblyISD::" #NODE;
709 #define HANDLE_MEM_NODETYPE(NODE) HANDLE_NODETYPE(NODE)
710 #include "WebAssemblyISD.def"
711 #undef HANDLE_MEM_NODETYPE
712 #undef HANDLE_NODETYPE
713   }
714   return nullptr;
715 }
716 
717 std::pair<unsigned, const TargetRegisterClass *>
718 WebAssemblyTargetLowering::getRegForInlineAsmConstraint(
719     const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const {
720   // First, see if this is a constraint that directly corresponds to a
721   // WebAssembly register class.
722   if (Constraint.size() == 1) {
723     switch (Constraint[0]) {
724     case 'r':
725       assert(VT != MVT::iPTR && "Pointer MVT not expected here");
726       if (Subtarget->hasSIMD128() && VT.isVector()) {
727         if (VT.getSizeInBits() == 128)
728           return std::make_pair(0U, &WebAssembly::V128RegClass);
729       }
730       if (VT.isInteger() && !VT.isVector()) {
731         if (VT.getSizeInBits() <= 32)
732           return std::make_pair(0U, &WebAssembly::I32RegClass);
733         if (VT.getSizeInBits() <= 64)
734           return std::make_pair(0U, &WebAssembly::I64RegClass);
735       }
736       if (VT.isFloatingPoint() && !VT.isVector()) {
737         switch (VT.getSizeInBits()) {
738         case 32:
739           return std::make_pair(0U, &WebAssembly::F32RegClass);
740         case 64:
741           return std::make_pair(0U, &WebAssembly::F64RegClass);
742         default:
743           break;
744         }
745       }
746       break;
747     default:
748       break;
749     }
750   }
751 
752   return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
753 }
754 
755 bool WebAssemblyTargetLowering::isCheapToSpeculateCttz() const {
756   // Assume ctz is a relatively cheap operation.
757   return true;
758 }
759 
760 bool WebAssemblyTargetLowering::isCheapToSpeculateCtlz() const {
761   // Assume clz is a relatively cheap operation.
762   return true;
763 }
764 
765 bool WebAssemblyTargetLowering::isLegalAddressingMode(const DataLayout &DL,
766                                                       const AddrMode &AM,
767                                                       Type *Ty, unsigned AS,
768                                                       Instruction *I) const {
769   // WebAssembly offsets are added as unsigned without wrapping. The
770   // isLegalAddressingMode gives us no way to determine if wrapping could be
771   // happening, so we approximate this by accepting only non-negative offsets.
772   if (AM.BaseOffs < 0)
773     return false;
774 
775   // WebAssembly has no scale register operands.
776   if (AM.Scale != 0)
777     return false;
778 
779   // Everything else is legal.
780   return true;
781 }
782 
783 bool WebAssemblyTargetLowering::allowsMisalignedMemoryAccesses(
784     EVT /*VT*/, unsigned /*AddrSpace*/, Align /*Align*/,
785     MachineMemOperand::Flags /*Flags*/, bool *Fast) const {
786   // WebAssembly supports unaligned accesses, though it should be declared
787   // with the p2align attribute on loads and stores which do so, and there
788   // may be a performance impact. We tell LLVM they're "fast" because
789   // for the kinds of things that LLVM uses this for (merging adjacent stores
790   // of constants, etc.), WebAssembly implementations will either want the
791   // unaligned access or they'll split anyway.
792   if (Fast)
793     *Fast = true;
794   return true;
795 }
796 
797 bool WebAssemblyTargetLowering::isIntDivCheap(EVT VT,
798                                               AttributeList Attr) const {
799   // The current thinking is that wasm engines will perform this optimization,
800   // so we can save on code size.
801   return true;
802 }
803 
804 bool WebAssemblyTargetLowering::isVectorLoadExtDesirable(SDValue ExtVal) const {
805   EVT ExtT = ExtVal.getValueType();
806   EVT MemT = cast<LoadSDNode>(ExtVal->getOperand(0))->getValueType(0);
807   return (ExtT == MVT::v8i16 && MemT == MVT::v8i8) ||
808          (ExtT == MVT::v4i32 && MemT == MVT::v4i16) ||
809          (ExtT == MVT::v2i64 && MemT == MVT::v2i32);
810 }
811 
812 bool WebAssemblyTargetLowering::isOffsetFoldingLegal(
813     const GlobalAddressSDNode *GA) const {
814   // Wasm doesn't support function addresses with offsets
815   const GlobalValue *GV = GA->getGlobal();
816   return isa<Function>(GV) ? false : TargetLowering::isOffsetFoldingLegal(GA);
817 }
818 
819 EVT WebAssemblyTargetLowering::getSetCCResultType(const DataLayout &DL,
820                                                   LLVMContext &C,
821                                                   EVT VT) const {
822   if (VT.isVector())
823     return VT.changeVectorElementTypeToInteger();
824 
825   // So far, all branch instructions in Wasm take an I32 condition.
826   // The default TargetLowering::getSetCCResultType returns the pointer size,
827   // which would be useful to reduce instruction counts when testing
828   // against 64-bit pointers/values if at some point Wasm supports that.
829   return EVT::getIntegerVT(C, 32);
830 }
831 
832 bool WebAssemblyTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
833                                                    const CallInst &I,
834                                                    MachineFunction &MF,
835                                                    unsigned Intrinsic) const {
836   switch (Intrinsic) {
837   case Intrinsic::wasm_memory_atomic_notify:
838     Info.opc = ISD::INTRINSIC_W_CHAIN;
839     Info.memVT = MVT::i32;
840     Info.ptrVal = I.getArgOperand(0);
841     Info.offset = 0;
842     Info.align = Align(4);
843     // atomic.notify instruction does not really load the memory specified with
844     // this argument, but MachineMemOperand should either be load or store, so
845     // we set this to a load.
846     // FIXME Volatile isn't really correct, but currently all LLVM atomic
847     // instructions are treated as volatiles in the backend, so we should be
848     // consistent. The same applies for wasm_atomic_wait intrinsics too.
849     Info.flags = MachineMemOperand::MOVolatile | MachineMemOperand::MOLoad;
850     return true;
851   case Intrinsic::wasm_memory_atomic_wait32:
852     Info.opc = ISD::INTRINSIC_W_CHAIN;
853     Info.memVT = MVT::i32;
854     Info.ptrVal = I.getArgOperand(0);
855     Info.offset = 0;
856     Info.align = Align(4);
857     Info.flags = MachineMemOperand::MOVolatile | MachineMemOperand::MOLoad;
858     return true;
859   case Intrinsic::wasm_memory_atomic_wait64:
860     Info.opc = ISD::INTRINSIC_W_CHAIN;
861     Info.memVT = MVT::i64;
862     Info.ptrVal = I.getArgOperand(0);
863     Info.offset = 0;
864     Info.align = Align(8);
865     Info.flags = MachineMemOperand::MOVolatile | MachineMemOperand::MOLoad;
866     return true;
867   default:
868     return false;
869   }
870 }
871 
872 void WebAssemblyTargetLowering::computeKnownBitsForTargetNode(
873     const SDValue Op, KnownBits &Known, const APInt &DemandedElts,
874     const SelectionDAG &DAG, unsigned Depth) const {
875   switch (Op.getOpcode()) {
876   default:
877     break;
878   case ISD::INTRINSIC_WO_CHAIN: {
879     unsigned IntNo = Op.getConstantOperandVal(0);
880     switch (IntNo) {
881     default:
882       break;
883     case Intrinsic::wasm_bitmask: {
884       unsigned BitWidth = Known.getBitWidth();
885       EVT VT = Op.getOperand(1).getSimpleValueType();
886       unsigned PossibleBits = VT.getVectorNumElements();
887       APInt ZeroMask = APInt::getHighBitsSet(BitWidth, BitWidth - PossibleBits);
888       Known.Zero |= ZeroMask;
889       break;
890     }
891     }
892   }
893   }
894 }
895 
896 TargetLoweringBase::LegalizeTypeAction
897 WebAssemblyTargetLowering::getPreferredVectorAction(MVT VT) const {
898   if (VT.isFixedLengthVector()) {
899     MVT EltVT = VT.getVectorElementType();
900     // We have legal vector types with these lane types, so widening the
901     // vector would let us use some of the lanes directly without having to
902     // extend or truncate values.
903     if (EltVT == MVT::i8 || EltVT == MVT::i16 || EltVT == MVT::i32 ||
904         EltVT == MVT::i64 || EltVT == MVT::f32 || EltVT == MVT::f64)
905       return TypeWidenVector;
906   }
907 
908   return TargetLoweringBase::getPreferredVectorAction(VT);
909 }
910 
911 //===----------------------------------------------------------------------===//
912 // WebAssembly Lowering private implementation.
913 //===----------------------------------------------------------------------===//
914 
915 //===----------------------------------------------------------------------===//
916 // Lowering Code
917 //===----------------------------------------------------------------------===//
918 
919 static void fail(const SDLoc &DL, SelectionDAG &DAG, const char *Msg) {
920   MachineFunction &MF = DAG.getMachineFunction();
921   DAG.getContext()->diagnose(
922       DiagnosticInfoUnsupported(MF.getFunction(), Msg, DL.getDebugLoc()));
923 }
924 
925 // Test whether the given calling convention is supported.
926 static bool callingConvSupported(CallingConv::ID CallConv) {
927   // We currently support the language-independent target-independent
928   // conventions. We don't yet have a way to annotate calls with properties like
929   // "cold", and we don't have any call-clobbered registers, so these are mostly
930   // all handled the same.
931   return CallConv == CallingConv::C || CallConv == CallingConv::Fast ||
932          CallConv == CallingConv::Cold ||
933          CallConv == CallingConv::PreserveMost ||
934          CallConv == CallingConv::PreserveAll ||
935          CallConv == CallingConv::CXX_FAST_TLS ||
936          CallConv == CallingConv::WASM_EmscriptenInvoke ||
937          CallConv == CallingConv::Swift;
938 }
939 
940 SDValue
941 WebAssemblyTargetLowering::LowerCall(CallLoweringInfo &CLI,
942                                      SmallVectorImpl<SDValue> &InVals) const {
943   SelectionDAG &DAG = CLI.DAG;
944   SDLoc DL = CLI.DL;
945   SDValue Chain = CLI.Chain;
946   SDValue Callee = CLI.Callee;
947   MachineFunction &MF = DAG.getMachineFunction();
948   auto Layout = MF.getDataLayout();
949 
950   CallingConv::ID CallConv = CLI.CallConv;
951   if (!callingConvSupported(CallConv))
952     fail(DL, DAG,
953          "WebAssembly doesn't support language-specific or target-specific "
954          "calling conventions yet");
955   if (CLI.IsPatchPoint)
956     fail(DL, DAG, "WebAssembly doesn't support patch point yet");
957 
958   if (CLI.IsTailCall) {
959     auto NoTail = [&](const char *Msg) {
960       if (CLI.CB && CLI.CB->isMustTailCall())
961         fail(DL, DAG, Msg);
962       CLI.IsTailCall = false;
963     };
964 
965     if (!Subtarget->hasTailCall())
966       NoTail("WebAssembly 'tail-call' feature not enabled");
967 
968     // Varargs calls cannot be tail calls because the buffer is on the stack
969     if (CLI.IsVarArg)
970       NoTail("WebAssembly does not support varargs tail calls");
971 
972     // Do not tail call unless caller and callee return types match
973     const Function &F = MF.getFunction();
974     const TargetMachine &TM = getTargetMachine();
975     Type *RetTy = F.getReturnType();
976     SmallVector<MVT, 4> CallerRetTys;
977     SmallVector<MVT, 4> CalleeRetTys;
978     computeLegalValueVTs(F, TM, RetTy, CallerRetTys);
979     computeLegalValueVTs(F, TM, CLI.RetTy, CalleeRetTys);
980     bool TypesMatch = CallerRetTys.size() == CalleeRetTys.size() &&
981                       std::equal(CallerRetTys.begin(), CallerRetTys.end(),
982                                  CalleeRetTys.begin());
983     if (!TypesMatch)
984       NoTail("WebAssembly tail call requires caller and callee return types to "
985              "match");
986 
987     // If pointers to local stack values are passed, we cannot tail call
988     if (CLI.CB) {
989       for (auto &Arg : CLI.CB->args()) {
990         Value *Val = Arg.get();
991         // Trace the value back through pointer operations
992         while (true) {
993           Value *Src = Val->stripPointerCastsAndAliases();
994           if (auto *GEP = dyn_cast<GetElementPtrInst>(Src))
995             Src = GEP->getPointerOperand();
996           if (Val == Src)
997             break;
998           Val = Src;
999         }
1000         if (isa<AllocaInst>(Val)) {
1001           NoTail(
1002               "WebAssembly does not support tail calling with stack arguments");
1003           break;
1004         }
1005       }
1006     }
1007   }
1008 
1009   SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
1010   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
1011   SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
1012 
1013   // The generic code may have added an sret argument. If we're lowering an
1014   // invoke function, the ABI requires that the function pointer be the first
1015   // argument, so we may have to swap the arguments.
1016   if (CallConv == CallingConv::WASM_EmscriptenInvoke && Outs.size() >= 2 &&
1017       Outs[0].Flags.isSRet()) {
1018     std::swap(Outs[0], Outs[1]);
1019     std::swap(OutVals[0], OutVals[1]);
1020   }
1021 
1022   bool HasSwiftSelfArg = false;
1023   bool HasSwiftErrorArg = false;
1024   unsigned NumFixedArgs = 0;
1025   for (unsigned I = 0; I < Outs.size(); ++I) {
1026     const ISD::OutputArg &Out = Outs[I];
1027     SDValue &OutVal = OutVals[I];
1028     HasSwiftSelfArg |= Out.Flags.isSwiftSelf();
1029     HasSwiftErrorArg |= Out.Flags.isSwiftError();
1030     if (Out.Flags.isNest())
1031       fail(DL, DAG, "WebAssembly hasn't implemented nest arguments");
1032     if (Out.Flags.isInAlloca())
1033       fail(DL, DAG, "WebAssembly hasn't implemented inalloca arguments");
1034     if (Out.Flags.isInConsecutiveRegs())
1035       fail(DL, DAG, "WebAssembly hasn't implemented cons regs arguments");
1036     if (Out.Flags.isInConsecutiveRegsLast())
1037       fail(DL, DAG, "WebAssembly hasn't implemented cons regs last arguments");
1038     if (Out.Flags.isByVal() && Out.Flags.getByValSize() != 0) {
1039       auto &MFI = MF.getFrameInfo();
1040       int FI = MFI.CreateStackObject(Out.Flags.getByValSize(),
1041                                      Out.Flags.getNonZeroByValAlign(),
1042                                      /*isSS=*/false);
1043       SDValue SizeNode =
1044           DAG.getConstant(Out.Flags.getByValSize(), DL, MVT::i32);
1045       SDValue FINode = DAG.getFrameIndex(FI, getPointerTy(Layout));
1046       Chain = DAG.getMemcpy(
1047           Chain, DL, FINode, OutVal, SizeNode, Out.Flags.getNonZeroByValAlign(),
1048           /*isVolatile*/ false, /*AlwaysInline=*/false,
1049           /*isTailCall*/ false, MachinePointerInfo(), MachinePointerInfo());
1050       OutVal = FINode;
1051     }
1052     // Count the number of fixed args *after* legalization.
1053     NumFixedArgs += Out.IsFixed;
1054   }
1055 
1056   bool IsVarArg = CLI.IsVarArg;
1057   auto PtrVT = getPointerTy(Layout);
1058 
1059   // For swiftcc, emit additional swiftself and swifterror arguments
1060   // if there aren't. These additional arguments are also added for callee
1061   // signature They are necessary to match callee and caller signature for
1062   // indirect call.
1063   if (CallConv == CallingConv::Swift) {
1064     if (!HasSwiftSelfArg) {
1065       NumFixedArgs++;
1066       ISD::OutputArg Arg;
1067       Arg.Flags.setSwiftSelf();
1068       CLI.Outs.push_back(Arg);
1069       SDValue ArgVal = DAG.getUNDEF(PtrVT);
1070       CLI.OutVals.push_back(ArgVal);
1071     }
1072     if (!HasSwiftErrorArg) {
1073       NumFixedArgs++;
1074       ISD::OutputArg Arg;
1075       Arg.Flags.setSwiftError();
1076       CLI.Outs.push_back(Arg);
1077       SDValue ArgVal = DAG.getUNDEF(PtrVT);
1078       CLI.OutVals.push_back(ArgVal);
1079     }
1080   }
1081 
1082   // Analyze operands of the call, assigning locations to each operand.
1083   SmallVector<CCValAssign, 16> ArgLocs;
1084   CCState CCInfo(CallConv, IsVarArg, MF, ArgLocs, *DAG.getContext());
1085 
1086   if (IsVarArg) {
1087     // Outgoing non-fixed arguments are placed in a buffer. First
1088     // compute their offsets and the total amount of buffer space needed.
1089     for (unsigned I = NumFixedArgs; I < Outs.size(); ++I) {
1090       const ISD::OutputArg &Out = Outs[I];
1091       SDValue &Arg = OutVals[I];
1092       EVT VT = Arg.getValueType();
1093       assert(VT != MVT::iPTR && "Legalized args should be concrete");
1094       Type *Ty = VT.getTypeForEVT(*DAG.getContext());
1095       Align Alignment =
1096           std::max(Out.Flags.getNonZeroOrigAlign(), Layout.getABITypeAlign(Ty));
1097       unsigned Offset =
1098           CCInfo.AllocateStack(Layout.getTypeAllocSize(Ty), Alignment);
1099       CCInfo.addLoc(CCValAssign::getMem(ArgLocs.size(), VT.getSimpleVT(),
1100                                         Offset, VT.getSimpleVT(),
1101                                         CCValAssign::Full));
1102     }
1103   }
1104 
1105   unsigned NumBytes = CCInfo.getAlignedCallFrameSize();
1106 
1107   SDValue FINode;
1108   if (IsVarArg && NumBytes) {
1109     // For non-fixed arguments, next emit stores to store the argument values
1110     // to the stack buffer at the offsets computed above.
1111     int FI = MF.getFrameInfo().CreateStackObject(NumBytes,
1112                                                  Layout.getStackAlignment(),
1113                                                  /*isSS=*/false);
1114     unsigned ValNo = 0;
1115     SmallVector<SDValue, 8> Chains;
1116     for (SDValue Arg : drop_begin(OutVals, NumFixedArgs)) {
1117       assert(ArgLocs[ValNo].getValNo() == ValNo &&
1118              "ArgLocs should remain in order and only hold varargs args");
1119       unsigned Offset = ArgLocs[ValNo++].getLocMemOffset();
1120       FINode = DAG.getFrameIndex(FI, getPointerTy(Layout));
1121       SDValue Add = DAG.getNode(ISD::ADD, DL, PtrVT, FINode,
1122                                 DAG.getConstant(Offset, DL, PtrVT));
1123       Chains.push_back(
1124           DAG.getStore(Chain, DL, Arg, Add,
1125                        MachinePointerInfo::getFixedStack(MF, FI, Offset)));
1126     }
1127     if (!Chains.empty())
1128       Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chains);
1129   } else if (IsVarArg) {
1130     FINode = DAG.getIntPtrConstant(0, DL);
1131   }
1132 
1133   if (Callee->getOpcode() == ISD::GlobalAddress) {
1134     // If the callee is a GlobalAddress node (quite common, every direct call
1135     // is) turn it into a TargetGlobalAddress node so that LowerGlobalAddress
1136     // doesn't at MO_GOT which is not needed for direct calls.
1137     GlobalAddressSDNode* GA = cast<GlobalAddressSDNode>(Callee);
1138     Callee = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
1139                                         getPointerTy(DAG.getDataLayout()),
1140                                         GA->getOffset());
1141     Callee = DAG.getNode(WebAssemblyISD::Wrapper, DL,
1142                          getPointerTy(DAG.getDataLayout()), Callee);
1143   }
1144 
1145   // Compute the operands for the CALLn node.
1146   SmallVector<SDValue, 16> Ops;
1147   Ops.push_back(Chain);
1148   Ops.push_back(Callee);
1149 
1150   // Add all fixed arguments. Note that for non-varargs calls, NumFixedArgs
1151   // isn't reliable.
1152   Ops.append(OutVals.begin(),
1153              IsVarArg ? OutVals.begin() + NumFixedArgs : OutVals.end());
1154   // Add a pointer to the vararg buffer.
1155   if (IsVarArg)
1156     Ops.push_back(FINode);
1157 
1158   SmallVector<EVT, 8> InTys;
1159   for (const auto &In : Ins) {
1160     assert(!In.Flags.isByVal() && "byval is not valid for return values");
1161     assert(!In.Flags.isNest() && "nest is not valid for return values");
1162     if (In.Flags.isInAlloca())
1163       fail(DL, DAG, "WebAssembly hasn't implemented inalloca return values");
1164     if (In.Flags.isInConsecutiveRegs())
1165       fail(DL, DAG, "WebAssembly hasn't implemented cons regs return values");
1166     if (In.Flags.isInConsecutiveRegsLast())
1167       fail(DL, DAG,
1168            "WebAssembly hasn't implemented cons regs last return values");
1169     // Ignore In.getNonZeroOrigAlign() because all our arguments are passed in
1170     // registers.
1171     InTys.push_back(In.VT);
1172   }
1173 
1174   // Lastly, if this is a call to a funcref we need to add an instruction
1175   // table.set to the chain and transform the call.
1176   if (CLI.CB &&
1177       WebAssembly::isFuncrefType(CLI.CB->getCalledOperand()->getType())) {
1178     // In the absence of function references proposal where a funcref call is
1179     // lowered to call_ref, using reference types we generate a table.set to set
1180     // the funcref to a special table used solely for this purpose, followed by
1181     // a call_indirect. Here we just generate the table set, and return the
1182     // SDValue of the table.set so that LowerCall can finalize the lowering by
1183     // generating the call_indirect.
1184     SDValue Chain = Ops[0];
1185 
1186     MCSymbolWasm *Table = WebAssembly::getOrCreateFuncrefCallTableSymbol(
1187         MF.getContext(), Subtarget);
1188     SDValue Sym = DAG.getMCSymbol(Table, PtrVT);
1189     SDValue TableSlot = DAG.getConstant(0, DL, MVT::i32);
1190     SDValue TableSetOps[] = {Chain, Sym, TableSlot, Callee};
1191     SDValue TableSet = DAG.getMemIntrinsicNode(
1192         WebAssemblyISD::TABLE_SET, DL, DAG.getVTList(MVT::Other), TableSetOps,
1193         MVT::funcref,
1194         // Machine Mem Operand args
1195         MachinePointerInfo(
1196             WebAssembly::WasmAddressSpace::WASM_ADDRESS_SPACE_FUNCREF),
1197         CLI.CB->getCalledOperand()->getPointerAlignment(DAG.getDataLayout()),
1198         MachineMemOperand::MOStore);
1199 
1200     Ops[0] = TableSet; // The new chain is the TableSet itself
1201   }
1202 
1203   if (CLI.IsTailCall) {
1204     // ret_calls do not return values to the current frame
1205     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
1206     return DAG.getNode(WebAssemblyISD::RET_CALL, DL, NodeTys, Ops);
1207   }
1208 
1209   InTys.push_back(MVT::Other);
1210   SDVTList InTyList = DAG.getVTList(InTys);
1211   SDValue Res = DAG.getNode(WebAssemblyISD::CALL, DL, InTyList, Ops);
1212 
1213   for (size_t I = 0; I < Ins.size(); ++I)
1214     InVals.push_back(Res.getValue(I));
1215 
1216   // Return the chain
1217   return Res.getValue(Ins.size());
1218 }
1219 
1220 bool WebAssemblyTargetLowering::CanLowerReturn(
1221     CallingConv::ID /*CallConv*/, MachineFunction & /*MF*/, bool /*IsVarArg*/,
1222     const SmallVectorImpl<ISD::OutputArg> &Outs,
1223     LLVMContext & /*Context*/) const {
1224   // WebAssembly can only handle returning tuples with multivalue enabled
1225   return Subtarget->hasMultivalue() || Outs.size() <= 1;
1226 }
1227 
1228 SDValue WebAssemblyTargetLowering::LowerReturn(
1229     SDValue Chain, CallingConv::ID CallConv, bool /*IsVarArg*/,
1230     const SmallVectorImpl<ISD::OutputArg> &Outs,
1231     const SmallVectorImpl<SDValue> &OutVals, const SDLoc &DL,
1232     SelectionDAG &DAG) const {
1233   assert((Subtarget->hasMultivalue() || Outs.size() <= 1) &&
1234          "MVP WebAssembly can only return up to one value");
1235   if (!callingConvSupported(CallConv))
1236     fail(DL, DAG, "WebAssembly doesn't support non-C calling conventions");
1237 
1238   SmallVector<SDValue, 4> RetOps(1, Chain);
1239   RetOps.append(OutVals.begin(), OutVals.end());
1240   Chain = DAG.getNode(WebAssemblyISD::RETURN, DL, MVT::Other, RetOps);
1241 
1242   // Record the number and types of the return values.
1243   for (const ISD::OutputArg &Out : Outs) {
1244     assert(!Out.Flags.isByVal() && "byval is not valid for return values");
1245     assert(!Out.Flags.isNest() && "nest is not valid for return values");
1246     assert(Out.IsFixed && "non-fixed return value is not valid");
1247     if (Out.Flags.isInAlloca())
1248       fail(DL, DAG, "WebAssembly hasn't implemented inalloca results");
1249     if (Out.Flags.isInConsecutiveRegs())
1250       fail(DL, DAG, "WebAssembly hasn't implemented cons regs results");
1251     if (Out.Flags.isInConsecutiveRegsLast())
1252       fail(DL, DAG, "WebAssembly hasn't implemented cons regs last results");
1253   }
1254 
1255   return Chain;
1256 }
1257 
1258 SDValue WebAssemblyTargetLowering::LowerFormalArguments(
1259     SDValue Chain, CallingConv::ID CallConv, bool IsVarArg,
1260     const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &DL,
1261     SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const {
1262   if (!callingConvSupported(CallConv))
1263     fail(DL, DAG, "WebAssembly doesn't support non-C calling conventions");
1264 
1265   MachineFunction &MF = DAG.getMachineFunction();
1266   auto *MFI = MF.getInfo<WebAssemblyFunctionInfo>();
1267 
1268   // Set up the incoming ARGUMENTS value, which serves to represent the liveness
1269   // of the incoming values before they're represented by virtual registers.
1270   MF.getRegInfo().addLiveIn(WebAssembly::ARGUMENTS);
1271 
1272   bool HasSwiftErrorArg = false;
1273   bool HasSwiftSelfArg = false;
1274   for (const ISD::InputArg &In : Ins) {
1275     HasSwiftSelfArg |= In.Flags.isSwiftSelf();
1276     HasSwiftErrorArg |= In.Flags.isSwiftError();
1277     if (In.Flags.isInAlloca())
1278       fail(DL, DAG, "WebAssembly hasn't implemented inalloca arguments");
1279     if (In.Flags.isNest())
1280       fail(DL, DAG, "WebAssembly hasn't implemented nest arguments");
1281     if (In.Flags.isInConsecutiveRegs())
1282       fail(DL, DAG, "WebAssembly hasn't implemented cons regs arguments");
1283     if (In.Flags.isInConsecutiveRegsLast())
1284       fail(DL, DAG, "WebAssembly hasn't implemented cons regs last arguments");
1285     // Ignore In.getNonZeroOrigAlign() because all our arguments are passed in
1286     // registers.
1287     InVals.push_back(In.Used ? DAG.getNode(WebAssemblyISD::ARGUMENT, DL, In.VT,
1288                                            DAG.getTargetConstant(InVals.size(),
1289                                                                  DL, MVT::i32))
1290                              : DAG.getUNDEF(In.VT));
1291 
1292     // Record the number and types of arguments.
1293     MFI->addParam(In.VT);
1294   }
1295 
1296   // For swiftcc, emit additional swiftself and swifterror arguments
1297   // if there aren't. These additional arguments are also added for callee
1298   // signature They are necessary to match callee and caller signature for
1299   // indirect call.
1300   auto PtrVT = getPointerTy(MF.getDataLayout());
1301   if (CallConv == CallingConv::Swift) {
1302     if (!HasSwiftSelfArg) {
1303       MFI->addParam(PtrVT);
1304     }
1305     if (!HasSwiftErrorArg) {
1306       MFI->addParam(PtrVT);
1307     }
1308   }
1309   // Varargs are copied into a buffer allocated by the caller, and a pointer to
1310   // the buffer is passed as an argument.
1311   if (IsVarArg) {
1312     MVT PtrVT = getPointerTy(MF.getDataLayout());
1313     Register VarargVreg =
1314         MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrVT));
1315     MFI->setVarargBufferVreg(VarargVreg);
1316     Chain = DAG.getCopyToReg(
1317         Chain, DL, VarargVreg,
1318         DAG.getNode(WebAssemblyISD::ARGUMENT, DL, PtrVT,
1319                     DAG.getTargetConstant(Ins.size(), DL, MVT::i32)));
1320     MFI->addParam(PtrVT);
1321   }
1322 
1323   // Record the number and types of arguments and results.
1324   SmallVector<MVT, 4> Params;
1325   SmallVector<MVT, 4> Results;
1326   computeSignatureVTs(MF.getFunction().getFunctionType(), &MF.getFunction(),
1327                       MF.getFunction(), DAG.getTarget(), Params, Results);
1328   for (MVT VT : Results)
1329     MFI->addResult(VT);
1330   // TODO: Use signatures in WebAssemblyMachineFunctionInfo too and unify
1331   // the param logic here with ComputeSignatureVTs
1332   assert(MFI->getParams().size() == Params.size() &&
1333          std::equal(MFI->getParams().begin(), MFI->getParams().end(),
1334                     Params.begin()));
1335 
1336   return Chain;
1337 }
1338 
1339 void WebAssemblyTargetLowering::ReplaceNodeResults(
1340     SDNode *N, SmallVectorImpl<SDValue> &Results, SelectionDAG &DAG) const {
1341   switch (N->getOpcode()) {
1342   case ISD::SIGN_EXTEND_INREG:
1343     // Do not add any results, signifying that N should not be custom lowered
1344     // after all. This happens because simd128 turns on custom lowering for
1345     // SIGN_EXTEND_INREG, but for non-vector sign extends the result might be an
1346     // illegal type.
1347     break;
1348   default:
1349     llvm_unreachable(
1350         "ReplaceNodeResults not implemented for this op for WebAssembly!");
1351   }
1352 }
1353 
1354 //===----------------------------------------------------------------------===//
1355 //  Custom lowering hooks.
1356 //===----------------------------------------------------------------------===//
1357 
1358 SDValue WebAssemblyTargetLowering::LowerOperation(SDValue Op,
1359                                                   SelectionDAG &DAG) const {
1360   SDLoc DL(Op);
1361   switch (Op.getOpcode()) {
1362   default:
1363     llvm_unreachable("unimplemented operation lowering");
1364     return SDValue();
1365   case ISD::FrameIndex:
1366     return LowerFrameIndex(Op, DAG);
1367   case ISD::GlobalAddress:
1368     return LowerGlobalAddress(Op, DAG);
1369   case ISD::GlobalTLSAddress:
1370     return LowerGlobalTLSAddress(Op, DAG);
1371   case ISD::ExternalSymbol:
1372     return LowerExternalSymbol(Op, DAG);
1373   case ISD::JumpTable:
1374     return LowerJumpTable(Op, DAG);
1375   case ISD::BR_JT:
1376     return LowerBR_JT(Op, DAG);
1377   case ISD::VASTART:
1378     return LowerVASTART(Op, DAG);
1379   case ISD::BlockAddress:
1380   case ISD::BRIND:
1381     fail(DL, DAG, "WebAssembly hasn't implemented computed gotos");
1382     return SDValue();
1383   case ISD::RETURNADDR:
1384     return LowerRETURNADDR(Op, DAG);
1385   case ISD::FRAMEADDR:
1386     return LowerFRAMEADDR(Op, DAG);
1387   case ISD::CopyToReg:
1388     return LowerCopyToReg(Op, DAG);
1389   case ISD::EXTRACT_VECTOR_ELT:
1390   case ISD::INSERT_VECTOR_ELT:
1391     return LowerAccessVectorElement(Op, DAG);
1392   case ISD::INTRINSIC_VOID:
1393   case ISD::INTRINSIC_WO_CHAIN:
1394   case ISD::INTRINSIC_W_CHAIN:
1395     return LowerIntrinsic(Op, DAG);
1396   case ISD::SIGN_EXTEND_INREG:
1397     return LowerSIGN_EXTEND_INREG(Op, DAG);
1398   case ISD::BUILD_VECTOR:
1399     return LowerBUILD_VECTOR(Op, DAG);
1400   case ISD::VECTOR_SHUFFLE:
1401     return LowerVECTOR_SHUFFLE(Op, DAG);
1402   case ISD::SETCC:
1403     return LowerSETCC(Op, DAG);
1404   case ISD::SHL:
1405   case ISD::SRA:
1406   case ISD::SRL:
1407     return LowerShift(Op, DAG);
1408   case ISD::FP_TO_SINT_SAT:
1409   case ISD::FP_TO_UINT_SAT:
1410     return LowerFP_TO_INT_SAT(Op, DAG);
1411   case ISD::LOAD:
1412     return LowerLoad(Op, DAG);
1413   case ISD::STORE:
1414     return LowerStore(Op, DAG);
1415   case ISD::CTPOP:
1416   case ISD::CTLZ:
1417   case ISD::CTTZ:
1418     return DAG.UnrollVectorOp(Op.getNode());
1419   }
1420 }
1421 
1422 static bool IsWebAssemblyGlobal(SDValue Op) {
1423   if (const GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op))
1424     return WebAssembly::isWasmVarAddressSpace(GA->getAddressSpace());
1425 
1426   return false;
1427 }
1428 
1429 static Optional<unsigned> IsWebAssemblyLocal(SDValue Op, SelectionDAG &DAG) {
1430   const FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Op);
1431   if (!FI)
1432     return None;
1433 
1434   auto &MF = DAG.getMachineFunction();
1435   return WebAssemblyFrameLowering::getLocalForStackObject(MF, FI->getIndex());
1436 }
1437 
1438 static bool IsWebAssemblyTable(SDValue Op) {
1439   const GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
1440   if (GA && WebAssembly::isWasmVarAddressSpace(GA->getAddressSpace())) {
1441     const GlobalValue *Value = GA->getGlobal();
1442     const Type *Ty = Value->getValueType();
1443 
1444     if (Ty->isArrayTy() && WebAssembly::isRefType(Ty->getArrayElementType()))
1445       return true;
1446   }
1447   return false;
1448 }
1449 
1450 // This function will accept as Op any access to a table, so Op can
1451 // be the actual table or an offset into the table.
1452 static bool IsWebAssemblyTableWithOffset(SDValue Op) {
1453   if (Op->getOpcode() == ISD::ADD && Op->getNumOperands() == 2)
1454     return (Op->getOperand(1).getSimpleValueType() == MVT::i32 &&
1455             IsWebAssemblyTableWithOffset(Op->getOperand(0))) ||
1456            (Op->getOperand(0).getSimpleValueType() == MVT::i32 &&
1457             IsWebAssemblyTableWithOffset(Op->getOperand(1)));
1458 
1459   return IsWebAssemblyTable(Op);
1460 }
1461 
1462 // Helper for table pattern matching used in LowerStore and LowerLoad
1463 bool WebAssemblyTargetLowering::MatchTableForLowering(SelectionDAG &DAG,
1464                                                       const SDLoc &DL,
1465                                                       const SDValue &Base,
1466                                                       GlobalAddressSDNode *&GA,
1467                                                       SDValue &Idx) const {
1468   // We expect the following graph for a load of the form:
1469   // table[<var> + <constant offset>]
1470   //
1471   // Case 1:
1472   // externref = load t1
1473   // t1: i32 = add t2, i32:<constant offset>
1474   // t2: i32 = add tX, table
1475   //
1476   // This is in some cases simplified to just:
1477   // Case 2:
1478   // externref = load t1
1479   // t1: i32 = add t2, i32:tX
1480   //
1481   // So, unfortunately we need to check for both cases and if we are in the
1482   // first case extract the table GlobalAddressNode and build a new node tY
1483   // that's tY: i32 = add i32:<constant offset>, i32:tX
1484   //
1485   if (IsWebAssemblyTable(Base)) {
1486     GA = cast<GlobalAddressSDNode>(Base);
1487     Idx = DAG.getConstant(0, DL, MVT::i32);
1488   } else {
1489     GA = dyn_cast<GlobalAddressSDNode>(Base->getOperand(0));
1490     if (GA) {
1491       // We are in Case 2 above.
1492       Idx = Base->getOperand(1);
1493       if (!Idx || GA->getNumValues() != 1 || Idx->getNumValues() != 1)
1494         return false;
1495     } else {
1496       // This might be Case 1 above (or an error)
1497       SDValue V = Base->getOperand(0);
1498       GA = dyn_cast<GlobalAddressSDNode>(V->getOperand(1));
1499 
1500       if (V->getOpcode() != ISD::ADD || V->getNumOperands() != 2 || !GA)
1501         return false;
1502 
1503       SDValue IdxV = DAG.getNode(ISD::ADD, DL, MVT::i32, Base->getOperand(1),
1504                                  V->getOperand(0));
1505       Idx = IdxV;
1506     }
1507   }
1508 
1509   return true;
1510 }
1511 
1512 SDValue WebAssemblyTargetLowering::LowerStore(SDValue Op,
1513                                               SelectionDAG &DAG) const {
1514   SDLoc DL(Op);
1515   StoreSDNode *SN = cast<StoreSDNode>(Op.getNode());
1516   const SDValue &Value = SN->getValue();
1517   const SDValue &Base = SN->getBasePtr();
1518   const SDValue &Offset = SN->getOffset();
1519 
1520   if (IsWebAssemblyTableWithOffset(Base)) {
1521     if (!Offset->isUndef())
1522       report_fatal_error(
1523           "unexpected offset when loading from webassembly table", false);
1524 
1525     SDValue Idx;
1526     GlobalAddressSDNode *GA;
1527 
1528     if (!MatchTableForLowering(DAG, DL, Base, GA, Idx))
1529       report_fatal_error("failed pattern matching for lowering table store",
1530                          false);
1531 
1532     SDVTList Tys = DAG.getVTList(MVT::Other);
1533     SDValue TableSetOps[] = {SN->getChain(), SDValue(GA, 0), Idx, Value};
1534     SDValue TableSet =
1535         DAG.getMemIntrinsicNode(WebAssemblyISD::TABLE_SET, DL, Tys, TableSetOps,
1536                                 SN->getMemoryVT(), SN->getMemOperand());
1537     return TableSet;
1538   }
1539 
1540   if (IsWebAssemblyGlobal(Base)) {
1541     if (!Offset->isUndef())
1542       report_fatal_error("unexpected offset when storing to webassembly global",
1543                          false);
1544 
1545     SDVTList Tys = DAG.getVTList(MVT::Other);
1546     SDValue Ops[] = {SN->getChain(), Value, Base};
1547     return DAG.getMemIntrinsicNode(WebAssemblyISD::GLOBAL_SET, DL, Tys, Ops,
1548                                    SN->getMemoryVT(), SN->getMemOperand());
1549   }
1550 
1551   if (Optional<unsigned> Local = IsWebAssemblyLocal(Base, DAG)) {
1552     if (!Offset->isUndef())
1553       report_fatal_error("unexpected offset when storing to webassembly local",
1554                          false);
1555 
1556     SDValue Idx = DAG.getTargetConstant(*Local, Base, MVT::i32);
1557     SDVTList Tys = DAG.getVTList(MVT::Other); // The chain.
1558     SDValue Ops[] = {SN->getChain(), Idx, Value};
1559     return DAG.getNode(WebAssemblyISD::LOCAL_SET, DL, Tys, Ops);
1560   }
1561 
1562   return Op;
1563 }
1564 
1565 SDValue WebAssemblyTargetLowering::LowerLoad(SDValue Op,
1566                                              SelectionDAG &DAG) const {
1567   SDLoc DL(Op);
1568   LoadSDNode *LN = cast<LoadSDNode>(Op.getNode());
1569   const SDValue &Base = LN->getBasePtr();
1570   const SDValue &Offset = LN->getOffset();
1571 
1572   if (IsWebAssemblyTableWithOffset(Base)) {
1573     if (!Offset->isUndef())
1574       report_fatal_error(
1575           "unexpected offset when loading from webassembly table", false);
1576 
1577     GlobalAddressSDNode *GA;
1578     SDValue Idx;
1579 
1580     if (!MatchTableForLowering(DAG, DL, Base, GA, Idx))
1581       report_fatal_error("failed pattern matching for lowering table load",
1582                          false);
1583 
1584     SDVTList Tys = DAG.getVTList(LN->getValueType(0), MVT::Other);
1585     SDValue TableGetOps[] = {LN->getChain(), SDValue(GA, 0), Idx};
1586     SDValue TableGet =
1587         DAG.getMemIntrinsicNode(WebAssemblyISD::TABLE_GET, DL, Tys, TableGetOps,
1588                                 LN->getMemoryVT(), LN->getMemOperand());
1589     return TableGet;
1590   }
1591 
1592   if (IsWebAssemblyGlobal(Base)) {
1593     if (!Offset->isUndef())
1594       report_fatal_error(
1595           "unexpected offset when loading from webassembly global", false);
1596 
1597     SDVTList Tys = DAG.getVTList(LN->getValueType(0), MVT::Other);
1598     SDValue Ops[] = {LN->getChain(), Base};
1599     return DAG.getMemIntrinsicNode(WebAssemblyISD::GLOBAL_GET, DL, Tys, Ops,
1600                                    LN->getMemoryVT(), LN->getMemOperand());
1601   }
1602 
1603   if (Optional<unsigned> Local = IsWebAssemblyLocal(Base, DAG)) {
1604     if (!Offset->isUndef())
1605       report_fatal_error(
1606           "unexpected offset when loading from webassembly local", false);
1607 
1608     SDValue Idx = DAG.getTargetConstant(*Local, Base, MVT::i32);
1609     EVT LocalVT = LN->getValueType(0);
1610     SDValue LocalGet = DAG.getNode(WebAssemblyISD::LOCAL_GET, DL, LocalVT,
1611                                    {LN->getChain(), Idx});
1612     SDValue Result = DAG.getMergeValues({LocalGet, LN->getChain()}, DL);
1613     assert(Result->getNumValues() == 2 && "Loads must carry a chain!");
1614     return Result;
1615   }
1616 
1617   return Op;
1618 }
1619 
1620 SDValue WebAssemblyTargetLowering::LowerCopyToReg(SDValue Op,
1621                                                   SelectionDAG &DAG) const {
1622   SDValue Src = Op.getOperand(2);
1623   if (isa<FrameIndexSDNode>(Src.getNode())) {
1624     // CopyToReg nodes don't support FrameIndex operands. Other targets select
1625     // the FI to some LEA-like instruction, but since we don't have that, we
1626     // need to insert some kind of instruction that can take an FI operand and
1627     // produces a value usable by CopyToReg (i.e. in a vreg). So insert a dummy
1628     // local.copy between Op and its FI operand.
1629     SDValue Chain = Op.getOperand(0);
1630     SDLoc DL(Op);
1631     unsigned Reg = cast<RegisterSDNode>(Op.getOperand(1))->getReg();
1632     EVT VT = Src.getValueType();
1633     SDValue Copy(DAG.getMachineNode(VT == MVT::i32 ? WebAssembly::COPY_I32
1634                                                    : WebAssembly::COPY_I64,
1635                                     DL, VT, Src),
1636                  0);
1637     return Op.getNode()->getNumValues() == 1
1638                ? DAG.getCopyToReg(Chain, DL, Reg, Copy)
1639                : DAG.getCopyToReg(Chain, DL, Reg, Copy,
1640                                   Op.getNumOperands() == 4 ? Op.getOperand(3)
1641                                                            : SDValue());
1642   }
1643   return SDValue();
1644 }
1645 
1646 SDValue WebAssemblyTargetLowering::LowerFrameIndex(SDValue Op,
1647                                                    SelectionDAG &DAG) const {
1648   int FI = cast<FrameIndexSDNode>(Op)->getIndex();
1649   return DAG.getTargetFrameIndex(FI, Op.getValueType());
1650 }
1651 
1652 SDValue WebAssemblyTargetLowering::LowerRETURNADDR(SDValue Op,
1653                                                    SelectionDAG &DAG) const {
1654   SDLoc DL(Op);
1655 
1656   if (!Subtarget->getTargetTriple().isOSEmscripten()) {
1657     fail(DL, DAG,
1658          "Non-Emscripten WebAssembly hasn't implemented "
1659          "__builtin_return_address");
1660     return SDValue();
1661   }
1662 
1663   if (verifyReturnAddressArgumentIsConstant(Op, DAG))
1664     return SDValue();
1665 
1666   unsigned Depth = Op.getConstantOperandVal(0);
1667   MakeLibCallOptions CallOptions;
1668   return makeLibCall(DAG, RTLIB::RETURN_ADDRESS, Op.getValueType(),
1669                      {DAG.getConstant(Depth, DL, MVT::i32)}, CallOptions, DL)
1670       .first;
1671 }
1672 
1673 SDValue WebAssemblyTargetLowering::LowerFRAMEADDR(SDValue Op,
1674                                                   SelectionDAG &DAG) const {
1675   // Non-zero depths are not supported by WebAssembly currently. Use the
1676   // legalizer's default expansion, which is to return 0 (what this function is
1677   // documented to do).
1678   if (Op.getConstantOperandVal(0) > 0)
1679     return SDValue();
1680 
1681   DAG.getMachineFunction().getFrameInfo().setFrameAddressIsTaken(true);
1682   EVT VT = Op.getValueType();
1683   Register FP =
1684       Subtarget->getRegisterInfo()->getFrameRegister(DAG.getMachineFunction());
1685   return DAG.getCopyFromReg(DAG.getEntryNode(), SDLoc(Op), FP, VT);
1686 }
1687 
1688 SDValue
1689 WebAssemblyTargetLowering::LowerGlobalTLSAddress(SDValue Op,
1690                                                  SelectionDAG &DAG) const {
1691   SDLoc DL(Op);
1692   const auto *GA = cast<GlobalAddressSDNode>(Op);
1693 
1694   MachineFunction &MF = DAG.getMachineFunction();
1695   if (!MF.getSubtarget<WebAssemblySubtarget>().hasBulkMemory())
1696     report_fatal_error("cannot use thread-local storage without bulk memory",
1697                        false);
1698 
1699   const GlobalValue *GV = GA->getGlobal();
1700 
1701   // Currently Emscripten does not support dynamic linking with threads.
1702   // Therefore, if we have thread-local storage, only the local-exec model
1703   // is possible.
1704   // TODO: remove this and implement proper TLS models once Emscripten
1705   // supports dynamic linking with threads.
1706   if (GV->getThreadLocalMode() != GlobalValue::LocalExecTLSModel &&
1707       !Subtarget->getTargetTriple().isOSEmscripten()) {
1708     report_fatal_error("only -ftls-model=local-exec is supported for now on "
1709                        "non-Emscripten OSes: variable " +
1710                            GV->getName(),
1711                        false);
1712   }
1713 
1714   auto model = GV->getThreadLocalMode();
1715 
1716   // Unsupported TLS modes
1717   assert(model != GlobalValue::NotThreadLocal);
1718   assert(model != GlobalValue::InitialExecTLSModel);
1719 
1720   if (model == GlobalValue::LocalExecTLSModel ||
1721       model == GlobalValue::LocalDynamicTLSModel ||
1722       (model == GlobalValue::GeneralDynamicTLSModel &&
1723        getTargetMachine().shouldAssumeDSOLocal(*GV->getParent(), GV))) {
1724     // For DSO-local TLS variables we use offset from __tls_base
1725 
1726     MVT PtrVT = getPointerTy(DAG.getDataLayout());
1727     auto GlobalGet = PtrVT == MVT::i64 ? WebAssembly::GLOBAL_GET_I64
1728                                        : WebAssembly::GLOBAL_GET_I32;
1729     const char *BaseName = MF.createExternalSymbolName("__tls_base");
1730 
1731     SDValue BaseAddr(
1732         DAG.getMachineNode(GlobalGet, DL, PtrVT,
1733                            DAG.getTargetExternalSymbol(BaseName, PtrVT)),
1734         0);
1735 
1736     SDValue TLSOffset = DAG.getTargetGlobalAddress(
1737         GV, DL, PtrVT, GA->getOffset(), WebAssemblyII::MO_TLS_BASE_REL);
1738     SDValue SymOffset =
1739         DAG.getNode(WebAssemblyISD::WrapperREL, DL, PtrVT, TLSOffset);
1740 
1741     return DAG.getNode(ISD::ADD, DL, PtrVT, BaseAddr, SymOffset);
1742   }
1743 
1744   assert(model == GlobalValue::GeneralDynamicTLSModel);
1745 
1746   EVT VT = Op.getValueType();
1747   return DAG.getNode(WebAssemblyISD::Wrapper, DL, VT,
1748                      DAG.getTargetGlobalAddress(GA->getGlobal(), DL, VT,
1749                                                 GA->getOffset(),
1750                                                 WebAssemblyII::MO_GOT_TLS));
1751 }
1752 
1753 SDValue WebAssemblyTargetLowering::LowerGlobalAddress(SDValue Op,
1754                                                       SelectionDAG &DAG) const {
1755   SDLoc DL(Op);
1756   const auto *GA = cast<GlobalAddressSDNode>(Op);
1757   EVT VT = Op.getValueType();
1758   assert(GA->getTargetFlags() == 0 &&
1759          "Unexpected target flags on generic GlobalAddressSDNode");
1760   if (!WebAssembly::isValidAddressSpace(GA->getAddressSpace()))
1761     fail(DL, DAG, "Invalid address space for WebAssembly target");
1762 
1763   unsigned OperandFlags = 0;
1764   if (isPositionIndependent()) {
1765     const GlobalValue *GV = GA->getGlobal();
1766     if (getTargetMachine().shouldAssumeDSOLocal(*GV->getParent(), GV)) {
1767       MachineFunction &MF = DAG.getMachineFunction();
1768       MVT PtrVT = getPointerTy(MF.getDataLayout());
1769       const char *BaseName;
1770       if (GV->getValueType()->isFunctionTy()) {
1771         BaseName = MF.createExternalSymbolName("__table_base");
1772         OperandFlags = WebAssemblyII::MO_TABLE_BASE_REL;
1773       }
1774       else {
1775         BaseName = MF.createExternalSymbolName("__memory_base");
1776         OperandFlags = WebAssemblyII::MO_MEMORY_BASE_REL;
1777       }
1778       SDValue BaseAddr =
1779           DAG.getNode(WebAssemblyISD::Wrapper, DL, PtrVT,
1780                       DAG.getTargetExternalSymbol(BaseName, PtrVT));
1781 
1782       SDValue SymAddr = DAG.getNode(
1783           WebAssemblyISD::WrapperREL, DL, VT,
1784           DAG.getTargetGlobalAddress(GA->getGlobal(), DL, VT, GA->getOffset(),
1785                                      OperandFlags));
1786 
1787       return DAG.getNode(ISD::ADD, DL, VT, BaseAddr, SymAddr);
1788     }
1789     OperandFlags = WebAssemblyII::MO_GOT;
1790   }
1791 
1792   return DAG.getNode(WebAssemblyISD::Wrapper, DL, VT,
1793                      DAG.getTargetGlobalAddress(GA->getGlobal(), DL, VT,
1794                                                 GA->getOffset(), OperandFlags));
1795 }
1796 
1797 SDValue
1798 WebAssemblyTargetLowering::LowerExternalSymbol(SDValue Op,
1799                                                SelectionDAG &DAG) const {
1800   SDLoc DL(Op);
1801   const auto *ES = cast<ExternalSymbolSDNode>(Op);
1802   EVT VT = Op.getValueType();
1803   assert(ES->getTargetFlags() == 0 &&
1804          "Unexpected target flags on generic ExternalSymbolSDNode");
1805   return DAG.getNode(WebAssemblyISD::Wrapper, DL, VT,
1806                      DAG.getTargetExternalSymbol(ES->getSymbol(), VT));
1807 }
1808 
1809 SDValue WebAssemblyTargetLowering::LowerJumpTable(SDValue Op,
1810                                                   SelectionDAG &DAG) const {
1811   // There's no need for a Wrapper node because we always incorporate a jump
1812   // table operand into a BR_TABLE instruction, rather than ever
1813   // materializing it in a register.
1814   const JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
1815   return DAG.getTargetJumpTable(JT->getIndex(), Op.getValueType(),
1816                                 JT->getTargetFlags());
1817 }
1818 
1819 SDValue WebAssemblyTargetLowering::LowerBR_JT(SDValue Op,
1820                                               SelectionDAG &DAG) const {
1821   SDLoc DL(Op);
1822   SDValue Chain = Op.getOperand(0);
1823   const auto *JT = cast<JumpTableSDNode>(Op.getOperand(1));
1824   SDValue Index = Op.getOperand(2);
1825   assert(JT->getTargetFlags() == 0 && "WebAssembly doesn't set target flags");
1826 
1827   SmallVector<SDValue, 8> Ops;
1828   Ops.push_back(Chain);
1829   Ops.push_back(Index);
1830 
1831   MachineJumpTableInfo *MJTI = DAG.getMachineFunction().getJumpTableInfo();
1832   const auto &MBBs = MJTI->getJumpTables()[JT->getIndex()].MBBs;
1833 
1834   // Add an operand for each case.
1835   for (auto MBB : MBBs)
1836     Ops.push_back(DAG.getBasicBlock(MBB));
1837 
1838   // Add the first MBB as a dummy default target for now. This will be replaced
1839   // with the proper default target (and the preceding range check eliminated)
1840   // if possible by WebAssemblyFixBrTableDefaults.
1841   Ops.push_back(DAG.getBasicBlock(*MBBs.begin()));
1842   return DAG.getNode(WebAssemblyISD::BR_TABLE, DL, MVT::Other, Ops);
1843 }
1844 
1845 SDValue WebAssemblyTargetLowering::LowerVASTART(SDValue Op,
1846                                                 SelectionDAG &DAG) const {
1847   SDLoc DL(Op);
1848   EVT PtrVT = getPointerTy(DAG.getMachineFunction().getDataLayout());
1849 
1850   auto *MFI = DAG.getMachineFunction().getInfo<WebAssemblyFunctionInfo>();
1851   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
1852 
1853   SDValue ArgN = DAG.getCopyFromReg(DAG.getEntryNode(), DL,
1854                                     MFI->getVarargBufferVreg(), PtrVT);
1855   return DAG.getStore(Op.getOperand(0), DL, ArgN, Op.getOperand(1),
1856                       MachinePointerInfo(SV));
1857 }
1858 
1859 SDValue WebAssemblyTargetLowering::LowerIntrinsic(SDValue Op,
1860                                                   SelectionDAG &DAG) const {
1861   MachineFunction &MF = DAG.getMachineFunction();
1862   unsigned IntNo;
1863   switch (Op.getOpcode()) {
1864   case ISD::INTRINSIC_VOID:
1865   case ISD::INTRINSIC_W_CHAIN:
1866     IntNo = Op.getConstantOperandVal(1);
1867     break;
1868   case ISD::INTRINSIC_WO_CHAIN:
1869     IntNo = Op.getConstantOperandVal(0);
1870     break;
1871   default:
1872     llvm_unreachable("Invalid intrinsic");
1873   }
1874   SDLoc DL(Op);
1875 
1876   switch (IntNo) {
1877   default:
1878     return SDValue(); // Don't custom lower most intrinsics.
1879 
1880   case Intrinsic::wasm_lsda: {
1881     auto PtrVT = getPointerTy(MF.getDataLayout());
1882     const char *SymName = MF.createExternalSymbolName(
1883         "GCC_except_table" + std::to_string(MF.getFunctionNumber()));
1884     if (isPositionIndependent()) {
1885       SDValue Node = DAG.getTargetExternalSymbol(
1886           SymName, PtrVT, WebAssemblyII::MO_MEMORY_BASE_REL);
1887       const char *BaseName = MF.createExternalSymbolName("__memory_base");
1888       SDValue BaseAddr =
1889           DAG.getNode(WebAssemblyISD::Wrapper, DL, PtrVT,
1890                       DAG.getTargetExternalSymbol(BaseName, PtrVT));
1891       SDValue SymAddr =
1892           DAG.getNode(WebAssemblyISD::WrapperREL, DL, PtrVT, Node);
1893       return DAG.getNode(ISD::ADD, DL, PtrVT, BaseAddr, SymAddr);
1894     }
1895     SDValue Node = DAG.getTargetExternalSymbol(SymName, PtrVT);
1896     return DAG.getNode(WebAssemblyISD::Wrapper, DL, PtrVT, Node);
1897   }
1898 
1899   case Intrinsic::wasm_shuffle: {
1900     // Drop in-chain and replace undefs, but otherwise pass through unchanged
1901     SDValue Ops[18];
1902     size_t OpIdx = 0;
1903     Ops[OpIdx++] = Op.getOperand(1);
1904     Ops[OpIdx++] = Op.getOperand(2);
1905     while (OpIdx < 18) {
1906       const SDValue &MaskIdx = Op.getOperand(OpIdx + 1);
1907       if (MaskIdx.isUndef() ||
1908           cast<ConstantSDNode>(MaskIdx.getNode())->getZExtValue() >= 32) {
1909         Ops[OpIdx++] = DAG.getConstant(0, DL, MVT::i32);
1910       } else {
1911         Ops[OpIdx++] = MaskIdx;
1912       }
1913     }
1914     return DAG.getNode(WebAssemblyISD::SHUFFLE, DL, Op.getValueType(), Ops);
1915   }
1916   }
1917 }
1918 
1919 SDValue
1920 WebAssemblyTargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
1921                                                   SelectionDAG &DAG) const {
1922   SDLoc DL(Op);
1923   // If sign extension operations are disabled, allow sext_inreg only if operand
1924   // is a vector extract of an i8 or i16 lane. SIMD does not depend on sign
1925   // extension operations, but allowing sext_inreg in this context lets us have
1926   // simple patterns to select extract_lane_s instructions. Expanding sext_inreg
1927   // everywhere would be simpler in this file, but would necessitate large and
1928   // brittle patterns to undo the expansion and select extract_lane_s
1929   // instructions.
1930   assert(!Subtarget->hasSignExt() && Subtarget->hasSIMD128());
1931   if (Op.getOperand(0).getOpcode() != ISD::EXTRACT_VECTOR_ELT)
1932     return SDValue();
1933 
1934   const SDValue &Extract = Op.getOperand(0);
1935   MVT VecT = Extract.getOperand(0).getSimpleValueType();
1936   if (VecT.getVectorElementType().getSizeInBits() > 32)
1937     return SDValue();
1938   MVT ExtractedLaneT =
1939       cast<VTSDNode>(Op.getOperand(1).getNode())->getVT().getSimpleVT();
1940   MVT ExtractedVecT =
1941       MVT::getVectorVT(ExtractedLaneT, 128 / ExtractedLaneT.getSizeInBits());
1942   if (ExtractedVecT == VecT)
1943     return Op;
1944 
1945   // Bitcast vector to appropriate type to ensure ISel pattern coverage
1946   const SDNode *Index = Extract.getOperand(1).getNode();
1947   if (!isa<ConstantSDNode>(Index))
1948     return SDValue();
1949   unsigned IndexVal = cast<ConstantSDNode>(Index)->getZExtValue();
1950   unsigned Scale =
1951       ExtractedVecT.getVectorNumElements() / VecT.getVectorNumElements();
1952   assert(Scale > 1);
1953   SDValue NewIndex =
1954       DAG.getConstant(IndexVal * Scale, DL, Index->getValueType(0));
1955   SDValue NewExtract = DAG.getNode(
1956       ISD::EXTRACT_VECTOR_ELT, DL, Extract.getValueType(),
1957       DAG.getBitcast(ExtractedVecT, Extract.getOperand(0)), NewIndex);
1958   return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, Op.getValueType(), NewExtract,
1959                      Op.getOperand(1));
1960 }
1961 
1962 static SDValue LowerConvertLow(SDValue Op, SelectionDAG &DAG) {
1963   SDLoc DL(Op);
1964   if (Op.getValueType() != MVT::v2f64)
1965     return SDValue();
1966 
1967   auto GetConvertedLane = [](SDValue Op, unsigned &Opcode, SDValue &SrcVec,
1968                              unsigned &Index) -> bool {
1969     switch (Op.getOpcode()) {
1970     case ISD::SINT_TO_FP:
1971       Opcode = WebAssemblyISD::CONVERT_LOW_S;
1972       break;
1973     case ISD::UINT_TO_FP:
1974       Opcode = WebAssemblyISD::CONVERT_LOW_U;
1975       break;
1976     case ISD::FP_EXTEND:
1977       Opcode = WebAssemblyISD::PROMOTE_LOW;
1978       break;
1979     default:
1980       return false;
1981     }
1982 
1983     auto ExtractVector = Op.getOperand(0);
1984     if (ExtractVector.getOpcode() != ISD::EXTRACT_VECTOR_ELT)
1985       return false;
1986 
1987     if (!isa<ConstantSDNode>(ExtractVector.getOperand(1).getNode()))
1988       return false;
1989 
1990     SrcVec = ExtractVector.getOperand(0);
1991     Index = ExtractVector.getConstantOperandVal(1);
1992     return true;
1993   };
1994 
1995   unsigned LHSOpcode, RHSOpcode, LHSIndex, RHSIndex;
1996   SDValue LHSSrcVec, RHSSrcVec;
1997   if (!GetConvertedLane(Op.getOperand(0), LHSOpcode, LHSSrcVec, LHSIndex) ||
1998       !GetConvertedLane(Op.getOperand(1), RHSOpcode, RHSSrcVec, RHSIndex))
1999     return SDValue();
2000 
2001   if (LHSOpcode != RHSOpcode)
2002     return SDValue();
2003 
2004   MVT ExpectedSrcVT;
2005   switch (LHSOpcode) {
2006   case WebAssemblyISD::CONVERT_LOW_S:
2007   case WebAssemblyISD::CONVERT_LOW_U:
2008     ExpectedSrcVT = MVT::v4i32;
2009     break;
2010   case WebAssemblyISD::PROMOTE_LOW:
2011     ExpectedSrcVT = MVT::v4f32;
2012     break;
2013   }
2014   if (LHSSrcVec.getValueType() != ExpectedSrcVT)
2015     return SDValue();
2016 
2017   auto Src = LHSSrcVec;
2018   if (LHSIndex != 0 || RHSIndex != 1 || LHSSrcVec != RHSSrcVec) {
2019     // Shuffle the source vector so that the converted lanes are the low lanes.
2020     Src = DAG.getVectorShuffle(
2021         ExpectedSrcVT, DL, LHSSrcVec, RHSSrcVec,
2022         {static_cast<int>(LHSIndex), static_cast<int>(RHSIndex) + 4, -1, -1});
2023   }
2024   return DAG.getNode(LHSOpcode, DL, MVT::v2f64, Src);
2025 }
2026 
2027 SDValue WebAssemblyTargetLowering::LowerBUILD_VECTOR(SDValue Op,
2028                                                      SelectionDAG &DAG) const {
2029   if (auto ConvertLow = LowerConvertLow(Op, DAG))
2030     return ConvertLow;
2031 
2032   SDLoc DL(Op);
2033   const EVT VecT = Op.getValueType();
2034   const EVT LaneT = Op.getOperand(0).getValueType();
2035   const size_t Lanes = Op.getNumOperands();
2036   bool CanSwizzle = VecT == MVT::v16i8;
2037 
2038   // BUILD_VECTORs are lowered to the instruction that initializes the highest
2039   // possible number of lanes at once followed by a sequence of replace_lane
2040   // instructions to individually initialize any remaining lanes.
2041 
2042   // TODO: Tune this. For example, lanewise swizzling is very expensive, so
2043   // swizzled lanes should be given greater weight.
2044 
2045   // TODO: Investigate looping rather than always extracting/replacing specific
2046   // lanes to fill gaps.
2047 
2048   auto IsConstant = [](const SDValue &V) {
2049     return V.getOpcode() == ISD::Constant || V.getOpcode() == ISD::ConstantFP;
2050   };
2051 
2052   // Returns the source vector and index vector pair if they exist. Checks for:
2053   //   (extract_vector_elt
2054   //     $src,
2055   //     (sign_extend_inreg (extract_vector_elt $indices, $i))
2056   //   )
2057   auto GetSwizzleSrcs = [](size_t I, const SDValue &Lane) {
2058     auto Bail = std::make_pair(SDValue(), SDValue());
2059     if (Lane->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
2060       return Bail;
2061     const SDValue &SwizzleSrc = Lane->getOperand(0);
2062     const SDValue &IndexExt = Lane->getOperand(1);
2063     if (IndexExt->getOpcode() != ISD::SIGN_EXTEND_INREG)
2064       return Bail;
2065     const SDValue &Index = IndexExt->getOperand(0);
2066     if (Index->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
2067       return Bail;
2068     const SDValue &SwizzleIndices = Index->getOperand(0);
2069     if (SwizzleSrc.getValueType() != MVT::v16i8 ||
2070         SwizzleIndices.getValueType() != MVT::v16i8 ||
2071         Index->getOperand(1)->getOpcode() != ISD::Constant ||
2072         Index->getConstantOperandVal(1) != I)
2073       return Bail;
2074     return std::make_pair(SwizzleSrc, SwizzleIndices);
2075   };
2076 
2077   // If the lane is extracted from another vector at a constant index, return
2078   // that vector. The source vector must not have more lanes than the dest
2079   // because the shufflevector indices are in terms of the destination lanes and
2080   // would not be able to address the smaller individual source lanes.
2081   auto GetShuffleSrc = [&](const SDValue &Lane) {
2082     if (Lane->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
2083       return SDValue();
2084     if (!isa<ConstantSDNode>(Lane->getOperand(1).getNode()))
2085       return SDValue();
2086     if (Lane->getOperand(0).getValueType().getVectorNumElements() >
2087         VecT.getVectorNumElements())
2088       return SDValue();
2089     return Lane->getOperand(0);
2090   };
2091 
2092   using ValueEntry = std::pair<SDValue, size_t>;
2093   SmallVector<ValueEntry, 16> SplatValueCounts;
2094 
2095   using SwizzleEntry = std::pair<std::pair<SDValue, SDValue>, size_t>;
2096   SmallVector<SwizzleEntry, 16> SwizzleCounts;
2097 
2098   using ShuffleEntry = std::pair<SDValue, size_t>;
2099   SmallVector<ShuffleEntry, 16> ShuffleCounts;
2100 
2101   auto AddCount = [](auto &Counts, const auto &Val) {
2102     auto CountIt =
2103         llvm::find_if(Counts, [&Val](auto E) { return E.first == Val; });
2104     if (CountIt == Counts.end()) {
2105       Counts.emplace_back(Val, 1);
2106     } else {
2107       CountIt->second++;
2108     }
2109   };
2110 
2111   auto GetMostCommon = [](auto &Counts) {
2112     auto CommonIt =
2113         std::max_element(Counts.begin(), Counts.end(),
2114                          [](auto A, auto B) { return A.second < B.second; });
2115     assert(CommonIt != Counts.end() && "Unexpected all-undef build_vector");
2116     return *CommonIt;
2117   };
2118 
2119   size_t NumConstantLanes = 0;
2120 
2121   // Count eligible lanes for each type of vector creation op
2122   for (size_t I = 0; I < Lanes; ++I) {
2123     const SDValue &Lane = Op->getOperand(I);
2124     if (Lane.isUndef())
2125       continue;
2126 
2127     AddCount(SplatValueCounts, Lane);
2128 
2129     if (IsConstant(Lane))
2130       NumConstantLanes++;
2131     if (auto ShuffleSrc = GetShuffleSrc(Lane))
2132       AddCount(ShuffleCounts, ShuffleSrc);
2133     if (CanSwizzle) {
2134       auto SwizzleSrcs = GetSwizzleSrcs(I, Lane);
2135       if (SwizzleSrcs.first)
2136         AddCount(SwizzleCounts, SwizzleSrcs);
2137     }
2138   }
2139 
2140   SDValue SplatValue;
2141   size_t NumSplatLanes;
2142   std::tie(SplatValue, NumSplatLanes) = GetMostCommon(SplatValueCounts);
2143 
2144   SDValue SwizzleSrc;
2145   SDValue SwizzleIndices;
2146   size_t NumSwizzleLanes = 0;
2147   if (SwizzleCounts.size())
2148     std::forward_as_tuple(std::tie(SwizzleSrc, SwizzleIndices),
2149                           NumSwizzleLanes) = GetMostCommon(SwizzleCounts);
2150 
2151   // Shuffles can draw from up to two vectors, so find the two most common
2152   // sources.
2153   SDValue ShuffleSrc1, ShuffleSrc2;
2154   size_t NumShuffleLanes = 0;
2155   if (ShuffleCounts.size()) {
2156     std::tie(ShuffleSrc1, NumShuffleLanes) = GetMostCommon(ShuffleCounts);
2157     llvm::erase_if(ShuffleCounts,
2158                    [&](const auto &Pair) { return Pair.first == ShuffleSrc1; });
2159   }
2160   if (ShuffleCounts.size()) {
2161     size_t AdditionalShuffleLanes;
2162     std::tie(ShuffleSrc2, AdditionalShuffleLanes) =
2163         GetMostCommon(ShuffleCounts);
2164     NumShuffleLanes += AdditionalShuffleLanes;
2165   }
2166 
2167   // Predicate returning true if the lane is properly initialized by the
2168   // original instruction
2169   std::function<bool(size_t, const SDValue &)> IsLaneConstructed;
2170   SDValue Result;
2171   // Prefer swizzles over shuffles over vector consts over splats
2172   if (NumSwizzleLanes >= NumShuffleLanes &&
2173       NumSwizzleLanes >= NumConstantLanes && NumSwizzleLanes >= NumSplatLanes) {
2174     Result = DAG.getNode(WebAssemblyISD::SWIZZLE, DL, VecT, SwizzleSrc,
2175                          SwizzleIndices);
2176     auto Swizzled = std::make_pair(SwizzleSrc, SwizzleIndices);
2177     IsLaneConstructed = [&, Swizzled](size_t I, const SDValue &Lane) {
2178       return Swizzled == GetSwizzleSrcs(I, Lane);
2179     };
2180   } else if (NumShuffleLanes >= NumConstantLanes &&
2181              NumShuffleLanes >= NumSplatLanes) {
2182     size_t DestLaneSize = VecT.getVectorElementType().getFixedSizeInBits() / 8;
2183     size_t DestLaneCount = VecT.getVectorNumElements();
2184     size_t Scale1 = 1;
2185     size_t Scale2 = 1;
2186     SDValue Src1 = ShuffleSrc1;
2187     SDValue Src2 = ShuffleSrc2 ? ShuffleSrc2 : DAG.getUNDEF(VecT);
2188     if (Src1.getValueType() != VecT) {
2189       size_t LaneSize =
2190           Src1.getValueType().getVectorElementType().getFixedSizeInBits() / 8;
2191       assert(LaneSize > DestLaneSize);
2192       Scale1 = LaneSize / DestLaneSize;
2193       Src1 = DAG.getBitcast(VecT, Src1);
2194     }
2195     if (Src2.getValueType() != VecT) {
2196       size_t LaneSize =
2197           Src2.getValueType().getVectorElementType().getFixedSizeInBits() / 8;
2198       assert(LaneSize > DestLaneSize);
2199       Scale2 = LaneSize / DestLaneSize;
2200       Src2 = DAG.getBitcast(VecT, Src2);
2201     }
2202 
2203     int Mask[16];
2204     assert(DestLaneCount <= 16);
2205     for (size_t I = 0; I < DestLaneCount; ++I) {
2206       const SDValue &Lane = Op->getOperand(I);
2207       SDValue Src = GetShuffleSrc(Lane);
2208       if (Src == ShuffleSrc1) {
2209         Mask[I] = Lane->getConstantOperandVal(1) * Scale1;
2210       } else if (Src && Src == ShuffleSrc2) {
2211         Mask[I] = DestLaneCount + Lane->getConstantOperandVal(1) * Scale2;
2212       } else {
2213         Mask[I] = -1;
2214       }
2215     }
2216     ArrayRef<int> MaskRef(Mask, DestLaneCount);
2217     Result = DAG.getVectorShuffle(VecT, DL, Src1, Src2, MaskRef);
2218     IsLaneConstructed = [&](size_t, const SDValue &Lane) {
2219       auto Src = GetShuffleSrc(Lane);
2220       return Src == ShuffleSrc1 || (Src && Src == ShuffleSrc2);
2221     };
2222   } else if (NumConstantLanes >= NumSplatLanes) {
2223     SmallVector<SDValue, 16> ConstLanes;
2224     for (const SDValue &Lane : Op->op_values()) {
2225       if (IsConstant(Lane)) {
2226         // Values may need to be fixed so that they will sign extend to be
2227         // within the expected range during ISel. Check whether the value is in
2228         // bounds based on the lane bit width and if it is out of bounds, lop
2229         // off the extra bits and subtract 2^n to reflect giving the high bit
2230         // value -2^(n-1) rather than +2^(n-1). Skip the i64 case because it
2231         // cannot possibly be out of range.
2232         auto *Const = dyn_cast<ConstantSDNode>(Lane.getNode());
2233         int64_t Val = Const ? Const->getSExtValue() : 0;
2234         uint64_t LaneBits = 128 / Lanes;
2235         assert((LaneBits == 64 || Val >= -(1ll << (LaneBits - 1))) &&
2236                "Unexpected out of bounds negative value");
2237         if (Const && LaneBits != 64 && Val > (1ll << (LaneBits - 1)) - 1) {
2238           auto NewVal = ((uint64_t)Val % (1ll << LaneBits)) - (1ll << LaneBits);
2239           ConstLanes.push_back(DAG.getConstant(NewVal, SDLoc(Lane), LaneT));
2240         } else {
2241           ConstLanes.push_back(Lane);
2242         }
2243       } else if (LaneT.isFloatingPoint()) {
2244         ConstLanes.push_back(DAG.getConstantFP(0, DL, LaneT));
2245       } else {
2246         ConstLanes.push_back(DAG.getConstant(0, DL, LaneT));
2247       }
2248     }
2249     Result = DAG.getBuildVector(VecT, DL, ConstLanes);
2250     IsLaneConstructed = [&IsConstant](size_t _, const SDValue &Lane) {
2251       return IsConstant(Lane);
2252     };
2253   } else {
2254     // Use a splat, but possibly a load_splat
2255     LoadSDNode *SplattedLoad;
2256     if ((SplattedLoad = dyn_cast<LoadSDNode>(SplatValue)) &&
2257         SplattedLoad->getMemoryVT() == VecT.getVectorElementType()) {
2258       Result = DAG.getMemIntrinsicNode(
2259           WebAssemblyISD::LOAD_SPLAT, DL, DAG.getVTList(VecT),
2260           {SplattedLoad->getChain(), SplattedLoad->getBasePtr(),
2261            SplattedLoad->getOffset()},
2262           SplattedLoad->getMemoryVT(), SplattedLoad->getMemOperand());
2263     } else {
2264       Result = DAG.getSplatBuildVector(VecT, DL, SplatValue);
2265     }
2266     IsLaneConstructed = [&SplatValue](size_t _, const SDValue &Lane) {
2267       return Lane == SplatValue;
2268     };
2269   }
2270 
2271   assert(Result);
2272   assert(IsLaneConstructed);
2273 
2274   // Add replace_lane instructions for any unhandled values
2275   for (size_t I = 0; I < Lanes; ++I) {
2276     const SDValue &Lane = Op->getOperand(I);
2277     if (!Lane.isUndef() && !IsLaneConstructed(I, Lane))
2278       Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VecT, Result, Lane,
2279                            DAG.getConstant(I, DL, MVT::i32));
2280   }
2281 
2282   return Result;
2283 }
2284 
2285 SDValue
2286 WebAssemblyTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
2287                                                SelectionDAG &DAG) const {
2288   SDLoc DL(Op);
2289   ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Op.getNode())->getMask();
2290   MVT VecType = Op.getOperand(0).getSimpleValueType();
2291   assert(VecType.is128BitVector() && "Unexpected shuffle vector type");
2292   size_t LaneBytes = VecType.getVectorElementType().getSizeInBits() / 8;
2293 
2294   // Space for two vector args and sixteen mask indices
2295   SDValue Ops[18];
2296   size_t OpIdx = 0;
2297   Ops[OpIdx++] = Op.getOperand(0);
2298   Ops[OpIdx++] = Op.getOperand(1);
2299 
2300   // Expand mask indices to byte indices and materialize them as operands
2301   for (int M : Mask) {
2302     for (size_t J = 0; J < LaneBytes; ++J) {
2303       // Lower undefs (represented by -1 in mask) to zero
2304       uint64_t ByteIndex = M == -1 ? 0 : (uint64_t)M * LaneBytes + J;
2305       Ops[OpIdx++] = DAG.getConstant(ByteIndex, DL, MVT::i32);
2306     }
2307   }
2308 
2309   return DAG.getNode(WebAssemblyISD::SHUFFLE, DL, Op.getValueType(), Ops);
2310 }
2311 
2312 SDValue WebAssemblyTargetLowering::LowerSETCC(SDValue Op,
2313                                               SelectionDAG &DAG) const {
2314   SDLoc DL(Op);
2315   // The legalizer does not know how to expand the unsupported comparison modes
2316   // of i64x2 vectors, so we manually unroll them here.
2317   assert(Op->getOperand(0)->getSimpleValueType(0) == MVT::v2i64);
2318   SmallVector<SDValue, 2> LHS, RHS;
2319   DAG.ExtractVectorElements(Op->getOperand(0), LHS);
2320   DAG.ExtractVectorElements(Op->getOperand(1), RHS);
2321   const SDValue &CC = Op->getOperand(2);
2322   auto MakeLane = [&](unsigned I) {
2323     return DAG.getNode(ISD::SELECT_CC, DL, MVT::i64, LHS[I], RHS[I],
2324                        DAG.getConstant(uint64_t(-1), DL, MVT::i64),
2325                        DAG.getConstant(uint64_t(0), DL, MVT::i64), CC);
2326   };
2327   return DAG.getBuildVector(Op->getValueType(0), DL,
2328                             {MakeLane(0), MakeLane(1)});
2329 }
2330 
2331 SDValue
2332 WebAssemblyTargetLowering::LowerAccessVectorElement(SDValue Op,
2333                                                     SelectionDAG &DAG) const {
2334   // Allow constant lane indices, expand variable lane indices
2335   SDNode *IdxNode = Op.getOperand(Op.getNumOperands() - 1).getNode();
2336   if (isa<ConstantSDNode>(IdxNode) || IdxNode->isUndef())
2337     return Op;
2338   else
2339     // Perform default expansion
2340     return SDValue();
2341 }
2342 
2343 static SDValue unrollVectorShift(SDValue Op, SelectionDAG &DAG) {
2344   EVT LaneT = Op.getSimpleValueType().getVectorElementType();
2345   // 32-bit and 64-bit unrolled shifts will have proper semantics
2346   if (LaneT.bitsGE(MVT::i32))
2347     return DAG.UnrollVectorOp(Op.getNode());
2348   // Otherwise mask the shift value to get proper semantics from 32-bit shift
2349   SDLoc DL(Op);
2350   size_t NumLanes = Op.getSimpleValueType().getVectorNumElements();
2351   SDValue Mask = DAG.getConstant(LaneT.getSizeInBits() - 1, DL, MVT::i32);
2352   unsigned ShiftOpcode = Op.getOpcode();
2353   SmallVector<SDValue, 16> ShiftedElements;
2354   DAG.ExtractVectorElements(Op.getOperand(0), ShiftedElements, 0, 0, MVT::i32);
2355   SmallVector<SDValue, 16> ShiftElements;
2356   DAG.ExtractVectorElements(Op.getOperand(1), ShiftElements, 0, 0, MVT::i32);
2357   SmallVector<SDValue, 16> UnrolledOps;
2358   for (size_t i = 0; i < NumLanes; ++i) {
2359     SDValue MaskedShiftValue =
2360         DAG.getNode(ISD::AND, DL, MVT::i32, ShiftElements[i], Mask);
2361     SDValue ShiftedValue = ShiftedElements[i];
2362     if (ShiftOpcode == ISD::SRA)
2363       ShiftedValue = DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, MVT::i32,
2364                                  ShiftedValue, DAG.getValueType(LaneT));
2365     UnrolledOps.push_back(
2366         DAG.getNode(ShiftOpcode, DL, MVT::i32, ShiftedValue, MaskedShiftValue));
2367   }
2368   return DAG.getBuildVector(Op.getValueType(), DL, UnrolledOps);
2369 }
2370 
2371 SDValue WebAssemblyTargetLowering::LowerShift(SDValue Op,
2372                                               SelectionDAG &DAG) const {
2373   SDLoc DL(Op);
2374 
2375   // Only manually lower vector shifts
2376   assert(Op.getSimpleValueType().isVector());
2377 
2378   auto ShiftVal = DAG.getSplatValue(Op.getOperand(1));
2379   if (!ShiftVal)
2380     return unrollVectorShift(Op, DAG);
2381 
2382   // Use anyext because none of the high bits can affect the shift
2383   ShiftVal = DAG.getAnyExtOrTrunc(ShiftVal, DL, MVT::i32);
2384 
2385   unsigned Opcode;
2386   switch (Op.getOpcode()) {
2387   case ISD::SHL:
2388     Opcode = WebAssemblyISD::VEC_SHL;
2389     break;
2390   case ISD::SRA:
2391     Opcode = WebAssemblyISD::VEC_SHR_S;
2392     break;
2393   case ISD::SRL:
2394     Opcode = WebAssemblyISD::VEC_SHR_U;
2395     break;
2396   default:
2397     llvm_unreachable("unexpected opcode");
2398   }
2399 
2400   return DAG.getNode(Opcode, DL, Op.getValueType(), Op.getOperand(0), ShiftVal);
2401 }
2402 
2403 SDValue WebAssemblyTargetLowering::LowerFP_TO_INT_SAT(SDValue Op,
2404                                                       SelectionDAG &DAG) const {
2405   SDLoc DL(Op);
2406   EVT ResT = Op.getValueType();
2407   EVT SatVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
2408 
2409   if ((ResT == MVT::i32 || ResT == MVT::i64) &&
2410       (SatVT == MVT::i32 || SatVT == MVT::i64))
2411     return Op;
2412 
2413   if (ResT == MVT::v4i32 && SatVT == MVT::i32)
2414     return Op;
2415 
2416   return SDValue();
2417 }
2418 
2419 //===----------------------------------------------------------------------===//
2420 //   Custom DAG combine hooks
2421 //===----------------------------------------------------------------------===//
2422 static SDValue
2423 performVECTOR_SHUFFLECombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI) {
2424   auto &DAG = DCI.DAG;
2425   auto Shuffle = cast<ShuffleVectorSDNode>(N);
2426 
2427   // Hoist vector bitcasts that don't change the number of lanes out of unary
2428   // shuffles, where they are less likely to get in the way of other combines.
2429   // (shuffle (vNxT1 (bitcast (vNxT0 x))), undef, mask) ->
2430   //  (vNxT1 (bitcast (vNxT0 (shuffle x, undef, mask))))
2431   SDValue Bitcast = N->getOperand(0);
2432   if (Bitcast.getOpcode() != ISD::BITCAST)
2433     return SDValue();
2434   if (!N->getOperand(1).isUndef())
2435     return SDValue();
2436   SDValue CastOp = Bitcast.getOperand(0);
2437   MVT SrcType = CastOp.getSimpleValueType();
2438   MVT DstType = Bitcast.getSimpleValueType();
2439   if (!SrcType.is128BitVector() ||
2440       SrcType.getVectorNumElements() != DstType.getVectorNumElements())
2441     return SDValue();
2442   SDValue NewShuffle = DAG.getVectorShuffle(
2443       SrcType, SDLoc(N), CastOp, DAG.getUNDEF(SrcType), Shuffle->getMask());
2444   return DAG.getBitcast(DstType, NewShuffle);
2445 }
2446 
2447 static SDValue
2448 performVectorExtendCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI) {
2449   auto &DAG = DCI.DAG;
2450   assert(N->getOpcode() == ISD::SIGN_EXTEND ||
2451          N->getOpcode() == ISD::ZERO_EXTEND);
2452 
2453   // Combine ({s,z}ext (extract_subvector src, i)) into a widening operation if
2454   // possible before the extract_subvector can be expanded.
2455   auto Extract = N->getOperand(0);
2456   if (Extract.getOpcode() != ISD::EXTRACT_SUBVECTOR)
2457     return SDValue();
2458   auto Source = Extract.getOperand(0);
2459   auto *IndexNode = dyn_cast<ConstantSDNode>(Extract.getOperand(1));
2460   if (IndexNode == nullptr)
2461     return SDValue();
2462   auto Index = IndexNode->getZExtValue();
2463 
2464   // Only v8i8, v4i16, and v2i32 extracts can be widened, and only if the
2465   // extracted subvector is the low or high half of its source.
2466   EVT ResVT = N->getValueType(0);
2467   if (ResVT == MVT::v8i16) {
2468     if (Extract.getValueType() != MVT::v8i8 ||
2469         Source.getValueType() != MVT::v16i8 || (Index != 0 && Index != 8))
2470       return SDValue();
2471   } else if (ResVT == MVT::v4i32) {
2472     if (Extract.getValueType() != MVT::v4i16 ||
2473         Source.getValueType() != MVT::v8i16 || (Index != 0 && Index != 4))
2474       return SDValue();
2475   } else if (ResVT == MVT::v2i64) {
2476     if (Extract.getValueType() != MVT::v2i32 ||
2477         Source.getValueType() != MVT::v4i32 || (Index != 0 && Index != 2))
2478       return SDValue();
2479   } else {
2480     return SDValue();
2481   }
2482 
2483   bool IsSext = N->getOpcode() == ISD::SIGN_EXTEND;
2484   bool IsLow = Index == 0;
2485 
2486   unsigned Op = IsSext ? (IsLow ? WebAssemblyISD::EXTEND_LOW_S
2487                                 : WebAssemblyISD::EXTEND_HIGH_S)
2488                        : (IsLow ? WebAssemblyISD::EXTEND_LOW_U
2489                                 : WebAssemblyISD::EXTEND_HIGH_U);
2490 
2491   return DAG.getNode(Op, SDLoc(N), ResVT, Source);
2492 }
2493 
2494 static SDValue
2495 performVectorTruncZeroCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI) {
2496   auto &DAG = DCI.DAG;
2497 
2498   auto GetWasmConversionOp = [](unsigned Op) {
2499     switch (Op) {
2500     case ISD::FP_TO_SINT_SAT:
2501       return WebAssemblyISD::TRUNC_SAT_ZERO_S;
2502     case ISD::FP_TO_UINT_SAT:
2503       return WebAssemblyISD::TRUNC_SAT_ZERO_U;
2504     case ISD::FP_ROUND:
2505       return WebAssemblyISD::DEMOTE_ZERO;
2506     }
2507     llvm_unreachable("unexpected op");
2508   };
2509 
2510   auto IsZeroSplat = [](SDValue SplatVal) {
2511     auto *Splat = dyn_cast<BuildVectorSDNode>(SplatVal.getNode());
2512     APInt SplatValue, SplatUndef;
2513     unsigned SplatBitSize;
2514     bool HasAnyUndefs;
2515     return Splat &&
2516            Splat->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
2517                                   HasAnyUndefs) &&
2518            SplatValue == 0;
2519   };
2520 
2521   if (N->getOpcode() == ISD::CONCAT_VECTORS) {
2522     // Combine this:
2523     //
2524     //   (concat_vectors (v2i32 (fp_to_{s,u}int_sat $x, 32)), (v2i32 (splat 0)))
2525     //
2526     // into (i32x4.trunc_sat_f64x2_zero_{s,u} $x).
2527     //
2528     // Or this:
2529     //
2530     //   (concat_vectors (v2f32 (fp_round (v2f64 $x))), (v2f32 (splat 0)))
2531     //
2532     // into (f32x4.demote_zero_f64x2 $x).
2533     EVT ResVT;
2534     EVT ExpectedConversionType;
2535     auto Conversion = N->getOperand(0);
2536     auto ConversionOp = Conversion.getOpcode();
2537     switch (ConversionOp) {
2538     case ISD::FP_TO_SINT_SAT:
2539     case ISD::FP_TO_UINT_SAT:
2540       ResVT = MVT::v4i32;
2541       ExpectedConversionType = MVT::v2i32;
2542       break;
2543     case ISD::FP_ROUND:
2544       ResVT = MVT::v4f32;
2545       ExpectedConversionType = MVT::v2f32;
2546       break;
2547     default:
2548       return SDValue();
2549     }
2550 
2551     if (N->getValueType(0) != ResVT)
2552       return SDValue();
2553 
2554     if (Conversion.getValueType() != ExpectedConversionType)
2555       return SDValue();
2556 
2557     auto Source = Conversion.getOperand(0);
2558     if (Source.getValueType() != MVT::v2f64)
2559       return SDValue();
2560 
2561     if (!IsZeroSplat(N->getOperand(1)) ||
2562         N->getOperand(1).getValueType() != ExpectedConversionType)
2563       return SDValue();
2564 
2565     unsigned Op = GetWasmConversionOp(ConversionOp);
2566     return DAG.getNode(Op, SDLoc(N), ResVT, Source);
2567   }
2568 
2569   // Combine this:
2570   //
2571   //   (fp_to_{s,u}int_sat (concat_vectors $x, (v2f64 (splat 0))), 32)
2572   //
2573   // into (i32x4.trunc_sat_f64x2_zero_{s,u} $x).
2574   //
2575   // Or this:
2576   //
2577   //   (v4f32 (fp_round (concat_vectors $x, (v2f64 (splat 0)))))
2578   //
2579   // into (f32x4.demote_zero_f64x2 $x).
2580   EVT ResVT;
2581   auto ConversionOp = N->getOpcode();
2582   switch (ConversionOp) {
2583   case ISD::FP_TO_SINT_SAT:
2584   case ISD::FP_TO_UINT_SAT:
2585     ResVT = MVT::v4i32;
2586     break;
2587   case ISD::FP_ROUND:
2588     ResVT = MVT::v4f32;
2589     break;
2590   default:
2591     llvm_unreachable("unexpected op");
2592   }
2593 
2594   if (N->getValueType(0) != ResVT)
2595     return SDValue();
2596 
2597   auto Concat = N->getOperand(0);
2598   if (Concat.getValueType() != MVT::v4f64)
2599     return SDValue();
2600 
2601   auto Source = Concat.getOperand(0);
2602   if (Source.getValueType() != MVT::v2f64)
2603     return SDValue();
2604 
2605   if (!IsZeroSplat(Concat.getOperand(1)) ||
2606       Concat.getOperand(1).getValueType() != MVT::v2f64)
2607     return SDValue();
2608 
2609   unsigned Op = GetWasmConversionOp(ConversionOp);
2610   return DAG.getNode(Op, SDLoc(N), ResVT, Source);
2611 }
2612 
2613 SDValue
2614 WebAssemblyTargetLowering::PerformDAGCombine(SDNode *N,
2615                                              DAGCombinerInfo &DCI) const {
2616   switch (N->getOpcode()) {
2617   default:
2618     return SDValue();
2619   case ISD::VECTOR_SHUFFLE:
2620     return performVECTOR_SHUFFLECombine(N, DCI);
2621   case ISD::SIGN_EXTEND:
2622   case ISD::ZERO_EXTEND:
2623     return performVectorExtendCombine(N, DCI);
2624   case ISD::FP_TO_SINT_SAT:
2625   case ISD::FP_TO_UINT_SAT:
2626   case ISD::FP_ROUND:
2627   case ISD::CONCAT_VECTORS:
2628     return performVectorTruncZeroCombine(N, DCI);
2629   }
2630 }
2631