// WebAssemblyInstrAtomics.td-WebAssembly Atomic codegen support-*- tablegen -*- // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// /// /// \file /// WebAssembly Atomic operand code-gen constructs. /// //===----------------------------------------------------------------------===// let UseNamedOperandTable = 1 in multiclass ATOMIC_I pattern_r, string asmstr_r = "", string asmstr_s = "", bits<32> atomic_op = -1> { defm "" : I, Requires<[HasAtomics]>; } multiclass ATOMIC_NRI pattern, string asmstr = "", bits<32> atomic_op = -1> { defm "" : NRI, Requires<[HasAtomics]>; } //===----------------------------------------------------------------------===// // Atomic wait / notify //===----------------------------------------------------------------------===// let hasSideEffects = 1 in { defm ATOMIC_NOTIFY : ATOMIC_I<(outs I32:$dst), (ins P2Align:$p2align, offset32_op:$off, I32:$addr, I32:$count), (outs), (ins P2Align:$p2align, offset32_op:$off), [], "atomic.notify \t$dst, ${off}(${addr})${p2align}, $count", "atomic.notify \t${off}${p2align}", 0x00>; let mayLoad = 1 in { defm ATOMIC_WAIT_I32 : ATOMIC_I<(outs I32:$dst), (ins P2Align:$p2align, offset32_op:$off, I32:$addr, I32:$exp, I64:$timeout), (outs), (ins P2Align:$p2align, offset32_op:$off), [], "i32.atomic.wait \t$dst, ${off}(${addr})${p2align}, $exp, $timeout", "i32.atomic.wait \t${off}${p2align}", 0x01>; defm ATOMIC_WAIT_I64 : ATOMIC_I<(outs I32:$dst), (ins P2Align:$p2align, offset32_op:$off, I32:$addr, I64:$exp, I64:$timeout), (outs), (ins P2Align:$p2align, offset32_op:$off), [], "i64.atomic.wait \t$dst, ${off}(${addr})${p2align}, $exp, $timeout", "i64.atomic.wait \t${off}${p2align}", 0x02>; } // mayLoad = 1 } // hasSideEffects = 1 let Predicates = [HasAtomics] in { // Select notifys with no constant offset. def NotifyPatNoOffset : Pat<(i32 (int_wasm_atomic_notify I32:$addr, I32:$count)), (ATOMIC_NOTIFY 0, 0, I32:$addr, I32:$count)>; // Select notifys with a constant offset. // Pattern with address + immediate offset class NotifyPatImmOff : Pat<(i32 (int_wasm_atomic_notify (operand I32:$addr, imm:$off), I32:$count)), (ATOMIC_NOTIFY 0, imm:$off, I32:$addr, I32:$count)>; def : NotifyPatImmOff; def : NotifyPatImmOff; // Select notifys with just a constant offset. def NotifyPatOffsetOnly : Pat<(i32 (int_wasm_atomic_notify imm:$off, I32:$count)), (ATOMIC_NOTIFY 0, imm:$off, (CONST_I32 0), I32:$count)>; def NotifyPatGlobalAddrOffOnly : Pat<(i32 (int_wasm_atomic_notify (WebAssemblywrapper tglobaladdr:$off), I32:$count)), (ATOMIC_NOTIFY 0, tglobaladdr:$off, (CONST_I32 0), I32:$count)>; // Select waits with no constant offset. class WaitPatNoOffset : Pat<(i32 (kind I32:$addr, ty:$exp, I64:$timeout)), (inst 0, 0, I32:$addr, ty:$exp, I64:$timeout)>; def : WaitPatNoOffset; def : WaitPatNoOffset; // Select waits with a constant offset. // Pattern with address + immediate offset class WaitPatImmOff : Pat<(i32 (kind (operand I32:$addr, imm:$off), ty:$exp, I64:$timeout)), (inst 0, imm:$off, I32:$addr, ty:$exp, I64:$timeout)>; def : WaitPatImmOff; def : WaitPatImmOff; def : WaitPatImmOff; def : WaitPatImmOff; // Select wait_i32, ATOMIC_WAIT_I32s with just a constant offset. class WaitPatOffsetOnly : Pat<(i32 (kind imm:$off, ty:$exp, I64:$timeout)), (inst 0, imm:$off, (CONST_I32 0), ty:$exp, I64:$timeout)>; def : WaitPatOffsetOnly; def : WaitPatOffsetOnly; class WaitPatGlobalAddrOffOnly : Pat<(i32 (kind (WebAssemblywrapper tglobaladdr:$off), ty:$exp, I64:$timeout)), (inst 0, tglobaladdr:$off, (CONST_I32 0), ty:$exp, I64:$timeout)>; def : WaitPatGlobalAddrOffOnly; def : WaitPatGlobalAddrOffOnly; } // Predicates = [HasAtomics] //===----------------------------------------------------------------------===// // Atomic fences //===----------------------------------------------------------------------===// // A compiler fence instruction that prevents reordering of instructions. let Defs = [ARGUMENTS] in { let isPseudo = 1, hasSideEffects = 1 in defm COMPILER_FENCE : ATOMIC_NRI<(outs), (ins), [], "compiler_fence">; let hasSideEffects = 1 in defm ATOMIC_FENCE : ATOMIC_NRI<(outs), (ins i8imm:$flags), [], "atomic.fence", 0x03>; } // Defs = [ARGUMENTS] //===----------------------------------------------------------------------===// // Atomic loads //===----------------------------------------------------------------------===// multiclass AtomicLoad { defm "" : WebAssemblyLoad, Requires<[HasAtomics]>; } defm ATOMIC_LOAD_I32 : AtomicLoad; defm ATOMIC_LOAD_I64 : AtomicLoad; // Select loads with no constant offset. let Predicates = [HasAtomics] in { def : LoadPatNoOffset; def : LoadPatNoOffset; // Select loads with a constant offset. // Pattern with address + immediate offset def : LoadPatImmOff; def : LoadPatImmOff; def : LoadPatImmOff; def : LoadPatImmOff; // Select loads with just a constant offset. def : LoadPatOffsetOnly; def : LoadPatOffsetOnly; def : LoadPatGlobalAddrOffOnly; def : LoadPatGlobalAddrOffOnly; } // Predicates = [HasAtomics] // Extending loads. Note that there are only zero-extending atomic loads, no // sign-extending loads. defm ATOMIC_LOAD8_U_I32 : AtomicLoad; defm ATOMIC_LOAD16_U_I32 : AtomicLoad; defm ATOMIC_LOAD8_U_I64 : AtomicLoad; defm ATOMIC_LOAD16_U_I64 : AtomicLoad; defm ATOMIC_LOAD32_U_I64 : AtomicLoad; // Fragments for extending loads. These are different from regular loads because // the SDNodes are derived from AtomicSDNode rather than LoadSDNode and // therefore don't have the extension type field. So instead of matching that, // we match the patterns that the type legalizer expands them to. // We directly match zext patterns and select the zext atomic loads. // i32 (zext (i8 (atomic_load_8))) gets legalized to // i32 (and (i32 (atomic_load_8)), 255) // These can be selected to a single zero-extending atomic load instruction. def zext_aload_8_32 : PatFrag<(ops node:$addr), (and (i32 (atomic_load_8 node:$addr)), 255)>; def zext_aload_16_32 : PatFrag<(ops node:$addr), (and (i32 (atomic_load_16 node:$addr)), 65535)>; // Unlike regular loads, extension to i64 is handled differently than i32. // i64 (zext (i8 (atomic_load_8))) gets legalized to // i64 (and (i64 (anyext (i32 (atomic_load_8)))), 255) def zext_aload_8_64 : PatFrag<(ops node:$addr), (and (i64 (anyext (i32 (atomic_load_8 node:$addr)))), 255)>; def zext_aload_16_64 : PatFrag<(ops node:$addr), (and (i64 (anyext (i32 (atomic_load_16 node:$addr)))), 65535)>; def zext_aload_32_64 : PatFrag<(ops node:$addr), (zext (i32 (atomic_load node:$addr)))>; // We don't have single sext atomic load instructions. So for sext loads, we // match bare subword loads (for 32-bit results) and anyext loads (for 64-bit // results) and select a zext load; the next instruction will be sext_inreg // which is selected by itself. def sext_aload_8_64 : PatFrag<(ops node:$addr), (anyext (i32 (atomic_load_8 node:$addr)))>; def sext_aload_16_64 : PatFrag<(ops node:$addr), (anyext (i32 (atomic_load_16 node:$addr)))>; let Predicates = [HasAtomics] in { // Select zero-extending loads with no constant offset. def : LoadPatNoOffset; def : LoadPatNoOffset; def : LoadPatNoOffset; def : LoadPatNoOffset; def : LoadPatNoOffset; // Select sign-extending loads with no constant offset def : LoadPatNoOffset; def : LoadPatNoOffset; def : LoadPatNoOffset; def : LoadPatNoOffset; // 32->64 sext load gets selected as i32.atomic.load, i64.extend_i32_s // Zero-extending loads with constant offset def : LoadPatImmOff; def : LoadPatImmOff; def : LoadPatImmOff; def : LoadPatImmOff; def : LoadPatImmOff; def : LoadPatImmOff; def : LoadPatImmOff; def : LoadPatImmOff; def : LoadPatImmOff; def : LoadPatImmOff; // Sign-extending loads with constant offset def : LoadPatImmOff; def : LoadPatImmOff; def : LoadPatImmOff; def : LoadPatImmOff; def : LoadPatImmOff; def : LoadPatImmOff; def : LoadPatImmOff; def : LoadPatImmOff; // No 32->64 patterns, just use i32.atomic.load and i64.extend_s/i64 // Extending loads with just a constant offset def : LoadPatOffsetOnly; def : LoadPatOffsetOnly; def : LoadPatOffsetOnly; def : LoadPatOffsetOnly; def : LoadPatOffsetOnly; def : LoadPatOffsetOnly; def : LoadPatOffsetOnly; def : LoadPatOffsetOnly; def : LoadPatOffsetOnly; def : LoadPatGlobalAddrOffOnly; def : LoadPatGlobalAddrOffOnly; def : LoadPatGlobalAddrOffOnly; def : LoadPatGlobalAddrOffOnly; def : LoadPatGlobalAddrOffOnly; def : LoadPatGlobalAddrOffOnly; def : LoadPatGlobalAddrOffOnly; def : LoadPatGlobalAddrOffOnly; def : LoadPatGlobalAddrOffOnly; } // Predicates = [HasAtomics] //===----------------------------------------------------------------------===// // Atomic stores //===----------------------------------------------------------------------===// multiclass AtomicStore { defm "" : WebAssemblyStore, Requires<[HasAtomics]>; } defm ATOMIC_STORE_I32 : AtomicStore; defm ATOMIC_STORE_I64 : AtomicStore; // We need an 'atomic' version of store patterns because store and atomic_store // nodes have different operand orders: // store: (store $val, $ptr) // atomic_store: (store $ptr, $val) let Predicates = [HasAtomics] in { // Select stores with no constant offset. class AStorePatNoOffset : Pat<(kind I32:$addr, ty:$val), (inst 0, 0, I32:$addr, ty:$val)>; def : AStorePatNoOffset; def : AStorePatNoOffset; // Select stores with a constant offset. // Pattern with address + immediate offset class AStorePatImmOff : Pat<(kind (operand I32:$addr, imm:$off), ty:$val), (inst 0, imm:$off, I32:$addr, ty:$val)>; def : AStorePatImmOff; def : AStorePatImmOff; def : AStorePatImmOff; def : AStorePatImmOff; // Select stores with just a constant offset. class AStorePatOffsetOnly : Pat<(kind imm:$off, ty:$val), (inst 0, imm:$off, (CONST_I32 0), ty:$val)>; def : AStorePatOffsetOnly; def : AStorePatOffsetOnly; class AStorePatGlobalAddrOffOnly : Pat<(kind (WebAssemblywrapper tglobaladdr:$off), ty:$val), (inst 0, tglobaladdr:$off, (CONST_I32 0), ty:$val)>; def : AStorePatGlobalAddrOffOnly; def : AStorePatGlobalAddrOffOnly; } // Predicates = [HasAtomics] // Truncating stores. defm ATOMIC_STORE8_I32 : AtomicStore; defm ATOMIC_STORE16_I32 : AtomicStore; defm ATOMIC_STORE8_I64 : AtomicStore; defm ATOMIC_STORE16_I64 : AtomicStore; defm ATOMIC_STORE32_I64 : AtomicStore; // Fragments for truncating stores. // We don't have single truncating atomic store instructions. For 32-bit // instructions, we just need to match bare atomic stores. On the other hand, // truncating stores from i64 values are once truncated to i32 first. class trunc_astore_64 : PatFrag<(ops node:$addr, node:$val), (kind node:$addr, (i32 (trunc (i64 node:$val))))>; def trunc_astore_8_64 : trunc_astore_64; def trunc_astore_16_64 : trunc_astore_64; def trunc_astore_32_64 : trunc_astore_64; let Predicates = [HasAtomics] in { // Truncating stores with no constant offset def : AStorePatNoOffset; def : AStorePatNoOffset; def : AStorePatNoOffset; def : AStorePatNoOffset; def : AStorePatNoOffset; // Truncating stores with a constant offset def : AStorePatImmOff; def : AStorePatImmOff; def : AStorePatImmOff; def : AStorePatImmOff; def : AStorePatImmOff; def : AStorePatImmOff; def : AStorePatImmOff; def : AStorePatImmOff; def : AStorePatImmOff; def : AStorePatImmOff; // Truncating stores with just a constant offset def : AStorePatOffsetOnly; def : AStorePatOffsetOnly; def : AStorePatOffsetOnly; def : AStorePatOffsetOnly; def : AStorePatOffsetOnly; def : AStorePatGlobalAddrOffOnly; def : AStorePatGlobalAddrOffOnly; def : AStorePatGlobalAddrOffOnly; def : AStorePatGlobalAddrOffOnly; def : AStorePatGlobalAddrOffOnly; } // Predicates = [HasAtomics] //===----------------------------------------------------------------------===// // Atomic binary read-modify-writes //===----------------------------------------------------------------------===// multiclass WebAssemblyBinRMW { defm "" : ATOMIC_I<(outs rc:$dst), (ins P2Align:$p2align, offset32_op:$off, I32:$addr, rc:$val), (outs), (ins P2Align:$p2align, offset32_op:$off), [], !strconcat(name, "\t$dst, ${off}(${addr})${p2align}, $val"), !strconcat(name, "\t${off}${p2align}"), atomic_op>; } defm ATOMIC_RMW_ADD_I32 : WebAssemblyBinRMW; defm ATOMIC_RMW_ADD_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW8_U_ADD_I32 : WebAssemblyBinRMW; defm ATOMIC_RMW16_U_ADD_I32 : WebAssemblyBinRMW; defm ATOMIC_RMW8_U_ADD_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW16_U_ADD_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW32_U_ADD_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW_SUB_I32 : WebAssemblyBinRMW; defm ATOMIC_RMW_SUB_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW8_U_SUB_I32 : WebAssemblyBinRMW; defm ATOMIC_RMW16_U_SUB_I32 : WebAssemblyBinRMW; defm ATOMIC_RMW8_U_SUB_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW16_U_SUB_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW32_U_SUB_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW_AND_I32 : WebAssemblyBinRMW; defm ATOMIC_RMW_AND_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW8_U_AND_I32 : WebAssemblyBinRMW; defm ATOMIC_RMW16_U_AND_I32 : WebAssemblyBinRMW; defm ATOMIC_RMW8_U_AND_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW16_U_AND_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW32_U_AND_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW_OR_I32 : WebAssemblyBinRMW; defm ATOMIC_RMW_OR_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW8_U_OR_I32 : WebAssemblyBinRMW; defm ATOMIC_RMW16_U_OR_I32 : WebAssemblyBinRMW; defm ATOMIC_RMW8_U_OR_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW16_U_OR_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW32_U_OR_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW_XOR_I32 : WebAssemblyBinRMW; defm ATOMIC_RMW_XOR_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW8_U_XOR_I32 : WebAssemblyBinRMW; defm ATOMIC_RMW16_U_XOR_I32 : WebAssemblyBinRMW; defm ATOMIC_RMW8_U_XOR_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW16_U_XOR_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW32_U_XOR_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW_XCHG_I32 : WebAssemblyBinRMW; defm ATOMIC_RMW_XCHG_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW8_U_XCHG_I32 : WebAssemblyBinRMW; defm ATOMIC_RMW16_U_XCHG_I32 : WebAssemblyBinRMW; defm ATOMIC_RMW8_U_XCHG_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW16_U_XCHG_I64 : WebAssemblyBinRMW; defm ATOMIC_RMW32_U_XCHG_I64 : WebAssemblyBinRMW; // Select binary RMWs with no constant offset. class BinRMWPatNoOffset : Pat<(ty (kind I32:$addr, ty:$val)), (inst 0, 0, I32:$addr, ty:$val)>; // Select binary RMWs with a constant offset. // Pattern with address + immediate offset class BinRMWPatImmOff : Pat<(ty (kind (operand I32:$addr, imm:$off), ty:$val)), (inst 0, imm:$off, I32:$addr, ty:$val)>; // Select binary RMWs with just a constant offset. class BinRMWPatOffsetOnly : Pat<(ty (kind imm:$off, ty:$val)), (inst 0, imm:$off, (CONST_I32 0), ty:$val)>; class BinRMWPatGlobalAddrOffOnly : Pat<(ty (kind (WebAssemblywrapper tglobaladdr:$off), ty:$val)), (inst 0, tglobaladdr:$off, (CONST_I32 0), ty:$val)>; // Patterns for various addressing modes. multiclass BinRMWPattern { def : BinRMWPatNoOffset; def : BinRMWPatNoOffset; def : BinRMWPatImmOff; def : BinRMWPatImmOff; def : BinRMWPatImmOff; def : BinRMWPatImmOff; def : BinRMWPatOffsetOnly; def : BinRMWPatOffsetOnly; def : BinRMWPatGlobalAddrOffOnly; def : BinRMWPatGlobalAddrOffOnly; } let Predicates = [HasAtomics] in { defm : BinRMWPattern; defm : BinRMWPattern; defm : BinRMWPattern; defm : BinRMWPattern; defm : BinRMWPattern; defm : BinRMWPattern; } // Predicates = [HasAtomics] // Truncating & zero-extending binary RMW patterns. // These are combined patterns of truncating store patterns and zero-extending // load patterns above. class zext_bin_rmw_8_32 : PatFrag<(ops node:$addr, node:$val), (and (i32 (kind node:$addr, node:$val)), 255)>; class zext_bin_rmw_16_32 : PatFrag<(ops node:$addr, node:$val), (and (i32 (kind node:$addr, node:$val)), 65535)>; class zext_bin_rmw_8_64 : PatFrag<(ops node:$addr, node:$val), (and (i64 (anyext (i32 (kind node:$addr, (i32 (trunc (i64 node:$val))))))), 255)>; class zext_bin_rmw_16_64 : PatFrag<(ops node:$addr, node:$val), (and (i64 (anyext (i32 (kind node:$addr, (i32 (trunc (i64 node:$val))))))), 65535)>; class zext_bin_rmw_32_64 : PatFrag<(ops node:$addr, node:$val), (zext (i32 (kind node:$addr, (i32 (trunc (i64 node:$val))))))>; // Truncating & sign-extending binary RMW patterns. // These are combined patterns of truncating store patterns and sign-extending // load patterns above. We match subword RMWs (for 32-bit) and anyext RMWs (for // 64-bit) and select a zext RMW; the next instruction will be sext_inreg which // is selected by itself. class sext_bin_rmw_8_32 : PatFrag<(ops node:$addr, node:$val), (kind node:$addr, node:$val)>; class sext_bin_rmw_16_32 : sext_bin_rmw_8_32; class sext_bin_rmw_8_64 : PatFrag<(ops node:$addr, node:$val), (anyext (i32 (kind node:$addr, (i32 (trunc (i64 node:$val))))))>; class sext_bin_rmw_16_64 : sext_bin_rmw_8_64; // 32->64 sext RMW gets selected as i32.atomic.rmw.***, i64.extend_i32_s // Patterns for various addressing modes for truncating-extending binary RMWs. multiclass BinRMWTruncExtPattern< PatFrag rmw_8, PatFrag rmw_16, PatFrag rmw_32, PatFrag rmw_64, NI inst8_32, NI inst16_32, NI inst8_64, NI inst16_64, NI inst32_64> { // Truncating-extending binary RMWs with no constant offset def : BinRMWPatNoOffset, inst8_32>; def : BinRMWPatNoOffset, inst16_32>; def : BinRMWPatNoOffset, inst8_64>; def : BinRMWPatNoOffset, inst16_64>; def : BinRMWPatNoOffset, inst32_64>; def : BinRMWPatNoOffset, inst8_32>; def : BinRMWPatNoOffset, inst16_32>; def : BinRMWPatNoOffset, inst8_64>; def : BinRMWPatNoOffset, inst16_64>; // Truncating-extending binary RMWs with a constant offset def : BinRMWPatImmOff, regPlusImm, inst8_32>; def : BinRMWPatImmOff, regPlusImm, inst16_32>; def : BinRMWPatImmOff, regPlusImm, inst8_64>; def : BinRMWPatImmOff, regPlusImm, inst16_64>; def : BinRMWPatImmOff, regPlusImm, inst32_64>; def : BinRMWPatImmOff, or_is_add, inst8_32>; def : BinRMWPatImmOff, or_is_add, inst16_32>; def : BinRMWPatImmOff, or_is_add, inst8_64>; def : BinRMWPatImmOff, or_is_add, inst16_64>; def : BinRMWPatImmOff, or_is_add, inst32_64>; def : BinRMWPatImmOff, regPlusImm, inst8_32>; def : BinRMWPatImmOff, regPlusImm, inst16_32>; def : BinRMWPatImmOff, regPlusImm, inst8_64>; def : BinRMWPatImmOff, regPlusImm, inst16_64>; def : BinRMWPatImmOff, or_is_add, inst8_32>; def : BinRMWPatImmOff, or_is_add, inst16_32>; def : BinRMWPatImmOff, or_is_add, inst8_64>; def : BinRMWPatImmOff, or_is_add, inst16_64>; // Truncating-extending binary RMWs with just a constant offset def : BinRMWPatOffsetOnly, inst8_32>; def : BinRMWPatOffsetOnly, inst16_32>; def : BinRMWPatOffsetOnly, inst8_64>; def : BinRMWPatOffsetOnly, inst16_64>; def : BinRMWPatOffsetOnly, inst32_64>; def : BinRMWPatOffsetOnly, inst8_32>; def : BinRMWPatOffsetOnly, inst16_32>; def : BinRMWPatOffsetOnly, inst8_64>; def : BinRMWPatOffsetOnly, inst16_64>; def : BinRMWPatGlobalAddrOffOnly, inst8_32>; def : BinRMWPatGlobalAddrOffOnly, inst16_32>; def : BinRMWPatGlobalAddrOffOnly, inst8_64>; def : BinRMWPatGlobalAddrOffOnly, inst16_64>; def : BinRMWPatGlobalAddrOffOnly, inst32_64>; def : BinRMWPatGlobalAddrOffOnly, inst8_32>; def : BinRMWPatGlobalAddrOffOnly, inst16_32>; def : BinRMWPatGlobalAddrOffOnly, inst8_64>; def : BinRMWPatGlobalAddrOffOnly, inst16_64>; } let Predicates = [HasAtomics] in { defm : BinRMWTruncExtPattern< atomic_load_add_8, atomic_load_add_16, atomic_load_add_32, atomic_load_add_64, ATOMIC_RMW8_U_ADD_I32, ATOMIC_RMW16_U_ADD_I32, ATOMIC_RMW8_U_ADD_I64, ATOMIC_RMW16_U_ADD_I64, ATOMIC_RMW32_U_ADD_I64>; defm : BinRMWTruncExtPattern< atomic_load_sub_8, atomic_load_sub_16, atomic_load_sub_32, atomic_load_sub_64, ATOMIC_RMW8_U_SUB_I32, ATOMIC_RMW16_U_SUB_I32, ATOMIC_RMW8_U_SUB_I64, ATOMIC_RMW16_U_SUB_I64, ATOMIC_RMW32_U_SUB_I64>; defm : BinRMWTruncExtPattern< atomic_load_and_8, atomic_load_and_16, atomic_load_and_32, atomic_load_and_64, ATOMIC_RMW8_U_AND_I32, ATOMIC_RMW16_U_AND_I32, ATOMIC_RMW8_U_AND_I64, ATOMIC_RMW16_U_AND_I64, ATOMIC_RMW32_U_AND_I64>; defm : BinRMWTruncExtPattern< atomic_load_or_8, atomic_load_or_16, atomic_load_or_32, atomic_load_or_64, ATOMIC_RMW8_U_OR_I32, ATOMIC_RMW16_U_OR_I32, ATOMIC_RMW8_U_OR_I64, ATOMIC_RMW16_U_OR_I64, ATOMIC_RMW32_U_OR_I64>; defm : BinRMWTruncExtPattern< atomic_load_xor_8, atomic_load_xor_16, atomic_load_xor_32, atomic_load_xor_64, ATOMIC_RMW8_U_XOR_I32, ATOMIC_RMW16_U_XOR_I32, ATOMIC_RMW8_U_XOR_I64, ATOMIC_RMW16_U_XOR_I64, ATOMIC_RMW32_U_XOR_I64>; defm : BinRMWTruncExtPattern< atomic_swap_8, atomic_swap_16, atomic_swap_32, atomic_swap_64, ATOMIC_RMW8_U_XCHG_I32, ATOMIC_RMW16_U_XCHG_I32, ATOMIC_RMW8_U_XCHG_I64, ATOMIC_RMW16_U_XCHG_I64, ATOMIC_RMW32_U_XCHG_I64>; } // Predicates = [HasAtomics] //===----------------------------------------------------------------------===// // Atomic ternary read-modify-writes //===----------------------------------------------------------------------===// // TODO LLVM IR's cmpxchg instruction returns a pair of {loaded value, success // flag}. When we use the success flag or both values, we can't make use of i64 // truncate/extend versions of instructions for now, which is suboptimal. // Consider adding a pass after instruction selection that optimizes this case // if it is frequent. multiclass WebAssemblyTerRMW { defm "" : ATOMIC_I<(outs rc:$dst), (ins P2Align:$p2align, offset32_op:$off, I32:$addr, rc:$exp, rc:$new_), (outs), (ins P2Align:$p2align, offset32_op:$off), [], !strconcat(name, "\t$dst, ${off}(${addr})${p2align}, $exp, $new_"), !strconcat(name, "\t${off}${p2align}"), atomic_op>; } defm ATOMIC_RMW_CMPXCHG_I32 : WebAssemblyTerRMW; defm ATOMIC_RMW_CMPXCHG_I64 : WebAssemblyTerRMW; defm ATOMIC_RMW8_U_CMPXCHG_I32 : WebAssemblyTerRMW; defm ATOMIC_RMW16_U_CMPXCHG_I32 : WebAssemblyTerRMW; defm ATOMIC_RMW8_U_CMPXCHG_I64 : WebAssemblyTerRMW; defm ATOMIC_RMW16_U_CMPXCHG_I64 : WebAssemblyTerRMW; defm ATOMIC_RMW32_U_CMPXCHG_I64 : WebAssemblyTerRMW; // Select ternary RMWs with no constant offset. class TerRMWPatNoOffset : Pat<(ty (kind I32:$addr, ty:$exp, ty:$new)), (inst 0, 0, I32:$addr, ty:$exp, ty:$new)>; // Select ternary RMWs with a constant offset. // Pattern with address + immediate offset class TerRMWPatImmOff : Pat<(ty (kind (operand I32:$addr, imm:$off), ty:$exp, ty:$new)), (inst 0, imm:$off, I32:$addr, ty:$exp, ty:$new)>; // Select ternary RMWs with just a constant offset. class TerRMWPatOffsetOnly : Pat<(ty (kind imm:$off, ty:$exp, ty:$new)), (inst 0, imm:$off, (CONST_I32 0), ty:$exp, ty:$new)>; class TerRMWPatGlobalAddrOffOnly : Pat<(ty (kind (WebAssemblywrapper tglobaladdr:$off), ty:$exp, ty:$new)), (inst 0, tglobaladdr:$off, (CONST_I32 0), ty:$exp, ty:$new)>; // Patterns for various addressing modes. multiclass TerRMWPattern { def : TerRMWPatNoOffset; def : TerRMWPatNoOffset; def : TerRMWPatImmOff; def : TerRMWPatImmOff; def : TerRMWPatImmOff; def : TerRMWPatImmOff; def : TerRMWPatOffsetOnly; def : TerRMWPatOffsetOnly; def : TerRMWPatGlobalAddrOffOnly; def : TerRMWPatGlobalAddrOffOnly; } let Predicates = [HasAtomics] in defm : TerRMWPattern; // Truncating & zero-extending ternary RMW patterns. // DAG legalization & optimization before instruction selection may introduce // additional nodes such as anyext or assertzext depending on operand types. class zext_ter_rmw_8_32 : PatFrag<(ops node:$addr, node:$exp, node:$new), (and (i32 (kind node:$addr, node:$exp, node:$new)), 255)>; class zext_ter_rmw_16_32 : PatFrag<(ops node:$addr, node:$exp, node:$new), (and (i32 (kind node:$addr, node:$exp, node:$new)), 65535)>; class zext_ter_rmw_8_64 : PatFrag<(ops node:$addr, node:$exp, node:$new), (zext (i32 (assertzext (i32 (kind node:$addr, (i32 (trunc (i64 node:$exp))), (i32 (trunc (i64 node:$new))))))))>; class zext_ter_rmw_16_64 : zext_ter_rmw_8_64; class zext_ter_rmw_32_64 : PatFrag<(ops node:$addr, node:$exp, node:$new), (zext (i32 (kind node:$addr, (i32 (trunc (i64 node:$exp))), (i32 (trunc (i64 node:$new))))))>; // Truncating & sign-extending ternary RMW patterns. // We match subword RMWs (for 32-bit) and anyext RMWs (for 64-bit) and select a // zext RMW; the next instruction will be sext_inreg which is selected by // itself. class sext_ter_rmw_8_32 : PatFrag<(ops node:$addr, node:$exp, node:$new), (kind node:$addr, node:$exp, node:$new)>; class sext_ter_rmw_16_32 : sext_ter_rmw_8_32; class sext_ter_rmw_8_64 : PatFrag<(ops node:$addr, node:$exp, node:$new), (anyext (i32 (assertzext (i32 (kind node:$addr, (i32 (trunc (i64 node:$exp))), (i32 (trunc (i64 node:$new))))))))>; class sext_ter_rmw_16_64 : sext_ter_rmw_8_64; // 32->64 sext RMW gets selected as i32.atomic.rmw.***, i64.extend_i32_s // Patterns for various addressing modes for truncating-extending ternary RMWs. multiclass TerRMWTruncExtPattern< PatFrag rmw_8, PatFrag rmw_16, PatFrag rmw_32, PatFrag rmw_64, NI inst8_32, NI inst16_32, NI inst8_64, NI inst16_64, NI inst32_64> { // Truncating-extending ternary RMWs with no constant offset def : TerRMWPatNoOffset, inst8_32>; def : TerRMWPatNoOffset, inst16_32>; def : TerRMWPatNoOffset, inst8_64>; def : TerRMWPatNoOffset, inst16_64>; def : TerRMWPatNoOffset, inst32_64>; def : TerRMWPatNoOffset, inst8_32>; def : TerRMWPatNoOffset, inst16_32>; def : TerRMWPatNoOffset, inst8_64>; def : TerRMWPatNoOffset, inst16_64>; // Truncating-extending ternary RMWs with a constant offset def : TerRMWPatImmOff, regPlusImm, inst8_32>; def : TerRMWPatImmOff, regPlusImm, inst16_32>; def : TerRMWPatImmOff, regPlusImm, inst8_64>; def : TerRMWPatImmOff, regPlusImm, inst16_64>; def : TerRMWPatImmOff, regPlusImm, inst32_64>; def : TerRMWPatImmOff, or_is_add, inst8_32>; def : TerRMWPatImmOff, or_is_add, inst16_32>; def : TerRMWPatImmOff, or_is_add, inst8_64>; def : TerRMWPatImmOff, or_is_add, inst16_64>; def : TerRMWPatImmOff, or_is_add, inst32_64>; def : TerRMWPatImmOff, regPlusImm, inst8_32>; def : TerRMWPatImmOff, regPlusImm, inst16_32>; def : TerRMWPatImmOff, regPlusImm, inst8_64>; def : TerRMWPatImmOff, regPlusImm, inst16_64>; def : TerRMWPatImmOff, or_is_add, inst8_32>; def : TerRMWPatImmOff, or_is_add, inst16_32>; def : TerRMWPatImmOff, or_is_add, inst8_64>; def : TerRMWPatImmOff, or_is_add, inst16_64>; // Truncating-extending ternary RMWs with just a constant offset def : TerRMWPatOffsetOnly, inst8_32>; def : TerRMWPatOffsetOnly, inst16_32>; def : TerRMWPatOffsetOnly, inst8_64>; def : TerRMWPatOffsetOnly, inst16_64>; def : TerRMWPatOffsetOnly, inst32_64>; def : TerRMWPatOffsetOnly, inst8_32>; def : TerRMWPatOffsetOnly, inst16_32>; def : TerRMWPatOffsetOnly, inst8_64>; def : TerRMWPatOffsetOnly, inst16_64>; def : TerRMWPatGlobalAddrOffOnly, inst8_32>; def : TerRMWPatGlobalAddrOffOnly, inst16_32>; def : TerRMWPatGlobalAddrOffOnly, inst8_64>; def : TerRMWPatGlobalAddrOffOnly, inst16_64>; def : TerRMWPatGlobalAddrOffOnly, inst32_64>; def : TerRMWPatGlobalAddrOffOnly, inst8_32>; def : TerRMWPatGlobalAddrOffOnly, inst16_32>; def : TerRMWPatGlobalAddrOffOnly, inst8_64>; def : TerRMWPatGlobalAddrOffOnly, inst16_64>; } let Predicates = [HasAtomics] in defm : TerRMWTruncExtPattern< atomic_cmp_swap_8, atomic_cmp_swap_16, atomic_cmp_swap_32, atomic_cmp_swap_64, ATOMIC_RMW8_U_CMPXCHG_I32, ATOMIC_RMW16_U_CMPXCHG_I32, ATOMIC_RMW8_U_CMPXCHG_I64, ATOMIC_RMW16_U_CMPXCHG_I64, ATOMIC_RMW32_U_CMPXCHG_I64>;