Files
clang-p2996/llvm/lib/Target/WebAssembly/WebAssemblyInstrRef.td
Andy Wingo 107c3a12d6 [WebAssembly] Implement ref.null
This patch adds a new "heap type" operand kind to the WebAssembly MC
layer, used by ref.null. Currently the possible values are "extern" and
"func"; when typed function references come, though, this operand may be
a type index.

Note that the "heap type" production is still known as "refedtype" in
the draft proposal; changing its name in the spec is
ongoing (https://github.com/WebAssembly/reference-types/issues/123).

The register form of ref.null is still untested.

Differential Revision: https://reviews.llvm.org/D90608
2020-11-03 10:46:23 -08:00

38 lines
1.6 KiB
TableGen

// WebAssemblyInstrRef.td - WebAssembly reference type codegen --*- 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 reference type operand codegen constructs.
///
//===----------------------------------------------------------------------===//
defm SELECT_EXNREF : I<(outs EXNREF:$dst),
(ins EXNREF:$lhs, EXNREF:$rhs, I32:$cond),
(outs), (ins),
[(set EXNREF:$dst,
(select I32:$cond, EXNREF:$lhs, EXNREF:$rhs))],
"exnref.select\t$dst, $lhs, $rhs, $cond",
"exnref.select", 0x1b>;
def : Pat<(select (i32 (setne I32:$cond, 0)), EXNREF:$lhs, EXNREF:$rhs),
(SELECT_EXNREF EXNREF:$lhs, EXNREF:$rhs, I32:$cond)>;
def : Pat<(select (i32 (seteq I32:$cond, 0)), EXNREF:$lhs, EXNREF:$rhs),
(SELECT_EXNREF EXNREF:$rhs, EXNREF:$lhs, I32:$cond)>;
multiclass REF<WebAssemblyRegClass rt> {
defm REF_NULL_#rt : I<(outs rt:$res), (ins HeapType:$heaptype),
(outs), (ins HeapType:$heaptype),
[],
"ref.null\t$res, $heaptype",
"ref.null\t$heaptype",
0xd0>;
}
defm "" : REF<FUNCREF>, Requires<[HasReferenceTypes]>;
defm "" : REF<EXTERNREF>, Requires<[HasReferenceTypes]>;