mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-23 20:34:58 +00:00
2b18b87f2b
Summary: We agreed to rename `except_ref` to `exnref` for consistency with other reference types in https://github.com/WebAssembly/exception-handling/issues/79. This also renames WebAssemblyInstrExceptRef.td to WebAssemblyInstrRef.td in order to use the file for other reference types in future. Reviewers: dschuff Subscribers: sbc100, jgravelle-google, hiraditya, sunfish, jfb, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D64703 llvm-svn: 366145
61 lines
1.3 KiB
Plaintext
61 lines
1.3 KiB
Plaintext
# RUN: llvm-mc --disassemble %s -triple=wasm32-unknown-unknown | FileCheck %s
|
|
|
|
# CHECK: .text
|
|
|
|
# CHECK: nop
|
|
0x01
|
|
|
|
# CHECK: i32.add
|
|
0x6a
|
|
|
|
# CHECK: i64.const -1
|
|
0x42 0x7F
|
|
|
|
# CHECK: i64.load32_u 16:p2align=1
|
|
0x35 0x01 0x10
|
|
|
|
# CHECK: block f64
|
|
0x02 0x7C
|
|
|
|
# CHECK: call_indirect
|
|
# $0=, 128, 0
|
|
# FIXME: WebAssemblyInstPrinter does not print immediates.
|
|
0x11 0x80 0x01 0x00
|
|
|
|
# CHECK: call 0
|
|
# CHECK-NOT: exnref.call 0
|
|
0x10 0x00
|
|
|
|
# CHECK: local.get 128
|
|
0x20 0x80 0x01
|
|
|
|
# Prefix byte example:
|
|
# CHECK: i64.trunc_sat_f64_u
|
|
0xFC 0x07
|
|
|
|
# CHECK: v128.const 50462976, 117835012, 185207048, 252579084
|
|
0xFD 0x02 0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B 0x0C 0x0D 0x0E 0x0F
|
|
|
|
# CHECK: v8x16.shuffle 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15
|
|
0xFD 0x03 0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B 0x0C 0x0D 0x0E 0x0F
|
|
|
|
# Check LEB128 encoding of SIMD instructions
|
|
# CHECK: i64x2.all_true
|
|
0xFD 0x86 0x01
|
|
|
|
# Including non-canonical LEB128 encodings
|
|
# CHECK: i64x2.any_true
|
|
# CHECK-NOT: i64.div_u
|
|
0xFD 0x85 0x81 0x80 0x80 0x80 0x80 0x00
|
|
|
|
# Check br_table, which has its own operand type.
|
|
# CHECK: br_table {0, 1, 2}
|
|
0x0E 0x02 0x00 0x01 0x02
|
|
|
|
# This can mean end_block/end_loop/end_if/end_function/end_try..
|
|
# CHECK: end
|
|
0x0B
|
|
|
|
# CHECK: br_on_exn 0, 0
|
|
0x0A 0x00 0x00
|